reflex 0.4.9a1__py3-none-any.whl → 0.4.9a2__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/app.py CHANGED
@@ -839,6 +839,9 @@ class App(Base):
839
839
  compile_results.append(
840
840
  compiler.compile_contexts(self.state, self.theme),
841
841
  )
842
+ # Fix #2992 by removing the top-level appearance prop
843
+ if self.theme is not None:
844
+ self.theme.appearance = None
842
845
 
843
846
  app_root = self._app_root(app_wrappers=app_wrappers)
844
847
 
@@ -112,6 +112,7 @@ class PackageJson(SimpleNamespace):
112
112
  "next-themes": "0.2.1",
113
113
  "react": "18.2.0",
114
114
  "react-dom": "18.2.0",
115
+ "react-focus-lock": "2.11.3",
115
116
  "socket.io-client": "4.6.1",
116
117
  "universal-cookie": "4.0.4",
117
118
  }
@@ -34,6 +34,7 @@ PWD = Path(".").resolve()
34
34
 
35
35
  EXCLUDED_FILES = [
36
36
  "__init__.py",
37
+ "app.py",
37
38
  "component.py",
38
39
  "bare.py",
39
40
  "foreach.py",
@@ -795,7 +796,11 @@ class PyiGenerator:
795
796
  file_targets = []
796
797
  for target in targets:
797
798
  target_path = Path(target)
798
- if target_path.is_file() and target_path.suffix == ".py":
799
+ if (
800
+ target_path.is_file()
801
+ and target_path.suffix == ".py"
802
+ and target_path.name not in EXCLUDED_FILES
803
+ ):
799
804
  file_targets.append(target_path)
800
805
  continue
801
806
  if not target_path.is_dir():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: reflex
3
- Version: 0.4.9a1
3
+ Version: 0.4.9a2
4
4
  Summary: Web apps in pure Python.
5
5
  Home-page: https://reflex.dev
6
6
  License: Apache-2.0
@@ -64,7 +64,7 @@ reflex/__init__.py,sha256=qwTfjJemUEeC1Nt3WY1K7YQfy4wexNg6nXQ1PPWNzzk,5723
64
64
  reflex/__init__.pyi,sha256=5z4RX4_rMuLjtXgZry7e_fnvmcZG2oKT7CHcmHSv0OA,7649
65
65
  reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
66
66
  reflex/admin.py,sha256=-bTxFUEoHo4X9FzmcSa6KSVVPpF7wh38lBvF67GhSvQ,373
67
- reflex/app.py,sha256=I3Z7iAZAB0njvYfFxGihHosgzaiDjTv12Ezmaum3jxI,45016
67
+ reflex/app.py,sha256=pvde4hx5MtvutLMAeuurjT91UXa-aRTKpQwv-R1GVgo,45154
68
68
  reflex/app.pyi,sha256=y6giMJpuUCQguCyrGQKnWvhDCpuN9ktXoNb7OZl5l2g,5010
69
69
  reflex/app_module_for_backend.py,sha256=APD4jFsG-Tfd0vZWAfsdBYj4E4PeGZjjWeOZwBfUKRM,1152
70
70
  reflex/base.py,sha256=oVOWMxWOSc96Jon0R4fWrSt0PkMqoPhaM0PJGoK147o,4250
@@ -453,7 +453,7 @@ reflex/constants/compiler.py,sha256=uWTC28IpBlJzh-BnO05xoiCwYQsGeXJJ3RG6UB1xZQo,
453
453
  reflex/constants/config.py,sha256=7uUypVy-ezLt3UN3jXEX1XvL3sKaCLBwnJCyYjg9erI,1331
454
454
  reflex/constants/custom_components.py,sha256=SX0SQVb-d6HJkZdezFL4UgkumyF6eJF682y4OvRUqUM,1268
455
455
  reflex/constants/event.py,sha256=7cEUTWdIhWVw7g5Bn9yTZlxNnJY5MeJL55q-vT1YOZ0,2668
456
- reflex/constants/installer.py,sha256=p0-9b57dyt1MR2fddnS2pbXYtUpRNhvGmuA0oyOHT_8,3223
456
+ reflex/constants/installer.py,sha256=4ztmgMYNUYDEEwPHu_GNTlcMoAEuJ1C4waFuhwA83rY,3261
457
457
  reflex/constants/route.py,sha256=9ydQEdlz3YwGmGMHVGz7zA-INoOLtz_xUU2S-WmhZZM,1940
458
458
  reflex/constants/style.py,sha256=gSzu0sQEQjW81PekxJnwRs7SXQQVco-LxtVjCi0IQZc,636
459
459
  reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
@@ -485,15 +485,15 @@ reflex/utils/imports.py,sha256=IRnSLA_LI0ougGpOT_smwVPDpfoPcC7t_tY4mnuhj6k,2277
485
485
  reflex/utils/path_ops.py,sha256=Vy6fU_bXvOcCvbXdTSmeLwy_C4h9seYU-3yIrVdZEZQ,4737
486
486
  reflex/utils/prerequisites.py,sha256=0zBpFhStKZ_wzL_fKKM9XTkerS3L0QYuUjTnSkehYSM,47242
487
487
  reflex/utils/processes.py,sha256=9XIffdPsxe-RnaMB9Q_VyaXVJrXAx9OIjrExNYBl8x0,10730
488
- reflex/utils/pyi_generator.py,sha256=VyGG0Tj3nvyBi2OQU-oscWRhJyRiYG9rUvJolKLK5Gg,27674
488
+ reflex/utils/pyi_generator.py,sha256=1X3nvR5qo7QnXmX4SJ8Jo3KL_ctS8oDVaLoWSh-9L4U,27795
489
489
  reflex/utils/serializers.py,sha256=AK3q6UqGwha21lz04c1rwlqlgbDkUMVpUG4Yf1sLmcs,9023
490
490
  reflex/utils/telemetry.py,sha256=NYAzPe7nU0EUwq2hIAByOzlie_5RhFlfHganBqG5OfA,4013
491
491
  reflex/utils/types.py,sha256=QtsWi7ACjwHLfc7Wy72YU85bGUS3J-P_XlltYUAfnPk,13679
492
492
  reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
493
493
  reflex/vars.py,sha256=45Ejn54a3BC1bXp5nzFDUjirgGRrHD-YX3rKiKVRL-g,67157
494
494
  reflex/vars.pyi,sha256=7sVCLoLg9Y7QAmXWz6FCtVmScpSV84u0yQ3ZBImb_Bk,5583
495
- reflex-0.4.9a1.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
496
- reflex-0.4.9a1.dist-info/METADATA,sha256=iz48869W2oj91cssc2H8wJBQQRNqenW5Ew6A75Ajhl0,11764
497
- reflex-0.4.9a1.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
498
- reflex-0.4.9a1.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
499
- reflex-0.4.9a1.dist-info/RECORD,,
495
+ reflex-0.4.9a2.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
496
+ reflex-0.4.9a2.dist-info/METADATA,sha256=JCmQ51jAG87KsWnF7XGMJK4_KCGPjIe93a-NAqauw4o,11764
497
+ reflex-0.4.9a2.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
498
+ reflex-0.4.9a2.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
499
+ reflex-0.4.9a2.dist-info/RECORD,,