File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ class Style:
173
173
box_sizing : str | None = None
174
174
color : str | None = None
175
175
column_gap : int | str | None = None
176
- columns : int | None = None
176
+ columns : int | str | None = None
177
177
cursor : str | None = None
178
178
display : Literal [
179
179
# precomposed values
@@ -273,7 +273,7 @@ def to_style_proto(s: Style) -> pb.Style:
273
273
box_sizing = s .box_sizing ,
274
274
color = s .color ,
275
275
column_gap = _px_str (s .column_gap ),
276
- columns = s .columns ,
276
+ columns = str ( s .columns ) ,
277
277
cursor = s .cursor ,
278
278
display = s .display ,
279
279
flex_basis = s .flex_basis ,
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ message Style {
228
228
optional string box_sizing = 47 ;
229
229
optional string color = 4 ;
230
230
optional string column_gap = 33 ;
231
- optional int32 columns = 5 ;
231
+ optional string columns = 5 ;
232
232
optional string cursor = 46 ;
233
233
optional string display = 6 ;
234
234
optional string flex_basis = 7 ;
You can’t perform that action at this time.
0 commit comments