reflex 0.8.12a2__py3-none-any.whl → 0.8.13a1__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 reflex might be problematic. Click here for more details.

reflex/vars/sequence.py CHANGED
@@ -15,7 +15,6 @@ from typing_extensions import TypeVar as TypingExtensionsTypeVar
15
15
 
16
16
  from reflex import constants
17
17
  from reflex.constants.base import REFLEX_VAR_OPENING_TAG
18
- from reflex.constants.colors import Color
19
18
  from reflex.utils import types
20
19
  from reflex.utils.exceptions import VarTypeError
21
20
  from reflex.utils.types import GenericType, get_origin
@@ -29,7 +28,6 @@ from .base import (
29
28
  _global_vars,
30
29
  cached_property_no_lock,
31
30
  figure_out_type,
32
- get_python_literal,
33
31
  get_unique_variable_name,
34
32
  unionize,
35
33
  var_operation,
@@ -40,7 +38,6 @@ from .number import (
40
38
  LiteralNumberVar,
41
39
  NumberVar,
42
40
  raise_unsupported_operand_types,
43
- ternary_operation,
44
41
  )
45
42
 
46
43
  if TYPE_CHECKING:
@@ -1743,139 +1740,6 @@ def array_concat_operation(
1743
1740
  )
1744
1741
 
1745
1742
 
1746
- class ColorVar(StringVar[Color], python_types=Color):
1747
- """Base class for immutable color vars."""
1748
-
1749
-
1750
- @dataclasses.dataclass(
1751
- eq=False,
1752
- frozen=True,
1753
- slots=True,
1754
- )
1755
- class LiteralColorVar(CachedVarOperation, LiteralVar, ColorVar):
1756
- """Base class for immutable literal color vars."""
1757
-
1758
- _var_value: Color = dataclasses.field(default_factory=lambda: Color(color="black"))
1759
-
1760
- @classmethod
1761
- def create(
1762
- cls,
1763
- value: Color,
1764
- _var_type: type[Color] | None = None,
1765
- _var_data: VarData | None = None,
1766
- ) -> ColorVar:
1767
- """Create a var from a string value.
1768
-
1769
- Args:
1770
- value: The value to create the var from.
1771
- _var_type: The type of the var.
1772
- _var_data: Additional hooks and imports associated with the Var.
1773
-
1774
- Returns:
1775
- The var.
1776
- """
1777
- return cls(
1778
- _js_expr="",
1779
- _var_type=_var_type or Color,
1780
- _var_data=_var_data,
1781
- _var_value=value,
1782
- )
1783
-
1784
- def __hash__(self) -> int:
1785
- """Get the hash of the var.
1786
-
1787
- Returns:
1788
- The hash of the var.
1789
- """
1790
- return hash(
1791
- (
1792
- self.__class__.__name__,
1793
- self._var_value.color,
1794
- self._var_value.alpha,
1795
- self._var_value.shade,
1796
- )
1797
- )
1798
-
1799
- @cached_property_no_lock
1800
- def _cached_var_name(self) -> str:
1801
- """The name of the var.
1802
-
1803
- Returns:
1804
- The name of the var.
1805
- """
1806
- alpha = self._var_value.alpha
1807
- alpha = (
1808
- ternary_operation(
1809
- alpha,
1810
- LiteralStringVar.create("a"),
1811
- LiteralStringVar.create(""),
1812
- )
1813
- if isinstance(alpha, Var)
1814
- else LiteralStringVar.create("a" if alpha else "")
1815
- )
1816
-
1817
- shade = self._var_value.shade
1818
- shade = (
1819
- shade.to_string(use_json=False)
1820
- if isinstance(shade, Var)
1821
- else LiteralStringVar.create(str(shade))
1822
- )
1823
- return str(
1824
- ConcatVarOperation.create(
1825
- LiteralStringVar.create("var(--"),
1826
- self._var_value.color,
1827
- LiteralStringVar.create("-"),
1828
- alpha,
1829
- shade,
1830
- LiteralStringVar.create(")"),
1831
- )
1832
- )
1833
-
1834
- @cached_property_no_lock
1835
- def _cached_get_all_var_data(self) -> VarData | None:
1836
- """Get all the var data.
1837
-
1838
- Returns:
1839
- The var data.
1840
- """
1841
- return VarData.merge(
1842
- *[
1843
- LiteralVar.create(var)._get_all_var_data()
1844
- for var in (
1845
- self._var_value.color,
1846
- self._var_value.alpha,
1847
- self._var_value.shade,
1848
- )
1849
- ],
1850
- self._var_data,
1851
- )
1852
-
1853
- def json(self) -> str:
1854
- """Get the JSON representation of the var.
1855
-
1856
- Returns:
1857
- The JSON representation of the var.
1858
-
1859
- Raises:
1860
- TypeError: If the color is not a valid color.
1861
- """
1862
- color, alpha, shade = map(
1863
- get_python_literal,
1864
- (self._var_value.color, self._var_value.alpha, self._var_value.shade),
1865
- )
1866
- if color is None or alpha is None or shade is None:
1867
- msg = "Cannot serialize color that contains non-literal vars."
1868
- raise TypeError(msg)
1869
- if (
1870
- not isinstance(color, str)
1871
- or not isinstance(alpha, bool)
1872
- or not isinstance(shade, int)
1873
- ):
1874
- msg = "Color is not a valid color."
1875
- raise TypeError(msg)
1876
- return f"var(--{color}-{'a' if alpha else ''}{shade})"
1877
-
1878
-
1879
1743
  class RangeVar(ArrayVar[Sequence[int]], python_types=range):
1880
1744
  """Base class for immutable range vars."""
1881
1745
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reflex
3
- Version: 0.8.12a2
3
+ Version: 0.8.13a1
4
4
  Summary: Web apps in pure Python.
5
5
  Project-URL: homepage, https://reflex.dev
6
6
  Project-URL: repository, https://github.com/reflex-dev/reflex
@@ -2,18 +2,18 @@ reflex/__init__.py,sha256=_1PVYjDeA6_JyfXvL6OuKjjO6AX2oMiNcAq8AEHf6xw,10161
2
2
  reflex/__init__.pyi,sha256=0D46kHVUJPE_kgYL-BjraERu-MXNCPsQTZQShrijmeQ,10148
3
3
  reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
4
4
  reflex/admin.py,sha256=Nbc38y-M8iaRBvh1W6DQu_D3kEhO8JFvxrog4q2cB_E,434
5
- reflex/app.py,sha256=LCIj6hU3AbJJpVipG3AIBJfNK1eKGjn_SRTtg5MH2vw,78526
5
+ reflex/app.py,sha256=jpbsfVOgf4LTnw3b9wZuYbrwGeOh-BvUtAPsjVFnG0E,78583
6
6
  reflex/assets.py,sha256=l5O_mlrTprC0lF7Rc_McOe3a0OtSLnRdNl_PqCpDCBA,3431
7
7
  reflex/base.py,sha256=Oh664QL3fZEHErhUasFqP7fE4olYf1y-9Oj6uZI2FCU,1173
8
8
  reflex/config.py,sha256=LsHAtdH4nkSn3q_Ie-KNdOGdflLXrFICUQov29oFjVk,21229
9
- reflex/environment.py,sha256=BRIePrhFKTZajYlyl-KhjGsqR4_hc7KxfNCoape6Jjw,23590
9
+ reflex/environment.py,sha256=RmiYBI8KjIqJlDL-q_uPOYQLp8GteID7H4Ek6p4WoKg,23682
10
10
  reflex/event.py,sha256=e2EIBmLF63KRw4GXSbuiQ6yDp1-YQHHIxJKenTra9vk,76223
11
11
  reflex/model.py,sha256=2QhU1TJlcDeRA23pv8usLjyDaA6FhbQRYdzsjOHzvUI,19665
12
12
  reflex/page.py,sha256=ssCbMVFuIy60vH-YhJUzN0OxzUwXFCCD3ej56dVjp3g,3525
13
13
  reflex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- reflex/reflex.py,sha256=5R-NYJCrlmZoOdIGnO1NyBdNLQjfpqiJNaPuLXaxvzY,23459
14
+ reflex/reflex.py,sha256=Us-aIdDSizZUtQFTOfgGEe_Aa0ef46LAzaIul8J_DCM,24439
15
15
  reflex/route.py,sha256=TnS4m6Hm-b3LfGFpm37iAMEd-_JISAouPW5FqUxTAfU,7858
16
- reflex/state.py,sha256=wQ4ozzgeTQHVeX4-zHhQfyHHDaykHdka6B5xGvo-5UQ,95000
16
+ reflex/state.py,sha256=c0f79jFuB2m0XUMsV4bDYt-XtTbsHITQ2JwqOFdzG08,95258
17
17
  reflex/style.py,sha256=Jc7hZyH9CSFDbweoRCrkVtSu8tZq5aIggSoAYAh-w1M,13304
18
18
  reflex/testing.py,sha256=Wt1qdmqT3Yo9CKWZzHXiytizZJ5KjqxVzuoGPjI_Vfk,40458
19
19
  reflex/.templates/apps/blank/assets/favicon.ico,sha256=baxxgDAQ2V4-G5Q4S2yK5uUJTUGkv-AOWBQ0xd6myUo,4286
@@ -96,7 +96,7 @@ reflex/components/core/responsive.py,sha256=ACZdtJ4a4F8B3dm1k8h6J2_UJx0Z5LDB7XHQ
96
96
  reflex/components/core/sticky.py,sha256=2B3TxrwG2Rtp_lv1VkMOIF2bqSiT7qYGbqbiZiMKxKY,3856
97
97
  reflex/components/core/sticky.pyi,sha256=5D-yT0LYs0ewOlUlInU7KCpuz49yKK7dirysUs1C2VI,32908
98
98
  reflex/components/core/upload.py,sha256=V0vIYig6XoOstQY2KDH88OYmLYPuSzkQopEYm3GZ81E,15195
99
- reflex/components/core/upload.pyi,sha256=UqfcPGUs8xmnKHKuvqYV7CtOXeF_D1s9ooRe49w6C3E,15757
99
+ reflex/components/core/upload.pyi,sha256=Bc3ds_6AFu0xtk-aQYL4PXXV7TTDk7_XPW_IWKVcY5E,16409
100
100
  reflex/components/core/window_events.py,sha256=opbuO20zVxt252kQLk49V7cltb_Um2oh7iePeGNJ538,3355
101
101
  reflex/components/core/window_events.pyi,sha256=aTkBiAy-e9LqkQm6_apRsXXfJRdawA11cE1tQQSIy3c,3206
102
102
  reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
@@ -282,7 +282,7 @@ reflex/components/radix/themes/typography/text.pyi,sha256=9Brs_NbIzm54qNNqweX_yT
282
282
  reflex/components/react_player/__init__.py,sha256=1OTHeZkuefi-zIVXc_QZMTBg4_RsGrMaJHducUuZQCU,171
283
283
  reflex/components/react_player/audio.py,sha256=_Qrlz5b7U4L8vtYpOOK6piKbROT6w_isnCuDYoxrOik,176
284
284
  reflex/components/react_player/audio.pyi,sha256=xHn377RQBOHlwU9qE5M2hZvc1qUcK1M0V7RK3ypxitE,5684
285
- reflex/components/react_player/react_player.py,sha256=_yiqTiT73p3Lig0-oVzDxzBxZ75AH7VevS1ENd_ZRBs,3980
285
+ reflex/components/react_player/react_player.py,sha256=IKr3dijlIPHcytmkAnJmsgQIbZd8vW9l1SfSfm5QDOQ,8193
286
286
  reflex/components/react_player/react_player.pyi,sha256=ikvaT_x1U9SRQMhXECczvRsPTVEsHV4VYnoBpiXLYWQ,5744
287
287
  reflex/components/react_player/video.py,sha256=WmdxzLtrZNNm9Nals5IpYUGhm45P14hR7I1NCaIW-eg,176
288
288
  reflex/components/react_player/video.pyi,sha256=JjLkatQkkInMIHIO0PW4qiXgeRgkEdqQVCyuPbpJdNY,5684
@@ -299,7 +299,7 @@ reflex/components/recharts/general.py,sha256=DuPDfccUWWehc40ji7_JSYHX_AoJyGn_-4y
299
299
  reflex/components/recharts/general.pyi,sha256=e77vGL8lo-t1jI79h0O12qSK5e9wbjerPslCxQQgSBw,23462
300
300
  reflex/components/recharts/polar.py,sha256=zocHpwWQ0lbg4BTnEBwQ6J9SSJsOYRwZGf9UPzxoNKs,15682
301
301
  reflex/components/recharts/polar.pyi,sha256=8ShEcGK9KJyu0FN6KPys1kgAYrzOZ6wtiRuytHJ--38,26937
302
- reflex/components/recharts/recharts.py,sha256=rAboy3XFOeSWJK-T4UMeiDBpjxKr8mZl_rRu01_-wWM,3221
302
+ reflex/components/recharts/recharts.py,sha256=rAarxOawhHiWUDIHNrizmChitgoNV4zas1y5SuSsr7E,3221
303
303
  reflex/components/recharts/recharts.pyi,sha256=9j8cVSMqyBkkOBBrx9pzDpP1clnbM9kD0TTViTUGDYc,7084
304
304
  reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
305
305
  reflex/components/sonner/toast.py,sha256=sJ9E60VaMBwoev4aBrKr42ygN7e0jajNTooa5o5wYPQ,12505
@@ -312,12 +312,12 @@ reflex/components/tags/tag.py,sha256=wlwD1We3ipgibPGsT1FS0aYYaJasLsjlfaOTgUT_aGg
312
312
  reflex/components/tags/tagless.py,sha256=APeSG-6N5-ucWwkq_hUl7zfT_vpoKleQdP80wPERG18,904
313
313
  reflex/constants/__init__.py,sha256=q2Jf-LBbNcGrOmx5M7QotIAYW_t3m02TsmmdtJ5_IhM,2190
314
314
  reflex/constants/base.py,sha256=rZ2JFO3mu5fVpjIUbiPJ7YCbensCjefbzYtV9uEwqpw,7539
315
- reflex/constants/colors.py,sha256=n-FN7stNrvk5rCN0TAvE28dqwUeQZHue-b5q1CO0EyQ,2048
315
+ reflex/constants/colors.py,sha256=5LILy-OAhNl4c2fsMnC80WKjuxVJi4DYAcNQGri2CmU,2101
316
316
  reflex/constants/compiler.py,sha256=1FXPYQNotaSrTwWcOspA1gCVmEdoiWkNMbbrz_qU0YU,5709
317
317
  reflex/constants/config.py,sha256=8OIjiBdZZJrRVHsNBheMwopE9AwBFFzau0SXqXKcrPg,1715
318
318
  reflex/constants/custom_components.py,sha256=joJt4CEt1yKy7wsBH6vYo7_QRW0O_fWXrrTf0VY2q14,1317
319
319
  reflex/constants/event.py,sha256=tgoynWQi2L0_Kqc3XhXo7XXL76A-OKhJGHRrNjm7gFw,2885
320
- reflex/constants/installer.py,sha256=gFX2gdhtm_frfs0cHxfEqSZbeokYaeBRJhSJOrxLmto,4191
320
+ reflex/constants/installer.py,sha256=O4HgGE7aSSr0ob3SBNX9BoWFR35gvDN1fvct1qDrjqU,4193
321
321
  reflex/constants/route.py,sha256=UBjqaAOxiUxlDZCSY4O2JJChKvA4MZrhUU0E5rNvKbM,2682
322
322
  reflex/constants/state.py,sha256=VrEeYxXfE9ss8RmOHIXD4T6EGsV9PDqbtMCQMmZxW3I,383
323
323
  reflex/constants/utils.py,sha256=e1ChEvbHfmE_V2UJvCSUhD_qTVAIhEGPpRJSqdSd6PA,780
@@ -339,19 +339,19 @@ reflex/middleware/middleware.py,sha256=p5VVoIgQ_NwOg_GOY6g0S4fmrV76_VE1zt-HiwbMw
339
339
  reflex/plugins/__init__.py,sha256=jrMWQqMxCwDwgwQYTygeR_pIewMcvIFwAnngPbjSumQ,439
340
340
  reflex/plugins/_screenshot.py,sha256=CAOaRpbrpTTIswwCXqhv7WYShB86Ao9MVv6dcXJzRb4,3958
341
341
  reflex/plugins/base.py,sha256=5BgzCM7boj9kJ6FGzVzVlgQk-crJuVmOLCl1PXvv4-E,3372
342
- reflex/plugins/shared_tailwind.py,sha256=Zx1TDAjpXGI5aEjpB8NWS__xYRSNu_SEMTB6Z3ub120,7305
342
+ reflex/plugins/shared_tailwind.py,sha256=-Rs8gP2h8I-wBq1BQvlF8dk5t2c7tEi1dfGrtcTEPMk,7305
343
343
  reflex/plugins/sitemap.py,sha256=X_CtH5B1w3CZno-gdPj1rp63WjOuNjFnX4B3fx_-VFQ,6135
344
344
  reflex/plugins/tailwind_v3.py,sha256=jCEZ5UYdr706Mw48L-WSHOUB6O55o1C3uG6AMwXqZoI,4810
345
345
  reflex/plugins/tailwind_v4.py,sha256=fcNaFtikSIu1LhF94DcBs1xR2CjbQRB5o1_KYeThUF0,5230
346
346
  reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
347
- reflex/utils/build.py,sha256=wwpG1K5WZGbMSsX9iF8hA5kJCbawtJizRlkotgovzQs,9287
347
+ reflex/utils/build.py,sha256=E9xcNfmQdpXL7_inA5gjuJ1AVAn3l9zaWP9TAS7IGfI,9468
348
348
  reflex/utils/codespaces.py,sha256=kEQ-j-jclTukFpXDlYgNp95kYMGDrQmP3VNEoYGZ1u4,3052
349
349
  reflex/utils/compat.py,sha256=aSJH_M6iomgHPQ4onQ153xh1MWqPi3HSYDzE68N6gZM,2635
350
350
  reflex/utils/console.py,sha256=W41Ogj1Jk8tEOhXXy9dy4KCLYp5rn0NZQwbBqXbkwSI,13668
351
351
  reflex/utils/decorator.py,sha256=QUZntENupeW5FA5mNRTx0I1GzGKFQXhMjVg24_IIM5o,3957
352
352
  reflex/utils/exceptions.py,sha256=Wwu7Ji2xgq521bJKtU2NgjwhmFfnG8erirEVN2h8S-g,8884
353
- reflex/utils/exec.py,sha256=RsUpJsXLoQKMF4tMWPKP2xjvKcDP1OyNXU0gC__7RSU,21970
354
- reflex/utils/export.py,sha256=jQvOP09LVlCpznsOWqZ9AQzBHwyhZPcDqZ5iuAvrVNM,2783
353
+ reflex/utils/exec.py,sha256=TmZJ_14zA1G769nk-gZOpG9Q6PKgZN3bQyQ5Pz9MLsY,22245
354
+ reflex/utils/export.py,sha256=dR8Q7OymxcS8PCvx5zV2kOZmjKgOmuAfKfL8XifHJd4,2907
355
355
  reflex/utils/format.py,sha256=-EC0tfx7VCIijcuJx9l-ArRnRnPKrrrW8RgsKwXIoBc,21115
356
356
  reflex/utils/frontend_skeleton.py,sha256=8sXRmVsKUiWf6O5rA1RRR_E4YjEsqDdIQlkUByp3aOI,8774
357
357
  reflex/utils/imports.py,sha256=SlQfMTbJasXHxrpcHdWKPWiIZ1Kn2-tulMF32_YA2ek,4262
@@ -361,28 +361,29 @@ reflex/utils/misc.py,sha256=folEweZVCrhHNkkqut9KqQdTJ80HxwL_gI41m40FnNM,4592
361
361
  reflex/utils/monitoring.py,sha256=87fr9j6Y9Bvz2uF4tBxuX6CaU054h1UPx0ijcnyP_kw,5250
362
362
  reflex/utils/net.py,sha256=q3h5pNbAlFiqy8U15S9DTOvzy_OnenVVug5ROBTGRTA,4267
363
363
  reflex/utils/path_ops.py,sha256=_RS17IQDNr5vcoLLGZx2-z1E5WP-JgDHvaRAOgqrZiU,8154
364
- reflex/utils/prerequisites.py,sha256=CvvpWc3xrZv7vAnA4GW96X3wghx-ApfNWemrI21zB9s,18742
364
+ reflex/utils/prerequisites.py,sha256=Ta5PoZkZ6QI1OCVnxbS8NIWJC55zdpyY4cD6w-mYw7Y,20794
365
365
  reflex/utils/processes.py,sha256=t-ufWwu9RDsSMXCSsmjS2TILP5s7-AY94Rgx2O2gHMw,18178
366
366
  reflex/utils/pyi_generator.py,sha256=IiNyiodH_xq8tRLD45phe2Le3sL6ZgloVMyg07xtT3o,46395
367
367
  reflex/utils/redir.py,sha256=E6lJ6UYGQs_uCyQAKHT_dDMplo5IRZ9JarWfvgGAgGo,1731
368
368
  reflex/utils/registry.py,sha256=omKh5rrsybDuuKmh4K88lwdwwcpGsu3Vc4pCko_djKY,2239
369
369
  reflex/utils/rename.py,sha256=qdE4SXHOaNs-TDGrnJz-h_nvLWA1C5osVrWb4wLSfyI,5262
370
- reflex/utils/serializers.py,sha256=ZqQ2xrBIyOXaN0RIRZwy2oU5O0Y1R0SEGWx-kf5rXMs,13938
370
+ reflex/utils/serializers.py,sha256=GbeBfoNREytB39QUlPh0aEwZicnBZAcXqz_dff7wEG4,13972
371
371
  reflex/utils/telemetry.py,sha256=KY54NmGWyJVSf9TMTcXw2V6gIbEqut1JkAXmmtIlRfw,10776
372
372
  reflex/utils/templates.py,sha256=tWo3jO6laQX8b0gUsqHkio_hUQGIvFbmXC-lxiGcdRo,14251
373
373
  reflex/utils/token_manager.py,sha256=ZtrYR0X8tTs8FpQHtMb09-H2V1xSoLWwVH8jW8OCrU8,7445
374
374
  reflex/utils/types.py,sha256=v2shXUDPqsgrxXDwrP9JYYgSTwZht0YjAo5c1mDDI8M,38543
375
- reflex/vars/__init__.py,sha256=85eXMt32bFoKtMdH3KxYRMD8mtnKyYiQcThPxJLoW1k,1359
376
- reflex/vars/base.py,sha256=LKnjDvg7_XKzPZlDD9WfYbWzyMoSjiZ7Bdt4sICjW60,113344
375
+ reflex/vars/__init__.py,sha256=pUzFFkY-brpEoqYHQc41VefaOdPQG6xzjer1RJy9IKo,1264
376
+ reflex/vars/base.py,sha256=xqdYqsWmtN86diCB1g9Wwptczeebf1Jv1l4fxVRw30M,110394
377
+ reflex/vars/color.py,sha256=gfRixUyPQAVJfkD7mHNRnN1Re-YB4ajOXwEIeJ3PWvY,5880
377
378
  reflex/vars/datetime.py,sha256=F2Jv_bfydipFSkIQ1F6x5MnSgFEyES9Vq5RG_uGH81E,5118
378
379
  reflex/vars/dep_tracking.py,sha256=LfDGgAGlqfC0DeiVcitRBcA1uCe1C3fNRARRekLgCz4,13738
379
380
  reflex/vars/function.py,sha256=0i-VkxHkDJmZtfQUwUfaF0rlS6WM8azjwQ8k7rEOkyk,13944
380
- reflex/vars/number.py,sha256=tO7pnvFaBsedq1HWT4skytnSqHWMluGEhUbjAUMx8XQ,28190
381
+ reflex/vars/number.py,sha256=FP5Jmd8qOwZgGHUG9DSmneBB4X6bj7G8oIDYsDw_j80,28242
381
382
  reflex/vars/object.py,sha256=p7dyn9rD6rVJlHQ_RcDTBgsU_AlbwYklGjx1HK3XxZg,16565
382
- reflex/vars/sequence.py,sha256=1kBrqihspyjyQ1XDqFPC8OpVGtZs_EVkOdIKBro5ilA,55249
383
+ reflex/vars/sequence.py,sha256=fbwA7ImcPbic4NPW4Fp81ty0X7PQlr751vLvfGeST1Q,51439
383
384
  scripts/hatch_build.py,sha256=-4pxcLSFmirmujGpQX9UUxjhIC03tQ_fIQwVbHu9kc0,1861
384
- reflex-0.8.12a2.dist-info/METADATA,sha256=6T1DqZw5zqu08qGQf6voKyO5NSIrhbMkzsvHPa7SaT8,12336
385
- reflex-0.8.12a2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
386
- reflex-0.8.12a2.dist-info/entry_points.txt,sha256=Rxt4dXc7MLBNt5CSHTehVPuSe9Xqow4HLX55nD9tQQ0,45
387
- reflex-0.8.12a2.dist-info/licenses/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
388
- reflex-0.8.12a2.dist-info/RECORD,,
385
+ reflex-0.8.13a1.dist-info/METADATA,sha256=vC1XdeS9jIykZ3H-d7utsxCA3JUthXDdU6N2gzI206Q,12336
386
+ reflex-0.8.13a1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
387
+ reflex-0.8.13a1.dist-info/entry_points.txt,sha256=Rxt4dXc7MLBNt5CSHTehVPuSe9Xqow4HLX55nD9tQQ0,45
388
+ reflex-0.8.13a1.dist-info/licenses/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
389
+ reflex-0.8.13a1.dist-info/RECORD,,