tksheet 7.0.6__tar.gz → 7.1.1__tar.gz

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 (25) hide show
  1. {tksheet-7.0.6/tksheet.egg-info → tksheet-7.1.1}/PKG-INFO +1 -1
  2. {tksheet-7.0.6 → tksheet-7.1.1}/pyproject.toml +1 -1
  3. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/__init__.py +3 -3
  4. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/column_headers.py +252 -270
  5. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/functions.py +42 -9
  6. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/main_table.py +779 -815
  7. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/other_classes.py +129 -4
  8. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/row_index.py +470 -316
  9. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/sheet.py +994 -177
  10. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/sheet_options.py +34 -0
  11. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/text_editor.py +93 -78
  12. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/themes.py +104 -0
  13. tksheet-7.1.1/tksheet/vars.py +62 -0
  14. {tksheet-7.0.6 → tksheet-7.1.1/tksheet.egg-info}/PKG-INFO +1 -1
  15. tksheet-7.0.6/tksheet/vars.py +0 -27
  16. {tksheet-7.0.6 → tksheet-7.1.1}/LICENSE.txt +0 -0
  17. {tksheet-7.0.6 → tksheet-7.1.1}/README.md +0 -0
  18. {tksheet-7.0.6 → tksheet-7.1.1}/setup.cfg +0 -0
  19. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/colors.py +0 -0
  20. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/formatters.py +0 -0
  21. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/top_left_rectangle.py +0 -0
  22. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet/types.py +0 -0
  23. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet.egg-info/SOURCES.txt +0 -0
  24. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet.egg-info/dependency_links.txt +0 -0
  25. {tksheet-7.0.6 → tksheet-7.1.1}/tksheet.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tksheet
3
- Version: 7.0.6
3
+ Version: 7.1.1
4
4
  Summary: Tkinter table / sheet widget
5
5
  Author-email: ragardner <github@ragardner.simplelogin.com>
6
6
  License: Copyright (c) 2019 ragardner and open source contributors
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
  name = "tksheet"
7
7
  description = "Tkinter table / sheet widget"
8
8
  readme = "README.md"
9
- version = "7.0.6"
9
+ version = "7.1.1"
10
10
  authors = [{ name = "ragardner", email = "github@ragardner.simplelogin.com" }]
11
11
  requires-python = ">=3.8"
12
12
  license = {file = "LICENSE.txt"}
@@ -4,7 +4,7 @@
4
4
  tksheet - A Python tkinter table widget
5
5
  """
6
6
 
7
- __version__ = "7.0.6"
7
+ __version__ = "7.1.1"
8
8
 
9
9
  from .colors import (
10
10
  color_map,
@@ -58,12 +58,12 @@ from .functions import (
58
58
  )
59
59
  from .main_table import MainTable
60
60
  from .other_classes import (
61
- CurrentlySelectedClass,
62
61
  DotDict,
63
62
  DraggedRowColumn,
64
63
  DrawnItem,
65
64
  EventDataDict,
66
65
  GeneratedMouseEvent,
66
+ Selected,
67
67
  Span,
68
68
  SpanRange,
69
69
  TextCfg,
@@ -73,7 +73,7 @@ from .sheet import Dropdown, Sheet
73
73
  from .sheet_options import new_sheet_options
74
74
  from .text_editor import (
75
75
  TextEditor,
76
- TextEditor_,
76
+ TextEditorTkText,
77
77
  )
78
78
  from .themes import (
79
79
  theme_black,