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
|
@@ -10,14 +10,13 @@
|
|
|
10
10
|
*/
|
|
11
11
|
import { StringEnum } from '@mariozechner/pi-ai';
|
|
12
12
|
import { Type } from '@sinclair/typebox';
|
|
13
|
-
import { ABORT_AGENT_MESSAGE, ABORT_UI_LABEL_INLINE } from '../../../core/abort.js';
|
|
14
13
|
import { resolveOwnBinary } from '../../../config.js';
|
|
14
|
+
import { ABORT_AGENT_MESSAGE, ABORT_UI_LABEL_INLINE } from '../../../core/abort.js';
|
|
15
|
+
import { truncateOutput } from '../../../core/tools/truncate.js';
|
|
15
16
|
import { TASK } from '../../../tool-names.js';
|
|
16
17
|
import { buildTaskToolDescription, getSubagent, getSubagentNames } from '../../agents/index.js';
|
|
17
|
-
import { buildAgentArgs } from './subprocess.js';
|
|
18
18
|
import { renderTaskCall, renderTaskGroup, renderTaskResult } from './render.js';
|
|
19
|
-
import {
|
|
20
|
-
import { cleanupTempFile, spawnSubagent } from './subprocess.js';
|
|
19
|
+
import { buildAgentArgs, cleanupTempFile, spawnSubagent } from './subprocess.js';
|
|
21
20
|
// ---------------------------------------------------------------------------
|
|
22
21
|
// Constants
|
|
23
22
|
// ---------------------------------------------------------------------------
|
|
@@ -27,9 +26,7 @@ const TOOL_DESCRIPTION = buildTaskToolDescription();
|
|
|
27
26
|
const SUBAGENT_MODELS = ['shortcut/claude-opus-4-6', 'shortcut/gpt-5.4-2026-03-05'];
|
|
28
27
|
function buildSchema(excludeSubagents) {
|
|
29
28
|
const allNames = getSubagentNames();
|
|
30
|
-
const names = excludeSubagents
|
|
31
|
-
? allNames.filter((n) => !excludeSubagents.includes(n))
|
|
32
|
-
: allNames;
|
|
29
|
+
const names = excludeSubagents ? allNames.filter((n) => !excludeSubagents.includes(n)) : allNames;
|
|
33
30
|
return Type.Object({
|
|
34
31
|
subagent_type: StringEnum(names, {
|
|
35
32
|
description: 'The type of specialized agent to use for this task'
|
|
@@ -53,7 +53,11 @@ const WIDGET_KEY = 'todo';
|
|
|
53
53
|
const DISMISS_DELAY_MS = 3_000;
|
|
54
54
|
const ANSI_BLINK = '\x1b[5m';
|
|
55
55
|
const ANSI_RESET = '\x1b[0m';
|
|
56
|
-
const VALID_STATUSES = new Set([
|
|
56
|
+
const VALID_STATUSES = new Set([
|
|
57
|
+
'todo',
|
|
58
|
+
'in_progress',
|
|
59
|
+
'done'
|
|
60
|
+
]);
|
|
57
61
|
let dismissTimer = null;
|
|
58
62
|
/** Validate and coerce a raw status string, falling back to `fallback`. */
|
|
59
63
|
function coerceStatus(raw, fallback) {
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { existsSync, readFileSync, rmdirSync, unlinkSync } from 'fs';
|
|
13
13
|
import { dirname } from 'path';
|
|
14
|
+
import { log } from '../../utils/log.js';
|
|
14
15
|
import { SHORTCUT_API_URL } from '../constants.js';
|
|
15
16
|
/**
|
|
16
17
|
* Upload JSONL content to the trace endpoint.
|
|
@@ -33,7 +34,9 @@ export function attachSessionUpload(session, options) {
|
|
|
33
34
|
if (event.type === 'agent_end') {
|
|
34
35
|
if (!options.isEnabled())
|
|
35
36
|
return;
|
|
36
|
-
void uploadAll(session, options).catch(() => {
|
|
37
|
+
void uploadAll(session, options).catch((e) => {
|
|
38
|
+
log.error('trace-upload', 'uploadAll failed', e);
|
|
39
|
+
});
|
|
37
40
|
}
|
|
38
41
|
};
|
|
39
42
|
return session.subscribe(listener);
|
package/dist/custom/uninstall.js
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Uninstall ShortcutXL —
|
|
2
|
+
* Uninstall ShortcutXL — full purge of everything preflight.ts sets up.
|
|
3
3
|
*
|
|
4
|
-
* Removes: Excel registry keys, XLL directory from PATH,
|
|
5
|
-
* and the
|
|
4
|
+
* Removes: Excel registry keys, XLL directory from PATH, Playwright browsers,
|
|
5
|
+
* and the entire ~/.shortcut/agent/ directory (XLL files, embedded Python,
|
|
6
|
+
* auth, settings, sessions, etc.). Does NOT uninstall Git (shared tool).
|
|
6
7
|
*/
|
|
7
|
-
import { existsSync, rmSync
|
|
8
|
+
import { existsSync, rmSync } from 'fs';
|
|
8
9
|
import { resolve } from 'path';
|
|
9
|
-
import {
|
|
10
|
+
import { getAgentDir, getEmbeddedPythonExe, getXllPath } from '../config.js';
|
|
10
11
|
import { escapePSString, header, ok, run, runPS, warn } from './install-utils.js';
|
|
11
12
|
// ── Uninstall ─────────────────────────────────────────────────────────────
|
|
12
13
|
export function runUninstall() {
|
|
@@ -80,28 +81,38 @@ export function runUninstall() {
|
|
|
80
81
|
else {
|
|
81
82
|
ok('XLL directory was not on PATH.');
|
|
82
83
|
}
|
|
83
|
-
// 3.
|
|
84
|
+
// 3. Uninstall Playwright browsers (before we delete the embedded Python)
|
|
85
|
+
header('Playwright Browsers');
|
|
86
|
+
const pythonExe = getEmbeddedPythonExe();
|
|
87
|
+
if (existsSync(pythonExe)) {
|
|
88
|
+
const pwResult = run(`"${pythonExe}" -m playwright uninstall --all`, { timeout: 30_000 });
|
|
89
|
+
if (pwResult.ok) {
|
|
90
|
+
ok('Removed Playwright browsers.');
|
|
91
|
+
}
|
|
92
|
+
else if (pwResult.stderr.includes('No module named')) {
|
|
93
|
+
ok('Playwright was not installed.');
|
|
94
|
+
}
|
|
95
|
+
else {
|
|
96
|
+
warn('Could not remove Playwright browsers — remove manually from %LOCALAPPDATA%\\ms-playwright');
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
else {
|
|
100
|
+
ok('Embedded Python not found — skipping Playwright cleanup.');
|
|
101
|
+
}
|
|
102
|
+
// 4. Delete the entire agent directory (~/.shortcut/agent/)
|
|
84
103
|
header('Files');
|
|
85
|
-
const
|
|
86
|
-
if (existsSync(
|
|
104
|
+
const agentDir = getAgentDir();
|
|
105
|
+
if (existsSync(agentDir)) {
|
|
87
106
|
try {
|
|
88
|
-
rmSync(
|
|
89
|
-
ok(
|
|
107
|
+
rmSync(agentDir, { recursive: true, force: true });
|
|
108
|
+
ok(`Removed ${agentDir}`);
|
|
90
109
|
}
|
|
91
110
|
catch {
|
|
92
|
-
warn(
|
|
111
|
+
warn(`Could not fully remove ${agentDir} — some files may be locked.`);
|
|
93
112
|
}
|
|
94
113
|
}
|
|
95
114
|
else {
|
|
96
|
-
ok('
|
|
97
|
-
}
|
|
98
|
-
// 4. Remove the installed marker so preflight re-runs on next launch
|
|
99
|
-
try {
|
|
100
|
-
unlinkSync(getInstalledMarkerPath());
|
|
101
|
-
ok('Removed installed marker.');
|
|
102
|
-
}
|
|
103
|
-
catch {
|
|
104
|
-
// Already gone
|
|
115
|
+
ok('Agent directory already removed.');
|
|
105
116
|
}
|
|
106
117
|
console.log();
|
|
107
118
|
ok('ShortcutXL uninstalled.');
|
package/dist/main.js
CHANGED
|
@@ -18,7 +18,7 @@ import { selectSession } from './cli/session-picker.js';
|
|
|
18
18
|
import { getAgentDir, getModelsPath, getUpdateCommand, NPM_PACKAGE_NAME, NPM_REGISTRY_URL, VERSION } from './config.js';
|
|
19
19
|
import { AuthStorage } from './core/auth-storage.js';
|
|
20
20
|
// SHORTCUT PATCH: removed DEFAULT_THINKING_LEVEL import (no longer needed without scoped models)
|
|
21
|
-
import { isInstalled } from './config.js';
|
|
21
|
+
import { getAlpineRootfsPath, getWslDir, isInstalled, isNewSheetEnabled } from './config.js';
|
|
22
22
|
import { exportFromFile } from './core/export-html/index.js';
|
|
23
23
|
import { KeybindingsManager } from './core/keybindings.js';
|
|
24
24
|
import { ModelRegistry } from './core/model-registry.js';
|
|
@@ -37,29 +37,33 @@ import { EXCEL_HTTP_URL, SHORTCUT_LLM_PROXY_URL } from './custom/constants.js';
|
|
|
37
37
|
import { fetchWorkbookSummary, formatSummaryForLlm, parseWorkbookNames } from './custom/context/workbook-summary.js';
|
|
38
38
|
import { fetchCreditBalance } from './custom/credits/shortcut-credits.js';
|
|
39
39
|
import { startCronStatusPolling } from './custom/cron/status-line.js';
|
|
40
|
+
import { log } from './utils/log.js';
|
|
40
41
|
import { getTraceHooks } from './custom/dev/index.js';
|
|
41
42
|
import { runPreflight } from './custom/preflight.js';
|
|
42
43
|
import { SHORTCUT_PROVIDER_ID } from './custom/providers/provider-ids.js';
|
|
43
44
|
// TODO: Re-enable when we support multiple providers
|
|
44
45
|
// import { registerOpenAICodexProvider } from './custom/providers/register-openai-codex-provider.js';
|
|
46
|
+
import { handleNewSheetCommand } from './custom/new-sheet-command.js';
|
|
45
47
|
import { registerShortcutProvider } from './custom/providers/register-shortcut-provider.js';
|
|
48
|
+
import { createSandboxBashTool, ensureWslSandbox, handleSandboxCommand, isDistroInstalled, isWsl2Available, SANDBOX_DISTRO } from './custom/sandbox/index.js';
|
|
46
49
|
import { syncXll } from './custom/sync-xll.js';
|
|
47
|
-
|
|
48
|
-
|
|
50
|
+
// new-sheet imports are lazy — only loaded when newSheet is enabled in settings.
|
|
51
|
+
// The native @shortcut/sdk dependency is not shipped in the npm package, so
|
|
52
|
+
// static imports would crash at startup for published builds.
|
|
49
53
|
import { createApprovalGate } from './custom/tools/approval.js';
|
|
50
54
|
import { BashApprovalComponent } from './custom/tools/bash-approval.js';
|
|
51
55
|
import { ExcelApprovalComponent } from './custom/tools/excel-approval.js';
|
|
56
|
+
import { createExcelExecTool } from './custom/tools/excel-exec.js';
|
|
52
57
|
import { createLlmAnalysisTool } from './custom/tools/llm-analysis.js';
|
|
53
|
-
import { withPreApproval } from './custom/tools/tool-approval.js';
|
|
54
58
|
import { createSwitchModeTool, setCurrentMode } from './custom/tools/switch-mode.js';
|
|
55
59
|
import { createTaskTool } from './custom/tools/task/index.js';
|
|
56
60
|
import { createTodoListTool, setTodoWidget } from './custom/tools/todo-list.js';
|
|
57
|
-
import {
|
|
61
|
+
import { withPreApproval } from './custom/tools/tool-approval.js';
|
|
58
62
|
import { attachSessionUpload } from './custom/tracing/session-upload.js';
|
|
59
63
|
import { runMigrations, showDeprecationWarnings } from './migrations.js';
|
|
60
64
|
import { InteractiveMode, runPrintMode, runRpcMode } from './modes/index.js';
|
|
61
65
|
import { runSubagent } from './subagent-entry.js';
|
|
62
|
-
import {
|
|
66
|
+
import { EXCEL_EXEC, LLM_ANALYSIS, SWITCH_MODE, TASK, TODO_LIST } from './tool-names.js';
|
|
63
67
|
/**
|
|
64
68
|
* Read all content from piped stdin.
|
|
65
69
|
* Returns undefined if stdin is a TTY (interactive terminal).
|
|
@@ -181,7 +185,7 @@ async function createSessionManager(parsed, cwd) {
|
|
|
181
185
|
// Lazy reference — set during main(), used by tools via closures
|
|
182
186
|
let sessionRef = null;
|
|
183
187
|
// SHORTCUT PATCH: simplified buildSessionOptions — removed scopedModels parameter
|
|
184
|
-
function buildSessionOptions(parsed, sessionManager, modelRegistry, _settingsManager, sandboxActive, devMode) {
|
|
188
|
+
async function buildSessionOptions(parsed, sessionManager, modelRegistry, _settingsManager, sandboxActive, devMode, startupWarnings = []) {
|
|
185
189
|
const options = {};
|
|
186
190
|
let cliThinkingFromModel = false;
|
|
187
191
|
if (sessionManager) {
|
|
@@ -241,8 +245,32 @@ function buildSessionOptions(parsed, sessionManager, modelRegistry, _settingsMan
|
|
|
241
245
|
if (!parsed.noCustomTools) {
|
|
242
246
|
const customToolSet = parsed.customTools ? new Set(parsed.customTools) : null;
|
|
243
247
|
if (!customToolSet || customToolSet.has(EXCEL_EXEC)) {
|
|
244
|
-
|
|
245
|
-
|
|
248
|
+
// Toggle via settings.json: { "newSheet": true } or /new-sheet command.
|
|
249
|
+
// Default: COM (Excel desktop). Opt-in: headless Rust sheet engine.
|
|
250
|
+
// Dynamic imports — @shortcut/sdk native binaries aren't in the npm package yet,
|
|
251
|
+
// so we catch failures and fall back to COM gracefully.
|
|
252
|
+
let useNewSheet = false;
|
|
253
|
+
if (isNewSheetEnabled()) {
|
|
254
|
+
try {
|
|
255
|
+
// @ts-ignore — optional dep: @shortcut/sdk uses bundler resolution, excluded from build
|
|
256
|
+
const { SheetEnginePool } = await import('./custom/new-sheet/sheet-engine.js');
|
|
257
|
+
// @ts-ignore — optional dep: same as above
|
|
258
|
+
const { createSheetExecTool } = await import('./custom/new-sheet/sheet-exec.js');
|
|
259
|
+
const pool = await SheetEnginePool.init();
|
|
260
|
+
availableCustomTools.push(createSheetExecTool(pool));
|
|
261
|
+
useNewSheet = true;
|
|
262
|
+
}
|
|
263
|
+
catch (err) {
|
|
264
|
+
// Native deps missing (published build) or broken — revert setting and fall back to COM.
|
|
265
|
+
_settingsManager.setNewSheet(false);
|
|
266
|
+
const reason = err instanceof Error ? err.message : String(err);
|
|
267
|
+
startupWarnings.push(`New sheet engine failed to load — reverted to COM mode. (${reason})`);
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
if (!useNewSheet) {
|
|
271
|
+
const excelApproval = createApprovalGate(ExcelApprovalComponent, _settingsManager);
|
|
272
|
+
availableCustomTools.push(createExcelExecTool(EXCEL_HTTP_URL, excelApproval));
|
|
273
|
+
}
|
|
246
274
|
}
|
|
247
275
|
if (!customToolSet || customToolSet.has(TASK)) {
|
|
248
276
|
availableCustomTools.push(createTaskTool(devMode ? { extraArgs: ['--dev-mode'] } : undefined));
|
|
@@ -250,9 +278,10 @@ function buildSessionOptions(parsed, sessionManager, modelRegistry, _settingsMan
|
|
|
250
278
|
if (!customToolSet || customToolSet.has(TODO_LIST)) {
|
|
251
279
|
availableCustomTools.push(createTodoListTool());
|
|
252
280
|
}
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
281
|
+
// Cron tool disabled for now
|
|
282
|
+
// if (!customToolSet || customToolSet.has(CRON)) {
|
|
283
|
+
// availableCustomTools.push(createCronTool());
|
|
284
|
+
// }
|
|
256
285
|
if (!customToolSet || customToolSet.has(SWITCH_MODE)) {
|
|
257
286
|
availableCustomTools.push(createSwitchModeTool(() => sessionRef));
|
|
258
287
|
}
|
|
@@ -270,7 +299,7 @@ function buildSessionOptions(parsed, sessionManager, modelRegistry, _settingsMan
|
|
|
270
299
|
const bashTool = createBashTool(process.cwd(), { commandPrefix: shellCommandPrefix });
|
|
271
300
|
availableCustomTools.push(withPreApproval(bashTool, bashApproval, (params) => ({
|
|
272
301
|
command: String(params.command ?? ''),
|
|
273
|
-
description: typeof params.description === 'string' ? params.description : undefined
|
|
302
|
+
description: typeof params.description === 'string' ? params.description : undefined
|
|
274
303
|
})));
|
|
275
304
|
}
|
|
276
305
|
options.customTools = [...(options.customTools ?? []), ...availableCustomTools];
|
|
@@ -396,7 +425,27 @@ export async function main(args) {
|
|
|
396
425
|
// - 'enabled': use sandbox — warn if WSL2/bwrap not installed
|
|
397
426
|
// - 'disabled' (default): Git Bash, no isolation
|
|
398
427
|
const sandboxMode = settingsManager.getSandboxMode();
|
|
399
|
-
|
|
428
|
+
let sandboxAvailable = isWsl2Available() && isDistroInstalled(SANDBOX_DISTRO);
|
|
429
|
+
// Auto-update sandbox rootfs if the package version changed.
|
|
430
|
+
if (sandboxMode === 'enabled' && sandboxAvailable) {
|
|
431
|
+
try {
|
|
432
|
+
log.info('sandbox', 'Checking sandbox rootfs version...');
|
|
433
|
+
const result = await ensureWslSandbox({
|
|
434
|
+
distro: SANDBOX_DISTRO,
|
|
435
|
+
wslDir: getWslDir(),
|
|
436
|
+
rootfsPath: getAlpineRootfsPath(),
|
|
437
|
+
version: VERSION
|
|
438
|
+
});
|
|
439
|
+
if (!result.installed) {
|
|
440
|
+
sandboxAvailable = false;
|
|
441
|
+
startupWarnings.push(`Sandbox rootfs update failed: ${result.error}`);
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
catch (err) {
|
|
445
|
+
sandboxAvailable = false;
|
|
446
|
+
startupWarnings.push(`Sandbox check failed: ${err instanceof Error ? err.message : String(err)}`);
|
|
447
|
+
}
|
|
448
|
+
}
|
|
400
449
|
const sandboxActive = sandboxMode === 'enabled' && sandboxAvailable;
|
|
401
450
|
if (sandboxMode === 'enabled' && !sandboxAvailable) {
|
|
402
451
|
startupWarnings.push('Sandbox enabled but not installed. Run /sandbox to set it up.');
|
|
@@ -446,7 +495,7 @@ export async function main(args) {
|
|
|
446
495
|
// Register Shortcut as a provider with custom stream through the Python backend
|
|
447
496
|
// Always use streaming to avoid Cloudflare 524 timeouts on long-running invoke requests
|
|
448
497
|
registerShortcutProvider(modelRegistry, SHORTCUT_LLM_PROXY_URL, {
|
|
449
|
-
getExtraHeaders: () => settingsManager.getTelemetry() ? undefined : { 'X-No-Telemetry': '1' }
|
|
498
|
+
getExtraHeaders: () => (settingsManager.getTelemetry() ? undefined : { 'X-No-Telemetry': '1' })
|
|
450
499
|
});
|
|
451
500
|
// Keep Shortcut OAuth tokens fresh while the TUI is idle.
|
|
452
501
|
// Without this, the access token (7-min TTL on staging) expires silently
|
|
@@ -508,12 +557,9 @@ export async function main(args) {
|
|
|
508
557
|
console.error(chalk.red('Error: @file arguments are not supported in RPC mode'));
|
|
509
558
|
process.exit(1);
|
|
510
559
|
}
|
|
511
|
-
|
|
512
|
-
parsed, settingsManager.getImageAutoResize());
|
|
560
|
+
const { initialMessage: _initMsg, initialImages } = await prepareInitialMessage(parsed, settingsManager.getImageAutoResize());
|
|
513
561
|
// Auto-start the installation flow so the user doesn't have to type anything
|
|
514
|
-
|
|
515
|
-
initialMessage = 'Start the installation process.';
|
|
516
|
-
}
|
|
562
|
+
const initialMessage = needsSetup && !_initMsg ? 'Start the installation process.' : _initMsg;
|
|
517
563
|
const isInteractive = !parsed.print && parsed.mode === undefined;
|
|
518
564
|
const mode = parsed.mode || 'text';
|
|
519
565
|
initTheme(settingsManager.getTheme(), isInteractive);
|
|
@@ -536,7 +582,7 @@ export async function main(args) {
|
|
|
536
582
|
}
|
|
537
583
|
sessionManager = SessionManager.open(selectedPath);
|
|
538
584
|
}
|
|
539
|
-
const { options: sessionOptions, cliThinkingFromModel } = buildSessionOptions(parsed, sessionManager, modelRegistry, settingsManager, sandboxActive, devMode);
|
|
585
|
+
const { options: sessionOptions, cliThinkingFromModel } = await buildSessionOptions(parsed, sessionManager, modelRegistry, settingsManager, sandboxActive, devMode, startupWarnings);
|
|
540
586
|
sessionOptions.settingsManager = settingsManager;
|
|
541
587
|
sessionOptions.authStorage = authStorage;
|
|
542
588
|
sessionOptions.modelRegistry = modelRegistry;
|
|
@@ -637,7 +683,14 @@ export async function main(args) {
|
|
|
637
683
|
oauthProviderOrder: [SHORTCUT_PROVIDER_ID],
|
|
638
684
|
extraSlashCommands: [
|
|
639
685
|
{ name: 'sandbox', description: 'Set up or toggle WSL2 sandbox for bash isolation' },
|
|
640
|
-
{
|
|
686
|
+
{
|
|
687
|
+
name: 'dev',
|
|
688
|
+
description: 'Toggle developer mode (file tools, AGENTS.md, verbose logging)'
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
name: 'new-sheet',
|
|
692
|
+
description: 'Toggle headless Rust sheet engine (off by default)'
|
|
693
|
+
}
|
|
641
694
|
],
|
|
642
695
|
onDevCommand: (command, showStatus, select, input) => {
|
|
643
696
|
if (command === '/dev') {
|
|
@@ -648,6 +701,8 @@ export async function main(args) {
|
|
|
648
701
|
}
|
|
649
702
|
if (command === '/sandbox')
|
|
650
703
|
return handleSandboxCommand(showStatus, select, input, settingsManager);
|
|
704
|
+
if (command === '/new-sheet')
|
|
705
|
+
return handleNewSheetCommand(showStatus, select, settingsManager);
|
|
651
706
|
return traceHooks.onCommand(command, showStatus);
|
|
652
707
|
},
|
|
653
708
|
onAgentEnd: traceHooks.onAgentEnd,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ABORT_UI_LABEL } from '../../../core/abort.js';
|
|
2
|
+
import { theme } from '../../../core/theme.js';
|
|
2
3
|
import { ERROR_MAX_CHARS_UI } from '../../../core/tools/truncate.js';
|
|
3
4
|
import { Container, Markdown, Spacer, Text } from '../../../tui/index.js';
|
|
4
|
-
import { theme } from '../../../core/theme.js';
|
|
5
5
|
import { getMarkdownTheme } from '../theme/theme.js';
|
|
6
6
|
import { PREFIX_WIDTH, assistantPrefix, prefixLines } from './layout.js';
|
|
7
7
|
/**
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Component for displaying bash command execution with streaming output.
|
|
3
3
|
*/
|
|
4
|
-
import { ABORT_UI_LABEL_INLINE } from '../../../core/abort.js';
|
|
5
|
-
import { Container, Loader, Spacer, Text } from '../../../tui/index.js';
|
|
6
4
|
import stripAnsi from 'strip-ansi';
|
|
5
|
+
import { ABORT_UI_LABEL_INLINE } from '../../../core/abort.js';
|
|
7
6
|
import { theme } from '../../../core/theme.js';
|
|
8
|
-
import {
|
|
7
|
+
import { Container, Loader, Spacer, Text } from '../../../tui/index.js';
|
|
9
8
|
import { DynamicBorder } from './dynamic-border.js';
|
|
10
9
|
import { editorKey } from './keybinding-hints.js';
|
|
11
10
|
import { truncateToVisualLines } from './visual-truncate.js';
|
|
@@ -89,11 +88,9 @@ export class BashExecutionComponent extends Container {
|
|
|
89
88
|
this.updateDisplay();
|
|
90
89
|
}
|
|
91
90
|
updateDisplay() {
|
|
92
|
-
//
|
|
91
|
+
// Output is already truncated by the bash tool — no need to re-truncate here
|
|
93
92
|
const fullOutput = this.outputLines.join('\n');
|
|
94
|
-
const
|
|
95
|
-
// Get the lines to potentially display (after context truncation)
|
|
96
|
-
const availableLines = contextTruncation.content ? contextTruncation.content.split('\n') : [];
|
|
93
|
+
const availableLines = fullOutput ? fullOutput.split('\n') : [];
|
|
97
94
|
// Apply preview truncation based on expanded state
|
|
98
95
|
const previewLogicalLines = availableLines.slice(-PREVIEW_LINES);
|
|
99
96
|
// Rebuild content container
|
|
@@ -127,8 +124,7 @@ export class BashExecutionComponent extends Container {
|
|
|
127
124
|
else if (this.status === 'error') {
|
|
128
125
|
statusParts.push(theme.fg('error', `(exit ${this.exitCode})`));
|
|
129
126
|
}
|
|
130
|
-
|
|
131
|
-
if (wasTruncated && this.fullOutputPath) {
|
|
127
|
+
if (this.truncationResult?.truncated && this.fullOutputPath) {
|
|
132
128
|
statusParts.push(theme.fg('warning', `Output truncated. Full output: ${this.fullOutputPath}`));
|
|
133
129
|
}
|
|
134
130
|
if (statusParts.length > 0) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Box, Markdown, Spacer, Text } from '../../../tui/index.js';
|
|
2
1
|
import { theme } from '../../../core/theme.js';
|
|
2
|
+
import { Box, Markdown, Spacer, Text } from '../../../tui/index.js';
|
|
3
3
|
import { getMarkdownTheme } from '../theme/theme.js';
|
|
4
4
|
import { editorKey } from './keybinding-hints.js';
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Box, Markdown, Spacer, Text } from '../../../tui/index.js';
|
|
2
1
|
import { theme } from '../../../core/theme.js';
|
|
2
|
+
import { Box, Markdown, Spacer, Text } from '../../../tui/index.js';
|
|
3
3
|
import { getMarkdownTheme } from '../theme/theme.js';
|
|
4
4
|
import { editorKey } from './keybinding-hints.js';
|
|
5
5
|
/**
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* TUI component for managing package resources (enable/disable)
|
|
3
3
|
*/
|
|
4
|
-
import { Container, getEditorKeybindings, Input, matchesKey, Spacer, truncateToWidth, visibleWidth } from '../../../tui/index.js';
|
|
5
4
|
import { basename, dirname, join, relative } from 'node:path';
|
|
6
5
|
import { CONFIG_DIR_NAME } from '../../../config.js';
|
|
7
6
|
import { theme } from '../../../core/theme.js';
|
|
7
|
+
import { Container, getEditorKeybindings, Input, matchesKey, Spacer, truncateToWidth, visibleWidth } from '../../../tui/index.js';
|
|
8
8
|
import { DynamicBorder } from './dynamic-border.js';
|
|
9
9
|
import { rawKeyHint } from './keybinding-hints.js';
|
|
10
10
|
const RESOURCE_TYPE_LABELS = {
|
|
@@ -76,7 +76,9 @@ export class CustomEditor extends Editor {
|
|
|
76
76
|
if (endIdx !== -1) {
|
|
77
77
|
const pasteContent = stripQuotes(data.substring(startIdx, endIdx).trim());
|
|
78
78
|
// Check if the entire paste is a single absolute file path
|
|
79
|
-
if (pasteContent.startsWith('/') &&
|
|
79
|
+
if (pasteContent.startsWith('/') &&
|
|
80
|
+
!pasteContent.includes('\n') &&
|
|
81
|
+
this.onFilePaste(pasteContent)) {
|
|
80
82
|
// File paste handled — process any remaining data after the paste end marker
|
|
81
83
|
const remaining = data.substring(endIdx + BRACKETED_PASTE_END.length);
|
|
82
84
|
if (remaining.length > 0) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Box, Container, Markdown, Spacer, Text } from '../../../tui/index.js';
|
|
2
1
|
import { theme } from '../../../core/theme.js';
|
|
2
|
+
import { Box, Container, Markdown, Spacer, Text } from '../../../tui/index.js';
|
|
3
3
|
import { getMarkdownTheme } from '../theme/theme.js';
|
|
4
4
|
import { CONTENT_PAD_X, CONTENT_PAD_Y } from './layout.js';
|
|
5
5
|
/**
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
* Multi-line editor component for extensions.
|
|
3
3
|
* Supports Ctrl+G for external editor.
|
|
4
4
|
*/
|
|
5
|
-
import { Container, Editor, getEditorKeybindings, Spacer, Text } from '../../../tui/index.js';
|
|
6
5
|
import { spawnSync } from 'node:child_process';
|
|
7
6
|
import * as fs from 'node:fs';
|
|
8
7
|
import * as os from 'node:os';
|
|
9
8
|
import * as path from 'node:path';
|
|
10
9
|
import { theme } from '../../../core/theme.js';
|
|
10
|
+
import { Container, Editor, getEditorKeybindings, Spacer, Text } from '../../../tui/index.js';
|
|
11
11
|
import { getEditorTheme } from '../theme/theme.js';
|
|
12
12
|
import { DynamicBorder } from './dynamic-border.js';
|
|
13
13
|
import { appKeyHint, keyHint } from './keybinding-hints.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Simple text input component for extensions.
|
|
3
3
|
*/
|
|
4
|
-
import { Container, getEditorKeybindings, Input, Spacer, Text } from '../../../tui/index.js';
|
|
5
4
|
import { theme } from '../../../core/theme.js';
|
|
5
|
+
import { Container, getEditorKeybindings, Input, Spacer, Text } from '../../../tui/index.js';
|
|
6
6
|
import { CountdownTimer } from './countdown-timer.js';
|
|
7
7
|
import { DynamicBorder } from './dynamic-border.js';
|
|
8
8
|
import { keyHint } from './keybinding-hints.js';
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* Generic selector component for extensions.
|
|
3
3
|
* Displays a list of string options with keyboard navigation.
|
|
4
4
|
*/
|
|
5
|
-
import { Container, getEditorKeybindings, Spacer, Text } from '../../../tui/index.js';
|
|
6
5
|
import { theme } from '../../../core/theme.js';
|
|
6
|
+
import { Container, getEditorKeybindings, Spacer, Text } from '../../../tui/index.js';
|
|
7
7
|
import { CountdownTimer } from './countdown-timer.js';
|
|
8
8
|
import { DynamicBorder } from './dynamic-border.js';
|
|
9
9
|
import { keyHint, rawKeyHint } from './keybinding-hints.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { truncateToWidth, visibleWidth } from '../../../tui/index.js';
|
|
2
1
|
import { APPROVAL_MODE } from '../../../core/settings-manager.js';
|
|
3
2
|
import { theme } from '../../../core/theme.js';
|
|
3
|
+
import { truncateToWidth, visibleWidth } from '../../../tui/index.js';
|
|
4
4
|
/**
|
|
5
5
|
* Sanitize text for display in a single-line status.
|
|
6
6
|
* Removes newlines, tabs, carriage returns, and other control characters.
|
|
@@ -302,7 +302,8 @@ export class FooterComponent {
|
|
|
302
302
|
// Read from settings directly so "Accept All" in excel_exec is reflected immediately.
|
|
303
303
|
const autoApprove = this.session.settingsManager.getAutoApprove();
|
|
304
304
|
if (autoApprove) {
|
|
305
|
-
lines.push(theme.fg('success', `\u23F5\u23F5 ${APPROVAL_MODE.AUTO}`) +
|
|
305
|
+
lines.push(theme.fg('success', `\u23F5\u23F5 ${APPROVAL_MODE.AUTO}`) +
|
|
306
|
+
theme.fg('dim', ' (shift+tab to toggle)'));
|
|
306
307
|
}
|
|
307
308
|
else {
|
|
308
309
|
lines.push(theme.fg('dim', `\u23F8 ${APPROVAL_MODE.ASK} (shift+tab to toggle)`));
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Utilities for formatting keybinding hints in the UI.
|
|
3
3
|
*/
|
|
4
|
-
import { getEditorKeybindings } from '../../../tui/index.js';
|
|
5
4
|
import { theme } from '../../../core/theme.js';
|
|
5
|
+
import { getEditorKeybindings } from '../../../tui/index.js';
|
|
6
6
|
/**
|
|
7
7
|
* Format keys array as display string (e.g., ["ctrl+c", "escape"] -> "ctrl+c/escape").
|
|
8
8
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Container } from '../../../tui/index.js';
|
|
2
1
|
import { theme } from '../../../core/theme.js';
|
|
2
|
+
import { Container } from '../../../tui/index.js';
|
|
3
3
|
/** Standard horizontal padding for content that uses its own background (e.g. custom messages). */
|
|
4
4
|
export const CONTENT_PAD_X = 1;
|
|
5
5
|
/** Standard vertical padding (0 = no extra blank lines above/below). */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getOAuthProviders } from '@mariozechner/pi-ai';
|
|
2
|
-
import { Container, getEditorKeybindings, Input, Spacer, Text } from '../../../tui/index.js';
|
|
3
2
|
import { exec } from 'child_process';
|
|
4
3
|
import { theme } from '../../../core/theme.js';
|
|
4
|
+
import { Container, getEditorKeybindings, Input, Spacer, Text } from '../../../tui/index.js';
|
|
5
5
|
import { DynamicBorder } from './dynamic-border.js';
|
|
6
6
|
import { keyHint } from './keybinding-hints.js';
|
|
7
7
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// SHORTCUT PATCH: simplified — removed scoped model filtering and scope toggle UI
|
|
2
2
|
import { modelsAreEqual } from '@mariozechner/pi-ai';
|
|
3
|
-
import { Container, fuzzyFilter, getEditorKeybindings, Input, Spacer, Text } from '../../../tui/index.js';
|
|
4
3
|
import { theme } from '../../../core/theme.js';
|
|
4
|
+
import { Container, fuzzyFilter, getEditorKeybindings, Input, Spacer, Text } from '../../../tui/index.js';
|
|
5
5
|
import { DynamicBorder } from './dynamic-border.js';
|
|
6
6
|
/** Only these model IDs are shown for known providers. Unlisted providers show all models. */
|
|
7
7
|
const ALLOWED_MODELS_PER_PROVIDER = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { getOAuthProviders } from '@mariozechner/pi-ai';
|
|
2
|
-
import { Container, getEditorKeybindings, Spacer, TruncatedText } from '../../../tui/index.js';
|
|
3
2
|
import { theme } from '../../../core/theme.js';
|
|
3
|
+
import { Container, getEditorKeybindings, Spacer, TruncatedText } from '../../../tui/index.js';
|
|
4
4
|
import { DynamicBorder } from './dynamic-border.js';
|
|
5
5
|
export class OAuthSelectorComponent extends Container {
|
|
6
6
|
listContainer;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Container, getEditorKeybindings, Input, matchesKey, Spacer, Text, truncateToWidth, visibleWidth } from '../../../tui/index.js';
|
|
2
1
|
import { spawnSync } from 'node:child_process';
|
|
3
2
|
import { existsSync } from 'node:fs';
|
|
4
3
|
import { unlink } from 'node:fs/promises';
|
|
5
4
|
import * as os from 'node:os';
|
|
6
5
|
import { KeybindingsManager } from '../../../core/keybindings.js';
|
|
7
6
|
import { theme } from '../../../core/theme.js';
|
|
7
|
+
import { Container, getEditorKeybindings, Input, matchesKey, Spacer, Text, truncateToWidth, visibleWidth } from '../../../tui/index.js';
|
|
8
8
|
import { DynamicBorder } from './dynamic-border.js';
|
|
9
9
|
import { appKey, appKeyHint, keyHint } from './keybinding-hints.js';
|
|
10
10
|
import { filterAndSortSessions, hasSessionName } from './session-selector-search.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Box, Markdown, Text } from '../../../tui/index.js';
|
|
2
1
|
import { theme } from '../../../core/theme.js';
|
|
2
|
+
import { Box, Markdown, Text } from '../../../tui/index.js';
|
|
3
3
|
import { getMarkdownTheme } from '../theme/theme.js';
|
|
4
4
|
import { editorKey } from './keybinding-hints.js';
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Container, SelectList } from '../../../tui/index.js';
|
|
2
1
|
import { getAvailableThemes } from '../../../core/theme.js';
|
|
2
|
+
import { Container, SelectList } from '../../../tui/index.js';
|
|
3
3
|
import { getSelectListTheme } from '../theme/theme.js';
|
|
4
4
|
import { DynamicBorder } from './dynamic-border.js';
|
|
5
5
|
/**
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Box, Container, getCapabilities, getImageDimensions, Image, imageFallback, Spacer, Text } from '../../../tui/index.js';
|
|
2
1
|
import * as os from 'node:os';
|
|
3
2
|
import stripAnsi from 'strip-ansi';
|
|
4
3
|
import { theme } from '../../../core/theme.js';
|
|
5
4
|
import { computeEditDiff } from '../../../core/tools/edit-diff.js';
|
|
6
5
|
import { allTools } from '../../../core/tools/index.js';
|
|
7
6
|
import { formatSize } from '../../../core/tools/truncate.js';
|
|
7
|
+
import { Box, Container, getCapabilities, getImageDimensions, Image, imageFallback, Spacer, Text } from '../../../tui/index.js';
|
|
8
8
|
import { convertToPng } from '../../../utils/image-convert.js';
|
|
9
9
|
import { sanitizeBinaryOutput } from '../../../utils/shell.js';
|
|
10
10
|
import { getLanguageFromPath, highlightCode } from '../theme/theme.js';
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
* existing updateResult/setExpanded calls still work), but they render zero lines
|
|
11
11
|
* individually — the group's Box renders the unified tree.
|
|
12
12
|
*/
|
|
13
|
-
import { Box, Container, Spacer, Text } from '../../../tui/index.js';
|
|
14
13
|
import { theme } from '../../../core/theme.js';
|
|
14
|
+
import { Box, Container, Spacer, Text } from '../../../tui/index.js';
|
|
15
15
|
import { PREFIX_WIDTH, prefixLines, toolPrefix } from './layout.js';
|
|
16
16
|
import { ToolExecutionComponent } from './tool-execution.js';
|
|
17
17
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Container, getEditorKeybindings, Input, matchesKey, Spacer, Text, TruncatedText, truncateToWidth } from '../../../tui/index.js';
|
|
2
1
|
import { theme } from '../../../core/theme.js';
|
|
2
|
+
import { Container, getEditorKeybindings, Input, matchesKey, Spacer, Text, TruncatedText, truncateToWidth } from '../../../tui/index.js';
|
|
3
3
|
import { DynamicBorder } from './dynamic-border.js';
|
|
4
4
|
import { keyHint } from './keybinding-hints.js';
|
|
5
5
|
class TreeList {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Container, getEditorKeybindings, Spacer, Text, truncateToWidth } from '../../../tui/index.js';
|
|
2
1
|
import { theme } from '../../../core/theme.js';
|
|
2
|
+
import { Container, getEditorKeybindings, Spacer, Text, truncateToWidth } from '../../../tui/index.js';
|
|
3
3
|
import { DynamicBorder } from './dynamic-border.js';
|
|
4
4
|
/**
|
|
5
5
|
* Custom user message list component with selection
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Box, Container, Markdown, Spacer, Text } from '../../../tui/index.js';
|
|
2
1
|
import { theme } from '../../../core/theme.js';
|
|
2
|
+
import { Box, Container, Markdown, Spacer, Text } from '../../../tui/index.js';
|
|
3
3
|
import { formatAttachmentLabels } from '../file-attachments.js';
|
|
4
4
|
import { getMarkdownTheme } from '../theme/theme.js';
|
|
5
5
|
import { CONTENT_PAD_X, CONTENT_PAD_Y } from './layout.js';
|