flet 0.70.0.dev5774__py3-none-any.whl → 0.70.0.dev5776__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.

Potentially problematic release.


This version of flet might be problematic. Click here for more details.

Files changed (63) hide show
  1. flet/controls/control.py +12 -6
  2. flet/controls/core/animated_switcher.py +3 -2
  3. flet/controls/core/autofill_group.py +6 -2
  4. flet/controls/core/dismissible.py +12 -10
  5. flet/controls/core/drag_target.py +3 -2
  6. flet/controls/core/draggable.py +9 -9
  7. flet/controls/core/icon.py +16 -12
  8. flet/controls/core/interactive_viewer.py +24 -23
  9. flet/controls/core/pagelet.py +3 -2
  10. flet/controls/core/reorderable_draggable.py +3 -2
  11. flet/controls/core/safe_area.py +3 -2
  12. flet/controls/core/text_span.py +5 -3
  13. flet/controls/core/window_drag_area.py +3 -2
  14. flet/controls/cupertino/cupertino_action_sheet.py +10 -5
  15. flet/controls/cupertino/cupertino_action_sheet_action.py +3 -4
  16. flet/controls/cupertino/cupertino_activity_indicator.py +4 -3
  17. flet/controls/cupertino/cupertino_alert_dialog.py +6 -3
  18. flet/controls/cupertino/cupertino_button.py +6 -5
  19. flet/controls/cupertino/cupertino_context_menu.py +8 -4
  20. flet/controls/cupertino/cupertino_context_menu_action.py +3 -4
  21. flet/controls/cupertino/cupertino_date_picker.py +44 -28
  22. flet/controls/cupertino/cupertino_dialog_action.py +3 -4
  23. flet/controls/cupertino/cupertino_list_tile.py +3 -4
  24. flet/controls/cupertino/cupertino_navigation_bar.py +6 -5
  25. flet/controls/cupertino/cupertino_picker.py +14 -10
  26. flet/controls/cupertino/cupertino_segmented_button.py +6 -5
  27. flet/controls/cupertino/cupertino_slider.py +16 -12
  28. flet/controls/cupertino/cupertino_sliding_segmented_button.py +6 -5
  29. flet/controls/cupertino/cupertino_timer_picker.py +38 -31
  30. flet/controls/material/alert_dialog.py +6 -5
  31. flet/controls/material/app_bar.py +17 -14
  32. flet/controls/material/banner.py +13 -11
  33. flet/controls/material/bottom_app_bar.py +5 -4
  34. flet/controls/material/bottom_sheet.py +5 -4
  35. flet/controls/material/button.py +12 -4
  36. flet/controls/material/chip.py +13 -12
  37. flet/controls/material/circle_avatar.py +17 -13
  38. flet/controls/material/datatable.py +48 -41
  39. flet/controls/material/divider.py +24 -14
  40. flet/controls/material/dropdown.py +5 -3
  41. flet/controls/material/expansion_tile.py +11 -22
  42. flet/controls/material/floating_action_button.py +32 -23
  43. flet/controls/material/icon_button.py +7 -3
  44. flet/controls/material/navigation_rail.py +14 -11
  45. flet/controls/material/outlined_button.py +7 -3
  46. flet/controls/material/progress_bar.py +18 -10
  47. flet/controls/material/radio_group.py +5 -1
  48. flet/controls/material/range_slider.py +13 -13
  49. flet/controls/material/segmented_button.py +21 -17
  50. flet/controls/material/selection_area.py +3 -2
  51. flet/controls/material/slider.py +16 -12
  52. flet/controls/material/snack_bar.py +18 -10
  53. flet/controls/material/switch.py +6 -5
  54. flet/controls/material/tabs.py +18 -14
  55. flet/controls/material/textfield.py +22 -14
  56. flet/controls/material/vertical_divider.py +14 -12
  57. flet/controls/page.py +2 -1
  58. flet/version.py +1 -1
  59. {flet-0.70.0.dev5774.dist-info → flet-0.70.0.dev5776.dist-info}/METADATA +5 -5
  60. {flet-0.70.0.dev5774.dist-info → flet-0.70.0.dev5776.dist-info}/RECORD +63 -63
  61. {flet-0.70.0.dev5774.dist-info → flet-0.70.0.dev5776.dist-info}/WHEEL +0 -0
  62. {flet-0.70.0.dev5774.dist-info → flet-0.70.0.dev5776.dist-info}/entry_points.txt +0 -0
  63. {flet-0.70.0.dev5774.dist-info → flet-0.70.0.dev5776.dist-info}/top_level.txt +0 -0
@@ -23,7 +23,7 @@ class Segment(Control):
23
23
  A segment for a [`SegmentedButton`][flet.].
24
24
 
25
25
  Raises:
26
- AssertionError: If neither [`icon`][(c).] nor [`label`][(c).] is set.
26
+ ValueError: If neither [`icon`][(c).] nor [`label`][(c).] is set.
27
27
  """
28
28
 
29
29
  value: str
@@ -45,12 +45,13 @@ class Segment(Control):
45
45
 
46
46
  def before_update(self):
47
47
  super().before_update()
48
- assert (
48
+ if not (
49
49
  (isinstance(self.icon, IconData))
50
50
  or (isinstance(self.icon, Control) and self.icon.visible)
51
51
  or (isinstance(self.label, str))
52
52
  or (isinstance(self.label, Control) and self.label.visible)
53
- ), "one of icon or label must be set and visible"
53
+ ):
54
+ raise ValueError("one of icon or label must be set and visible")
54
55
 
55
56
 
56
57
  @control("SegmentedButton")
@@ -59,11 +60,13 @@ class SegmentedButton(LayoutControl):
59
60
  A segmented button control.
60
61
 
61
62
  Raises:
62
- AssertionError: If [`segments`][(c).] is empty or does not have at
63
+ ValueError: If [`segments`][(c).] is empty or does not have at
63
64
  least one visible `Segment`.
64
- AssertionError: If [`selected`][(c).] is empty and [`allow_empty_selection`][(c).] is `False`.
65
- AssertionError: If [`selected`][(c).] has more than one item and [`allow_multiple_selection`][(c).] is `False`.
66
- """ # noqa: E501
65
+ ValueError: If [`selected`][(c).] is empty and
66
+ [`allow_empty_selection`][(c).] is `False`.
67
+ ValueError: If [`selected`][(c).] has more than one item and
68
+ [`allow_multiple_selection`][(c).] is `False`.
69
+ """
67
70
 
68
71
  segments: list[Segment]
69
72
  """
@@ -153,13 +156,14 @@ class SegmentedButton(LayoutControl):
153
156
 
154
157
  def before_update(self):
155
158
  super().before_update()
156
- assert any(segment.visible for segment in self.segments), (
157
- "segments must have at minimum one visible Segment"
158
- )
159
- assert len(self.selected) > 0 or self.allow_empty_selection, (
160
- "allow_empty_selection must be True for selected to be empty"
161
- )
162
- assert len(self.selected) < 2 or self.allow_multiple_selection, (
163
- "allow_multiple_selection must be True for selected "
164
- "to have more than one item"
165
- )
159
+ if not any(segment.visible for segment in self.segments):
160
+ raise ValueError("segments must have at minimum one visible Segment")
161
+ if len(self.selected) == 0 and not self.allow_empty_selection:
162
+ raise ValueError(
163
+ "allow_empty_selection must be True for selected to be empty"
164
+ )
165
+ if len(self.selected) >= 2 and not self.allow_multiple_selection:
166
+ raise ValueError(
167
+ "allow_multiple_selection must be True for selected to "
168
+ "have more than one item"
169
+ )
@@ -14,7 +14,7 @@ class SelectionArea(Control):
14
14
  selection for its child control.
