tksheet 7.0.6__py3-none-any.whl → 7.1.1__py3-none-any.whl
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.
- tksheet/__init__.py +3 -3
- tksheet/column_headers.py +252 -270
- tksheet/functions.py +42 -9
- tksheet/main_table.py +779 -815
- tksheet/other_classes.py +129 -4
- tksheet/row_index.py +470 -316
- tksheet/sheet.py +994 -177
- tksheet/sheet_options.py +34 -0
- tksheet/text_editor.py +93 -78
- tksheet/themes.py +104 -0
- tksheet/vars.py +35 -0
- {tksheet-7.0.6.dist-info → tksheet-7.1.1.dist-info}/METADATA +1 -1
- tksheet-7.1.1.dist-info/RECORD +20 -0
- {tksheet-7.0.6.dist-info → tksheet-7.1.1.dist-info}/WHEEL +1 -1
- tksheet-7.0.6.dist-info/RECORD +0 -20
- {tksheet-7.0.6.dist-info → tksheet-7.1.1.dist-info}/LICENSE.txt +0 -0
- {tksheet-7.0.6.dist-info → tksheet-7.1.1.dist-info}/top_level.txt +0 -0
tksheet/__init__.py
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
tksheet - A Python tkinter table widget
|
5
5
|
"""
|
6
6
|
|
7
|
-
__version__ = "7.
|
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
|
-
|
76
|
+
TextEditorTkText,
|
77
77
|
)
|
78
78
|
from .themes import (
|
79
79
|
theme_black,
|