tksheet 7.1.11__py3-none-any.whl → 7.1.12__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 +1 -1
- tksheet/column_headers.py +1 -0
- tksheet/functions.py +0 -2
- tksheet/main_table.py +27 -26
- tksheet/row_index.py +2 -0
- tksheet/sheet.py +13 -6
- tksheet/themes.py +12 -10
- tksheet/vars.py +52 -2
- {tksheet-7.1.11.dist-info → tksheet-7.1.12.dist-info}/METADATA +1 -1
- tksheet-7.1.12.dist-info/RECORD +20 -0
- tksheet-7.1.11.dist-info/RECORD +0 -20
- {tksheet-7.1.11.dist-info → tksheet-7.1.12.dist-info}/LICENSE.txt +0 -0
- {tksheet-7.1.11.dist-info → tksheet-7.1.12.dist-info}/WHEEL +0 -0
- {tksheet-7.1.11.dist-info → tksheet-7.1.12.dist-info}/top_level.txt +0 -0
tksheet/__init__.py
CHANGED
tksheet/column_headers.py
CHANGED
@@ -1953,6 +1953,7 @@ class ColumnHeaders(tk.Canvas):
|
|
1953
1953
|
self.dropdown.window.reset(**reset_kwargs)
|
1954
1954
|
self.itemconfig(self.dropdown.canvas_id, state="normal")
|
1955
1955
|
self.coords(self.dropdown.canvas_id, self.MT.col_positions[c], ypos)
|
1956
|
+
self.dropdown.window.tkraise()
|
1956
1957
|
else:
|
1957
1958
|
self.dropdown.window = self.PAR.dropdown_class(
|
1958
1959
|
self.winfo_toplevel(),
|
tksheet/functions.py
CHANGED
@@ -204,8 +204,6 @@ def get_dropdown_kwargs(
|
|
204
204
|
def get_dropdown_dict(**kwargs) -> dict:
|
205
205
|
return {
|
206
206
|
"values": kwargs["values"],
|
207
|
-
"window": "no dropdown open",
|
208
|
-
"canvas_id": "no dropdown open",
|
209
207
|
"select_function": kwargs["selection_function"],
|
210
208
|
"modified_function": kwargs["modified_function"],
|
211
209
|
"search_function": kwargs["search_function"],
|
tksheet/main_table.py
CHANGED
@@ -91,6 +91,10 @@ from .text_editor import (
|
|
91
91
|
)
|
92
92
|
from .vars import (
|
93
93
|
USER_OS,
|
94
|
+
bind_add_columns,
|
95
|
+
bind_add_rows,
|
96
|
+
bind_del_columns,
|
97
|
+
bind_del_rows,
|
94
98
|
ctrl_key,
|
95
99
|
rc_binding,
|
96
100
|
symbols_set,
|
@@ -2544,19 +2548,19 @@ class MainTable(tk.Canvas):
|
|
2544
2548
|
self.undo_enabled = True
|
2545
2549
|
self._tksheet_bind("undo_bindings", self.undo)
|
2546
2550
|
self._tksheet_bind("redo_bindings", self.redo)
|
2547
|
-
if binding in
|
2551
|
+
if binding in bind_del_columns:
|
2548
2552
|
self.rc_delete_column_enabled = True
|
2549
2553
|
self.rc_popup_menus_enabled = True
|
2550
2554
|
self.rc_select_enabled = True
|
2551
|
-
if binding in
|
2555
|
+
if binding in bind_del_rows:
|
2552
2556
|
self.rc_delete_row_enabled = True
|
2553
2557
|
self.rc_popup_menus_enabled = True
|
2554
2558
|
self.rc_select_enabled = True
|
2555
|
-
if binding in
|
2559
|
+
if binding in bind_add_columns:
|
2556
2560
|
self.rc_insert_column_enabled = True
|
2557
2561
|
self.rc_popup_menus_enabled = True
|
2558
2562
|
self.rc_select_enabled = True
|
2559
|
-
if binding in
|
2563
|
+
if binding in bind_add_rows:
|
2560
2564
|
self.rc_insert_row_enabled = True
|
2561
2565
|
self.rc_popup_menus_enabled = True
|
2562
2566
|
self.rc_select_enabled = True
|
@@ -2615,25 +2619,16 @@ class MainTable(tk.Canvas):
|
|
2615
2619
|
self.RI.row_selection_enabled = False
|
2616
2620
|
if binding in ("all", "row_drag_and_drop", "move_rows"):
|
2617
2621
|
self.RI.drag_and_drop_enabled = False
|
2618
|
-
if binding in
|
2622
|
+
if binding in bind_del_columns:
|
2619
2623
|
self.rc_delete_column_enabled = False
|
2620
|
-
|
2621
|
-
self.rc_select_enabled = False
|
2622
|
-
if binding in ("all", "rc_delete_row"):
|
2624
|
+
if binding in bind_del_rows:
|
2623
2625
|
self.rc_delete_row_enabled = False
|
2624
|
-
|
2625
|
-
self.rc_select_enabled = False
|
2626
|
-
if binding in ("all", "rc_insert_column"):
|
2626
|
+
if binding in bind_add_columns:
|
2627
2627
|
self.rc_insert_column_enabled = False
|
2628
|
-
|
2629
|
-
self.rc_select_enabled = False
|
2630
|
-
if binding in ("all", "rc_insert_row"):
|
2628
|
+
if binding in bind_add_rows:
|
2631
2629
|
self.rc_insert_row_enabled = False
|
2632
|
-
self.rc_popup_menus_enabled = False
|
2633
|
-
self.rc_select_enabled = False
|
2634
2630
|
if binding in ("all", "right_click_popup_menu", "rc_popup_menu"):
|
2635
2631
|
self.rc_popup_menus_enabled = False
|
2636
|
-
self.rc_select_enabled = False
|
2637
2632
|
if binding in ("all", "right_click_select", "rc_select"):
|
2638
2633
|
self.rc_select_enabled = False
|
2639
2634
|
if binding in ("all", "edit_cell", "edit_bindings", "edit"):
|
@@ -4188,6 +4183,7 @@ class MainTable(tk.Canvas):
|
|
4188
4183
|
create_ops: bool = True,
|
4189
4184
|
create_selections: bool = True,
|
4190
4185
|
add_row_positions: bool = True,
|
4186
|
+
push_ops: bool = True,
|
4191
4187
|
) -> EventDataDict:
|
4192
4188
|
self.saved_column_widths = {}
|
4193
4189
|
saved_displayed_columns = list(self.displayed_columns)
|
@@ -4235,10 +4231,11 @@ class MainTable(tk.Canvas):
|
|
4235
4231
|
)
|
4236
4232
|
if isinstance(self._headers, list):
|
4237
4233
|
self._headers = insert_items(self._headers, header, self.CH.fix_header)
|
4238
|
-
|
4239
|
-
|
4240
|
-
|
4241
|
-
|
4234
|
+
if push_ops:
|
4235
|
+
self.adjust_options_post_add_columns(
|
4236
|
+
cols=tuple(reversed(columns)),
|
4237
|
+
create_ops=create_ops,
|
4238
|
+
)
|
4242
4239
|
if create_selections:
|
4243
4240
|
self.deselect("all")
|
4244
4241
|
for boxst, boxend in consecutive_ranges(tuple(reversed(column_widths))):
|
@@ -4319,6 +4316,7 @@ class MainTable(tk.Canvas):
|
|
4319
4316
|
create_ops: bool = True,
|
4320
4317
|
create_selections: bool = True,
|
4321
4318
|
add_col_positions: bool = True,
|
4319
|
+
push_ops: bool = True,
|
4322
4320
|
) -> EventDataDict:
|
4323
4321
|
self.saved_row_heights = {}
|
4324
4322
|
saved_displayed_rows = list(self.displayed_rows)
|
@@ -4364,10 +4362,11 @@ class MainTable(tk.Canvas):
|
|
4364
4362
|
(self.PAR.ops.default_column_width for i in range(len(self.col_positions) - 1, maxcn + 1)),
|
4365
4363
|
)
|
4366
4364
|
)
|
4367
|
-
|
4368
|
-
|
4369
|
-
|
4370
|
-
|
4365
|
+
if push_ops:
|
4366
|
+
self.adjust_options_post_add_rows(
|
4367
|
+
rows=tuple(reversed(rows)),
|
4368
|
+
create_ops=create_ops,
|
4369
|
+
)
|
4371
4370
|
if create_selections:
|
4372
4371
|
self.deselect("all")
|
4373
4372
|
for boxst, boxend in consecutive_ranges(tuple(reversed(row_heights))):
|
@@ -6752,6 +6751,7 @@ class MainTable(tk.Canvas):
|
|
6752
6751
|
win_w = self.col_positions[c + 1] - self.col_positions[c] + 1
|
6753
6752
|
if anchor == "nw":
|
6754
6753
|
if kwargs["state"] == "normal":
|
6754
|
+
self.text_editor.window.update_idletasks()
|
6755
6755
|
ypos = self.row_positions[r] + self.text_editor.window.winfo_height() - 1
|
6756
6756
|
else:
|
6757
6757
|
ypos = self.row_positions[r + 1]
|
@@ -6770,8 +6770,9 @@ class MainTable(tk.Canvas):
|
|
6770
6770
|
}
|
6771
6771
|
if self.dropdown.window:
|
6772
6772
|
self.dropdown.window.reset(**reset_kwargs)
|
6773
|
-
self.itemconfig(self.dropdown.canvas_id, state="normal", anchor=anchor)
|
6774
6773
|
self.coords(self.dropdown.canvas_id, self.col_positions[c], ypos)
|
6774
|
+
self.itemconfig(self.dropdown.canvas_id, state="normal", anchor=anchor)
|
6775
|
+
self.dropdown.window.tkraise()
|
6775
6776
|
else:
|
6776
6777
|
self.dropdown.window = self.PAR.dropdown_class(
|
6777
6778
|
self.winfo_toplevel(),
|
tksheet/row_index.py
CHANGED
@@ -2029,6 +2029,7 @@ class RowIndex(tk.Canvas):
|
|
2029
2029
|
win_w = self.current_width + 1
|
2030
2030
|
if anchor == "nw":
|
2031
2031
|
if kwargs["state"] == "normal":
|
2032
|
+
self.text_editor.window.update_idletasks()
|
2032
2033
|
ypos = self.MT.row_positions[r] + self.text_editor.window.winfo_height() - 1
|
2033
2034
|
else:
|
2034
2035
|
ypos = self.MT.row_positions[r + 1]
|
@@ -2049,6 +2050,7 @@ class RowIndex(tk.Canvas):
|
|
2049
2050
|
self.dropdown.window.reset(**reset_kwargs)
|
2050
2051
|
self.itemconfig(self.dropdown.canvas_id, state="normal", anchor=anchor)
|
2051
2052
|
self.coords(self.dropdown.canvas_id, 0, ypos)
|
2053
|
+
self.dropdown.window.tkraise()
|
2052
2054
|
else:
|
2053
2055
|
self.dropdown.window = self.PAR.dropdown_class(
|
2054
2056
|
self.winfo_toplevel(),
|
tksheet/sheet.py
CHANGED
@@ -1939,6 +1939,7 @@ class Sheet(tk.Frame):
|
|
1939
1939
|
emit_event: bool = False,
|
1940
1940
|
create_selections: bool = True,
|
1941
1941
|
add_column_widths: bool = True,
|
1942
|
+
push_ops: bool = True,
|
1942
1943
|
redraw: bool = True,
|
1943
1944
|
) -> EventDataDict:
|
1944
1945
|
total_cols = None
|
@@ -2005,6 +2006,7 @@ class Sheet(tk.Frame):
|
|
2005
2006
|
selected=self.MT.selected,
|
2006
2007
|
),
|
2007
2008
|
create_selections=create_selections,
|
2009
|
+
push_ops=push_ops,
|
2008
2010
|
)
|
2009
2011
|
if undo:
|
2010
2012
|
self.MT.undo_stack.append(ev_stack_dict(event_data))
|
@@ -2024,6 +2026,7 @@ class Sheet(tk.Frame):
|
|
2024
2026
|
emit_event: bool = False,
|
2025
2027
|
create_selections: bool = True,
|
2026
2028
|
add_row_heights: bool = True,
|
2029
|
+
push_ops: bool = True,
|
2027
2030
|
redraw: bool = True,
|
2028
2031
|
) -> EventDataDict:
|
2029
2032
|
old_total = self.MT.equalize_data_row_lengths()
|
@@ -2098,6 +2101,7 @@ class Sheet(tk.Frame):
|
|
2098
2101
|
selected=self.MT.selected,
|
2099
2102
|
),
|
2100
2103
|
create_selections=create_selections,
|
2104
|
+
push_ops=push_ops,
|
2101
2105
|
)
|
2102
2106
|
if undo:
|
2103
2107
|
self.MT.undo_stack.append(ev_stack_dict(event_data))
|
@@ -2571,7 +2575,7 @@ class Sheet(tk.Frame):
|
|
2571
2575
|
self.MT.open_dropdown_window(r, c)
|
2572
2576
|
return self
|
2573
2577
|
|
2574
|
-
def close_dropdown(self, r: int, c: int) -> Sheet:
|
2578
|
+
def close_dropdown(self, r: int | None = None, c: int | None = None) -> Sheet:
|
2575
2579
|
self.MT.close_dropdown_window(r, c)
|
2576
2580
|
return self
|
2577
2581
|
|
@@ -2579,7 +2583,7 @@ class Sheet(tk.Frame):
|
|
2579
2583
|
self.CH.open_dropdown_window(c)
|
2580
2584
|
return self
|
2581
2585
|
|
2582
|
-
def close_header_dropdown(self, c: int) -> Sheet:
|
2586
|
+
def close_header_dropdown(self, c: int | None = None) -> Sheet:
|
2583
2587
|
self.CH.close_dropdown_window(c)
|
2584
2588
|
return self
|
2585
2589
|
|
@@ -2587,7 +2591,7 @@ class Sheet(tk.Frame):
|
|
2587
2591
|
self.RI.open_dropdown_window(r)
|
2588
2592
|
return self
|
2589
2593
|
|
2590
|
-
def close_index_dropdown(self, r: int) -> Sheet:
|
2594
|
+
def close_index_dropdown(self, r: int | None = None) -> Sheet:
|
2591
2595
|
self.RI.close_dropdown_window(r)
|
2592
2596
|
return self
|
2593
2597
|
|
@@ -4470,6 +4474,7 @@ class Sheet(tk.Frame):
|
|
4470
4474
|
iid_column: int,
|
4471
4475
|
parent_column: int,
|
4472
4476
|
text_column: None | int = None,
|
4477
|
+
push_ops: bool = False,
|
4473
4478
|
) -> Sheet:
|
4474
4479
|
if text_column is None:
|
4475
4480
|
text_column = iid_column
|
@@ -4518,6 +4523,7 @@ class Sheet(tk.Frame):
|
|
4518
4523
|
row_index=True,
|
4519
4524
|
create_selections=False,
|
4520
4525
|
fill=False,
|
4526
|
+
push_ops=push_ops,
|
4521
4527
|
)
|
4522
4528
|
self.RI.tree_rns = {n.iid: i for i, n in enumerate(self.MT._row_index)}
|
4523
4529
|
self.hide_rows(
|
@@ -6231,8 +6237,8 @@ class Sheet(tk.Frame):
|
|
6231
6237
|
kwargs = self.RI.get_cell_kwargs(r_, key="dropdown")
|
6232
6238
|
if kwargs:
|
6233
6239
|
kwargs["values"] = values
|
6234
|
-
if self.RI.
|
6235
|
-
self.RI.
|
6240
|
+
if self.RI.dropdown.open:
|
6241
|
+
self.RI.dropdown.window.values(values)
|
6236
6242
|
if set_value is not None:
|
6237
6243
|
self.MT.row_index(newindex=set_value, index=r_)
|
6238
6244
|
# here
|
@@ -6454,7 +6460,7 @@ class Dropdown(Sheet):
|
|
6454
6460
|
width: int | None = None,
|
6455
6461
|
height: int | None = None,
|
6456
6462
|
font: None | tuple[str, int, str] = None,
|
6457
|
-
outline_thickness: int =
|
6463
|
+
outline_thickness: int = 2,
|
6458
6464
|
values: list[object] = [],
|
6459
6465
|
close_dropdown_window: Callable | None = None,
|
6460
6466
|
search_function: Callable = dropdown_search_function,
|
@@ -6512,6 +6518,7 @@ class Dropdown(Sheet):
|
|
6512
6518
|
align: str,
|
6513
6519
|
values: list[object] | None = None,
|
6514
6520
|
) -> None:
|
6521
|
+
self.deselect(redraw=False)
|
6515
6522
|
self.r = r
|
6516
6523
|
self.c = c
|
6517
6524
|
self.row = -1
|
tksheet/themes.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
|
3
|
-
|
3
|
+
from .other_classes import DotDict
|
4
|
+
|
5
|
+
theme_light_blue: dict[str, str] = DotDict({
|
4
6
|
"popup_menu_fg": "#000000",
|
5
7
|
"popup_menu_bg": "#FFFFFF",
|
6
8
|
"popup_menu_highlight_bg": "#DCDEE0",
|
@@ -70,9 +72,9 @@ theme_light_blue: dict[str, str] = {
|
|
70
72
|
"horizontal_scroll_not_active_fg": "#DADCE0",
|
71
73
|
"vertical_scroll_pressed_fg": "#bdc1c6",
|
72
74
|
"horizontal_scroll_pressed_fg": "#bdc1c6",
|
73
|
-
}
|
75
|
+
})
|
74
76
|
|
75
|
-
theme_light_green: dict[str, str] = {
|
77
|
+
theme_light_green: dict[str, str] = DotDict({
|
76
78
|
"popup_menu_fg": "#000000",
|
77
79
|
"popup_menu_bg": "#FFFFFF",
|
78
80
|
"popup_menu_highlight_bg": "#DCDEE0",
|
@@ -142,9 +144,9 @@ theme_light_green: dict[str, str] = {
|
|
142
144
|
"horizontal_scroll_not_active_fg": "#c1c1c1",
|
143
145
|
"vertical_scroll_pressed_fg": "#707070",
|
144
146
|
"horizontal_scroll_pressed_fg": "#707070",
|
145
|
-
}
|
147
|
+
})
|
146
148
|
|
147
|
-
theme_dark: dict[str, str] = {
|
149
|
+
theme_dark: dict[str, str] = DotDict({
|
148
150
|
"popup_menu_fg": "white",
|
149
151
|
"popup_menu_bg": "gray15",
|
150
152
|
"popup_menu_highlight_bg": "gray40",
|
@@ -214,9 +216,9 @@ theme_dark: dict[str, str] = {
|
|
214
216
|
"horizontal_scroll_not_active_fg": "#3b3b3d",
|
215
217
|
"vertical_scroll_pressed_fg": "#a0a0a0",
|
216
218
|
"horizontal_scroll_pressed_fg": "#a0a0a0",
|
217
|
-
}
|
219
|
+
})
|
218
220
|
|
219
|
-
theme_black: dict[str, str] = {
|
221
|
+
theme_black: dict[str, str] = DotDict({
|
220
222
|
"popup_menu_fg": "white",
|
221
223
|
"popup_menu_bg": "gray15",
|
222
224
|
"popup_menu_highlight_bg": "gray40",
|
@@ -286,9 +288,9 @@ theme_black: dict[str, str] = {
|
|
286
288
|
"horizontal_scroll_not_active_fg": "#3b3a39",
|
287
289
|
"vertical_scroll_pressed_fg": "#a0a0a0",
|
288
290
|
"horizontal_scroll_pressed_fg": "#a0a0a0",
|
289
|
-
}
|
291
|
+
})
|
290
292
|
|
291
|
-
theme_dark_blue: dict[str, str] = theme_black.copy()
|
293
|
+
theme_dark_blue: dict[str, str] = DotDict(theme_black.copy())
|
292
294
|
theme_dark_blue["header_fg"] = "#6ACAD8"
|
293
295
|
theme_dark_blue["header_selected_cells_fg"] = "#6ACAD8"
|
294
296
|
theme_dark_blue["index_fg"] = "#6ACAD8"
|
@@ -303,7 +305,7 @@ theme_dark_blue["index_selected_rows_bg"] = "#6ACAD8"
|
|
303
305
|
theme_dark_blue["table_selected_rows_border_fg"] = "#6ACAD8"
|
304
306
|
theme_dark_blue["table_selected_columns_border_fg"] = "#6ACAD8"
|
305
307
|
|
306
|
-
theme_dark_green: dict[str, str] = theme_black.copy()
|
308
|
+
theme_dark_green: dict[str, str] = DotDict(theme_black.copy())
|
307
309
|
theme_dark_green["header_fg"] = "#66FFBF"
|
308
310
|
theme_dark_green["header_selected_cells_fg"] = "#66FFBF"
|
309
311
|
theme_dark_green["index_fg"] = "#66FFBF"
|
tksheet/vars.py
CHANGED
@@ -9,23 +9,28 @@ symbols_set: set[str] = set("""!#$%&'()*+,-./:;"@[]^_`{|}~>?= \\""")
|
|
9
9
|
nonelike: set[object] = {None, "none", ""}
|
10
10
|
truthy: set[object] = {True, "true", "t", "yes", "y", "on", "1", 1, 1.0}
|
11
11
|
falsy: set[object] = {False, "false", "f", "no", "n", "off", "0", 0, 0.0}
|
12
|
+
|
12
13
|
val_modifying_options: set[str, str, str] = {"checkbox", "format", "dropdown"}
|
13
|
-
|
14
|
+
|
15
|
+
named_span_types: set[str] = {
|
14
16
|
"format",
|
15
17
|
"highlight",
|
16
18
|
"dropdown",
|
17
19
|
"checkbox",
|
18
20
|
"readonly",
|
19
21
|
"align",
|
20
|
-
|
22
|
+
}
|
23
|
+
|
21
24
|
emitted_events: set[str] = {
|
22
25
|
"<<SheetModified>>",
|
23
26
|
"<<SheetRedrawn>>",
|
24
27
|
"<<SheetSelect>>",
|
25
28
|
}
|
29
|
+
|
26
30
|
backwards_compatibility_keys: dict[str, str] = {
|
27
31
|
"font": "table_font",
|
28
32
|
}
|
33
|
+
|
29
34
|
text_editor_to_unbind: tuple[str] = (
|
30
35
|
"<Alt-Return>",
|
31
36
|
"<Alt-KP_Enter>",
|
@@ -36,6 +41,7 @@ text_editor_to_unbind: tuple[str] = (
|
|
36
41
|
"<FocusOut>",
|
37
42
|
"<Escape>",
|
38
43
|
)
|
44
|
+
|
39
45
|
scrollbar_options_keys: set[str] = {
|
40
46
|
"vertical_scroll_background",
|
41
47
|
"horizontal_scroll_background",
|
@@ -70,3 +76,47 @@ scrollbar_options_keys: set[str] = {
|
|
70
76
|
"vertical_scroll_pressed_fg",
|
71
77
|
"horizontal_scroll_pressed_fg",
|
72
78
|
}
|
79
|
+
|
80
|
+
bind_add_columns: set[str] = {
|
81
|
+
"all",
|
82
|
+
"rc_insert_column",
|
83
|
+
"insert_column",
|
84
|
+
"add_column",
|
85
|
+
"insert_columns",
|
86
|
+
"add_columns",
|
87
|
+
"insert column",
|
88
|
+
"add column",
|
89
|
+
}
|
90
|
+
|
91
|
+
bind_del_columns: set[str] = {
|
92
|
+
"all",
|
93
|
+
"rc_delete_column",
|
94
|
+
"delete_column",
|
95
|
+
"del_column",
|
96
|
+
"delete_columns",
|
97
|
+
"del_columns",
|
98
|
+
"delete columns",
|
99
|
+
"del columns",
|
100
|
+
}
|
101
|
+
|
102
|
+
bind_add_rows: set[str] = {
|
103
|
+
"all",
|
104
|
+
"rc_insert_row",
|
105
|
+
"insert_row",
|
106
|
+
"add_row",
|
107
|
+
"insert_rows",
|
108
|
+
"add_rows",
|
109
|
+
"insert row",
|
110
|
+
"add row",
|
111
|
+
}
|
112
|
+
|
113
|
+
bind_del_rows: set[str] = {
|
114
|
+
"all",
|
115
|
+
"rc_delete_row",
|
116
|
+
"delete_row",
|
117
|
+
"del_row",
|
118
|
+
"delete_rows",
|
119
|
+
"del_rows",
|
120
|
+
"delete rows",
|
121
|
+
"del rows",
|
122
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
tksheet/__init__.py,sha256=NUxHKOZFQzf4A8eiKohXLDQe-9iyK2d4ZDzkDr4_GQk,2014
|
2
|
+
tksheet/colors.py,sha256=1k06VorynLmnC4FdJg8H4reIA6rXaeXBpdMwXLhN8oc,51594
|
3
|
+
tksheet/column_headers.py,sha256=eZKZGZEstg5HeCtvdVYmu5nqoY0bdxrwYScQvZz5xEQ,100496
|
4
|
+
tksheet/formatters.py,sha256=DXif00aq9DgFpXwkbiqD86KxtDg0Meop51hLY-KcGNQ,10037
|
5
|
+
tksheet/functions.py,sha256=1aI9sN-O0DOFITj0bOORzI9XQteThciCXhTr8GPHgkw,39616
|
6
|
+
tksheet/main_table.py,sha256=z9Q8BjFqoGW88Cm1av7nR8fkYw-HxnOMVlBqgY3R1gU,318838
|
7
|
+
tksheet/other_classes.py,sha256=P3FYUYreLhstATvHCNow8sDQoCsD_02KB6oXcca3ahE,13628
|
8
|
+
tksheet/row_index.py,sha256=ytD1A6dmzzrM9EYm-IIJ0_xo-2XVfecKgYBG_Hxm_m8,105999
|
9
|
+
tksheet/sheet.py,sha256=rc4BuXw9JxV3_Ja-fdBDEkE_1P6jNl8jhPs8MoGuw6E,259740
|
10
|
+
tksheet/sheet_options.py,sha256=mh0rTvWrFvIKaiv88jtMZy0TSA8zTS1GXSe88u8_rzk,11978
|
11
|
+
tksheet/text_editor.py,sha256=81_IZKrTVa2KIx2cJ4n3cFvFMAwvbHIQYgqtyat-97I,6681
|
12
|
+
tksheet/themes.py,sha256=0XY97zB9e26edyxMWutofNarNon8Pp5lpprHYeL_4b0,13490
|
13
|
+
tksheet/top_left_rectangle.py,sha256=-2u9GfOvcqhkKwHEtbqdFvXCY3RbvL5k2Sh9l3r_k04,8275
|
14
|
+
tksheet/types.py,sha256=IgoEHMbceKpakcZtanxKaKJ4RdCq7UW6EoEIIz5O59k,340
|
15
|
+
tksheet/vars.py,sha256=Nb0mhxJt-SXipi3cE9J9Ea1H1iPqC8PRvUR9CqqMlVA,3062
|
16
|
+
tksheet-7.1.12.dist-info/LICENSE.txt,sha256=ndbcCPe9SlHfweE_W2RAueWUe2k7yudyxYLq6WjFdn4,1101
|
17
|
+
tksheet-7.1.12.dist-info/METADATA,sha256=fWMZLYa3BI5udpVfd5vuyt-S7i17enOimu6FNwkKOlc,6014
|
18
|
+
tksheet-7.1.12.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
19
|
+
tksheet-7.1.12.dist-info/top_level.txt,sha256=my61PXCcck_HHAc9cq3NAlyAr3A3FXxCy9gptEOaCN8,8
|
20
|
+
tksheet-7.1.12.dist-info/RECORD,,
|
tksheet-7.1.11.dist-info/RECORD
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
tksheet/__init__.py,sha256=w1YOGIZHF7gjLLEWIH-XLK-ftzuYgSiLTvMUg6ORTYM,2014
|
2
|
-
tksheet/colors.py,sha256=1k06VorynLmnC4FdJg8H4reIA6rXaeXBpdMwXLhN8oc,51594
|
3
|
-
tksheet/column_headers.py,sha256=6yYncfnKKKlSGTln35eP74e2Oom9A2XX85SrIsDeq9g,100452
|
4
|
-
tksheet/formatters.py,sha256=DXif00aq9DgFpXwkbiqD86KxtDg0Meop51hLY-KcGNQ,10037
|
5
|
-
tksheet/functions.py,sha256=ytmHQtSa8cN6dKYLFra5G0393-4sU7bivvT_U4wxksI,39697
|
6
|
-
tksheet/main_table.py,sha256=1K-JpLixwx_cnqp5IXeghRWyzaMdQiP6BPm6QVOtfzs,319012
|
7
|
-
tksheet/other_classes.py,sha256=P3FYUYreLhstATvHCNow8sDQoCsD_02KB6oXcca3ahE,13628
|
8
|
-
tksheet/row_index.py,sha256=BnQF-lxH50MfPWlXW94oYSEJXoPewoX29VS7j0X1Jwc,105895
|
9
|
-
tksheet/sheet.py,sha256=dvYtZpNJsu6WfjdUKt6RKcwKeDY5c7wZ-tQfL1rjglQ,259484
|
10
|
-
tksheet/sheet_options.py,sha256=mh0rTvWrFvIKaiv88jtMZy0TSA8zTS1GXSe88u8_rzk,11978
|
11
|
-
tksheet/text_editor.py,sha256=81_IZKrTVa2KIx2cJ4n3cFvFMAwvbHIQYgqtyat-97I,6681
|
12
|
-
tksheet/themes.py,sha256=OwUe31NRbosjw3ZoZsMyB8lNVyYin9YcKLhCturi5q8,13398
|
13
|
-
tksheet/top_left_rectangle.py,sha256=-2u9GfOvcqhkKwHEtbqdFvXCY3RbvL5k2Sh9l3r_k04,8275
|
14
|
-
tksheet/types.py,sha256=IgoEHMbceKpakcZtanxKaKJ4RdCq7UW6EoEIIz5O59k,340
|
15
|
-
tksheet/vars.py,sha256=8Qxas-m5nU-yMaeAweO4Z30FM9cOQoRTiOsH4kgZp5s,2288
|
16
|
-
tksheet-7.1.11.dist-info/LICENSE.txt,sha256=ndbcCPe9SlHfweE_W2RAueWUe2k7yudyxYLq6WjFdn4,1101
|
17
|
-
tksheet-7.1.11.dist-info/METADATA,sha256=SRDk-Is6G0UmdJ6PAMgPzkwumb4PLOFETNplec7bkbE,6014
|
18
|
-
tksheet-7.1.11.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
19
|
-
tksheet-7.1.11.dist-info/top_level.txt,sha256=my61PXCcck_HHAc9cq3NAlyAr3A3FXxCy9gptEOaCN8,8
|
20
|
-
tksheet-7.1.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|