15
15
 
16
16
  Raises:
17
- AssertionError: If [`content`][(c).] is not visible
17
+ ValueError: If [`content`][(c).] is not visible
18
18
  """
19
19
 
20
20
  content: Control
@@ -33,4 +33,5 @@ class SelectionArea(Control):
33
33
 
34
34
  def before_update(self):
35
35
  super().before_update()
36
- assert self.content.visible, "content must be visible"
36
+ if not self.content.visible:
37
+ raise ValueError("content must be visible")
@@ -34,9 +34,9 @@ class Slider(LayoutControl, AdaptiveControl):
34
34
  of setting changes.
35
35
 
36
36
  Raises:
37
- AssertionError: If [`min`][(c).] is greater than or equal to [`max`][(c).].
38
- AssertionError: If [`min`][(c).] is greater than or equal to [`value`][(c).].
39
- AssertionError: If [`max`][(c).] is less than or equal to [`value`][(c).].
37
+ ValueError: If [`min`][(c).] is greater than [`max`][(c).].
38
+ ValueError: If [`value`][(c).] is less than [`min`][(c).].
39
+ ValueError: If [`value`][(c).] is greater than [`max`][(c).].
40
40
  """
41
41
 
42
42
  value: Optional[Number] = None
@@ -216,12 +216,16 @@ class Slider(LayoutControl, AdaptiveControl):
216
216
 
217
217
  def before_update(self):
218
218
  super().before_update()
219
- assert self.max is None or self.min <= self.max, (
220
- f"min ({self.min}) must be less than or equal to max ({self.max})"
221
- )
222
- assert self.value is None or self.value >= self.min, (
223
- f"value ({self.value}) must be greater than or equal to min ({self.min})"
224
- )
225
- assert self.value is None or self.value <= self.max, (
226
- f"value ({self.value}) must be less than or equal to max ({self.max})"
227
- )
219
+ if self.max is not None and self.min > self.max:
220
+ raise ValueError(
221
+ f"min ({self.min}) must be less than or equal to max ({self.max})"
222
+ )
223
+ if self.value is not None and self.value < self.min:
224
+ raise ValueError(
225
+ f"value ({self.value}) must be greater than or "
226
+ f"equal to min ({self.min})"
227
+ )
228
+ if self.value is not None and self.value > self.max:
229
+ raise ValueError(
230
+ f"value ({self.value}) must be less than or equal to max ({self.max})"
231
+ )
@@ -93,6 +93,11 @@ class SnackBar(DialogControl):
93
93
  """
94
94
  A lightweight message with an optional action which briefly displays at the
95
95
  bottom of the screen.
96
+
97
+ Raises:
98
+ ValueError: If [`content`][(c).] is not a string or visible control.
99
+ ValueError: If [`action_overflow_threshold`][(c).] is not between 0 and 1.
100
+ ValueError: If [`elevation`][(c).] is negative.
96
101
  """
97
102
 
98
103
  content: StrOrControl
@@ -229,13 +234,16 @@ class SnackBar(DialogControl):
229
234
 
230
235
  def before_update(self):
231
236
  super().before_update()
232
- assert isinstance(self.content, str) or (
233
- isinstance(self.content, Control) and self.content.visible
234
- ), "content must be a string or a visible control"
235
- assert (
236
- self.action_overflow_threshold is None
237
- or 0 <= self.action_overflow_threshold <= 1
238
- ), "action_overflow_threshold must be between 0 and 1 inclusive"
239
- assert self.elevation is None or self.elevation >= 0, (
240
- "elevation cannot be negative"
241
- )
237
+ if not (
238
+ isinstance(self.content, str)
239
+ or (isinstance(self.content, Control) and self.content.visible)
240
+ ):
241
+ raise ValueError("content must be a string or a visible control")
242
+ if self.action_overflow_threshold is not None and not (
243
+ 0 <= self.action_overflow_threshold <= 1
244
+ ):
245
+ raise ValueError(
246
+ "action_overflow_threshold must be between 0 and 1 inclusive"
247
+ )
248
+ if self.elevation is not None and self.elevation < 0:
249
+ raise ValueError("elevation cannot be negative")
@@ -28,7 +28,7 @@ class Switch(LayoutControl, AdaptiveControl):
28
28
  For example, "On/Off", "Show/Hide".
29
29
 
30
30
  Raises:
31
- AssertionError: If [`splash_radius`][(c).] is negative.
31
+ ValueError: If [`splash_radius`][(c).] is negative.
32
32
  """
33
33
 
34
34
  label: Optional[StrOrControl] = None
@@ -225,7 +225,8 @@ class Switch(LayoutControl, AdaptiveControl):
225
225
 
226
226
  def before_update(self):
227
227
  super().before_update()
228
- assert self.splash_radius is None or self.splash_radius >= 0, (
229
- "splash_radius must be greater than or equal to 0, "
230
- f"got {self.splash_radius}"
231
- )
228
+ if self.splash_radius is not None and self.splash_radius < 0:
229
+ raise ValueError(
230
+ "splash_radius must be greater than or equal to 0, "
231
+ f"got {self.splash_radius}"
232
+ )
@@ -316,9 +316,9 @@ class TabBar(LayoutControl, AdaptiveControl):
316
316
  on text headers to articulate the different sections of content.
317
317
 
318
318
  Raises:
319
- AssertionError: If [`indicator`][(c).] is None and
319
+ ValueError: If [`indicator`][(c).] is None and
320
320
  [`indicator_thickness`][(c).] is not strictly greater than 0.
321
- AssertionError: If [`tab_alignment`][(c).] is not valid for
321
+ ValueError: If [`tab_alignment`][(c).] is not valid for
322
322
  the given [`scrollable`][(c).] state.
323
323
  """
324
324
 
@@ -538,20 +538,25 @@ class TabBar(LayoutControl, AdaptiveControl):
538
538
 
539
539
  def before_update(self):
540
540
  super().before_update()
541
- assert self.indicator is not None or self.indicator_thickness > 0.0, (
542
- f"indicator_thickness must be strictly greater than zero if indicator is "
543
- f"None, got {self.indicator_thickness}"
544
- )
541
+ if self.indicator is None and self.indicator_thickness <= 0.0:
542
+ raise ValueError(
543
+ f"indicator_thickness must be strictly greater than zero if indicator "
544
+ f"is None, got {self.indicator_thickness}"
545
+ )
545
546
  valid_alignments = (
546
547
  [TabAlignment.CENTER, TabAlignment.FILL]
547
548
  if not self.scrollable
548
549
  else [TabAlignment.START, TabAlignment.START_OFFSET, TabAlignment.CENTER]
549
550
  )
550
551
 
551
- assert self.tab_alignment is None or self.tab_alignment in valid_alignments, (
552
- f"If scrollable is {self.scrollable}, tab_alignment must be one of: "
553
- f"{', '.join(f'TabAlignment.{a.name}' for a in valid_alignments)}."
554
- )
552
+ if (
553
+ self.tab_alignment is not None
554
+ and self.tab_alignment not in valid_alignments
555
+ ):
556
+ raise ValueError(
557
+ f"If scrollable is {self.scrollable}, tab_alignment must be one of: "
558
+ f"{', '.join(f'TabAlignment.{a.name}' for a in valid_alignments)}."
559
+ )
555
560
 
556
561
 
