Skip to content

Commit ca5af9c

Browse files
authored
0821dev (#5993)
* 0821dev * back to 7.1.18
1 parent 699f8c9 commit ca5af9c

File tree

7 files changed

+347
-343
lines changed

7 files changed

+347
-343
lines changed

pyi_hashes.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"reflex/components/el/elements/tables.pyi": "686eb70ea7d8c4dafb0cc5c284e76184",
4040
"reflex/components/el/elements/typography.pyi": "684e83dde887dba12badd0fb75c87c04",
4141
"reflex/components/gridjs/datatable.pyi": "98a7e1b3f3b60cafcdfcd8879750ee42",
42-
"reflex/components/lucide/icon.pyi": "4a3d1e9f1609f7655e1036545f40a35c",
42+
"reflex/components/lucide/icon.pyi": "d77bfffa92eeab90ceb57c57245cf393",
4343
"reflex/components/markdown/markdown.pyi": "2f84254a548e908020949564fc289339",
4444
"reflex/components/moment/moment.pyi": "e1952f1c2c82cef85d91e970d1be64ab",
4545
"reflex/components/plotly/plotly.pyi": "4311a0aae2abcc9226abb6a273f96372",
@@ -108,9 +108,9 @@
108108
"reflex/components/radix/themes/typography/heading.pyi": "0ebb38915cd0521fd59c569e04d288bb",
109109
"reflex/components/radix/themes/typography/link.pyi": "e88c5d880a54548b6808c097ac62505b",
110110
"reflex/components/radix/themes/typography/text.pyi": "50f9ca15a941e4b77ddd12e77aa3c03e",
111-
"reflex/components/react_player/audio.pyi": "9de7d9830534c6ec1f305434c4d8abd8",
112-
"reflex/components/react_player/react_player.pyi": "7a7a29a64a0d127c12c8131abcd012d1",
113-
"reflex/components/react_player/video.pyi": "e946b4915b41326d4e4b39381349d152",
111+
"reflex/components/react_player/audio.pyi": "0e1690ff1f1f39bc748278d292238350",
112+
"reflex/components/react_player/react_player.pyi": "5ccd373b94ed1d3934ae6afc46bd6fe4",
113+
"reflex/components/react_player/video.pyi": "998671c06103d797c554d9278eb3b2a0",
114114
"reflex/components/react_router/dom.pyi": "3042fa630b7e26a7378fe045d7fbf4af",
115115
"reflex/components/recharts/__init__.pyi": "6ee7f1ca2c0912f389ba6f3251a74d99",
116116
"reflex/components/recharts/cartesian.pyi": "cfca4f880239ffaecdf9fb4c7c8caed5",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.8.20dev1"
3+
version = "0.8.21dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -243,7 +243,7 @@ fail_fast = true
243243

244244
[[tool.pre-commit.repos]]
245245
repo = "https://github.com/astral-sh/ruff-pre-commit"
246-
rev = "v0.14.4"
246+
rev = "v0.14.6"
247247
hooks = [
248248
{ id = "ruff-format", args = [
249249
"reflex",

reflex/components/lucide/icon.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from reflex.vars.base import LiteralVar, Var
77
from reflex.vars.sequence import LiteralStringVar, StringVar
88

9-
LUCIDE_LIBRARY = "lucide-react@0.553.0"
9+
LUCIDE_LIBRARY = "lucide-react@0.554.0"
1010

1111

1212
class LucideIconComponent(Component):
@@ -386,6 +386,7 @@ def _get_imports(self):
386386
"calendar_sync",
387387
"calendar_x_2",
388388
"calendar_x",
389+
"calendars",
389390
"calendar",
390391
"camera_off",
391392
"camera",
@@ -764,6 +765,7 @@ def _get_imports(self):
764765
"filter_x",
765766
"filter",
766767
"fingerprint",
768+
"fingerprint_pattern",
767769
"fire_extinguisher",
768770
"fish_off",
769771
"fish_symbol",
@@ -1785,4 +1787,7 @@ def _get_imports(self):
17851787

17861788
# The default transformation of some icon names doesn't match how the
17871789
# icons are exported from Lucide. Manual overrides can go here.
1788-
LUCIDE_ICON_MAPPING_OVERRIDE = {"grid_3x2": "Grid3x2Icon"}
1790+
LUCIDE_ICON_MAPPING_OVERRIDE = {
1791+
"grid_3x2": "Grid3x2Icon",
1792+
"fingerprint": "FingerprintPattern",
1793+
}

reflex/components/plotly/plotly.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class Plotly(NoSSRComponent):
7272

7373
library = "[email protected]"
7474

75-
lib_dependencies: list[str] = ["plotly.js@3.2.0"]
75+
lib_dependencies: list[str] = ["plotly.js@3.3.0"]
7676

7777
tag = "Plot"
7878

@@ -303,7 +303,7 @@ class PlotlyBasic(Plotly):
303303

304304
library = "[email protected]"
305305

306-
lib_dependencies: list[str] = ["plotly.js-basic-dist-min@3.2.0"]
306+
lib_dependencies: list[str] = ["plotly.js-basic-dist-min@3.3.0"]
307307

308308
def add_imports(self) -> ImportDict | list[ImportDict]:
309309
"""Add imports for the plotly basic component.
@@ -329,7 +329,7 @@ class PlotlyCartesian(Plotly):
329329

330330
library = "[email protected]"
331331

332-
lib_dependencies: list[str] = ["plotly.js-cartesian-dist-min@3.2.0"]
332+
lib_dependencies: list[str] = ["plotly.js-cartesian-dist-min@3.3.0"]
333333

334334
def add_imports(self) -> ImportDict | list[ImportDict]:
335335
"""Add imports for the plotly cartesian component.
@@ -355,7 +355,7 @@ class PlotlyGeo(Plotly):
355355

356356
library = "[email protected]"
357357

358-
lib_dependencies: list[str] = ["plotly.js-geo-dist-min@3.2.0"]
358+
lib_dependencies: list[str] = ["plotly.js-geo-dist-min@3.3.0"]
359359

360360
def add_imports(self) -> ImportDict | list[ImportDict]:
361361
"""Add imports for the plotly geo component.
@@ -381,7 +381,7 @@ class PlotlyGl3d(Plotly):
381381

382382
library = "[email protected]"
383383

384-
lib_dependencies: list[str] = ["plotly.js-gl3d-dist-min@3.2.0"]
384+
lib_dependencies: list[str] = ["plotly.js-gl3d-dist-min@3.3.0"]
385385

386386
def add_imports(self) -> ImportDict | list[ImportDict]:
387387
"""Add imports for the plotly 3d component.
@@ -407,7 +407,7 @@ class PlotlyGl2d(Plotly):
407407

408408
library = "[email protected]"
409409

410-
lib_dependencies: list[str] = ["plotly.js-gl2d-dist-min@3.2.0"]
410+
lib_dependencies: list[str] = ["plotly.js-gl2d-dist-min@3.3.0"]
411411

412412
def add_imports(self) -> ImportDict | list[ImportDict]:
413413
"""Add imports for the plotly 2d component.
@@ -433,7 +433,7 @@ class PlotlyMapbox(Plotly):
433433

434434
library = "[email protected]"
435435

436-
lib_dependencies: list[str] = ["plotly.js-mapbox-dist-min@3.2.0"]
436+
lib_dependencies: list[str] = ["plotly.js-mapbox-dist-min@3.3.0"]
437437

438438
def add_imports(self) -> ImportDict | list[ImportDict]:
439439
"""Add imports for the plotly mapbox component.
@@ -459,7 +459,7 @@ class PlotlyFinance(Plotly):
459459

460460
library = "[email protected]"
461461

462-
lib_dependencies: list[str] = ["plotly.js-finance-dist-min@3.2.0"]
462+
lib_dependencies: list[str] = ["plotly.js-finance-dist-min@3.3.0"]
463463

464464
def add_imports(self) -> ImportDict | list[ImportDict]:
465465
"""Add imports for the plotly finance component.
@@ -485,7 +485,7 @@ class PlotlyStrict(Plotly):
485485

486486
library = "[email protected]"
487487

488-
lib_dependencies: list[str] = ["plotly.js-strict-dist-min@3.2.0"]
488+
lib_dependencies: list[str] = ["plotly.js-strict-dist-min@3.3.0"]
489489

490490
def add_imports(self) -> ImportDict | list[ImportDict]:
491491
"""Add imports for the plotly strict component.

reflex/components/react_player/react_player.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class ReactPlayer(Component):
130130
reference: https://github.com/cookpete/react-player.
131131
"""
132132

133-
library = "react-player@3.3.3"
133+
library = "react-player@3.4.0"
134134

135135
tag = "ReactPlayer"
136136

@@ -160,6 +160,9 @@ class ReactPlayer(Component):
160160
# Player-specific configuration parameters.
161161
config: Var[dict[str, Any]]
162162

163+
# Set to true to disable the default remote playback option on supported devices.
164+
disable_remote_playback: Var[bool]
165+
163166
# Called when media is loaded and ready to play. If playing is set to true, media will play immediately.
164167
on_ready: EventHandler[no_args_event_spec]
165168

reflex/constants/installer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Bun(SimpleNamespace):
1414
"""Bun constants."""
1515

1616
# The Bun version.
17-
VERSION = "1.3.2"
17+
VERSION = "1.3.3"
1818

1919
# Min Bun Version
2020
MIN_VERSION = "1.3.0"
@@ -75,7 +75,7 @@ class Node(SimpleNamespace):
7575

7676

7777
def _determine_react_router_version() -> str:
78-
default_version = "7.9.5"
78+
default_version = "7.9.6"
7979
if (version := os.getenv("REACT_ROUTER_VERSION")) and version != default_version:
8080
from reflex.utils import console
8181

0 commit comments

Comments
 (0)