reflex 0.8.8a1__py3-none-any.whl → 0.8.8a2__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.

@@ -415,7 +415,7 @@ export const applyRestEvent = async (event, socket, navigate, params) => {
415
415
  if (event.payload.files === undefined || event.payload.files.length === 0) {
416
416
  // Submit the event over the websocket to trigger the event handler.
417
417
  return await applyEvent(
418
- Event(event.name, { files: [] }),
418
+ ReflexEvent(event.name, { files: [] }),
419
419
  socket,
420
420
  navigate,
421
421
  params,
@@ -775,7 +775,7 @@ export const uploadFiles = async (
775
775
  * @param {string} handler The client handler to process event.
776
776
  * @returns The event object.
777
777
  */
778
- export const Event = (
778
+ export const ReflexEvent = (
779
779
  name,
780
780
  payload = {},
781
781
  event_actions = {},
@@ -987,7 +987,7 @@ export const useEventLoop = (
987
987
 
988
988
  window.onerror = function (msg, url, lineNo, columnNo, error) {
989
989
  addEvents([
990
- Event(`${exception_state_name}.handle_frontend_exception`, {
990
+ ReflexEvent(`${exception_state_name}.handle_frontend_exception`, {
991
991
  info: error.name + ": " + error.message + "\n" + error.stack,
992
992
  component_stack: "",
993
993
  }),
@@ -999,7 +999,7 @@ export const useEventLoop = (
999
999
  //https://github.com/mknichel/javascript-errors?tab=readme-ov-file#promise-rejection-events
1000
1000
  window.onunhandledrejection = function (event) {
1001
1001
  addEvents([
1002
- Event(`${exception_state_name}.handle_frontend_exception`, {
1002
+ ReflexEvent(`${exception_state_name}.handle_frontend_exception`, {
1003
1003
  info:
1004
1004
  event.reason?.name +
1005
1005
  ": " +
@@ -1072,7 +1072,7 @@ export const useEventLoop = (
1072
1072
  if (storage_to_state_map[e.key]) {
1073
1073
  const vars = {};
1074
1074
  vars[storage_to_state_map[e.key]] = e.newValue;
1075
- const event = Event(
1075
+ const event = ReflexEvent(
1076
1076
  `${state_name}.reflex___state____update_vars_internal_state.update_vars_internal`,
1077
1077
  { vars: vars },
1078
1078
  );
reflex/app.py CHANGED
@@ -1311,9 +1311,9 @@ class App(MiddlewareMixin, LifespanMixin):
1311
1311
  self.head_components,
1312
1312
  html_lang=self.html_lang,
1313
1313
  html_custom_attrs=(
1314
- {"suppressHydrationWarning": "true", **self.html_custom_attrs}
1314
+ {"suppressHydrationWarning": True, **self.html_custom_attrs}
1315
1315
  if self.html_custom_attrs
1316
- else {"suppressHydrationWarning": "true"}
1316
+ else {"suppressHydrationWarning": True}
1317
1317
  ),
1318
1318
  )
1319
1319
  )
@@ -6,7 +6,7 @@ import sys
6
6
  from collections.abc import Callable, Iterable, Sequence
7
7
  from inspect import getmodule
8
8
  from pathlib import Path
9
- from typing import TYPE_CHECKING
9
+ from typing import TYPE_CHECKING, Any
10
10
 
11
11
  from reflex import constants
12
12
  from reflex.compiler import templates, utils
@@ -465,7 +465,7 @@ def _compile_stateful_components(
465
465
  def compile_document_root(
466
466
  head_components: list[Component],
467
467
  html_lang: str | None = None,
468
- html_custom_attrs: dict[str, Var | str] | None = None,
468
+ html_custom_attrs: dict[str, Var | Any] | None = None,
469
469
  ) -> tuple[str, str]:
470
470
  """Compile the document root.
471
471
 
@@ -303,7 +303,7 @@ export const onLoadInternalEvent = () => {{
303
303
  // But only send the vars if any are actually set in the browser.
304
304
  if (client_storage_vars && Object.keys(client_storage_vars).length !== 0) {{
305
305
  internal_events.push(
306
- Event(
306
+ ReflexEvent(
307
307
  '{state_name}.{constants.CompileVars.UPDATE_VARS_INTERNAL}',
308
308
  {{vars: client_storage_vars}},
309
309
  ),
@@ -312,14 +312,14 @@ export const onLoadInternalEvent = () => {{
312
312
 
313
313
  // `on_load_internal` triggers the correct on_load event(s) for the current page.
314
314
  // If the page does not define any on_load event, this will just set `is_hydrated = true`.
315
- internal_events.push(Event('{state_name}.{constants.CompileVars.ON_LOAD_INTERNAL}'));
315
+ internal_events.push(ReflexEvent('{state_name}.{constants.CompileVars.ON_LOAD_INTERNAL}'));
316
316
 
317
317
  return internal_events;
318
318
  }}
319
319
 
320
320
  // The following events are sent when the websocket connects or reconnects.
321
321
  export const initialEvents = () => [
322
- Event('{state_name}.{constants.CompileVars.HYDRATE}'),
322
+ ReflexEvent('{state_name}.{constants.CompileVars.HYDRATE}'),
323
323
  ...onLoadInternalEvent()
324
324
  ]
325
325
  """
@@ -351,7 +351,7 @@ export const initialEvents = () => []
351
351
  )
352
352
 
353
353
  return rf"""import {{ createContext, useContext, useMemo, useReducer, useState, createElement, useEffect }} from "react"
354
- import {{ applyDelta, Event, hydrateClientStorage, useEventLoop, refs }} from "$/utils/state"
354
+ import {{ applyDelta, ReflexEvent, hydrateClientStorage, useEventLoop, refs }} from "$/utils/state"
355
355
  import {{ jsx }} from "@emotion/react";
356
356
 
357
357
  export const initialState = {"{}" if not initial_state else json_dumps(initial_state)}
reflex/compiler/utils.py CHANGED
@@ -350,7 +350,7 @@ def compile_custom_component(
350
350
  def create_document_root(
351
351
  head_components: Sequence[Component] | None = None,
352
352
  html_lang: str | None = None,
353
- html_custom_attrs: dict[str, Var | str] | None = None,
353
+ html_custom_attrs: dict[str, Var | Any] | None = None,
354
354
  ) -> Component:
355
355
  """Create the document root.
356
356
 
@@ -2599,7 +2599,7 @@ class StatefulComponent(BaseComponent):
2599
2599
  memo_name = f"{event_trigger}_{chain_hash}"
2600
2600
 
2601
2601
  # Calculate Var dependencies accessed by the handler for useCallback dep array.
2602
- var_deps = ["addEvents", "Event"]
2602
+ var_deps = ["addEvents", "ReflexEvent"]
2603
2603
 
2604
2604
  # Get deps from event trigger var data.
2605
2605
  var_deps.extend(cls._get_deps_from_event_trigger(event))
@@ -6,7 +6,7 @@ from reflex.utils.imports import ImportVar
6
6
  from reflex.vars.base import LiteralVar, Var
7
7
  from reflex.vars.sequence import LiteralStringVar, StringVar
8
8
 
9
- LUCIDE_LIBRARY = "lucide-react@0.540.0"
9
+ LUCIDE_LIBRARY = "lucide-react@0.541.0"
10
10
 
11
11
 
12
12
  class LucideIconComponent(Component):
@@ -11,7 +11,7 @@ from reflex.components.core.breakpoints import Breakpoints
11
11
  from reflex.event import EventType, PointerEventInfo
12
12
  from reflex.vars.base import Var
13
13
 
14
- LUCIDE_LIBRARY = "lucide-react@0.540.0"
14
+ LUCIDE_LIBRARY = "lucide-react@0.541.0"
15
15
 
16
16
  class LucideIconComponent(Component):
17
17
  @classmethod
@@ -124,13 +124,13 @@ class DrawerContent(DrawerComponent):
124
124
  alias = "Vaul" + tag
125
125
 
126
126
  # Style set partially based on the source code at https://ui.shadcn.com/docs/components/drawer
127
- def _get_style(self) -> dict:
127
+ def add_style(self) -> dict:
128
128
  """Get the style for the component.
129
129
 
130
130
  Returns:
131
131
  The dictionary of the component style as value and the style notation as key.
132
132
  """
133
- base_style = {
133
+ return {
134
134
  "left": "0",
135
135
  "right": "0",
136
136
  "bottom": "0",
@@ -139,9 +139,6 @@ class DrawerContent(DrawerComponent):
139
139
  "z_index": 50,
140
140
  "display": "flex",
141
141
  }
142
- style = self.style or {}
143
- base_style.update(style)
144
- return {"css": base_style}
145
142
 
146
143
  # Fired when the drawer content is opened.
147
144
  on_open_auto_focus: EventHandler[no_args_event_spec]
@@ -186,13 +183,13 @@ class DrawerOverlay(DrawerComponent):
186
183
  alias = "Vaul" + tag
187
184
 
188
185
  # Style set based on the source code at https://ui.shadcn.com/docs/components/drawer
189
- def _get_style(self) -> dict:
186
+ def add_style(self) -> dict:
190
187
  """Get the style for the component.
191
188
 
192
189
  Returns:
193
190
  The dictionary of the component style as value and the style notation as key.
194
191
  """
195
- base_style = {
192
+ return {
196
193
  "position": "fixed",
197
194
  "left": "0",
198
195
  "right": "0",
@@ -201,9 +198,6 @@ class DrawerOverlay(DrawerComponent):
201
198
  "z_index": 50,
202
199
  "background": "rgba(0, 0, 0, 0.5)",
203
200
  }
204
- style = self.style or {}
205
- base_style.update(style)
206
- return {"css": base_style}
207
201
 
208
202
 
209
203
  class DrawerClose(DrawerTrigger):
@@ -222,21 +216,18 @@ class DrawerTitle(DrawerComponent):
222
216
  alias = "Vaul" + tag
223
217
 
224
218
  # Style set based on the source code at https://ui.shadcn.com/docs/components/drawer
225
- def _get_style(self) -> dict:
219
+ def add_style(self) -> dict:
226
220
  """Get the style for the component.
227
221
 
228
222
  Returns:
229
223
  The dictionary of the component style as value and the style notation as key.
230
224
  """
231
- base_style = {
225
+ return {
232
226
  "font-size": "1.125rem",
233
227
  "font-weight": "600",
234
- "line-weight": "1",
228
+ "line-height": "1",
235
229
  "letter-spacing": "-0.05em",
236
230
  }
237
- style = self.style or {}
238
- base_style.update(style)
239
- return {"css": base_style}
240
231
 
241
232
 
242
233
  class DrawerDescription(DrawerComponent):
@@ -247,18 +238,15 @@ class DrawerDescription(DrawerComponent):
247
238
  alias = "Vaul" + tag
248
239
 
249
240
  # Style set based on the source code at https://ui.shadcn.com/docs/components/drawer
250
- def _get_style(self) -> dict:
241
+ def add_style(self) -> dict:
251
242
  """Get the style for the component.
252
243
 
253
244
  Returns:
254
245
  The dictionary of the component style as value and the style notation as key.
255
246
  """
256
- base_style = {
247
+ return {
257
248
  "font-size": "0.875rem",
258
249
  }
259
- style = self.style or {}
260
- base_style.update(style)
261
- return {"css": base_style}
262
250
 
263
251
 
264
252
  class DrawerHandle(DrawerComponent):
@@ -64,7 +64,7 @@ class CompileVars(SimpleNamespace):
64
64
  # The name of the var storing any connection error.
65
65
  CONNECT_ERROR = "connectErrors"
66
66
  # The name of the function for converting a dict to an event.
67
- TO_EVENT = "Event"
67
+ TO_EVENT = "ReflexEvent"
68
68
  # The name of the internal on_load event.
69
69
  ON_LOAD_INTERNAL = "reflex___state____on_load_internal_state.on_load_internal"
70
70
  # The name of the internal event to update generic state vars.
reflex/event.py CHANGED
@@ -1930,7 +1930,7 @@ class LiteralEventVar(VarOperationCall, LiteralVar, EventVar):
1930
1930
  _var_type=EventSpec,
1931
1931
  _var_data=_var_data,
1932
1932
  _var_value=value,
1933
- _func=FunctionStringVar("Event"),
1933
+ _func=FunctionStringVar("ReflexEvent"),
1934
1934
  _args=(
1935
1935
  # event handler name
1936
1936
  ".".join(
reflex/utils/format.py CHANGED
@@ -518,7 +518,7 @@ def format_event(event_spec: EventSpec) -> str:
518
518
 
519
519
  if event_spec.client_handler_name:
520
520
  event_args.append(wrap(event_spec.client_handler_name, '"'))
521
- return f"Event({', '.join(event_args)})"
521
+ return f"ReflexEvent({', '.join(event_args)})"
522
522
 
523
523
 
524
524
  if TYPE_CHECKING:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reflex
3
- Version: 0.8.8a1
3
+ Version: 0.8.8a2
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,12 +2,12 @@ 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=7jJ5knRgpbh5XWqMD3rTIy0bjqOJm-DkdlnC1geOX6c,77713
5
+ reflex/app.py,sha256=Xz0oYkZ9Q1_MmOVEknBTdjsyGnSck8YKYs4KM_iQy1I,77709
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=JhCChJ3WkOvC7sFIcKZ7T_JBobC0XiBlCPTlai6-fyU,20227
9
9
  reflex/environment.py,sha256=G-s20hBr-7K1_b6992XTgvNnBojcuL9Y33NAIUJLvT8,22940
10
- reflex/event.py,sha256=Yv9-tY-NH4q0Up72ljsABfBfnobnC0__DMvSWhFEo6M,74791
10
+ reflex/event.py,sha256=0VHquGHwqfvsEFExJn8m1YFSaE__pg1j58Q8hOgiVmA,74797
11
11
  reflex/model.py,sha256=l1-6fm7NHRFWH-xK9oV9UzAVfvKeUXG1f-tCrF7vmfI,19403
12
12
  reflex/page.py,sha256=ssCbMVFuIy60vH-YhJUzN0OxzUwXFCCD3ej56dVjp3g,3525
13
13
  reflex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -30,7 +30,7 @@ reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha2
30
30
  reflex/.templates/web/components/shiki/code.js,sha256=4Es1pxsr-lX4hTQ5mglrwwC6O_SI-z-O60k03z8VFzQ,1144
31
31
  reflex/.templates/web/styles/__reflex_style_reset.css,sha256=qbC6JIT643YEsvSQ0D7xBmWE5vXy94JGrKNihRuEjnA,8913
32
32
  reflex/.templates/web/utils/react-theme.js,sha256=Aa-RND3ooGCXW6Zavzitc-v0ciKlcQDTFlDtE4mPkFI,2713
33
- reflex/.templates/web/utils/state.js,sha256=hyd2XCme0vfTpW0FQHJmzlk7quXw8JrO3c3YkHhA6h4,36030
33
+ reflex/.templates/web/utils/state.js,sha256=-K0bu2X2wxUpfeieCuw14HQz3W1jvx1s7JK69S8b4R0,36060
34
34
  reflex/.templates/web/utils/helpers/dataeditor.js,sha256=pG6MgsHuStDR7-qPipzfiK32j9bKDBa-4hZ0JSUo4JM,1623
35
35
  reflex/.templates/web/utils/helpers/debounce.js,sha256=xGhtTRtS_xIcaeqnYVvYJNseLgQVk-DW-eFiHJYO9As,528
36
36
  reflex/.templates/web/utils/helpers/paste.js,sha256=ef30HsR83jRzzvZnl8yV79yqFP8TC_u8SlN99cCS_OM,1799
@@ -41,12 +41,12 @@ reflex/app_mixins/lifespan.py,sha256=a156ZUYVo2bN1Tv-4WmWSjojo90PP_2-V12BX0q8YNw
41
41
  reflex/app_mixins/middleware.py,sha256=BKhe0jUFO1_TylEC48LUZyaeYyPmAYW-NV4H5Rw221k,2848
42
42
  reflex/app_mixins/mixin.py,sha256=R1YncalqDrbdPZvpKVbm72ZKmQZxYAWfuFq9JknzTqQ,305
43
43
  reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
44
- reflex/compiler/compiler.py,sha256=mvGynpsmFI5de5vQcH7Urkv7l8eOO_ytUxB4_XigbyY,29125
45
- reflex/compiler/templates.py,sha256=PcFJpmFJ99OlQtgXd_UKVCUQ62LDWAwMnwL3QKZgXI0,20080
46
- reflex/compiler/utils.py,sha256=saz5INjH5C7WO1bS3FE1vRm5sKcSXrNnbmFpmLI0xyw,19128
44
+ reflex/compiler/compiler.py,sha256=MQ5SW5pcSeDL6Nsfvrcu0jWW26xaEXrR4EsSybzuW7k,29130
45
+ reflex/compiler/templates.py,sha256=SGBywjsXw8KuNA69gp_S1Mi7MkXRDIM8dbK9aMhYHHQ,20104
46
+ reflex/compiler/utils.py,sha256=tBfmOAYFpwszwuKBTpQ-uRSLYDMGEKosty8qUTmOLXs,19128
47
47
  reflex/components/__init__.py,sha256=eWpgWFbSQDj2TpGp6StEbxU7roQgzY7ZM0XIcIc5RE8,588
48
48
  reflex/components/__init__.pyi,sha256=7VFHtJGIjvGtD3IiPk848IPWYSCcPRT1EyPGljLhYlU,736
49
- reflex/components/component.py,sha256=sv_zeiC8hZMn8DptUHgBzX2wffVNT3EzepWXxJd68R4,98628
49
+ reflex/components/component.py,sha256=QmI1doE50F6jt6mki2FvfUF-zjh_XxTfm4ti3UwLsH8,98634
50
50
  reflex/components/dynamic.py,sha256=WfN1waxtRuuZ3-8MvooDi4SkFxem4R8wAHOLXx_9rCo,7422
51
51
  reflex/components/field.py,sha256=j5JZFzNlET3GAIW91m1L31RypXylMAxJNm0-CJbtykM,5745
52
52
  reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
@@ -138,8 +138,8 @@ reflex/components/gridjs/__init__.py,sha256=xJwDm1AZ70L5-t9LLqZwGUtDpijbf1KuMYDT
138
138
  reflex/components/gridjs/datatable.py,sha256=7JKrRw1zkpFB0_wwoaIhrVrldsm7-dyi3PASgqLq8Hc,4224
139
139
  reflex/components/gridjs/datatable.pyi,sha256=kFgv82vCgfdWZaUq4bZ73G8X3mkw6ecvSRkZ9G9-28E,5185
140
140
  reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO2dvHZbE,73
141
- reflex/components/lucide/icon.py,sha256=Ow04V0M_9Ccgitp82NqaxTpMkTcIGYxTactJRZrrQMI,35214
142
- reflex/components/lucide/icon.pyi,sha256=aqYf3ax3GX7RH4BUIfIG-PIeFVwZe0P9SHbucfb7q1Y,38008
141
+ reflex/components/lucide/icon.py,sha256=vEQ2r9GF6c801wm2K0ZfdpM6zYbVkZlEFj0_aZbGCmA,35214
142
+ reflex/components/lucide/icon.pyi,sha256=jCixJQ2PQJ6wXArnKwuqSUZr269cHW72t34d8-f-UdA,38008
143
143
  reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
144
144
  reflex/components/markdown/markdown.py,sha256=kzvO2VnfCbxV7AcIMBJbxLtAlQ6U5T_QB_JTh8l-HJ4,15450
145
145
  reflex/components/markdown/markdown.pyi,sha256=oOlXZItHB0TPWsFz1Qjvr3KzG8sssthBp40UO_KkRIA,4322
@@ -157,7 +157,7 @@ reflex/components/radix/primitives/accordion.py,sha256=yr_GtuU8cGiMyXmWXFx-Tz8P1
157
157
  reflex/components/radix/primitives/accordion.pyi,sha256=QuAwkB02qfJs8zqHfS25tpLYCjlnenEIMH61KKI8u1Q,28219
158
158
  reflex/components/radix/primitives/base.py,sha256=9OvGDI1to8XL_a2hr3fNBQUwTHZBUO424ea2-UTKD18,770
159
159
  reflex/components/radix/primitives/base.pyi,sha256=Cv5PCGNBO-QFXvBs5E5sxIkcQUgSHHUhSxQPl64T4ZU,4635
160
- reflex/components/radix/primitives/drawer.py,sha256=3-l8kUX9WZ-4SFbMIVOeU5CJWHHC5SMLpZk_kgd2o3I,9262
160
+ reflex/components/radix/primitives/drawer.py,sha256=9x-8chrFxAfuQ79p09aubQp-hVJqTxvIq42JVypWv4Y,8830
161
161
  reflex/components/radix/primitives/drawer.pyi,sha256=bdYaa6-WjH3kdFBFZc2IRwfSTrgqI3vFy5ueQuvAHEo,29735
162
162
  reflex/components/radix/primitives/form.py,sha256=jxCt0xZRE9Xx5tBIJNojYwyvhN631_aNdlFQSPgm2dU,4801
163
163
  reflex/components/radix/primitives/form.pyi,sha256=1g9IOcPDWPQDrdLYkeHgVXnF9Dcsng82yH8xKlOjrRw,47184
@@ -312,7 +312,7 @@ reflex/components/tags/tagless.py,sha256=APeSG-6N5-ucWwkq_hUl7zfT_vpoKleQdP80wPE
312
312
  reflex/constants/__init__.py,sha256=q2Jf-LBbNcGrOmx5M7QotIAYW_t3m02TsmmdtJ5_IhM,2190
313
313
  reflex/constants/base.py,sha256=rZ2JFO3mu5fVpjIUbiPJ7YCbensCjefbzYtV9uEwqpw,7539
314
314
  reflex/constants/colors.py,sha256=n-FN7stNrvk5rCN0TAvE28dqwUeQZHue-b5q1CO0EyQ,2048
315
- reflex/constants/compiler.py,sha256=bzmC1OW6kWr06rV1Gwoa2AtQ4yPoGhEzeoqpiNY0jwU,5703
315
+ reflex/constants/compiler.py,sha256=1FXPYQNotaSrTwWcOspA1gCVmEdoiWkNMbbrz_qU0YU,5709
316
316
  reflex/constants/config.py,sha256=8OIjiBdZZJrRVHsNBheMwopE9AwBFFzau0SXqXKcrPg,1715
317
317
  reflex/constants/custom_components.py,sha256=joJt4CEt1yKy7wsBH6vYo7_QRW0O_fWXrrTf0VY2q14,1317
318
318
  reflex/constants/event.py,sha256=tgoynWQi2L0_Kqc3XhXo7XXL76A-OKhJGHRrNjm7gFw,2885
@@ -351,7 +351,7 @@ reflex/utils/decorator.py,sha256=QUZntENupeW5FA5mNRTx0I1GzGKFQXhMjVg24_IIM5o,395
351
351
  reflex/utils/exceptions.py,sha256=Wwu7Ji2xgq521bJKtU2NgjwhmFfnG8erirEVN2h8S-g,8884
352
352
  reflex/utils/exec.py,sha256=o0u81B6pHv5Yt982V1vFYEJDxgM-HxmM5KRUBbTYmZI,21965
353
353
  reflex/utils/export.py,sha256=Z2AHuhkxGQzOi9I90BejQ4qEcD0URr2i-ZU5qTJt7eQ,2562
354
- reflex/utils/format.py,sha256=ZgZndjYujTMiHaG2Yg3LPVqr7-yoZZTBvlCLNX07iEU,21109
354
+ reflex/utils/format.py,sha256=-EC0tfx7VCIijcuJx9l-ArRnRnPKrrrW8RgsKwXIoBc,21115
355
355
  reflex/utils/frontend_skeleton.py,sha256=aCWJZN-xtZ9pOMrUwpx9RDXorCpTcNDeD9p3Meh-Q5U,8608
356
356
  reflex/utils/imports.py,sha256=3hBb_3UPRjHt90HiFEoAt1acJWQ29RU8PFA1rFLLVRo,4242
357
357
  reflex/utils/js_runtimes.py,sha256=ipVrZCajiRcjow-nQeUuxPS_c6F_NpfvMtITOesbPjU,13153
@@ -380,8 +380,8 @@ reflex/vars/number.py,sha256=tO7pnvFaBsedq1HWT4skytnSqHWMluGEhUbjAUMx8XQ,28190
380
380
  reflex/vars/object.py,sha256=BDmeiwG8v97s_BnR1Egq3NxOKVjv9TfnREB3cz0zZtk,17322
381
381
  reflex/vars/sequence.py,sha256=1kBrqihspyjyQ1XDqFPC8OpVGtZs_EVkOdIKBro5ilA,55249
382
382
  scripts/hatch_build.py,sha256=-4pxcLSFmirmujGpQX9UUxjhIC03tQ_fIQwVbHu9kc0,1861
383
- reflex-0.8.8a1.dist-info/METADATA,sha256=YRd_uiDbOXgskGwb-csfoXMKBmyglU9xxt-k4lnguYY,12507
384
- reflex-0.8.8a1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
385
- reflex-0.8.8a1.dist-info/entry_points.txt,sha256=Rxt4dXc7MLBNt5CSHTehVPuSe9Xqow4HLX55nD9tQQ0,45
386
- reflex-0.8.8a1.dist-info/licenses/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
387
- reflex-0.8.8a1.dist-info/RECORD,,
383
+ reflex-0.8.8a2.dist-info/METADATA,sha256=oUBY7va3S7NJXaya-QUJvlW9ywZbTcqkJjRkkdT5z2s,12507
384
+ reflex-0.8.8a2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
385
+ reflex-0.8.8a2.dist-info/entry_points.txt,sha256=Rxt4dXc7MLBNt5CSHTehVPuSe9Xqow4HLX55nD9tQQ0,45
386
+ reflex-0.8.8a2.dist-info/licenses/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
387
+ reflex-0.8.8a2.dist-info/RECORD,,