557
562
  @control("Tab")
@@ -560,7 +565,7 @@ class Tab(AdaptiveControl):
560
565
  A Material Design [`TabBar`][flet.] tab.
561
566
 
562
567
  Raises:
563
- AssertionError: If both [`label`][(c).] and [`icon`][(c).] are not set.
568
+ ValueError: If both [`label`][(c).] and [`icon`][(c).] are not set.
564
569
  """
565
570
 
566
571
  label: Optional[StrOrControl] = None
@@ -599,6 +604,5 @@ class Tab(AdaptiveControl):
599
604
 
600
605
  def before_update(self):
601
606
  super().before_update()
602
- assert (self.label is not None) or (self.icon is not None), (
603
- "Tab must have at least label or icon property set"
604
- )
607
+ if not ((self.label is not None) or (self.icon is not None)):
608
+ raise ValueError("Tab must have at least label or icon property set")
@@ -133,6 +133,12 @@ class TextField(FormFieldControl, AdaptiveControl):
133
133
  """
134
134
  A text field lets the user enter text, either with hardware keyboard or with an
135
135
  onscreen keyboard.
136
+
137
+ Raises:
138
+ ValueError: If [`min_lines`][(c).] is not positive.
139
+ ValueError: If [`max_lines`][(c).] is not positive.
140
+ ValueError: If [`min_lines`][(c).] is greater than [`max_lines`][(c).].
141
+ ValueError: If [`max_length`][(c).] is not -1 or positive.
136
142
  """
137
143
 
138
144
  value: str = ""
@@ -420,20 +426,22 @@ class TextField(FormFieldControl, AdaptiveControl):
420
426
 
421
427
  def before_update(self):
422
428
  super().before_update()
423
- assert self.min_lines is None or self.min_lines > 0, (
424
- "min_lines must be greater than 0"
425
- )
426
- assert self.max_lines is None or self.max_lines > 0, (
427
- "min_lines must be greater than 0"
428
- )
429
- assert (
430
- self.max_lines is None
431
- or self.min_lines is None
432
- or self.min_lines <= self.max_lines
433
- ), "min_lines can't be greater than max_lines"
434
- assert (
435
- self.max_length is None or self.max_length == -1 or self.max_length > 0
436
- ), "max_length must be either equal to -1 or greater than 0"
429
+ if self.min_lines is not None and self.min_lines <= 0:
430
+ raise ValueError("min_lines must be greater than 0")
431
+ if self.max_lines is not None and self.max_lines <= 0:
432
+ raise ValueError("max_lines must be greater than 0")
433
+ if (
434
+ self.max_lines is not None
435
+ and self.min_lines is not None
436
+ and self.min_lines > self.max_lines
437
+ ):
438
+ raise ValueError("min_lines can't be greater than max_lines")
439
+ if (
440
+ self.max_length is not None
441
+ and self.max_length != -1
442
+ and self.max_length <= 0
443
+ ):
444
+ raise ValueError("max_length must be either equal to -1 or greater than 0")
437
445
  if (
438
446
  self.bgcolor is not None
439
447
  or self.fill_color is not None
@@ -13,6 +13,12 @@ class VerticalDivider(Control):
13
13
  A thin vertical line, with padding on either side.
14
14
 
15
15
  In the material design language, this represents a divider.
16
+
17
+ Raises:
18
+ ValueError: If [`width`][(c).] is negative.
19
+ ValueError: If [`thickness`][(c).] is negative.
20
+ ValueError: If [`leading_indent`][(c).] is negative.
21
+ ValueError: If [`trailing_indent`][(c).] is negative.
16
22
  """
17
23
 
18
24
  width: Optional[Number] = None
@@ -63,15 +69,11 @@ class VerticalDivider(Control):
63
69
 
64
70
  def before_update(self):
65
71
  super().before_update()
66
- assert self.width is None or self.width >= 0, (
67
- "width must be greater than or equal to 0"
68
- )
69
- assert self.thickness is None or self.thickness >= 0, (
70
- "thickness must be greater than or equal to 0"
71
- )
72
- assert self.leading_indent is None or self.leading_indent >= 0, (
73
- "leading_indent must be greater than or equal to 0"
74
- )
75
- assert self.trailing_indent is None or self.trailing_indent >= 0, (
76
- "trailing_indent must be greater than or equal to 0"
77
- )
72
+ if self.width is not None and self.width < 0:
73
+ raise ValueError("width must be greater than or equal to 0")
74
+ if self.thickness is not None and self.thickness < 0:
75
+ raise ValueError("thickness must be greater than or equal to 0")
76
+ if self.leading_indent is not None and self.leading_indent < 0:
77
+ raise ValueError("leading_indent must be greater than or equal to 0")
78
+ if self.trailing_indent is not None and self.trailing_indent < 0:
79
+ raise ValueError("trailing_indent must be greater than or equal to 0")
flet/controls/page.py CHANGED
@@ -487,7 +487,8 @@ class Page(BasePage):
487
487
  current page.
