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.
Files changed (31) hide show
  1. package/dist/core/keybindings.js +3 -1
  2. package/dist/core/settings-manager.js +29 -0
  3. package/dist/custom/install-utils.js +0 -3
  4. package/dist/custom/prompts/api.js +1 -1
  5. package/dist/custom/providers/provider-ids.js +1 -0
  6. package/dist/custom/tools/excel-approval.js +180 -0
  7. package/dist/custom/tools/excel-exec.js +66 -11
  8. package/dist/custom/tools/task/render.js +1 -1
  9. package/dist/main.js +12 -1
  10. package/dist/modes/interactive/components/footer.js +10 -0
  11. package/dist/modes/interactive/components/settings-selector.js +11 -0
  12. package/dist/modes/interactive/interactive-mode.js +29 -5
  13. package/package.json +5 -3
  14. package/xll/ShortcutXL.xll +0 -0
  15. package/xll/modules/shortcut_xl/__init__.py +29 -14
  16. package/xll/modules/shortcut_xl/_com.py +1 -0
  17. package/xll/modules/shortcut_xl/_diff_highlight.py +133 -91
  18. package/xll/modules/shortcut_xl/_exec_entry.py +150 -0
  19. package/xll/modules/shortcut_xl/_log.py +1 -1
  20. package/xll/modules/shortcut_xl/_managed.py +15 -9
  21. package/xll/modules/shortcut_xl/_threading.py +4 -3
  22. package/xll/modules/shortcut_xl/_tracking.py +8 -2
  23. package/xll/modules/shortcut_xl/api/__init__.py +2 -2
  24. package/xll/modules/shortcut_xl/api/format.py +10 -5
  25. package/xll/modules/shortcut_xl/api/range_formatter.py +4 -4
  26. package/xll/modules/shortcut_xl/api/workbook.py +3 -8
  27. package/xll/modules/shortcut_xl/api/worksheet.py +7 -7
  28. package/xll/modules/shortcut_xl/api-reference.py +3 -0
  29. /package/skills/{COM-advanced-api → com-advanced-api}/SKILL.md +0 -0
  30. /package/skills/{COM-advanced-api → com-advanced-api}/excel-type-library.py +0 -0
  31. /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.api.categorize import is_com_error, com_error_to_str
15
- from shortcut_xl.api.utils.numerical import NUMERIC_TYPES
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.com_utils import normalize_2d, make_range
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
@@ -3,6 +3,9 @@ shortcut_xl API Reference
3
3
  All symbols are auto-imported in excel_exec — no import statements needed.
4
4
  """
5
5
 
6
+ from typing import Any
7
+
8
+
6
9
  class Workbook:
7
10
  """
8
11
  Workbook wrapper.