reflex 0.4.9__py3-none-any.whl → 0.4.9a1__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 +0 -3
- reflex/constants/installer.py +0 -1
- reflex/utils/prerequisites.py +1 -1
- reflex/utils/pyi_generator.py +1 -6
- {reflex-0.4.9.dist-info → reflex-0.4.9a1.dist-info}/METADATA +1 -1
- {reflex-0.4.9.dist-info → reflex-0.4.9a1.dist-info}/RECORD +9 -9
- {reflex-0.4.9.dist-info → reflex-0.4.9a1.dist-info}/LICENSE +0 -0
- {reflex-0.4.9.dist-info → reflex-0.4.9a1.dist-info}/WHEEL +0 -0
- {reflex-0.4.9.dist-info → reflex-0.4.9a1.dist-info}/entry_points.txt +0 -0
reflex/app.py
CHANGED
|
@@ -839,9 +839,6 @@ 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
|
|
845
842
|
|
|
846
843
|
app_root = self._app_root(app_wrappers=app_wrappers)
|
|
847
844
|
|
reflex/constants/installer.py
CHANGED
reflex/utils/prerequisites.py
CHANGED
|
@@ -823,7 +823,7 @@ def install_frontend_packages(packages: set[str], config: Config):
|
|
|
823
823
|
"""
|
|
824
824
|
# unsupported archs(arm and 32bit machines) will use npm anyway. so we dont have to run npm twice
|
|
825
825
|
fallback_command = (
|
|
826
|
-
|
|
826
|
+
get_install_package_manager()
|
|
827
827
|
if not constants.IS_WINDOWS
|
|
828
828
|
or constants.IS_WINDOWS
|
|
829
829
|
and constants.IS_WINDOWS_BUN_SUPPORTED_MACHINE
|
reflex/utils/pyi_generator.py
CHANGED
|
@@ -34,7 +34,6 @@ PWD = Path(".").resolve()
|
|
|
34
34
|
|
|
35
35
|
EXCLUDED_FILES = [
|
|
36
36
|
"__init__.py",
|
|
37
|
-
"app.py",
|
|
38
37
|
"component.py",
|
|
39
38
|
"bare.py",
|
|
40
39
|
"foreach.py",
|
|
@@ -796,11 +795,7 @@ class PyiGenerator:
|
|
|
796
795
|
file_targets = []
|
|
797
796
|
for target in targets:
|
|
798
797
|
target_path = Path(target)
|
|
799
|
-
if (
|
|
800
|
-
target_path.is_file()
|
|
801
|
-
and target_path.suffix == ".py"
|
|
802
|
-
and target_path.name not in EXCLUDED_FILES
|
|
803
|
-
):
|
|
798
|
+
if target_path.is_file() and target_path.suffix == ".py":
|
|
804
799
|
file_targets.append(target_path)
|
|
805
800
|
continue
|
|
806
801
|
if not target_path.is_dir():
|
|
@@ -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=
|
|
67
|
+
reflex/app.py,sha256=I3Z7iAZAB0njvYfFxGihHosgzaiDjTv12Ezmaum3jxI,45016
|
|
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=
|
|
456
|
+
reflex/constants/installer.py,sha256=p0-9b57dyt1MR2fddnS2pbXYtUpRNhvGmuA0oyOHT_8,3223
|
|
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
|
|
@@ -483,17 +483,17 @@ reflex/utils/export.py,sha256=UJd4BYFW9_eexhLCP4C5Ri8Cq2tWAPNVspq70lPLCyo,2270
|
|
|
483
483
|
reflex/utils/format.py,sha256=4vY7NP-f7B2euJ5F5dM3yh5SYPzCY3bVZDATG2DMaMU,22648
|
|
484
484
|
reflex/utils/imports.py,sha256=IRnSLA_LI0ougGpOT_smwVPDpfoPcC7t_tY4mnuhj6k,2277
|
|
485
485
|
reflex/utils/path_ops.py,sha256=Vy6fU_bXvOcCvbXdTSmeLwy_C4h9seYU-3yIrVdZEZQ,4737
|
|
486
|
-
reflex/utils/prerequisites.py,sha256=
|
|
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=
|
|
488
|
+
reflex/utils/pyi_generator.py,sha256=VyGG0Tj3nvyBi2OQU-oscWRhJyRiYG9rUvJolKLK5Gg,27674
|
|
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.
|
|
496
|
-
reflex-0.4.
|
|
497
|
-
reflex-0.4.
|
|
498
|
-
reflex-0.4.
|
|
499
|
-
reflex-0.4.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|