488
488
  """
489
489
  _context_page.set(self)
490
- assert asyncio.iscoroutinefunction(handler)
490
+ if not asyncio.iscoroutinefunction(handler):
491
+ raise TypeError("handler must be a coroutine function")
491
492
 
492
493
  future = asyncio.run_coroutine_threadsafe(
493
494
  handler(*args, **kwargs), self.get_session().connection.loop
flet/version.py CHANGED
@@ -10,7 +10,7 @@ from flet.utils import is_mobile, is_windows, which
10
10
  DEFAULT_VERSION = "0.1.0"
11
11
 
12
12
  # will be replaced by CI
13
- version = "0.70.0.dev5774"
13
+ version = "0.70.0.dev5776"
14
14
 
15
15
 
16
16
  def update_version():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet
3
- Version: 0.70.0.dev5774
3
+ Version: 0.70.0.dev5776
4
4
  Summary: Flet for Python - easily build interactive multi-platform apps in Python
5
5
  Author-email: "Appveyor Systems Inc." <hello@flet.dev>
6
6
  License-Expression: Apache-2.0
@@ -9,10 +9,10 @@ Project-URL: Repository, https://github.com/flet-dev/flet
9
9
  Project-URL: Documentation, https://docs.flet.dev/
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
- Requires-Dist: flet-cli==0.70.0.dev5774; extra == "cli"
13
- Requires-Dist: flet-desktop==0.70.0.dev5774; extra == "desktop" and (platform_system == "Darwin" or platform_system == "Windows")
14
- Requires-Dist: flet-desktop-light==0.70.0.dev5774; platform_system == "Linux" and (extra == "all" or extra == "desktop")
15
- Requires-Dist: flet-web==0.70.0.dev5774; extra == "web"
12
+ Requires-Dist: flet-cli==0.70.0.dev5776; extra == "cli"
13
+ Requires-Dist: flet-desktop==0.70.0.dev5776; extra == "desktop" and (platform_system == "Darwin" or platform_system == "Windows")
14
+ Requires-Dist: flet-desktop-light==0.70.0.dev5776; platform_system == "Linux" and (extra == "all" or extra == "desktop")
15
+ Requires-Dist: flet-web==0.70.0.dev5776; extra == "web"
16
16
  Requires-Dist: oauthlib>=3.2.2; platform_system != "Pyodide"
17
17
  Requires-Dist: httpx>=0.28.1; platform_system != "Pyodide"
18
18
  Requires-Dist: repath>=0.9.0
@@ -1,7 +1,7 @@
1
1
  flet/__init__.py,sha256=-yozy6OjbujMIRehArvHUY6-ej7F6yzeiShM2F6LPhQ,24805
2
2
  flet/app.py,sha256=HSws0Zm4ZO0-Hp2P9h7xirCVnRkKCVXhuekyAXT_9Fo,11883
3
3
  flet/cli.py,sha256=IUM25fY_sqMtl0hlQGhlMQaBb1oNyO0VZeeBgRodhuA,204
4
- flet/version.py,sha256=J1l56Ydt2PGIfRQovRVfF05AGYyIi5dJixRYxFVNYkc,2512
4
+ flet/version.py,sha256=VhvpQCV4Az1S_uzr4sKfAGi_d78P7gx0dIMS_TabZzg,2512
5
5
  flet/auth/__init__.py,sha256=eDqmi0Ki8Resd198S7XxgYa2R14wnNqIXnYhBLPl8fQ,289
6
6
  flet/auth/authorization.py,sha256=hP_36RiRPtSwmK_Yp6MMzAjQdDxbBiEcZ2yFNqyNiRs,357
7
7
  flet/auth/authorization_service.py,sha256=6N2LvisSt7KI_VgfyCH0OaJ6jTcmXCkAldN1yYlakzQ,6410
@@ -29,7 +29,7 @@ flet/controls/buttons.py,sha256=0mLPx4fBjQNGn-ejMuNu1wHb38_0BGU0JOggmqbUs1E,9943
29
29
  flet/controls/cache.py,sha256=0SJVqUtouvypBV_SEzJ-HLT-QBG5HtpWXCsJGH_zNSw,2872
30
30
  flet/controls/colors.py,sha256=J5A9ZQ25xqyKkM7X1SjX3uRlBP9PCsUJoHhCdM-YNOw,15345
31
31
  flet/controls/context.py,sha256=2U_YLmtv__7A7Q0wYOeX1BBqZnkXDlB_f5MihGlS82c,3692
32
- flet/controls/control.py,sha256=b8Ux1sN9gPSbPQxniqOBnp99Rn8lcxkFzUeMTsdATug,4213
32
+ flet/controls/control.py,sha256=7uZKB9NOtj3zM-5uGq_x2GjsuDaXuSuVzuEKLJ1ysJU,4473
33
33
  flet/controls/control_event.py,sha256=uALISWT6mRS3r-owF7ENDMsQfL60PoWCDjx5C3xckWE,2565
34
34
  flet/controls/control_id.py,sha256=6GrwGlpnQhTkh1QnBIGutFDKfQwLuvoC5XIHnD4zDcU,671
35
35
  flet/controls/control_state.py,sha256=7Pi_WirBkE5dmUN0QnQLjSaW17Nj_escRlUvNxlrNR8,433
@@ -47,7 +47,7 @@ flet/controls/margin.py,sha256=ni5FwkchO1LPKPTKV0Cimvh2YzABi-t5DhOqTS25eIQ,2305
47
47
  flet/controls/multi_view.py,sha256=7RbM1nt8t75qgTKyfemsV06XQ04Mer0Op409Nu9q9Vs,304
48
48
  flet/controls/object_patch.py,sha256=VgGK0mZ4CVEs-Z_atGjdJ6tjo-xAYZYT52Deekzx6Y4,33957
49
49
  flet/controls/padding.py,sha256=AdxAZ5dbg1-Bo8aKeJ7AptUdyjaX7VWBIJto5mBT9Pk,2485
50
- flet/controls/page.py,sha256=n2VqLFr1fUt1FqPaMQcgAnXOndFdRcWuAL3VJ0yur5E,22648
50
+ flet/controls/page.py,sha256=U6KjD8-hisR_cit40wkL1tPoJ0V76xdM4eTxiGBgvSI,22717
51
51
  flet/controls/painting.py,sha256=GCEycacejiCAdA4eZBQlTgxmE2ccXyad4Gy7VsjIwn0,12108
52
52
  flet/controls/query_string.py,sha256=NDrf1P0cxSWuJd4Rqz1qYld_JKDJpHY7mKcP52-70DI,3575
53
53
  flet/controls/ref.py,sha256=Lde_Nlly6NEtJX_LYv_DxIDkao6w4Buo7Nus4XUPQDA,580
@@ -59,39 +59,39 @@ flet/controls/theme.py,sha256=jed561Y3ENTgp1aHB6z5djzJdZdmazaDjfMy1acpWuI,97055
59
59
  flet/controls/transform.py,sha256=gZQGM5nhfiapvm25uxvswbTWu0qQM3oBGRVxSTDhGYY,2782
60
60
  flet/controls/types.py,sha256=f4rUZ36Ul5FID2ZTgamPXAT7wZTfJl4Lbam9dpANtvI,25574
61
61
  flet/controls/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
- flet/controls/core/animated_switcher.py,sha256=CaBB8vOS2TZVHwneocQK0zUUVYyBFjnu_E_ZU6rMxaI,1862
63
- flet/controls/core/autofill_group.py,sha256=t3aI77fsOEBgpjZZE4Rc29cyIwgoXrjcXsQjAhYSgqs,3587
62
+ flet/controls/core/animated_switcher.py,sha256=qkPoKcmN3_fMN39VEnJw1dlV_7W46DT2O8LF0t13m2I,1873
63
+ flet/controls/core/autofill_group.py,sha256=3py4hGl8ez9prZ6e4dpT2zazk7aBPqs40M64p5awWHk,3687
64
64
  flet/controls/core/column.py,sha256=cQPnroGU-FVUG-tSuWadsqqHla8lOMIOdhFO6K7p9D0,2035
65
- flet/controls/core/dismissible.py,sha256=RJo3xtyCx53PxWscDWNWQJLDAj8PbHV45ADgYsXCdig,5469
66
- flet/controls/core/drag_target.py,sha256=T9rewhYy54kAhr3cmMCfxrV0sQaUmvPp0_Qct8bO_6s,2526
67
- flet/controls/core/draggable.py,sha256=HAjM6kknlZrUGH3PwYkn1TsC0gMHUI3jqr-S2BfzZjE,3808
65
+ flet/controls/core/dismissible.py,sha256=ywMKNAVpYx6vkSSWIKEO8gyrkSbUqj66emrVHWGsmOk,5542
66
+ flet/controls/core/drag_target.py,sha256=NrUUu8AN-iXH9bwfjYp_2tVcm9x7D4Urnnli3empv-c,2552
67
+ flet/controls/core/draggable.py,sha256=jTwiflMgocFKA6NGYtSpzQplpck_76uX_F3Ta0JmJM8,3846
68
68
  flet/controls/core/flet_app.py,sha256=5WvbgRiktRxAMRKiZ667o1Yt7ozfuSM811yTE6D2rfA,1116
69
69
  flet/controls/core/gesture_detector.py,sha256=dcSzIiIjD7QOPVGcKDdW2MxvCdtla8M_yHvqxn4N1kg,8911
70
70
  flet/controls/core/grid_view.py,sha256=kzln6PKgQ2jGEoNkNMjx0auoFfUndfzx6x0TgzLn5yA,3139
71
- flet/controls/core/icon.py,sha256=uYCVYysaRftKaxIQCqYSSqkRP0OlqGznBM9-dgSHdxY,3880
71
+ flet/controls/core/icon.py,sha256=fOf8mCKtQ8tlm_lzSliPq_qk8QTBGFE8Tq5OfiyfK3M,4001
72
72
  flet/controls/core/image.py,sha256=ES4byvkgl3z_YbsBVNnYVox8QN4_qCnOn9RjBK_3vUY,3950
73
- flet/controls/core/interactive_viewer.py,sha256=NowxtCUc0F8Z51qIPdnH-05h1meNA62dJp9JQU1l8a8,4764
73
+ flet/controls/core/interactive_viewer.py,sha256=id5x4Z3Gf41naRy1kOj_cmBnfTlsoeBCJOmf8lLJp-o,4857
74
74
  flet/controls/core/keyboard_listener.py,sha256=S8h0ZELveIT8EyAxNilnUNPg9I9MVnOMmSKW_7cwylQ,2467
75
75
  flet/controls/core/list_view.py,sha256=zyWHHG8Tpr4VYztQFWA_mRipLXKO6bVJ-Ra1Gso4qp4,3273
76
76
  flet/controls/core/markdown.py,sha256=zTAlVDJpwh5Ay1Lh7aHlTNCJ0zktCwNGit1QiyWjUyE,10939
77
77
  flet/controls/core/merge_semantics.py,sha256=o2olHjIDU-QNKAc8JHdQABiZUKeR4dWJApOCEcBaFF4,627
78
- flet/controls/core/pagelet.py,sha256=wpHDFJSPDcDZ6zvhbvOgViY70asqaxA_lJNe6mWUFfo,4137
78
+ flet/controls/core/pagelet.py,sha256=PBpw49SBniprw_3CuxlsjzuJPvxjzJaWesXza020plE,4163
79
79
  flet/controls/core/placeholder.py,sha256=XqqP1QmjlboezVKIrwZHA4FCcl06cptqxvYQs7kVkB8,992
80
- flet/controls/core/reorderable_draggable.py,sha256=Wp2845gXLWIK5ycnHfOzhwgbH-fg02uyEMncir50qWQ,990
80
+ flet/controls/core/reorderable_draggable.py,sha256=Mdu9mHvfNs0m9VTFQ0wfYPnvB592t53XT-NyvoZs5Fs,1016
81
81
  flet/controls/core/responsive_row.py,sha256=Ij02f54UuB2qPUfJ3Y6l-W06nZQcZnEuY3ef3mn44EI,2382
82
82
  flet/controls/core/row.py,sha256=cIajHnIPzeWG7RoV1_aIqw975qDJ7rRrxuSle-c3GS8,2046
83
- flet/controls/core/safe_area.py,sha256=K79zitkZ5QHnanqgdczkdV5ICUtcnEGviwwRW2wZbzI,2204
83
+ flet/controls/core/safe_area.py,sha256=oDCmD9aWHSfYa-d_Nagw32bfnwuDNX6yiTCqDyFLxus,2230
84
84
  flet/controls/core/screenshot.py,sha256=6X3f6rYaX7PHkvWM7gpFlyhA2xzt-M15ax-Nfd45n1g,1110
85
85
  flet/controls/core/semantics.py,sha256=tiRTyFMYYNIcj8kuiopZMPGxeo_n4L7eCchHcywColI,7413
86
86
  flet/controls/core/shader_mask.py,sha256=z4sr8RP2PnP-ooh0c5KNiUDLsHmj1S-R7ATm53j5CJo,1034
87
87
  flet/controls/core/stack.py,sha256=JqCIXFcDxd4C7dhJik0qwOu7IoHRmkj7BpvF6LhM03k,1954
88
88
  flet/controls/core/state_view.py,sha256=BLDp0PkPsI6TGs2akAJqXyxq64XqJJaisTgUKxT3CxY,1842
89
89
  flet/controls/core/text.py,sha256=Z2gqu5IIOvUQYV7RpoqAmoEueiHozxL0xN0hlnyMseQ,8811
90
- flet/controls/core/text_span.py,sha256=6sNfi6pcLtuJqLdD8v9I0uKaegFoKfLj_ymVXzmG5oE,2843
90
+ flet/controls/core/text_span.py,sha256=KpW6jER8HYRj-kHQPuAaSOa816B-nQc02le9i9M22Pc,2939
91
91
  flet/controls/core/transparent_pointer.py,sha256=BGDFuDWyDUIYOmwaEgMMks6OWS_lVjZObAw2M-3r2bQ,963
92
92
  flet/controls/core/view.py,sha256=wlUirfLnm3uY4ElyadWoLABC_txDgLBzCzJUMcLlU1A,4991
93
93
  flet/controls/core/window.py,sha256=7SbbEoprqCoO_xz9-tHppOMYj0m9nJwDi3tRlnuVSoo,7157
94
- flet/controls/core/window_drag_area.py,sha256=-OQvq1JaUYDB4ha6WZbLzg2vEu9C0YO8LT5XSJ3ngXA,1808
94
+ flet/controls/core/window_drag_area.py,sha256=cgq3bH4vkXZl3HcYRceSiqS4-pbibRSuuhgNzOG5m2I,1834
95
95
  flet/controls/core/canvas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
96
  flet/controls/core/canvas/arc.py,sha256=pgZ6e2yhzx2cAbb3zBnlhwtuJR_YEyVTjo_11GAra_Q,1772
97
97
  flet/controls/core/canvas/canvas.py,sha256=eOIO5k2qhkdb3bKXoM9-9MnX30ZGBEZIpF5SO-0M838,2898
@@ -108,88 +108,88 @@ flet/controls/core/canvas/shadow.py,sha256=GuUwsGD9pO55lqRtVtuoRdESYNeruzkXrOyGx
108
108
  flet/controls/core/canvas/shape.py,sha256=Usq8DgS1jbi_uKva0SROima_8koDHmS3BO9VWznfX_E,484
109
109
  flet/controls/core/canvas/text.py,sha256=KJU7XepvY_klGYaecWRXlQZc86P0ZtMsxLAC591J1EA,2008
110
110
  flet/controls/cupertino/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
- flet/controls/cupertino/cupertino_action_sheet.py,sha256=wLGFFK9nRYlOfraxbDAhHZy1w0QsVgg_Q3CXMXZrQOo,1680
112
- flet/controls/cupertino/cupertino_action_sheet_action.py,sha256=On2D8bGSQ69EG8x_A9gaxOfr4wfZpofWAp7dsDGcC5c,1374
113
- flet/controls/cupertino/cupertino_activity_indicator.py,sha256=garBwKsqz-hVSTz6Tz-IYiWuoi5bWHL-yG-wFOzuLqk,981
114
- flet/controls/cupertino/cupertino_alert_dialog.py,sha256=BRR4ZYAeVX1xRiLQIdk-OgpY8oX31LOx2wx2oB164k8,2216
111
+ flet/controls/cupertino/cupertino_action_sheet.py,sha256=GyDUD-WwWKeplUsRBFTodmnh8MPo9nE7tku24sgWefc,1865
112
+ flet/controls/cupertino/cupertino_action_sheet_action.py,sha256=yCk-lv5bvc_xc2jupEQKz6q_JE521iMjWUyIhdgzoUU,1378
113
+ flet/controls/cupertino/cupertino_activity_indicator.py,sha256=3mso-hpHjhi9ynpnJ32APBls0DcbsMLFgZ4AuIND8Z0,1014
114
+ flet/controls/cupertino/cupertino_alert_dialog.py,sha256=kcACIyiv7gWN3KX27aqPfMS9BUVTPt0CPW8k2L9hC2o,2284
115
115
  flet/controls/cupertino/cupertino_app_bar.py,sha256=CxhgW5Z_tohnyn7WkGxes9aN_KBDjovzcn_mEuhRqms,5176
116
116
  flet/controls/cupertino/cupertino_bottom_sheet.py,sha256=o8154fJuBtJUSJtqJFrjE6tEBv1ylNtgDW8qn6vwSxs,938
117
- flet/controls/cupertino/cupertino_button.py,sha256=qAMhTVNd4F6yzJ_QAt6AvIf-CxX5yItPQWpdWCs4aSU,4466
117
+ flet/controls/cupertino/cupertino_button.py,sha256=1_BuVzEDYQPcITJtuzv8vBihUdc8zs5ifjebrgeN8Co,4504
118
118
  flet/controls/cupertino/cupertino_checkbox.py,sha256=XmTY2IQL4MX08uEPTm4mAeb17o2QoWrybZaxcgfB1vs,4449
119
119
  flet/controls/cupertino/cupertino_colors.py,sha256=nbkvUsvt4hN1Z5Ay5tqX24pX56qFfPK2qB1DSnrEuvw,5106
120
- flet/controls/cupertino/cupertino_context_menu.py,sha256=p_EYHzyE5vuDYwVBCgISc4xvc5IOSwbtaW_RrXjZrvI,1297
121
- flet/controls/cupertino/cupertino_context_menu_action.py,sha256=aiAv2JHxccxEDzCStaGM7vqcCG2uhZYJ9cQStCU934k,1423
122
- flet/controls/cupertino/cupertino_date_picker.py,sha256=rwTbelytwuNqV6j0GxOKVUSeMDVWki87muTFUh0l6Fk,7253
123
- flet/controls/cupertino/cupertino_dialog_action.py,sha256=zisicZhAKImClcXyGnXvuF9pY3QxmCWcWeWwtiq6r78,1656
120
+ flet/controls/cupertino/cupertino_context_menu.py,sha256=J094wDwQm6ywd15e-eMAaY-gPsoB7-uRr8xHceOCUxE,1490
121
+ flet/controls/cupertino/cupertino_context_menu_action.py,sha256=RFAx2lCBcCbNiRKvAn7hUFC6qDL5OM_s8O5wdjj369Y,1427
122
+ flet/controls/cupertino/cupertino_date_picker.py,sha256=DqXMt8OsfLAsUT_XXlKzGAlQbAIjzliVNX8aVm5NFYg,7960
123
+ flet/controls/cupertino/cupertino_dialog_action.py,sha256=MPTF_SkG778XEUEQStXNAqSoqlkk6zFDzgo42DtJgcM,1660
124
124
  flet/controls/cupertino/cupertino_filled_button.py,sha256=BQ9sSUMEPCCJQl8isEnIOP_qXO4tjsX7yyCTs-O4hw0,313
125
125
  flet/controls/cupertino/cupertino_icons.py,sha256=cjFjErATn_1UBvIQhZsgh3qLELVoFZIGJfHUC_8C_5I,40308
126
- flet/controls/cupertino/cupertino_list_tile.py,sha256=TizcdiwzCl-Qq7sH9rZ5OXHDhCg0n7tHWvTjIJ4AypE,3393
127
- flet/controls/cupertino/cupertino_navigation_bar.py,sha256=vxODbk8gcV9qz8JS99hj-M1dsDhipxx-8ekcU03Gmb4,2814
128
- flet/controls/cupertino/cupertino_picker.py,sha256=uWmXOJq5r-ebAQqLDIwOnebnAmpKqhFOD_IxdLgoLjg,3358
126
+ flet/controls/cupertino/cupertino_list_tile.py,sha256=mrRBBmBrPKYbsRo2ReTgebl1Cw4zbm5QVFMRstaqxrc,3397
127
+ flet/controls/cupertino/cupertino_navigation_bar.py,sha256=CDFExJPxiJYH5c4BqMNdN-ziVNm4QyD9Cyad6M3Qre4,2845
128
+ flet/controls/cupertino/cupertino_picker.py,sha256=5R8GXK5qFXmpJZ_sgvqILn00RkM6PE6FgsaVOQT7Bcw,3473
129
129
  flet/controls/cupertino/cupertino_radio.py,sha256=WksRSPn0mAcMiAnE2UU7Piqe2ae_isocjzUZzNcQ-eA,2339
130
- flet/controls/cupertino/cupertino_segmented_button.py,sha256=vhRnB_WMbmpIXDaiNwhWFKj-QhQdFSNaT9ZkSk0fRus,2944
131
- flet/controls/cupertino/cupertino_slider.py,sha256=cw7iDMN-fZQ9JI2djIOGvkWnZxWtmlATBnJGZg124lk,3396
132
- flet/controls/cupertino/cupertino_sliding_segmented_button.py,sha256=5JJsF_kwsX6oxRYiPXqEaNb1H77ub1ImuqFwCUM6Cjs,3014
130
+ flet/controls/cupertino/cupertino_segmented_button.py,sha256=DEntfRb7D1HZWTfa5GPQnjdLKJvxN8WuSBthDa-5FSQ,2975
131
+ flet/controls/cupertino/cupertino_slider.py,sha256=hOdSrWy_sKBLqP5n6E0DWf3J0fhT6Xcovg1CI7YBgns,3467
132
+ flet/controls/cupertino/cupertino_sliding_segmented_button.py,sha256=h9D8L6m-jqyht_96wJlfypP7wqVipGtvmNW8hF1zcJQ,3045
133
133
  flet/controls/cupertino/cupertino_switch.py,sha256=0UtGp1fhCGlYVf2w8xXic0MfcEds-uNqF7WQi84Ld8w,4201
134
134
  flet/controls/cupertino/cupertino_textfield.py,sha256=rQmJrP-fo5m8HYGDhtBWPmhg0JywXDn5GFapYM6wZgY,2897
135
- flet/controls/cupertino/cupertino_timer_picker.py,sha256=OPGrQ4u_-AorvXey2C_DH9A8CRakf4PhjML25xLZAPw,4289
135
+ flet/controls/cupertino/cupertino_timer_picker.py,sha256=YNMAeazkm6nGEwF2X-r9WuB25aqam6PYORuq1yoptBk,4509
136
136
  flet/controls/cupertino/cupertino_tinted_button.py,sha256=rU1bW9qfu2GGkma3zlTTMZOhBlqBtj4bYxqJMrwJBF8,313
137
137
  flet/controls/material/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
- flet/controls/material/alert_dialog.py,sha256=c_53ZcOm50NjiR9Pgjm2E_TE2jX1dmml6INmt3lS58s,7568
139
- flet/controls/material/app_bar.py,sha256=P2fBSUiVIkYS2ujZzyYZTclfiRikgV3fIVI49hvtv1g,6261
138
+ flet/controls/material/alert_dialog.py,sha256=8CYnb8Lcfn_EDP4mQTZe-cUVFXjHA8AdxBa6-vohjAQ,7606
139
+ flet/controls/material/app_bar.py,sha256=XBy4SavDp6Lc_o5O9npAAsQRBV591apOEnJT0-trmDM,6392
140
140
  flet/controls/material/auto_complete.py,sha256=MVesy4fUvLvY0pw_BDQXpRB5o9ac1Ci7icTdG4nC5oM,1856
141
141
  flet/controls/material/badge.py,sha256=xtyG18lElGMjKtvZg6OX4nRney8sAlC7TNTe2dUDj1M,3247
142
- flet/controls/material/banner.py,sha256=MDwXw74WrOB4OnI5FRhUqBF6z3DofD9_XXucqkXLbqw,4081
143
- flet/controls/material/bottom_app_bar.py,sha256=OVHTD2DZbyQIB9nR5TXfwT2F0QCpMh86w3GfuXIT-pE,2051
144
- flet/controls/material/bottom_sheet.py,sha256=i2J-4p9MBHU9mDtdQFXFKOtd7xB615aFVOTugm-8i0k,2759
145
- flet/controls/material/button.py,sha256=2lL5RVVS0q5BKDch4H7DBrfQjh_xs19_bMXlExb7p90,2395
142
+ flet/controls/material/banner.py,sha256=1QXFji-E7bOUh8d0iRL_byyE8kTMyepA24rWVx178pA,4159
143
+ flet/controls/material/bottom_app_bar.py,sha256=I5DO0wdbYsYe1_EatIU-jLGHFA8WT670sCrGUj6IM50,2083
144
+ flet/controls/material/bottom_sheet.py,sha256=o7y8a80HSeJWwI4Q3JNFeJ-6kvziuuj3t9f9gadGrhw,2791
145
+ flet/controls/material/button.py,sha256=14QzipCjIQpfLRoV4XBMTAxeR_EJNNvUcni7f2JLnL0,2584
146
146
  flet/controls/material/card.py,sha256=vNPL9Dv8rBg5v-0E7whgI-dV9jVRR6Z3oPctPQ8v7FU,2616
147
147
  flet/controls/material/checkbox.py,sha256=4F2OcbvBJ4BJXVD2F-U7YdI17elmwgMe3NhWIsFgA7o,5716
148
- flet/controls/material/chip.py,sha256=0RWVbaVNp_6cJgaN57IM89fYWim4cU62bmNZRC0Wx7A,7729
149
- flet/controls/material/circle_avatar.py,sha256=XLIa2tnfMMxsVEKIbvcdiAnPzQYd0hu3OfLyAX1mU2w,3879
148
+ flet/controls/material/chip.py,sha256=nGRGylhipV0wNj4w8v_qfKOqQkFSfubTBw2Nn4dcnJ0,7809
149
+ flet/controls/material/circle_avatar.py,sha256=dVhGnrvnc5uieeFTCJZ8FHDZbwVkBDFzzk-EEEugWWc,4014
150
150
  flet/controls/material/container.py,sha256=quw_KEu7N5tbEFK7EuX39OQ4Idd0i4qa4Nu6HIeS440,6875
151
- flet/controls/material/datatable.py,sha256=bfPev70Ej8_v4AvzSVHSQZYSAub9Kajl2OQq7m_DOTo,17220
151
+ flet/controls/material/datatable.py,sha256=fw2qtz5BAPxwfW3s8xm9hTrpNx9tNDkOkLhCe8RGf5E,17535
152
152
  flet/controls/material/date_picker.py,sha256=JCuU3-BcwFkb8KHQdcRQm0Scfdur7FGiMXElUX4WSxU,5336
153
153
  flet/controls/material/date_range_picker.py,sha256=7KJKE78bQYLJRdsTKgNu9JZbmyu3xh8xQUbrgwN5HwY,5350
154
- flet/controls/material/divider.py,sha256=6T4ZUvizEErqJztNcR9lEkhZrI9rm6zg0DfXxjUFwV4,2349
155
- flet/controls/material/dropdown.py,sha256=CK5G3UuHueDAI6mmcwbFs7IFUXA-tFEgXci7sLv43Ks,9777
154
+ flet/controls/material/divider.py,sha256=LCfJ9inCmj8JaacOc0bs0d6kjxi_CueT1EkV8FAjQK8,2748
155
+ flet/controls/material/dropdown.py,sha256=hkDIO1GTLBNbX7QW45Um0RfnCxKFbUl0Qwq71fdBiPU,9863
156
156
  flet/controls/material/dropdownm2.py,sha256=JGie5s9jReAbhGWQkkoBMY1S8iBgdEvqqhhL7JMIoJg,5452
157
157
  flet/controls/material/elevated_button.py,sha256=AjrLkxn1ViwGE7ms8aNlNTgaR1-qIFhN8aU254Hx9Vc,274
158
158
  flet/controls/material/expansion_panel.py,sha256=nk7pforJciuaz5i2Sqmlmk7xksqR2ah425wzIseO-rM,3406
159
- flet/controls/material/expansion_tile.py,sha256=Pr_UYU5VAmvo0z73GZcSWqq7v2deSAbby-KQ834cfWc,5448
159
+ flet/controls/material/expansion_tile.py,sha256=D-43qpmmVqF8MvFHBJvWhvfImgM7YTv3B9nuLM-ivkM,5435
160
160
  flet/controls/material/filled_button.py,sha256=yG-JqPNMUvdkTny-oULS7IUicL2Wnw4ngeKUuDfHgC8,391
161
161
  flet/controls/material/filled_tonal_button.py,sha256=SoNneqj0O-RiCm895s-mpXbQAigsrlrplFTSii0DdHs,508
162
- flet/controls/material/floating_action_button.py,sha256=DEDCl_bUau4Hmomo-8Llp7NC2w2_rs1BCksQuPBeRNs,5520
162
+ flet/controls/material/floating_action_button.py,sha256=ZPDz7OaBqy_dEpMlUzphcKZPN_W5DNrEKnveGXvkAHA,5787
163
163
  flet/controls/material/form_field_control.py,sha256=khfIY-7S4Auk0-slhHV1Q1znM2XuRfAtMjjSz9MLN9Y,8491
164
- flet/controls/material/icon_button.py,sha256=4mJd_-L-h0QJ1hZJTmq3I6NZ0RWilRGvufvaIwevQlc,7429
164
+ flet/controls/material/icon_button.py,sha256=iKGaav-BxkD1N156iESjbZbo2vHsizB7UyttEZVmgFo,7552
165
165
  flet/controls/material/icons.py,sha256=piwc7LmopX6inmzdT4G0wpuvP6NZWGJQdG_KXCPPhEs,287248
166
166
  flet/controls/material/list_tile.py,sha256=LysJ_L9rshEBRY5Yeptt5HJjgILqmvnYrBtc1wyBZMA,7785
167
167
  flet/controls/material/menu_bar.py,sha256=P0bn4HDtNgrfe0GzWbEH4A-oiGA-n4dFoeyvUle3HeY,2168
168
168
  flet/controls/material/menu_item_button.py,sha256=ICiTw3FMCTL7maI04KggHOcuxEOEHLPxAU08D_XVVxY,2523
169
169
  flet/controls/material/navigation_bar.py,sha256=HzSiMT6P6bgkxz-d1iWxRNACMuOqnPKi2qbLBmp7BCg,4998
170
170
  flet/controls/material/navigation_drawer.py,sha256=_Wraal9cxMqyXUbDC26wMEUWlWu0pVT7V28DR-MCoQE,3794
171
- flet/controls/material/navigation_rail.py,sha256=ln4eT3ylNLyxgkRs_Ia7nfTVgLgs3lc-3JAxPvz9EoQ,7565
172
- flet/controls/material/outlined_button.py,sha256=mbjzu0VLPL9EiSYg1tmiDoa8NZhsIOrMnDo-OwSqT1w,2914
171
+ flet/controls/material/navigation_rail.py,sha256=mGNRtJVjT00ftBSoBVxPYz8ZM-CPbk5soXOW0n3-JYw,7830
172
+ flet/controls/material/outlined_button.py,sha256=Tf8Q9qRSsyMrVM4pDSNRNiwYFcNLrFa_PWYM-xwGPnI,3036
173
173
  flet/controls/material/popup_menu_button.py,sha256=iYBDno7UZcoqnpQpdA5JRCb9Fb1QrsSNDV-voGY8tnQ,4820
174
- flet/controls/material/progress_bar.py,sha256=H1iq8fsjtoE3B2SBvibITyfouhFk1D287s6FXmQ_ejw,3999
174
+ flet/controls/material/progress_bar.py,sha256=txAFMDGVeEj1jDoAlMusMHFjXCvqg4MtsiOvMPdztVw,4295
175
175
  flet/controls/material/progress_ring.py,sha256=7Nq4jUNN8ayHD5kHDgqT5dpOoTooVIHlA65jXENXjyw,3655
176
176
  flet/controls/material/radio.py,sha256=IK3hS-qT3BHA-0xDXWRDSoFQQHnMw4t-x6EayPBebIA,2797
177
- flet/controls/material/radio_group.py,sha256=r1XTsM4SSf2oOabr9WT-4rAv9SM5pjtgJqje9B83EYE,872
178
- flet/controls/material/range_slider.py,sha256=WP9yft5eb56-b_Cyk5MCRF5pZVdFeuFzJb4X_Ggbdxs,4024
177
+ flet/controls/material/radio_group.py,sha256=FyMPDvJTxQa210LNUyeFJUdgUD9RtKz56BbZpkw5COc,972
178
+ flet/controls/material/range_slider.py,sha256=nhtIwoHZ9YXS7zsclGr3cK03T5tPXPIwoxybhWbegIM,4229
179
179
  flet/controls/material/reorderable_list_view.py,sha256=iH87xlj7pIK1Kf-nQk5_PJ1sWmA0NXLCSQArDDrB-8Q,4692
180
180
  flet/controls/material/search_bar.py,sha256=hoeZxdTG4vqCqgWlRBaJi-iGenDOpIpedHrUJqp9X04,8448
181
- flet/controls/material/segmented_button.py,sha256=sU7nu5jwK-5y8ttaoMqfr16A5cmcpUthUz-O2AutlyQ,5184
182
- flet/controls/material/selection_area.py,sha256=k7qLEDB-TXiOsq13iT9Rx52nVXs6FYtJqaph-wUAxS8,1005
183
- flet/controls/material/slider.py,sha256=Vy4MO9nCx1p2j0c1wY6PeH_AVxKNVZNQqyJNG_d59w4,6807
184
- flet/controls/material/snack_bar.py,sha256=NK4M78RmJk25WlHAMddmplgXp9ruQ7-yaqxTz-1AqNw,7093
181
+ flet/controls/material/segmented_button.py,sha256=aGUID6XWzIDUoHkg7NosWcwF0vpw4q3diAP1wuZSQ00,5294
182
+ flet/controls/material/selection_area.py,sha256=lVvhKpfdaSizyRvn9xL3di02JRLIiZi_Mk2DfciLBRo,1031
183
+ flet/controls/material/slider.py,sha256=KTYfbmbpCOzT1w6u6EIQXLdr5m-hpLiXci_Ll_gthKA,6887
184
+ flet/controls/material/snack_bar.py,sha256=M_zZ1MmfV9p-zXwl-kO9rECJOJOsZp6AHAxdwh85g3k,7425
185
185
  flet/controls/material/submenu_button.py,sha256=4iQvOPTNRjNwXx3in8FWqBFKW6Mt22awwAhL8HiWd_I,2683
186
- flet/controls/material/switch.py,sha256=d4BHdAvku9V343g2AHpKnreEuclyux-FeMTZPTAy1KI,6856
187
- flet/controls/material/tabs.py,sha256=cywCdAv6Ztz9b7MJwoL6QFSfrE0Uy1Bky35Rn2h6LPw,18531
186
+ flet/controls/material/switch.py,sha256=sykhqKToMADriYkp2dmGCUZCqum-2Ht6MMCJ3o2UHU4,6892
187
+ flet/controls/material/tabs.py,sha256=aWdLCgNyGPTzhTmEq28syYjvGAMXwPaJ7GLWF0de3PA,18642
188
188
  flet/controls/material/text_button.py,sha256=Mkvz4LIl0yH1-e0ekOjPD6z8CZ5ZUIyE00zcb7sLKns,2578
189
- flet/controls/material/textfield.py,sha256=fJrTPRhcJDYYGPSl2LP08SLHZpL_3yG7Bk21h2znLMo,10999
189
+ flet/controls/material/textfield.py,sha256=YWQzJzeGPwfNT0TOeP-DzNdq_pAGHUq3_6scPuoYsRo,11387
190
190
  flet/controls/material/time_picker.py,sha256=_gUTaQi4N-mo1Oj_yJEsti8ToM0WhwhofbCjP5v2gzA,3070
191
191
  flet/controls/material/tooltip.py,sha256=PTqJiiE95z4WCTlvCx7i3vA-gGwphUT7w_2oXMiiVtY,5636
192
- flet/controls/material/vertical_divider.py,sha256=LaM-AE1Q2MUh2iuJi8vyTQy_BMg9EqulD4_AK2qLrgI,2359
192
+ flet/controls/material/vertical_divider.py,sha256=1xBj4bDLmTmhIcU5apbEbgLD778akbZehLwKgTCu-t8,2627
193
193
  flet/controls/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
194
  flet/controls/services/browser_context_menu.py,sha256=iLb160q7wPicdiVPXLZLzzQ4MCGxl2e-mOV4y4d2xQg,721
195
195
  flet/controls/services/clipboard.py,sha256=Linpoz32r5i-K5vpafFwNKaWwByZ6cVFhJZ0p87M_UE,987
@@ -232,8 +232,8 @@ flet/utils/platform_utils.py,sha256=U4cqV3EPi5QNYjbhfZmtk41-KMtI_P7KvVdnZzMOgJA,
232
232
  flet/utils/slugify.py,sha256=e-lsoDc2_dk5jQnySaHCU83AA4O6mguEgCEdk2smW2Y,466
233
233
  flet/utils/strings.py,sha256=R63_i7PdSAStCDPJ-O_WHBt3H02JQ14GSbnjLIpPTUc,178
234
234
  flet/utils/vector.py,sha256=pYZzjldBWCZbSeSkZ8VmujwcZC7VBWk1NLBPA-2th3U,3207
235
- flet-0.70.0.dev5774.dist-info/METADATA,sha256=Dtz-FMPLRyzBsS5-HT09ryOdd9GLwQwe4n1xCC_FwYE,6220
236
- flet-0.70.0.dev5774.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
237
- flet-0.70.0.dev5774.dist-info/entry_points.txt,sha256=mbBhHNUnLHiDqR36WeJrfLJU0Y0y087-M4wagQmaQ_Y,39
238
- flet-0.70.0.dev5774.dist-info/top_level.txt,sha256=HbLrSnWJX2jZOEZAI14cGzW8Q5BbOGTtE-7knD5FDh0,5
239
- flet-0.70.0.dev5774.dist-info/RECORD,,
235
+ flet-0.70.0.dev5776.dist-info/METADATA,sha256=LTjKJFeIzE0rqNYPHLViBCRDyLEjpRyXpVzlopurNEM,6220
236
+ flet-0.70.0.dev5776.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
237
+ flet-0.70.0.dev5776.dist-info/entry_points.txt,sha256=mbBhHNUnLHiDqR36WeJrfLJU0Y0y087-M4wagQmaQ_Y,39
238
+ flet-0.70.0.dev5776.dist-info/top_level.txt,sha256=HbLrSnWJX2jZOEZAI14cGzW8Q5BbOGTtE-7knD5FDh0,5
239
+ flet-0.70.0.dev5776.dist-info/RECORD,,