wbcore 1.59.3__py2.py3-none-any.whl → 1.59.4__py2.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.
|
@@ -54,7 +54,8 @@ class Field:
|
|
|
54
54
|
lock_position: Literal["left"] | Literal["right"] | None = None
|
|
55
55
|
movable: bool = True
|
|
56
56
|
resizable: bool = True
|
|
57
|
-
|
|
57
|
+
suppress_auto_size: bool = False
|
|
58
|
+
auto_size: bool = False
|
|
58
59
|
menu: bool = True
|
|
59
60
|
size_to_fit: bool = True
|
|
60
61
|
|
|
@@ -110,7 +111,10 @@ class Field:
|
|
|
110
111
|
if self.lock_position:
|
|
111
112
|
repr["lock_position"] = self.lock_position
|
|
112
113
|
|
|
113
|
-
if
|
|
114
|
+
if self.suppress_auto_size:
|
|
115
|
+
repr["suppress_auto_size"] = self.suppress_auto_size
|
|
116
|
+
|
|
117
|
+
if self.auto_size:
|
|
114
118
|
repr["auto_size"] = self.auto_size
|
|
115
119
|
|
|
116
120
|
if not self.menu:
|
|
@@ -214,6 +218,7 @@ class ListDisplay:
|
|
|
214
218
|
condensed: bool = False
|
|
215
219
|
|
|
216
220
|
auto_height: bool = False
|
|
221
|
+
auto_size_columns: bool = False
|
|
217
222
|
|
|
218
223
|
tree: bool = False
|
|
219
224
|
tree_group_parent_pointer: str | None = (
|
|
@@ -242,6 +247,7 @@ class ListDisplay:
|
|
|
242
247
|
yield "ordering_field", self.ordering_field
|
|
243
248
|
|
|
244
249
|
yield "auto_height", self.auto_height
|
|
250
|
+
yield "auto_size_columns", self.auto_size_columns
|
|
245
251
|
|
|
246
252
|
if self.condensed:
|
|
247
253
|
yield "condensed", self.condensed
|
|
@@ -1030,7 +1030,7 @@ wbcore/metadata/configs/display/__init__.py,sha256=K3CdAUuC-YbowUusZ9F6vGfepppSq
|
|
|
1030
1030
|
wbcore/metadata/configs/display/configs.py,sha256=T_jJaryQf7hMqgJ_m2b685ynBxTQgsb526Zw4maBcsI,654
|
|
1031
1031
|
wbcore/metadata/configs/display/display.py,sha256=WszWJutDuE_95RBlIxj7FkR2WxGhRuQ4fUcwYmGlfY8,6236
|
|
1032
1032
|
wbcore/metadata/configs/display/formatting.py,sha256=fjf-c0rcRrdloVZnRTVJCumeSAt9TT1L64qcv1Mf9dU,1571
|
|
1033
|
-
wbcore/metadata/configs/display/list_display.py,sha256=
|
|
1033
|
+
wbcore/metadata/configs/display/list_display.py,sha256=yeHHC1v6xN8cTt3u84i-nIbx5D2Xv1QKviNwSD9j1CM,9008
|
|
1034
1034
|
wbcore/metadata/configs/display/models.py,sha256=AFGy0EZF9Fgsw-QfEEjTeuQO4uk6rVxQSAV1ZePwucE,998
|
|
1035
1035
|
wbcore/metadata/configs/display/view_config.py,sha256=3GbaYnaY-JIIX3HpBEJBlML8SO82928r8OCRc_7aEtI,3312
|
|
1036
1036
|
wbcore/metadata/configs/display/views.py,sha256=wT6hiq_IHJ_h-bG0zIij5NJz3k4xYNtcS-cZVbTm3uY,1598
|
|
@@ -1231,6 +1231,6 @@ wbcore/viewsets/generics.py,sha256=lKDq9UY_Tyc56u1bqaIEvHGgoaXwXxpZ1c3fLVteptI,1
|
|
|
1231
1231
|
wbcore/viewsets/mixins.py,sha256=IdHd_uixOv3ExKoHxTgL5Bt8OELIwfYwhBZm0nsvZfc,12054
|
|
1232
1232
|
wbcore/viewsets/utils.py,sha256=4520Ij3ASM8lOa8QZkCqbBfOexVRiZu688eW-PGqMOA,882
|
|
1233
1233
|
wbcore/viewsets/viewsets.py,sha256=FPPESunEjlunDr5VFsjTfsquTS3iDSQkw0H6QjMKPqk,6574
|
|
1234
|
-
wbcore-1.59.
|
|
1235
|
-
wbcore-1.59.
|
|
1236
|
-
wbcore-1.59.
|
|
1234
|
+
wbcore-1.59.4.dist-info/METADATA,sha256=RS3Y7NMquMipvCLVmnoBmFptUkmBi6DCmE7z91pNl4c,2332
|
|
1235
|
+
wbcore-1.59.4.dist-info/WHEEL,sha256=aha0VrrYvgDJ3Xxl3db_g_MDIW-ZexDdrc_m-Hk8YY4,105
|
|
1236
|
+
wbcore-1.59.4.dist-info/RECORD,,
|
|
File without changes
|