shortcutxl 0.2.19 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/agent-docs/api-reference.json +2041 -0
- package/agent-docs/examples/extensions/built-in-tool-renderer.ts +2 -13
- package/agent-docs/examples/extensions/claude-code.ts +69 -0
- package/agent-docs/examples/extensions/custom-provider-gitlab-duo/test.ts +1 -7
- package/agent-docs/examples/sdk/04-skills.ts +1 -6
- package/dist/cli/config-selector.js +1 -1
- package/dist/cli/session-picker.js +1 -1
- package/dist/config.js +15 -5
- package/dist/core/agent-loop.js +8 -9
- package/dist/core/agent-session.js +102 -462
- package/dist/core/agent.js +1 -0
- package/dist/core/export-html/template.js +14 -2
- package/dist/core/extensions/loader.js +4 -4
- package/dist/core/keybindings.js +1 -1
- package/dist/core/run-agent.js +84 -0
- package/dist/core/session/extension-emitter.js +36 -0
- package/dist/core/session/model-manager.js +111 -0
- package/dist/core/session/persistence-handler.js +104 -0
- package/dist/core/session/queue-tracker.js +91 -0
- package/dist/core/session/tool-registry.js +231 -0
- package/dist/core/settings-manager.js +11 -3
- package/dist/core/theme.js +1 -1
- package/dist/core/tools/edit.js +1 -1
- package/dist/core/tools/find.js +1 -1
- package/dist/core/tools/grep.js +1 -1
- package/dist/core/tools/ls.js +1 -1
- package/dist/core/tools/read.js +1 -1
- package/dist/core/tools/write.js +1 -1
- package/dist/custom/dev/index.js +16 -1
- package/dist/custom/excel-session.js +2 -2
- package/dist/custom/exec-mode-command.js +27 -0
- package/dist/custom/install-utils.js +1 -4
- package/dist/custom/new-sheet/api-guidelines.js +83 -0
- package/dist/custom/new-sheet/api-lookup.js +69 -0
- package/dist/custom/new-sheet/api-overlay.js +133 -0
- package/dist/custom/new-sheet/api-reference-loader.js +29 -0
- package/dist/custom/new-sheet/cell-diff/address-utils.js +80 -0
- package/dist/custom/new-sheet/cell-diff/cell-categorizer.js +100 -0
- package/dist/custom/new-sheet/cell-diff/cell-diff-formatter.js +201 -0
- package/dist/custom/new-sheet/cell-diff/index.js +23 -0
- package/dist/custom/new-sheet/cell-diff/types.js +33 -0
- package/dist/custom/new-sheet/mutation-tracker.js +358 -0
- package/dist/custom/new-sheet/sandbox-globals.js +118 -0
- package/dist/custom/new-sheet/sdk-types.js +9 -0
- package/dist/custom/new-sheet/sheet-engine-poc.js +112 -0
- package/dist/custom/new-sheet/sheet-engine.js +146 -0
- package/dist/custom/new-sheet/sheet-exec.js +219 -0
- package/dist/custom/new-sheet-command.js +24 -0
- package/dist/custom/preflight.js +28 -18
- package/dist/custom/prompts/action.js +33 -12
- package/dist/custom/prompts/shared.js +0 -6
- package/dist/custom/providers/llm-usage.js +1 -5
- package/dist/custom/providers/shortcut-invoke.js +3 -4
- package/dist/custom/providers/shortcut-stream.js +3 -4
- package/dist/custom/sandbox/index.js +6 -10
- package/dist/custom/sandbox/lib/bwrap.js +93 -0
- package/dist/custom/sandbox/lib/index.js +20 -0
- package/dist/custom/sandbox/lib/manager.js +87 -0
- package/dist/custom/sandbox/lib/network/domain-filter.js +29 -0
- package/dist/custom/sandbox/lib/network/http-proxy.js +172 -0
- package/dist/custom/sandbox/lib/network/index.js +5 -0
- package/dist/custom/sandbox/lib/network/proxy.js +145 -0
- package/dist/custom/sandbox/lib/network/socks-proxy.js +269 -0
- package/dist/custom/sandbox/{sandbox-paths.js → lib/paths.js} +1 -3
- package/dist/custom/sandbox/lib/resolve.js +320 -0
- package/dist/custom/sandbox/lib/smoke.js +87 -0
- package/dist/custom/sandbox/lib/types.js +9 -0
- package/dist/custom/sandbox/lib/wrap-command.js +110 -0
- package/dist/custom/sandbox/{wsl-detect.js → lib/wsl-detect.js} +10 -14
- package/dist/custom/sandbox/lib/wsl-setup.js +152 -0
- package/dist/custom/sandbox/sandbox-bash-tool.js +12 -7
- package/dist/custom/sandbox/sandbox-command.js +17 -16
- package/dist/custom/sandbox/sandbox-executor.js +13 -38
- package/dist/custom/sandbox/sandbox-manager.js +43 -31
- package/dist/custom/sandbox/sandbox-prompt.js +2 -2
- package/dist/custom/sandbox/tests/test-helpers.js +24 -0
- package/dist/custom/sheet-api/api-guidelines.js +83 -0
- package/dist/custom/sheet-api/api-lookup.js +69 -0
- package/dist/custom/sheet-api/api-overlay.js +133 -0
- package/dist/custom/sheet-api/api-reference-loader.js +29 -0
- package/dist/custom/sync-xll.js +1 -1
- package/dist/custom/tools/approval.js +2 -2
- package/dist/custom/tools/excel-exec.js +29 -9
- package/dist/custom/tools/llm-analysis.js +54 -29
- package/dist/custom/tools/task/task.js +4 -7
- package/dist/custom/tools/todo-list.js +5 -1
- package/dist/custom/tracing/session-upload.js +4 -1
- package/dist/custom/uninstall.js +31 -20
- package/dist/main.js +77 -22
- package/dist/modes/interactive/components/assistant-message.js +1 -1
- package/dist/modes/interactive/components/bash-execution.js +5 -9
- package/dist/modes/interactive/components/branch-summary-message.js +1 -1
- package/dist/modes/interactive/components/compaction-summary-message.js +1 -1
- package/dist/modes/interactive/components/config-selector.js +1 -1
- package/dist/modes/interactive/components/custom-editor.js +3 -1
- package/dist/modes/interactive/components/custom-message.js +1 -1
- package/dist/modes/interactive/components/extension-editor.js +1 -1
- package/dist/modes/interactive/components/extension-input.js +1 -1
- package/dist/modes/interactive/components/extension-selector.js +1 -1
- package/dist/modes/interactive/components/footer.js +3 -2
- package/dist/modes/interactive/components/keybinding-hints.js +1 -1
- package/dist/modes/interactive/components/layout.js +1 -1
- package/dist/modes/interactive/components/login-dialog.js +1 -1
- package/dist/modes/interactive/components/model-selector.js +1 -1
- package/dist/modes/interactive/components/oauth-selector.js +1 -1
- package/dist/modes/interactive/components/session-selector.js +1 -1
- package/dist/modes/interactive/components/skill-invocation-message.js +1 -1
- package/dist/modes/interactive/components/theme-selector.js +1 -1
- package/dist/modes/interactive/components/tool-execution.js +1 -1
- package/dist/modes/interactive/components/tool-group.js +1 -1
- package/dist/modes/interactive/components/tree-selector.js +1 -1
- package/dist/modes/interactive/components/user-message-selector.js +1 -1
- package/dist/modes/interactive/components/user-message.js +1 -1
- package/dist/modes/interactive/file-attachments.js +4 -9
- package/dist/modes/interactive/interactive-mode.js +8 -136
- package/dist/modes/print-mode.js +2 -1
- package/dist/modes/rpc/rpc-mode.js +3 -4
- package/dist/tui/autocomplete.js +543 -555
- package/dist/tui/components/box.js +93 -89
- package/dist/tui/components/cancellable-loader.js +23 -23
- package/dist/tui/components/editor.js +1671 -1642
- package/dist/tui/components/image.js +67 -63
- package/dist/tui/components/input.js +408 -408
- package/dist/tui/components/loader.js +42 -42
- package/dist/tui/components/markdown.js +612 -617
- package/dist/tui/components/select-list.js +148 -142
- package/dist/tui/components/settings-list.js +187 -172
- package/dist/tui/components/spacer.js +17 -17
- package/dist/tui/components/text.js +83 -80
- package/dist/tui/components/truncated-text.js +43 -43
- package/dist/tui/editor-component.js +1 -1
- package/dist/tui/fuzzy.js +86 -88
- package/dist/tui/get-east-asian-width/index.js +13 -17
- package/dist/tui/get-east-asian-width/lookup.js +386 -384
- package/dist/tui/index.js +54 -22
- package/dist/tui/keybindings.js +92 -95
- package/dist/tui/keys.js +794 -806
- package/dist/tui/kill-ring.js +31 -33
- package/dist/tui/stdin-buffer.js +236 -241
- package/dist/tui/terminal-image.js +210 -224
- package/dist/tui/terminal.js +235 -242
- package/dist/tui/tui/autocomplete.js +543 -555
- package/dist/tui/tui/components/box.js +91 -89
- package/dist/tui/tui/components/cancellable-loader.js +23 -23
- package/dist/tui/tui/components/editor.js +1671 -1642
- package/dist/tui/tui/components/image.js +67 -63
- package/dist/tui/tui/components/input.js +408 -408
- package/dist/tui/tui/components/loader.js +42 -42
- package/dist/tui/tui/components/markdown.js +612 -617
- package/dist/tui/tui/components/select-list.js +148 -142
- package/dist/tui/tui/components/settings-list.js +187 -172
- package/dist/tui/tui/components/spacer.js +17 -17
- package/dist/tui/tui/components/text.js +81 -80
- package/dist/tui/tui/components/truncated-text.js +43 -43
- package/dist/tui/tui/editor-component.js +1 -1
- package/dist/tui/tui/fuzzy.js +86 -88
- package/dist/tui/tui/get-east-asian-width/index.js +13 -17
- package/dist/tui/tui/get-east-asian-width/lookup.js +386 -384
- package/dist/tui/tui/index.js +54 -22
- package/dist/tui/tui/keybindings.js +92 -95
- package/dist/tui/tui/keys.js +794 -806
- package/dist/tui/tui/kill-ring.js +31 -33
- package/dist/tui/tui/stdin-buffer.js +236 -241
- package/dist/tui/tui/terminal-image.js +210 -224
- package/dist/tui/tui/terminal.js +235 -242
- package/dist/tui/tui/tui.js +908 -920
- package/dist/tui/tui/undo-stack.js +17 -17
- package/dist/tui/tui/utils.js +647 -674
- package/dist/tui/tui.js +908 -920
- package/dist/tui/undo-stack.js +17 -17
- package/dist/tui/utils.js +647 -674
- package/dist/utils/log.js +51 -0
- package/package.json +9 -5
- package/skills/{com-advanced-api → advanced-com-api}/SKILL.md +1 -1
- package/skills/advanced-com-api/excel-type-library.py +30935 -0
- package/skills/advanced-com-api/office-type-library.py +11220 -0
- package/skills/sec-edgar/sec_to_pdf.py +26 -28
- package/wsl/alpine-minirootfs.tar.gz +0 -0
- package/xll/ShortcutXL.xll +0 -0
- package/xll/modules/debug_render.py +289 -0
- package/xll/modules/shortcut_xl/_com.py +10 -11
- package/xll/modules/shortcut_xl/_diff_highlight.py +17 -15
- package/xll/modules/shortcut_xl/_exec_entry.py +32 -14
- package/xll/modules/shortcut_xl/_log.py +4 -4
- package/xll/modules/shortcut_xl/_managed.py +25 -8
- package/xll/modules/shortcut_xl/_registry.py +12 -7
- package/xll/modules/shortcut_xl/_threading.py +33 -20
- package/xll/modules/shortcut_xl/_tracking.py +31 -14
- package/xll/modules/shortcut_xl/api/categorize.py +31 -17
- package/xll/modules/shortcut_xl/api/format.py +16 -26
- package/xll/modules/shortcut_xl/api/named_ranges.py +10 -10
- package/xll/modules/shortcut_xl/api/picture.py +6 -6
- package/xll/modules/shortcut_xl/api/range_formatter.py +44 -22
- package/xll/modules/shortcut_xl/api/style.py +3 -3
- package/xll/modules/shortcut_xl/api/utils/helpers.py +16 -26
- package/xll/modules/shortcut_xl/api/utils/numerical.py +6 -1
- package/xll/modules/shortcut_xl/api/utils/ranges.py +12 -7
- package/xll/modules/shortcut_xl/api/workbook.py +14 -28
- package/xll/modules/shortcut_xl/api/worksheet.py +33 -49
- package/xll/modules/shortcut_xl/api-reference.py +9 -5
- package/xll/python/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/from_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/functools.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_process.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_trio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/_asyncio.py +39 -23
- package/xll/python/Lib/site-packages/anyio/_backends/_trio.py +2 -5
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_signals.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tasks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_typedattr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/_fileio.py +12 -10
- package/xll/python/Lib/site-packages/anyio/_core/_subprocesses.py +2 -8
- package/xll/python/Lib/site-packages/anyio/_core/_synchronization.py +4 -0
- package/xll/python/Lib/site-packages/anyio/_core/_tempfile.py +1 -4
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_sockets.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_streams.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_tasks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/_eventloop.py +2 -7
- package/xll/python/Lib/site-packages/anyio/abc/_sockets.py +5 -11
- package/xll/python/Lib/site-packages/anyio/abc/_streams.py +14 -20
- package/xll/python/Lib/site-packages/anyio/functools.py +51 -17
- package/xll/python/Lib/site-packages/anyio/pytest_plugin.py +62 -1
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/stapled.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/file.py +5 -5
- package/xll/python/Lib/site-packages/anyio/streams/tls.py +6 -9
- package/xll/python/Lib/site-packages/anyio/to_thread.py +3 -3
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/METADATA +14 -5
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/RECORD +21 -21
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/WHEEL +1 -1
- package/xll/python/Lib/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/incremental_tree.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_abnf.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_events.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_headers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_readers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_receivebuffer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_state.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_writers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_ssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_synchronization.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_trace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http11.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http2.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/interfaces.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/anyio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/auto.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/mock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/sync.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/trio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http11.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http2.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/__version__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_client.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_config.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_content.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_decoders.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_multipart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_types.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_urlparse.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_urls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/asgi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/default.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/mock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/wsgi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +1 -1
- package/xll/python/Lib/site-packages/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/_constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/cell.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/read_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/rich_text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_3d.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/area_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/axis.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bar_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bubble_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/chartspace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/data_source.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/descriptors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/error_bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/label.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/layout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/legend.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/line_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/marker.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pie_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pivot.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/plotarea.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/print_settings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/radar_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reader.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/scatter_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series_factory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/shapes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/stock_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/surface_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/title.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/trendline.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/updown_bars.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/chartsheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/publish.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/relation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/author.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comment_sheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comments.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/shape_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/abc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/numbers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/product.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/singleton.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/strings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/container.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/namespace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/nested.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/sequence.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/serialisable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/slots.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/colors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/connector.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/effect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/fill.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/geometry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/graphic.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/image.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/line.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/relation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/spreadsheet_drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/xdr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/formatting.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/rule.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/tokenizer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/translate.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/extended.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/interface.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/manifest.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/relationship.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/fields.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/record.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/drawings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/strings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/alignment.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/borders.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/builtins.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/cell_style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/colors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/differential.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fills.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fonts.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/named_styles.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/numbers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/styleable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/stylesheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/bound_dictionary.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/cell.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/dataframe.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/escape.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/formulas.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/indexed_list.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/inference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/units.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/child.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/defined_name.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/external_reference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/function_group.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/smart_tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/web.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/external.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_read_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_reader.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_write_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_range.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_watch.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/controls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/copier.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/datavalidation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/dimensions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/errors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/filters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/formula.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/header_footer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/hyperlink.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/merge.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/ole.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/page.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/pagebreak.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/print_settings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/related.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/scenario.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/smart_tag.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/worksheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/functions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/RECORD +3 -3
- package/xll/python/Scripts/httpx.exe +0 -0
- package/xll/python/Scripts/pip.exe +0 -0
- package/xll/python/Scripts/pip3.12.exe +0 -0
- package/xll/python/Scripts/pip3.exe +0 -0
- package/dist/custom/ensure-excel.js +0 -63
- package/dist/custom/sandbox/network/index.js +0 -8
- package/dist/custom/sandbox/network/network-proxy.js +0 -136
- package/dist/custom/sandbox/network/proxy-worker.py +0 -257
- package/dist/custom/sandbox/sandbox-config.js +0 -153
- package/dist/custom/sandbox/sandbox-smoke.js +0 -49
- package/dist/custom/sandbox/wsl-setup.js +0 -92
- package/dist/custom/tools/task/agents.js +0 -6
- package/skills/com-advanced-api/excel-type-library.py +0 -27767
- package/skills/com-advanced-api/office-type-library.py +0 -10867
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/INSTALLER +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/entry_points.txt +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/licenses/LICENSE +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/top_level.txt +0 -0
|
@@ -1,629 +1,624 @@
|
|
|
1
|
-
import { marked } from
|
|
2
|
-
import { isImageLine } from
|
|
3
|
-
import { applyBackgroundToLine, visibleWidth, wrapTextWithAnsi } from
|
|
1
|
+
import { marked } from 'marked';
|
|
2
|
+
import { isImageLine } from '../terminal-image.js';
|
|
3
|
+
import { applyBackgroundToLine, visibleWidth, wrapTextWithAnsi } from '../utils.js';
|
|
4
4
|
export class Markdown {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
// Calculate available width for content (subtract horizontal padding)
|
|
37
|
-
const contentWidth = Math.max(1, width - this.paddingX * 2);
|
|
38
|
-
// Don't render anything if there's no actual text
|
|
39
|
-
if (!this.text || this.text.trim() === "") {
|
|
40
|
-
const result = [];
|
|
41
|
-
// Update cache
|
|
42
|
-
this.cachedText = this.text;
|
|
43
|
-
this.cachedWidth = width;
|
|
44
|
-
this.cachedLines = result;
|
|
45
|
-
return result;
|
|
46
|
-
}
|
|
47
|
-
// Replace tabs with 3 spaces for consistent rendering
|
|
48
|
-
const normalizedText = this.text.replace(/\t/g, " ");
|
|
49
|
-
// Parse markdown to HTML-like tokens
|
|
50
|
-
const tokens = marked.lexer(normalizedText);
|
|
51
|
-
// Convert tokens to styled terminal output
|
|
52
|
-
const renderedLines = [];
|
|
53
|
-
for (let i = 0; i < tokens.length; i++) {
|
|
54
|
-
const token = tokens[i];
|
|
55
|
-
const nextToken = tokens[i + 1];
|
|
56
|
-
const tokenLines = this.renderToken(token, contentWidth, nextToken?.type);
|
|
57
|
-
renderedLines.push(...tokenLines);
|
|
58
|
-
}
|
|
59
|
-
// Wrap lines (NO padding, NO background yet)
|
|
60
|
-
const wrappedLines = [];
|
|
61
|
-
for (const line of renderedLines) {
|
|
62
|
-
if (isImageLine(line)) {
|
|
63
|
-
wrappedLines.push(line);
|
|
64
|
-
}
|
|
65
|
-
else {
|
|
66
|
-
wrappedLines.push(...wrapTextWithAnsi(line, contentWidth));
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
// Add margins and background to each wrapped line
|
|
70
|
-
const leftMargin = " ".repeat(this.paddingX);
|
|
71
|
-
const rightMargin = " ".repeat(this.paddingX);
|
|
72
|
-
const bgFn = this.defaultTextStyle?.bgColor;
|
|
73
|
-
const contentLines = [];
|
|
74
|
-
for (const line of wrappedLines) {
|
|
75
|
-
if (isImageLine(line)) {
|
|
76
|
-
contentLines.push(line);
|
|
77
|
-
continue;
|
|
78
|
-
}
|
|
79
|
-
const lineWithMargins = leftMargin + line + rightMargin;
|
|
80
|
-
if (bgFn) {
|
|
81
|
-
contentLines.push(applyBackgroundToLine(lineWithMargins, width, bgFn));
|
|
82
|
-
}
|
|
83
|
-
else {
|
|
84
|
-
// No background - just pad to width
|
|
85
|
-
const visibleLen = visibleWidth(lineWithMargins);
|
|
86
|
-
const paddingNeeded = Math.max(0, width - visibleLen);
|
|
87
|
-
contentLines.push(lineWithMargins + " ".repeat(paddingNeeded));
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
// Add top/bottom padding (empty lines)
|
|
91
|
-
const emptyLine = " ".repeat(width);
|
|
92
|
-
const emptyLines = [];
|
|
93
|
-
for (let i = 0; i < this.paddingY; i++) {
|
|
94
|
-
const line = bgFn ? applyBackgroundToLine(emptyLine, width, bgFn) : emptyLine;
|
|
95
|
-
emptyLines.push(line);
|
|
96
|
-
}
|
|
97
|
-
// Combine top padding, content, and bottom padding
|
|
98
|
-
const result = [...emptyLines, ...contentLines, ...emptyLines];
|
|
99
|
-
// Update cache
|
|
100
|
-
this.cachedText = this.text;
|
|
101
|
-
this.cachedWidth = width;
|
|
102
|
-
this.cachedLines = result;
|
|
103
|
-
return result.length > 0 ? result : [""];
|
|
104
|
-
}
|
|
105
|
-
/**
|
|
106
|
-
* Apply default text style to a string.
|
|
107
|
-
* This is the base styling applied to all text content.
|
|
108
|
-
* NOTE: Background color is NOT applied here - it's applied at the padding stage
|
|
109
|
-
* to ensure it extends to the full line width.
|
|
110
|
-
*/
|
|
111
|
-
applyDefaultStyle(text) {
|
|
112
|
-
if (!this.defaultTextStyle) {
|
|
113
|
-
return text;
|
|
114
|
-
}
|
|
115
|
-
let styled = text;
|
|
116
|
-
// Apply foreground color (NOT background - that's applied at padding stage)
|
|
117
|
-
if (this.defaultTextStyle.color) {
|
|
118
|
-
styled = this.defaultTextStyle.color(styled);
|
|
119
|
-
}
|
|
120
|
-
// Apply text decorations using this.theme
|
|
121
|
-
if (this.defaultTextStyle.bold) {
|
|
122
|
-
styled = this.theme.bold(styled);
|
|
123
|
-
}
|
|
124
|
-
if (this.defaultTextStyle.italic) {
|
|
125
|
-
styled = this.theme.italic(styled);
|
|
126
|
-
}
|
|
127
|
-
if (this.defaultTextStyle.strikethrough) {
|
|
128
|
-
styled = this.theme.strikethrough(styled);
|
|
129
|
-
}
|
|
130
|
-
if (this.defaultTextStyle.underline) {
|
|
131
|
-
styled = this.theme.underline(styled);
|
|
132
|
-
}
|
|
133
|
-
return styled;
|
|
5
|
+
text;
|
|
6
|
+
paddingX; // Left/right padding
|
|
7
|
+
paddingY; // Top/bottom padding
|
|
8
|
+
defaultTextStyle;
|
|
9
|
+
theme;
|
|
10
|
+
defaultStylePrefix;
|
|
11
|
+
// Cache for rendered output
|
|
12
|
+
cachedText;
|
|
13
|
+
cachedWidth;
|
|
14
|
+
cachedLines;
|
|
15
|
+
constructor(text, paddingX, paddingY, theme, defaultTextStyle) {
|
|
16
|
+
this.text = text;
|
|
17
|
+
this.paddingX = paddingX;
|
|
18
|
+
this.paddingY = paddingY;
|
|
19
|
+
this.theme = theme;
|
|
20
|
+
this.defaultTextStyle = defaultTextStyle;
|
|
21
|
+
}
|
|
22
|
+
setText(text) {
|
|
23
|
+
this.text = text;
|
|
24
|
+
this.invalidate();
|
|
25
|
+
}
|
|
26
|
+
invalidate() {
|
|
27
|
+
this.cachedText = undefined;
|
|
28
|
+
this.cachedWidth = undefined;
|
|
29
|
+
this.cachedLines = undefined;
|
|
30
|
+
}
|
|
31
|
+
render(width) {
|
|
32
|
+
// Check cache
|
|
33
|
+
if (this.cachedLines && this.cachedText === this.text && this.cachedWidth === width) {
|
|
34
|
+
return this.cachedLines;
|
|
134
35
|
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
styled = this.defaultTextStyle.color(styled);
|
|
146
|
-
}
|
|
147
|
-
if (this.defaultTextStyle.bold) {
|
|
148
|
-
styled = this.theme.bold(styled);
|
|
149
|
-
}
|
|
150
|
-
if (this.defaultTextStyle.italic) {
|
|
151
|
-
styled = this.theme.italic(styled);
|
|
152
|
-
}
|
|
153
|
-
if (this.defaultTextStyle.strikethrough) {
|
|
154
|
-
styled = this.theme.strikethrough(styled);
|
|
155
|
-
}
|
|
156
|
-
if (this.defaultTextStyle.underline) {
|
|
157
|
-
styled = this.theme.underline(styled);
|
|
158
|
-
}
|
|
159
|
-
const sentinelIndex = styled.indexOf(sentinel);
|
|
160
|
-
this.defaultStylePrefix = sentinelIndex >= 0 ? styled.slice(0, sentinelIndex) : "";
|
|
161
|
-
return this.defaultStylePrefix;
|
|
162
|
-
}
|
|
163
|
-
getStylePrefix(styleFn) {
|
|
164
|
-
const sentinel = "\u0000";
|
|
165
|
-
const styled = styleFn(sentinel);
|
|
166
|
-
const sentinelIndex = styled.indexOf(sentinel);
|
|
167
|
-
return sentinelIndex >= 0 ? styled.slice(0, sentinelIndex) : "";
|
|
168
|
-
}
|
|
169
|
-
getDefaultInlineStyleContext() {
|
|
170
|
-
return {
|
|
171
|
-
applyText: (text) => this.applyDefaultStyle(text),
|
|
172
|
-
stylePrefix: this.getDefaultStylePrefix(),
|
|
173
|
-
};
|
|
36
|
+
// Calculate available width for content (subtract horizontal padding)
|
|
37
|
+
const contentWidth = Math.max(1, width - this.paddingX * 2);
|
|
38
|
+
// Don't render anything if there's no actual text
|
|
39
|
+
if (!this.text || this.text.trim() === '') {
|
|
40
|
+
const result = [];
|
|
41
|
+
// Update cache
|
|
42
|
+
this.cachedText = this.text;
|
|
43
|
+
this.cachedWidth = width;
|
|
44
|
+
this.cachedLines = result;
|
|
45
|
+
return result;
|
|
174
46
|
}
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
47
|
+
// Replace tabs with 3 spaces for consistent rendering
|
|
48
|
+
const normalizedText = this.text.replace(/\t/g, ' ');
|
|
49
|
+
// Parse markdown to HTML-like tokens
|
|
50
|
+
const tokens = marked.lexer(normalizedText);
|
|
51
|
+
// Convert tokens to styled terminal output
|
|
52
|
+
const renderedLines = [];
|
|
53
|
+
for (let i = 0; i < tokens.length; i++) {
|
|
54
|
+
const token = tokens[i];
|
|
55
|
+
const nextToken = tokens[i + 1];
|
|
56
|
+
const tokenLines = this.renderToken(token, contentWidth, nextToken?.type);
|
|
57
|
+
renderedLines.push(...tokenLines);
|
|
58
|
+
}
|
|
59
|
+
// Wrap lines (NO padding, NO background yet)
|
|
60
|
+
const wrappedLines = [];
|
|
61
|
+
for (const line of renderedLines) {
|
|
62
|
+
if (isImageLine(line)) {
|
|
63
|
+
wrappedLines.push(line);
|
|
64
|
+
} else {
|
|
65
|
+
wrappedLines.push(...wrapTextWithAnsi(line, contentWidth));
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
// Add margins and background to each wrapped line
|
|
69
|
+
const leftMargin = ' '.repeat(this.paddingX);
|
|
70
|
+
const rightMargin = ' '.repeat(this.paddingX);
|
|
71
|
+
const bgFn = this.defaultTextStyle?.bgColor;
|
|
72
|
+
const contentLines = [];
|
|
73
|
+
for (const line of wrappedLines) {
|
|
74
|
+
if (isImageLine(line)) {
|
|
75
|
+
contentLines.push(line);
|
|
76
|
+
continue;
|
|
77
|
+
}
|
|
78
|
+
const lineWithMargins = leftMargin + line + rightMargin;
|
|
79
|
+
if (bgFn) {
|
|
80
|
+
contentLines.push(applyBackgroundToLine(lineWithMargins, width, bgFn));
|
|
81
|
+
} else {
|
|
82
|
+
// No background - just pad to width
|
|
83
|
+
const visibleLen = visibleWidth(lineWithMargins);
|
|
84
|
+
const paddingNeeded = Math.max(0, width - visibleLen);
|
|
85
|
+
contentLines.push(lineWithMargins + ' '.repeat(paddingNeeded));
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
// Add top/bottom padding (empty lines)
|
|
89
|
+
const emptyLine = ' '.repeat(width);
|
|
90
|
+
const emptyLines = [];
|
|
91
|
+
for (let i = 0; i < this.paddingY; i++) {
|
|
92
|
+
const line = bgFn ? applyBackgroundToLine(emptyLine, width, bgFn) : emptyLine;
|
|
93
|
+
emptyLines.push(line);
|
|
94
|
+
}
|
|
95
|
+
// Combine top padding, content, and bottom padding
|
|
96
|
+
const result = [...emptyLines, ...contentLines, ...emptyLines];
|
|
97
|
+
// Update cache
|
|
98
|
+
this.cachedText = this.text;
|
|
99
|
+
this.cachedWidth = width;
|
|
100
|
+
this.cachedLines = result;
|
|
101
|
+
return result.length > 0 ? result : [''];
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* Apply default text style to a string.
|
|
105
|
+
* This is the base styling applied to all text content.
|
|
106
|
+
* NOTE: Background color is NOT applied here - it's applied at the padding stage
|
|
107
|
+
* to ensure it extends to the full line width.
|
|
108
|
+
*/
|
|
109
|
+
applyDefaultStyle(text) {
|
|
110
|
+
if (!this.defaultTextStyle) {
|
|
111
|
+
return text;
|
|
112
|
+
}
|
|
113
|
+
let styled = text;
|
|
114
|
+
// Apply foreground color (NOT background - that's applied at padding stage)
|
|
115
|
+
if (this.defaultTextStyle.color) {
|
|
116
|
+
styled = this.defaultTextStyle.color(styled);
|
|
117
|
+
}
|
|
118
|
+
// Apply text decorations using this.theme
|
|
119
|
+
if (this.defaultTextStyle.bold) {
|
|
120
|
+
styled = this.theme.bold(styled);
|
|
121
|
+
}
|
|
122
|
+
if (this.defaultTextStyle.italic) {
|
|
123
|
+
styled = this.theme.italic(styled);
|
|
124
|
+
}
|
|
125
|
+
if (this.defaultTextStyle.strikethrough) {
|
|
126
|
+
styled = this.theme.strikethrough(styled);
|
|
127
|
+
}
|
|
128
|
+
if (this.defaultTextStyle.underline) {
|
|
129
|
+
styled = this.theme.underline(styled);
|
|
130
|
+
}
|
|
131
|
+
return styled;
|
|
132
|
+
}
|
|
133
|
+
getDefaultStylePrefix() {
|
|
134
|
+
if (!this.defaultTextStyle) {
|
|
135
|
+
return '';
|
|
136
|
+
}
|
|
137
|
+
if (this.defaultStylePrefix !== undefined) {
|
|
138
|
+
return this.defaultStylePrefix;
|
|
139
|
+
}
|
|
140
|
+
const sentinel = '\u0000';
|
|
141
|
+
let styled = sentinel;
|
|
142
|
+
if (this.defaultTextStyle.color) {
|
|
143
|
+
styled = this.defaultTextStyle.color(styled);
|
|
144
|
+
}
|
|
145
|
+
if (this.defaultTextStyle.bold) {
|
|
146
|
+
styled = this.theme.bold(styled);
|
|
147
|
+
}
|
|
148
|
+
if (this.defaultTextStyle.italic) {
|
|
149
|
+
styled = this.theme.italic(styled);
|
|
150
|
+
}
|
|
151
|
+
if (this.defaultTextStyle.strikethrough) {
|
|
152
|
+
styled = this.theme.strikethrough(styled);
|
|
153
|
+
}
|
|
154
|
+
if (this.defaultTextStyle.underline) {
|
|
155
|
+
styled = this.theme.underline(styled);
|
|
156
|
+
}
|
|
157
|
+
const sentinelIndex = styled.indexOf(sentinel);
|
|
158
|
+
this.defaultStylePrefix = sentinelIndex >= 0 ? styled.slice(0, sentinelIndex) : '';
|
|
159
|
+
return this.defaultStylePrefix;
|
|
160
|
+
}
|
|
161
|
+
getStylePrefix(styleFn) {
|
|
162
|
+
const sentinel = '\u0000';
|
|
163
|
+
const styled = styleFn(sentinel);
|
|
164
|
+
const sentinelIndex = styled.indexOf(sentinel);
|
|
165
|
+
return sentinelIndex >= 0 ? styled.slice(0, sentinelIndex) : '';
|
|
166
|
+
}
|
|
167
|
+
getDefaultInlineStyleContext() {
|
|
168
|
+
return {
|
|
169
|
+
applyText: (text) => this.applyDefaultStyle(text),
|
|
170
|
+
stylePrefix: this.getDefaultStylePrefix()
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
renderToken(token, width, nextTokenType) {
|
|
174
|
+
const lines = [];
|
|
175
|
+
switch (token.type) {
|
|
176
|
+
case 'heading': {
|
|
177
|
+
const headingLevel = token.depth;
|
|
178
|
+
const headingPrefix = `${'#'.repeat(headingLevel)} `;
|
|
179
|
+
const headingText = this.renderInlineTokens(token.tokens || []);
|
|
180
|
+
let styledHeading;
|
|
181
|
+
if (headingLevel === 1) {
|
|
182
|
+
styledHeading = this.theme.heading(this.theme.bold(this.theme.underline(headingText)));
|
|
183
|
+
} else if (headingLevel === 2) {
|
|
184
|
+
styledHeading = this.theme.heading(this.theme.bold(headingText));
|
|
185
|
+
} else {
|
|
186
|
+
styledHeading = this.theme.heading(this.theme.bold(headingPrefix + headingText));
|
|
187
|
+
}
|
|
188
|
+
lines.push(styledHeading);
|
|
189
|
+
if (nextTokenType !== 'space') {
|
|
190
|
+
lines.push(''); // Add spacing after headings (unless space token follows)
|
|
191
|
+
}
|
|
192
|
+
break;
|
|
193
|
+
}
|
|
194
|
+
case 'paragraph': {
|
|
195
|
+
const paragraphText = this.renderInlineTokens(token.tokens || []);
|
|
196
|
+
lines.push(paragraphText);
|
|
197
|
+
// Don't add spacing if next token is space or list
|
|
198
|
+
if (nextTokenType && nextTokenType !== 'list' && nextTokenType !== 'space') {
|
|
199
|
+
lines.push('');
|
|
200
|
+
}
|
|
201
|
+
break;
|
|
202
|
+
}
|
|
203
|
+
case 'code': {
|
|
204
|
+
const indent = this.theme.codeBlockIndent ?? ' ';
|
|
205
|
+
lines.push(this.theme.codeBlockBorder(`\`\`\`${token.lang || ''}`));
|
|
206
|
+
if (this.theme.highlightCode) {
|
|
207
|
+
const highlightedLines = this.theme.highlightCode(token.text, token.lang);
|
|
208
|
+
for (const hlLine of highlightedLines) {
|
|
209
|
+
lines.push(`${indent}${hlLine}`);
|
|
210
|
+
}
|
|
211
|
+
} else {
|
|
212
|
+
// Split code by newlines and style each line
|
|
213
|
+
const codeLines = token.text.split('\n');
|
|
214
|
+
for (const codeLine of codeLines) {
|
|
215
|
+
lines.push(`${indent}${this.theme.codeBlock(codeLine)}`);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
lines.push(this.theme.codeBlockBorder('```'));
|
|
219
|
+
if (nextTokenType !== 'space') {
|
|
220
|
+
lines.push(''); // Add spacing after code blocks (unless space token follows)
|
|
221
|
+
}
|
|
222
|
+
break;
|
|
223
|
+
}
|
|
224
|
+
case 'list': {
|
|
225
|
+
const listLines = this.renderList(token, 0);
|
|
226
|
+
lines.push(...listLines);
|
|
227
|
+
// Don't add spacing after lists if a space token follows
|
|
228
|
+
// (the space token will handle it)
|
|
229
|
+
break;
|
|
230
|
+
}
|
|
231
|
+
case 'table': {
|
|
232
|
+
const tableLines = this.renderTable(token, width);
|
|
233
|
+
lines.push(...tableLines);
|
|
234
|
+
break;
|
|
235
|
+
}
|
|
236
|
+
case 'blockquote': {
|
|
237
|
+
const quoteStyle = (text) => this.theme.quote(this.theme.italic(text));
|
|
238
|
+
const quoteStyleContext = {
|
|
239
|
+
applyText: quoteStyle,
|
|
240
|
+
stylePrefix: this.getStylePrefix(quoteStyle)
|
|
294
241
|
};
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
result += this.theme.link(this.theme.underline(linkText)) + stylePrefix;
|
|
332
|
-
}
|
|
333
|
-
else {
|
|
334
|
-
result +=
|
|
335
|
-
this.theme.link(this.theme.underline(linkText)) +
|
|
336
|
-
this.theme.linkUrl(` (${token.href})`) +
|
|
337
|
-
stylePrefix;
|
|
338
|
-
}
|
|
339
|
-
break;
|
|
340
|
-
}
|
|
341
|
-
case "br":
|
|
342
|
-
result += "\n";
|
|
343
|
-
break;
|
|
344
|
-
case "del": {
|
|
345
|
-
const delContent = this.renderInlineTokens(token.tokens || [], resolvedStyleContext);
|
|
346
|
-
result += this.theme.strikethrough(delContent) + stylePrefix;
|
|
347
|
-
break;
|
|
348
|
-
}
|
|
349
|
-
case "html":
|
|
350
|
-
// Render inline HTML as plain text
|
|
351
|
-
if ("raw" in token && typeof token.raw === "string") {
|
|
352
|
-
result += applyTextWithNewlines(token.raw);
|
|
353
|
-
}
|
|
354
|
-
break;
|
|
355
|
-
default:
|
|
356
|
-
// Handle any other inline token types as plain text
|
|
357
|
-
if ("text" in token && typeof token.text === "string") {
|
|
358
|
-
result += applyTextWithNewlines(token.text);
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
|
-
}
|
|
362
|
-
return result;
|
|
363
|
-
}
|
|
364
|
-
/**
|
|
365
|
-
* Render a list with proper nesting support
|
|
366
|
-
*/
|
|
367
|
-
renderList(token, depth) {
|
|
368
|
-
const lines = [];
|
|
369
|
-
const indent = " ".repeat(depth);
|
|
370
|
-
// Use the list's start property (defaults to 1 for ordered lists)
|
|
371
|
-
const startNumber = token.start ?? 1;
|
|
372
|
-
for (let i = 0; i < token.items.length; i++) {
|
|
373
|
-
const item = token.items[i];
|
|
374
|
-
const bullet = token.ordered ? `${startNumber + i}. ` : "- ";
|
|
375
|
-
// Process item tokens to handle nested lists
|
|
376
|
-
const itemLines = this.renderListItem(item.tokens || [], depth);
|
|
377
|
-
if (itemLines.length > 0) {
|
|
378
|
-
// First line - check if it's a nested list
|
|
379
|
-
// A nested list will start with indent (spaces) followed by cyan bullet
|
|
380
|
-
const firstLine = itemLines[0];
|
|
381
|
-
const isNestedList = /^\s+\x1b\[36m[-\d]/.test(firstLine); // starts with spaces + cyan + bullet char
|
|
382
|
-
if (isNestedList) {
|
|
383
|
-
// This is a nested list, just add it as-is (already has full indent)
|
|
384
|
-
lines.push(firstLine);
|
|
385
|
-
}
|
|
386
|
-
else {
|
|
387
|
-
// Regular text content - add indent and bullet
|
|
388
|
-
lines.push(indent + this.theme.listBullet(bullet) + firstLine);
|
|
389
|
-
}
|
|
390
|
-
// Rest of the lines
|
|
391
|
-
for (let j = 1; j < itemLines.length; j++) {
|
|
392
|
-
const line = itemLines[j];
|
|
393
|
-
const isNestedListLine = /^\s+\x1b\[36m[-\d]/.test(line); // starts with spaces + cyan + bullet char
|
|
394
|
-
if (isNestedListLine) {
|
|
395
|
-
// Nested list line - already has full indent
|
|
396
|
-
lines.push(line);
|
|
397
|
-
}
|
|
398
|
-
else {
|
|
399
|
-
// Regular content - add parent indent + 2 spaces for continuation
|
|
400
|
-
lines.push(`${indent} ${line}`);
|
|
401
|
-
}
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
else {
|
|
405
|
-
lines.push(indent + this.theme.listBullet(bullet));
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
return lines;
|
|
409
|
-
}
|
|
410
|
-
/**
|
|
411
|
-
* Render list item tokens, handling nested lists
|
|
412
|
-
* Returns lines WITHOUT the parent indent (renderList will add it)
|
|
413
|
-
*/
|
|
414
|
-
renderListItem(tokens, parentDepth) {
|
|
415
|
-
const lines = [];
|
|
416
|
-
for (const token of tokens) {
|
|
417
|
-
if (token.type === "list") {
|
|
418
|
-
// Nested list - render with one additional indent level
|
|
419
|
-
// These lines will have their own indent, so we just add them as-is
|
|
420
|
-
const nestedLines = this.renderList(token, parentDepth + 1);
|
|
421
|
-
lines.push(...nestedLines);
|
|
422
|
-
}
|
|
423
|
-
else if (token.type === "text") {
|
|
424
|
-
// Text content (may have inline tokens)
|
|
425
|
-
const text = token.tokens && token.tokens.length > 0 ? this.renderInlineTokens(token.tokens) : token.text || "";
|
|
426
|
-
lines.push(text);
|
|
427
|
-
}
|
|
428
|
-
else if (token.type === "paragraph") {
|
|
429
|
-
// Paragraph in list item
|
|
430
|
-
const text = this.renderInlineTokens(token.tokens || []);
|
|
431
|
-
lines.push(text);
|
|
432
|
-
}
|
|
433
|
-
else if (token.type === "code") {
|
|
434
|
-
// Code block in list item
|
|
435
|
-
const indent = this.theme.codeBlockIndent ?? " ";
|
|
436
|
-
lines.push(this.theme.codeBlockBorder(`\`\`\`${token.lang || ""}`));
|
|
437
|
-
if (this.theme.highlightCode) {
|
|
438
|
-
const highlightedLines = this.theme.highlightCode(token.text, token.lang);
|
|
439
|
-
for (const hlLine of highlightedLines) {
|
|
440
|
-
lines.push(`${indent}${hlLine}`);
|
|
441
|
-
}
|
|
442
|
-
}
|
|
443
|
-
else {
|
|
444
|
-
const codeLines = token.text.split("\n");
|
|
445
|
-
for (const codeLine of codeLines) {
|
|
446
|
-
lines.push(`${indent}${this.theme.codeBlock(codeLine)}`);
|
|
447
|
-
}
|
|
448
|
-
}
|
|
449
|
-
lines.push(this.theme.codeBlockBorder("```"));
|
|
450
|
-
}
|
|
451
|
-
else {
|
|
452
|
-
// Other token types - try to render as inline
|
|
453
|
-
const text = this.renderInlineTokens([token]);
|
|
454
|
-
if (text) {
|
|
455
|
-
lines.push(text);
|
|
456
|
-
}
|
|
457
|
-
}
|
|
242
|
+
const quoteText = this.renderInlineTokens(token.tokens || [], quoteStyleContext);
|
|
243
|
+
const quoteLines = quoteText.split('\n');
|
|
244
|
+
// Calculate available width for quote content (subtract border "│ " = 2 chars)
|
|
245
|
+
const quoteContentWidth = Math.max(1, width - 2);
|
|
246
|
+
for (const quoteLine of quoteLines) {
|
|
247
|
+
// Wrap the styled line, then add border to each wrapped line
|
|
248
|
+
const wrappedLines = wrapTextWithAnsi(quoteLine, quoteContentWidth);
|
|
249
|
+
for (const wrappedLine of wrappedLines) {
|
|
250
|
+
lines.push(this.theme.quoteBorder('│ ') + wrappedLine);
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
if (nextTokenType !== 'space') {
|
|
254
|
+
lines.push(''); // Add spacing after blockquotes (unless space token follows)
|
|
255
|
+
}
|
|
256
|
+
break;
|
|
257
|
+
}
|
|
258
|
+
case 'hr':
|
|
259
|
+
lines.push(this.theme.hr('─'.repeat(Math.min(width, 80))));
|
|
260
|
+
if (nextTokenType !== 'space') {
|
|
261
|
+
lines.push(''); // Add spacing after horizontal rules (unless space token follows)
|
|
262
|
+
}
|
|
263
|
+
break;
|
|
264
|
+
case 'html':
|
|
265
|
+
// Render HTML as plain text (escaped for terminal)
|
|
266
|
+
if ('raw' in token && typeof token.raw === 'string') {
|
|
267
|
+
lines.push(this.applyDefaultStyle(token.raw.trim()));
|
|
268
|
+
}
|
|
269
|
+
break;
|
|
270
|
+
case 'space':
|
|
271
|
+
// Space tokens represent blank lines in markdown
|
|
272
|
+
lines.push('');
|
|
273
|
+
break;
|
|
274
|
+
default:
|
|
275
|
+
// Handle any other token types as plain text
|
|
276
|
+
if ('text' in token && typeof token.text === 'string') {
|
|
277
|
+
lines.push(token.text);
|
|
458
278
|
}
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
279
|
+
}
|
|
280
|
+
return lines;
|
|
281
|
+
}
|
|
282
|
+
renderInlineTokens(tokens, styleContext) {
|
|
283
|
+
let result = '';
|
|
284
|
+
const resolvedStyleContext = styleContext ?? this.getDefaultInlineStyleContext();
|
|
285
|
+
const { applyText, stylePrefix } = resolvedStyleContext;
|
|
286
|
+
const applyTextWithNewlines = (text) => {
|
|
287
|
+
const segments = text.split('\n');
|
|
288
|
+
return segments.map((segment) => applyText(segment)).join('\n');
|
|
289
|
+
};
|
|
290
|
+
for (const token of tokens) {
|
|
291
|
+
switch (token.type) {
|
|
292
|
+
case 'text':
|
|
293
|
+
// Text tokens in list items can have nested tokens for inline formatting
|
|
294
|
+
if (token.tokens && token.tokens.length > 0) {
|
|
295
|
+
result += this.renderInlineTokens(token.tokens, resolvedStyleContext);
|
|
296
|
+
} else {
|
|
297
|
+
result += applyTextWithNewlines(token.text);
|
|
298
|
+
}
|
|
299
|
+
break;
|
|
300
|
+
case 'paragraph':
|
|
301
|
+
// Paragraph tokens contain nested inline tokens
|
|
302
|
+
result += this.renderInlineTokens(token.tokens || [], resolvedStyleContext);
|
|
303
|
+
break;
|
|
304
|
+
case 'strong': {
|
|
305
|
+
const boldContent = this.renderInlineTokens(token.tokens || [], resolvedStyleContext);
|
|
306
|
+
result += this.theme.bold(boldContent) + stylePrefix;
|
|
307
|
+
break;
|
|
308
|
+
}
|
|
309
|
+
case 'em': {
|
|
310
|
+
const italicContent = this.renderInlineTokens(token.tokens || [], resolvedStyleContext);
|
|
311
|
+
result += this.theme.italic(italicContent) + stylePrefix;
|
|
312
|
+
break;
|
|
313
|
+
}
|
|
314
|
+
case 'codespan':
|
|
315
|
+
result += this.theme.code(token.text) + stylePrefix;
|
|
316
|
+
break;
|
|
317
|
+
case 'link': {
|
|
318
|
+
const linkText = this.renderInlineTokens(token.tokens || [], resolvedStyleContext);
|
|
319
|
+
// If link text matches href, only show the link once
|
|
320
|
+
// Compare raw text (token.text) not styled text (linkText) since linkText has ANSI codes
|
|
321
|
+
// For mailto: links, strip the prefix before comparing (autolinked emails have
|
|
322
|
+
// text="foo@bar.com" but href="mailto:foo@bar.com")
|
|
323
|
+
const hrefForComparison = token.href.startsWith('mailto:')
|
|
324
|
+
? token.href.slice(7)
|
|
325
|
+
: token.href;
|
|
326
|
+
if (token.text === token.href || token.text === hrefForComparison) {
|
|
327
|
+
result += this.theme.link(this.theme.underline(linkText)) + stylePrefix;
|
|
328
|
+
} else {
|
|
329
|
+
result +=
|
|
330
|
+
this.theme.link(this.theme.underline(linkText)) +
|
|
331
|
+
this.theme.linkUrl(` (${token.href})`) +
|
|
332
|
+
stylePrefix;
|
|
333
|
+
}
|
|
334
|
+
break;
|
|
335
|
+
}
|
|
336
|
+
case 'br':
|
|
337
|
+
result += '\n';
|
|
338
|
+
break;
|
|
339
|
+
case 'del': {
|
|
340
|
+
const delContent = this.renderInlineTokens(token.tokens || [], resolvedStyleContext);
|
|
341
|
+
result += this.theme.strikethrough(delContent) + stylePrefix;
|
|
342
|
+
break;
|
|
343
|
+
}
|
|
344
|
+
case 'html':
|
|
345
|
+
// Render inline HTML as plain text
|
|
346
|
+
if ('raw' in token && typeof token.raw === 'string') {
|
|
347
|
+
result += applyTextWithNewlines(token.raw);
|
|
348
|
+
}
|
|
349
|
+
break;
|
|
350
|
+
default:
|
|
351
|
+
// Handle any other inline token types as plain text
|
|
352
|
+
if ('text' in token && typeof token.text === 'string') {
|
|
353
|
+
result += applyTextWithNewlines(token.text);
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
return result;
|
|
358
|
+
}
|
|
359
|
+
/**
|
|
360
|
+
* Render a list with proper nesting support
|
|
361
|
+
*/
|
|
362
|
+
renderList(token, depth) {
|
|
363
|
+
const lines = [];
|
|
364
|
+
const indent = ' '.repeat(depth);
|
|
365
|
+
// Use the list's start property (defaults to 1 for ordered lists)
|
|
366
|
+
const startNumber = token.start ?? 1;
|
|
367
|
+
for (let i = 0; i < token.items.length; i++) {
|
|
368
|
+
const item = token.items[i];
|
|
369
|
+
const bullet = token.ordered ? `${startNumber + i}. ` : '- ';
|
|
370
|
+
// Process item tokens to handle nested lists
|
|
371
|
+
const itemLines = this.renderListItem(item.tokens || [], depth);
|
|
372
|
+
if (itemLines.length > 0) {
|
|
373
|
+
// First line - check if it's a nested list
|
|
374
|
+
// A nested list will start with indent (spaces) followed by cyan bullet
|
|
375
|
+
const firstLine = itemLines[0];
|
|
376
|
+
const isNestedList = /^\s+\x1b\[36m[-\d]/.test(firstLine); // starts with spaces + cyan + bullet char
|
|
377
|
+
if (isNestedList) {
|
|
378
|
+
// This is a nested list, just add it as-is (already has full indent)
|
|
379
|
+
lines.push(firstLine);
|
|
380
|
+
} else {
|
|
381
|
+
// Regular text content - add indent and bullet
|
|
382
|
+
lines.push(indent + this.theme.listBullet(bullet) + firstLine);
|
|
383
|
+
}
|
|
384
|
+
// Rest of the lines
|
|
385
|
+
for (let j = 1; j < itemLines.length; j++) {
|
|
386
|
+
const line = itemLines[j];
|
|
387
|
+
const isNestedListLine = /^\s+\x1b\[36m[-\d]/.test(line); // starts with spaces + cyan + bullet char
|
|
388
|
+
if (isNestedListLine) {
|
|
389
|
+
// Nested list line - already has full indent
|
|
390
|
+
lines.push(line);
|
|
391
|
+
} else {
|
|
392
|
+
// Regular content - add parent indent + 2 spaces for continuation
|
|
393
|
+
lines.push(`${indent} ${line}`);
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
} else {
|
|
397
|
+
lines.push(indent + this.theme.listBullet(bullet));
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
return lines;
|
|
401
|
+
}
|
|
402
|
+
/**
|
|
403
|
+
* Render list item tokens, handling nested lists
|
|
404
|
+
* Returns lines WITHOUT the parent indent (renderList will add it)
|
|
405
|
+
*/
|
|
406
|
+
renderListItem(tokens, parentDepth) {
|
|
407
|
+
const lines = [];
|
|
408
|
+
for (const token of tokens) {
|
|
409
|
+
if (token.type === 'list') {
|
|
410
|
+
// Nested list - render with one additional indent level
|
|
411
|
+
// These lines will have their own indent, so we just add them as-is
|
|
412
|
+
const nestedLines = this.renderList(token, parentDepth + 1);
|
|
413
|
+
lines.push(...nestedLines);
|
|
414
|
+
} else if (token.type === 'text') {
|
|
415
|
+
// Text content (may have inline tokens)
|
|
416
|
+
const text =
|
|
417
|
+
token.tokens && token.tokens.length > 0
|
|
418
|
+
? this.renderInlineTokens(token.tokens)
|
|
419
|
+
: token.text || '';
|
|
420
|
+
lines.push(text);
|
|
421
|
+
} else if (token.type === 'paragraph') {
|
|
422
|
+
// Paragraph in list item
|
|
423
|
+
const text = this.renderInlineTokens(token.tokens || []);
|
|
424
|
+
lines.push(text);
|
|
425
|
+
} else if (token.type === 'code') {
|
|
426
|
+
// Code block in list item
|
|
427
|
+
const indent = this.theme.codeBlockIndent ?? ' ';
|
|
428
|
+
lines.push(this.theme.codeBlockBorder(`\`\`\`${token.lang || ''}`));
|
|
429
|
+
if (this.theme.highlightCode) {
|
|
430
|
+
const highlightedLines = this.theme.highlightCode(token.text, token.lang);
|
|
431
|
+
for (const hlLine of highlightedLines) {
|
|
432
|
+
lines.push(`${indent}${hlLine}`);
|
|
433
|
+
}
|
|
434
|
+
} else {
|
|
435
|
+
const codeLines = token.text.split('\n');
|
|
436
|
+
for (const codeLine of codeLines) {
|
|
437
|
+
lines.push(`${indent}${this.theme.codeBlock(codeLine)}`);
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
lines.push(this.theme.codeBlockBorder('```'));
|
|
441
|
+
} else {
|
|
442
|
+
// Other token types - try to render as inline
|
|
443
|
+
const text = this.renderInlineTokens([token]);
|
|
444
|
+
if (text) {
|
|
445
|
+
lines.push(text);
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
return lines;
|
|
450
|
+
}
|
|
451
|
+
/**
|
|
452
|
+
* Get the visible width of the longest word in a string.
|
|
453
|
+
*/
|
|
454
|
+
getLongestWordWidth(text, maxWidth) {
|
|
455
|
+
const words = text.split(/\s+/).filter((word) => word.length > 0);
|
|
456
|
+
let longest = 0;
|
|
457
|
+
for (const word of words) {
|
|
458
|
+
longest = Math.max(longest, visibleWidth(word));
|
|
459
|
+
}
|
|
460
|
+
if (maxWidth === undefined) {
|
|
461
|
+
return longest;
|
|
462
|
+
}
|
|
463
|
+
return Math.min(longest, maxWidth);
|
|
464
|
+
}
|
|
465
|
+
/**
|
|
466
|
+
* Wrap a table cell to fit into a column.
|
|
467
|
+
*
|
|
468
|
+
* Delegates to wrapTextWithAnsi() so ANSI codes + long tokens are handled
|
|
469
|
+
* consistently with the rest of the renderer.
|
|
470
|
+
*/
|
|
471
|
+
wrapCellText(text, maxWidth) {
|
|
472
|
+
return wrapTextWithAnsi(text, Math.max(1, maxWidth));
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* Render a table with width-aware cell wrapping.
|
|
476
|
+
* Cells that don't fit are wrapped to multiple lines.
|
|
477
|
+
*/
|
|
478
|
+
renderTable(token, availableWidth) {
|
|
479
|
+
const lines = [];
|
|
480
|
+
const numCols = token.header.length;
|
|
481
|
+
if (numCols === 0) {
|
|
482
|
+
return lines;
|
|
483
|
+
}
|
|
484
|
+
// Calculate border overhead: "│ " + (n-1) * " │ " + " │"
|
|
485
|
+
// = 2 + (n-1) * 3 + 2 = 3n + 1
|
|
486
|
+
const borderOverhead = 3 * numCols + 1;
|
|
487
|
+
const availableForCells = availableWidth - borderOverhead;
|
|
488
|
+
if (availableForCells < numCols) {
|
|
489
|
+
// Too narrow to render a stable table. Fall back to raw markdown.
|
|
490
|
+
const fallbackLines = token.raw ? wrapTextWithAnsi(token.raw, availableWidth) : [];
|
|
491
|
+
fallbackLines.push('');
|
|
492
|
+
return fallbackLines;
|
|
493
|
+
}
|
|
494
|
+
const maxUnbrokenWordWidth = 30;
|
|
495
|
+
// Calculate natural column widths (what each column needs without constraints)
|
|
496
|
+
const naturalWidths = [];
|
|
497
|
+
const minWordWidths = [];
|
|
498
|
+
for (let i = 0; i < numCols; i++) {
|
|
499
|
+
const headerText = this.renderInlineTokens(token.header[i].tokens || []);
|
|
500
|
+
naturalWidths[i] = visibleWidth(headerText);
|
|
501
|
+
minWordWidths[i] = Math.max(1, this.getLongestWordWidth(headerText, maxUnbrokenWordWidth));
|
|
502
|
+
}
|
|
503
|
+
for (const row of token.rows) {
|
|
504
|
+
for (let i = 0; i < row.length; i++) {
|
|
505
|
+
const cellText = this.renderInlineTokens(row[i].tokens || []);
|
|
506
|
+
naturalWidths[i] = Math.max(naturalWidths[i] || 0, visibleWidth(cellText));
|
|
507
|
+
minWordWidths[i] = Math.max(
|
|
508
|
+
minWordWidths[i] || 1,
|
|
509
|
+
this.getLongestWordWidth(cellText, maxUnbrokenWordWidth)
|
|
510
|
+
);
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
let minColumnWidths = minWordWidths;
|
|
514
|
+
let minCellsWidth = minColumnWidths.reduce((a, b) => a + b, 0);
|
|
515
|
+
if (minCellsWidth > availableForCells) {
|
|
516
|
+
minColumnWidths = new Array(numCols).fill(1);
|
|
517
|
+
const remaining = availableForCells - numCols;
|
|
518
|
+
if (remaining > 0) {
|
|
519
|
+
const totalWeight = minWordWidths.reduce(
|
|
520
|
+
(total, width) => total + Math.max(0, width - 1),
|
|
521
|
+
0
|
|
522
|
+
);
|
|
523
|
+
const growth = minWordWidths.map((width) => {
|
|
524
|
+
const weight = Math.max(0, width - 1);
|
|
525
|
+
return totalWeight > 0 ? Math.floor((weight / totalWeight) * remaining) : 0;
|
|
526
|
+
});
|
|
508
527
|
for (let i = 0; i < numCols; i++) {
|
|
509
|
-
|
|
510
|
-
naturalWidths[i] = visibleWidth(headerText);
|
|
511
|
-
minWordWidths[i] = Math.max(1, this.getLongestWordWidth(headerText, maxUnbrokenWordWidth));
|
|
512
|
-
}
|
|
513
|
-
for (const row of token.rows) {
|
|
514
|
-
for (let i = 0; i < row.length; i++) {
|
|
515
|
-
const cellText = this.renderInlineTokens(row[i].tokens || []);
|
|
516
|
-
naturalWidths[i] = Math.max(naturalWidths[i] || 0, visibleWidth(cellText));
|
|
517
|
-
minWordWidths[i] = Math.max(minWordWidths[i] || 1, this.getLongestWordWidth(cellText, maxUnbrokenWordWidth));
|
|
518
|
-
}
|
|
528
|
+
minColumnWidths[i] += growth[i] ?? 0;
|
|
519
529
|
}
|
|
520
|
-
|
|
521
|
-
let
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
if (remaining > 0) {
|
|
526
|
-
const totalWeight = minWordWidths.reduce((total, width) => total + Math.max(0, width - 1), 0);
|
|
527
|
-
const growth = minWordWidths.map((width) => {
|
|
528
|
-
const weight = Math.max(0, width - 1);
|
|
529
|
-
return totalWeight > 0 ? Math.floor((weight / totalWeight) * remaining) : 0;
|
|
530
|
-
});
|
|
531
|
-
for (let i = 0; i < numCols; i++) {
|
|
532
|
-
minColumnWidths[i] += growth[i] ?? 0;
|
|
533
|
-
}
|
|
534
|
-
const allocated = growth.reduce((total, width) => total + width, 0);
|
|
535
|
-
let leftover = remaining - allocated;
|
|
536
|
-
for (let i = 0; leftover > 0 && i < numCols; i++) {
|
|
537
|
-
minColumnWidths[i]++;
|
|
538
|
-
leftover--;
|
|
539
|
-
}
|
|
540
|
-
}
|
|
541
|
-
minCellsWidth = minColumnWidths.reduce((a, b) => a + b, 0);
|
|
530
|
+
const allocated = growth.reduce((total, width) => total + width, 0);
|
|
531
|
+
let leftover = remaining - allocated;
|
|
532
|
+
for (let i = 0; leftover > 0 && i < numCols; i++) {
|
|
533
|
+
minColumnWidths[i]++;
|
|
534
|
+
leftover--;
|
|
542
535
|
}
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
536
|
+
}
|
|
537
|
+
minCellsWidth = minColumnWidths.reduce((a, b) => a + b, 0);
|
|
538
|
+
}
|
|
539
|
+
// Calculate column widths that fit within available width
|
|
540
|
+
const totalNaturalWidth = naturalWidths.reduce((a, b) => a + b, 0) + borderOverhead;
|
|
541
|
+
let columnWidths;
|
|
542
|
+
if (totalNaturalWidth <= availableWidth) {
|
|
543
|
+
// Everything fits naturally
|
|
544
|
+
columnWidths = naturalWidths.map((width, index) => Math.max(width, minColumnWidths[index]));
|
|
545
|
+
} else {
|
|
546
|
+
// Need to shrink columns to fit
|
|
547
|
+
const totalGrowPotential = naturalWidths.reduce((total, width, index) => {
|
|
548
|
+
return total + Math.max(0, width - minColumnWidths[index]);
|
|
549
|
+
}, 0);
|
|
550
|
+
const extraWidth = Math.max(0, availableForCells - minCellsWidth);
|
|
551
|
+
columnWidths = minColumnWidths.map((minWidth, index) => {
|
|
552
|
+
const naturalWidth = naturalWidths[index];
|
|
553
|
+
const minWidthDelta = Math.max(0, naturalWidth - minWidth);
|
|
554
|
+
let grow = 0;
|
|
555
|
+
if (totalGrowPotential > 0) {
|
|
556
|
+
grow = Math.floor((minWidthDelta / totalGrowPotential) * extraWidth);
|
|
557
|
+
}
|
|
558
|
+
return minWidth + grow;
|
|
559
|
+
});
|
|
560
|
+
// Adjust for rounding errors - distribute remaining space
|
|
561
|
+
const allocated = columnWidths.reduce((a, b) => a + b, 0);
|
|
562
|
+
let remaining = availableForCells - allocated;
|
|
563
|
+
while (remaining > 0) {
|
|
564
|
+
let grew = false;
|
|
565
|
+
for (let i = 0; i < numCols && remaining > 0; i++) {
|
|
566
|
+
if (columnWidths[i] < naturalWidths[i]) {
|
|
567
|
+
columnWidths[i]++;
|
|
568
|
+
remaining--;
|
|
569
|
+
grew = true;
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
if (!grew) {
|
|
573
|
+
break;
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
// Render top border
|
|
578
|
+
const topBorderCells = columnWidths.map((w) => '─'.repeat(w));
|
|
579
|
+
lines.push(`┌─${topBorderCells.join('─┬─')}─┐`);
|
|
580
|
+
// Render header with wrapping
|
|
581
|
+
const headerCellLines = token.header.map((cell, i) => {
|
|
582
|
+
const text = this.renderInlineTokens(cell.tokens || []);
|
|
583
|
+
return this.wrapCellText(text, columnWidths[i]);
|
|
584
|
+
});
|
|
585
|
+
const headerLineCount = Math.max(...headerCellLines.map((c) => c.length));
|
|
586
|
+
for (let lineIdx = 0; lineIdx < headerLineCount; lineIdx++) {
|
|
587
|
+
const rowParts = headerCellLines.map((cellLines, colIdx) => {
|
|
588
|
+
const text = cellLines[lineIdx] || '';
|
|
589
|
+
const padded = text + ' '.repeat(Math.max(0, columnWidths[colIdx] - visibleWidth(text)));
|
|
590
|
+
return this.theme.bold(padded);
|
|
591
|
+
});
|
|
592
|
+
lines.push(`│ ${rowParts.join(' │ ')} │`);
|
|
593
|
+
}
|
|
594
|
+
// Render separator
|
|
595
|
+
const separatorCells = columnWidths.map((w) => '─'.repeat(w));
|
|
596
|
+
const separatorLine = `├─${separatorCells.join('─┼─')}─┤`;
|
|
597
|
+
lines.push(separatorLine);
|
|
598
|
+
// Render rows with wrapping
|
|
599
|
+
for (let rowIndex = 0; rowIndex < token.rows.length; rowIndex++) {
|
|
600
|
+
const row = token.rows[rowIndex];
|
|
601
|
+
const rowCellLines = row.map((cell, i) => {
|
|
602
|
+
const text = this.renderInlineTokens(cell.tokens || []);
|
|
603
|
+
return this.wrapCellText(text, columnWidths[i]);
|
|
604
|
+
});
|
|
605
|
+
const rowLineCount = Math.max(...rowCellLines.map((c) => c.length));
|
|
606
|
+
for (let lineIdx = 0; lineIdx < rowLineCount; lineIdx++) {
|
|
607
|
+
const rowParts = rowCellLines.map((cellLines, colIdx) => {
|
|
608
|
+
const text = cellLines[lineIdx] || '';
|
|
609
|
+
return text + ' '.repeat(Math.max(0, columnWidths[colIdx] - visibleWidth(text)));
|
|
589
610
|
});
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
const text = cellLines[lineIdx] || "";
|
|
594
|
-
const padded = text + " ".repeat(Math.max(0, columnWidths[colIdx] - visibleWidth(text)));
|
|
595
|
-
return this.theme.bold(padded);
|
|
596
|
-
});
|
|
597
|
-
lines.push(`│ ${rowParts.join(" │ ")} │`);
|
|
598
|
-
}
|
|
599
|
-
// Render separator
|
|
600
|
-
const separatorCells = columnWidths.map((w) => "─".repeat(w));
|
|
601
|
-
const separatorLine = `├─${separatorCells.join("─┼─")}─┤`;
|
|
611
|
+
lines.push(`│ ${rowParts.join(' │ ')} │`);
|
|
612
|
+
}
|
|
613
|
+
if (rowIndex < token.rows.length - 1) {
|
|
602
614
|
lines.push(separatorLine);
|
|
603
|
-
|
|
604
|
-
for (let rowIndex = 0; rowIndex < token.rows.length; rowIndex++) {
|
|
605
|
-
const row = token.rows[rowIndex];
|
|
606
|
-
const rowCellLines = row.map((cell, i) => {
|
|
607
|
-
const text = this.renderInlineTokens(cell.tokens || []);
|
|
608
|
-
return this.wrapCellText(text, columnWidths[i]);
|
|
609
|
-
});
|
|
610
|
-
const rowLineCount = Math.max(...rowCellLines.map((c) => c.length));
|
|
611
|
-
for (let lineIdx = 0; lineIdx < rowLineCount; lineIdx++) {
|
|
612
|
-
const rowParts = rowCellLines.map((cellLines, colIdx) => {
|
|
613
|
-
const text = cellLines[lineIdx] || "";
|
|
614
|
-
return text + " ".repeat(Math.max(0, columnWidths[colIdx] - visibleWidth(text)));
|
|
615
|
-
});
|
|
616
|
-
lines.push(`│ ${rowParts.join(" │ ")} │`);
|
|
617
|
-
}
|
|
618
|
-
if (rowIndex < token.rows.length - 1) {
|
|
619
|
-
lines.push(separatorLine);
|
|
620
|
-
}
|
|
621
|
-
}
|
|
622
|
-
// Render bottom border
|
|
623
|
-
const bottomBorderCells = columnWidths.map((w) => "─".repeat(w));
|
|
624
|
-
lines.push(`└─${bottomBorderCells.join("─┴─")}─┘`);
|
|
625
|
-
lines.push(""); // Add spacing after table
|
|
626
|
-
return lines;
|
|
615
|
+
}
|
|
627
616
|
}
|
|
617
|
+
// Render bottom border
|
|
618
|
+
const bottomBorderCells = columnWidths.map((w) => '─'.repeat(w));
|
|
619
|
+
lines.push(`└─${bottomBorderCells.join('─┴─')}─┘`);
|
|
620
|
+
lines.push(''); // Add spacing after table
|
|
621
|
+
return lines;
|
|
622
|
+
}
|
|
628
623
|
}
|
|
629
|
-
//# sourceMappingURL=markdown.js.map
|
|
624
|
+
//# sourceMappingURL=markdown.js.map
|