shortcutxl 0.2.13 → 0.2.14
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/dist/core/keybindings.js +3 -1
- package/dist/core/settings-manager.js +29 -0
- package/dist/custom/install-utils.js +0 -3
- package/dist/custom/prompts/api.js +1 -1
- package/dist/custom/providers/provider-ids.js +1 -0
- package/dist/custom/tools/excel-approval.js +180 -0
- package/dist/custom/tools/excel-exec.js +66 -11
- package/dist/custom/tools/task/render.js +1 -1
- package/dist/main.js +12 -1
- package/dist/modes/interactive/components/footer.js +10 -0
- package/dist/modes/interactive/components/settings-selector.js +11 -0
- package/dist/modes/interactive/interactive-mode.js +29 -5
- package/package.json +5 -3
- package/xll/ShortcutXL.xll +0 -0
- package/xll/modules/shortcut_xl/__init__.py +29 -14
- package/xll/modules/shortcut_xl/_com.py +1 -0
- package/xll/modules/shortcut_xl/_diff_highlight.py +133 -91
- package/xll/modules/shortcut_xl/_exec_entry.py +150 -0
- package/xll/modules/shortcut_xl/_log.py +1 -1
- package/xll/modules/shortcut_xl/_managed.py +15 -9
- package/xll/modules/shortcut_xl/_threading.py +4 -3
- package/xll/modules/shortcut_xl/_tracking.py +8 -2
- package/xll/modules/shortcut_xl/api/__init__.py +2 -2
- package/xll/modules/shortcut_xl/api/format.py +10 -5
- package/xll/modules/shortcut_xl/api/range_formatter.py +4 -4
- package/xll/modules/shortcut_xl/api/workbook.py +3 -8
- package/xll/modules/shortcut_xl/api/worksheet.py +7 -7
- package/xll/modules/shortcut_xl/api-reference.py +3 -0
- /package/skills/{COM-advanced-api → com-advanced-api}/SKILL.md +0 -0
- /package/skills/{COM-advanced-api → com-advanced-api}/excel-type-library.py +0 -0
- /package/skills/{COM-advanced-api → com-advanced-api}/office-type-library.py +0 -0
|
@@ -11,17 +11,17 @@ import json
|
|
|
11
11
|
import re
|
|
12
12
|
from typing import Any
|
|
13
13
|
|
|
14
|
-
from shortcut_xl.
|
|
15
|
-
from shortcut_xl.api.
|
|
14
|
+
from shortcut_xl._log import xl_log
|
|
15
|
+
from shortcut_xl.api.categorize import com_error_to_str, is_com_error
|
|
16
|
+
from shortcut_xl.api.picture import add_picture
|
|
17
|
+
from shortcut_xl.api.range_formatter import format_cell_range
|
|
18
|
+
from shortcut_xl.api.style import read_style
|
|
19
|
+
from shortcut_xl.api.utils.com_utils import make_range, normalize_2d
|
|
16
20
|
from shortcut_xl.api.utils.helpers import (
|
|
17
21
|
index_to_address,
|
|
18
22
|
parse_range,
|
|
19
23
|
)
|
|
20
|
-
from shortcut_xl.api.utils.
|
|
21
|
-
from shortcut_xl._log import xl_log
|
|
22
|
-
from shortcut_xl.api.range_formatter import format_cell_range
|
|
23
|
-
from shortcut_xl.api.style import read_style
|
|
24
|
-
from shortcut_xl.api.picture import add_picture
|
|
24
|
+
from shortcut_xl.api.utils.numerical import NUMERIC_TYPES
|
|
25
25
|
|
|
26
26
|
# Excel xlAutoFillType enum values
|
|
27
27
|
_XL_FILL_DEFAULT = 0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|