Skip to content
Merged

0819dev #5944

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyi_hashes.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"reflex/components/el/elements/tables.pyi": "686eb70ea7d8c4dafb0cc5c284e76184",
"reflex/components/el/elements/typography.pyi": "684e83dde887dba12badd0fb75c87c04",
"reflex/components/gridjs/datatable.pyi": "98a7e1b3f3b60cafcdfcd8879750ee42",
"reflex/components/lucide/icon.pyi": "7d03a93e2b222acc4345889c74b43269",
"reflex/components/lucide/icon.pyi": "6026aca0c03c3e6f423ac3d61db1f7b2",
"reflex/components/markdown/markdown.pyi": "2f84254a548e908020949564fc289339",
"reflex/components/moment/moment.pyi": "e1952f1c2c82cef85d91e970d1be64ab",
"reflex/components/plotly/plotly.pyi": "4311a0aae2abcc9226abb6a273f96372",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "reflex"
version = "0.8.18dev1"
version = "0.8.19dev1"
description = "Web apps in pure Python."
license.text = "Apache-2.0"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/datadisplay/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ class Theme:
class CodeBlock(Component, MarkdownComponentMap):
"""A code block."""

library = "react-syntax-highlighter@15.6.6"
library = "react-syntax-highlighter@16.1.0"

tag = "PrismAsyncLight"

Expand Down
6 changes: 5 additions & 1 deletion reflex/components/lucide/icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from reflex.vars.base import LiteralVar, Var
from reflex.vars.sequence import LiteralStringVar, StringVar

LUCIDE_LIBRARY = "lucide-react@0.548.0"
LUCIDE_LIBRARY = "lucide-react@0.552.0"


class LucideIconComponent(Component):
Expand Down Expand Up @@ -533,6 +533,7 @@ def _get_imports(self):
"clock_alert",
"clock_arrow_down",
"clock_arrow_up",
"clock_check",
"clock_fading",
"clock_plus",
"clock",
Expand Down Expand Up @@ -838,6 +839,7 @@ def _get_imports(self):
"georgian_lari",
"ghost",
"gift",
"git_branch_minus",
"git_branch_plus",
"git_branch",
"git_commit_horizontal",
Expand Down Expand Up @@ -915,6 +917,7 @@ def _get_imports(self):
"heart_pulse",
"heart",
"heater",
"helicopter",
"hexagon",
"highlighter",
"history",
Expand Down Expand Up @@ -1460,6 +1463,7 @@ def _get_imports(self):
"snowflake",
"soap_dispenser_droplet",
"sofa",
"solar_panel",
"soup",
"space",
"spade",
Expand Down
18 changes: 9 additions & 9 deletions reflex/components/plotly/plotly.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Plotly(NoSSRComponent):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js@3.1.2"]
lib_dependencies: list[str] = ["plotly.js@3.2.0"]

tag = "Plot"

Expand Down Expand Up @@ -303,7 +303,7 @@ class PlotlyBasic(Plotly):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-basic-dist-min@3.1.2"]
lib_dependencies: list[str] = ["plotly.js-basic-dist-min@3.2.0"]

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

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-cartesian-dist-min@3.1.2"]
lib_dependencies: list[str] = ["plotly.js-cartesian-dist-min@3.2.0"]

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

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-geo-dist-min@3.1.2"]
lib_dependencies: list[str] = ["plotly.js-geo-dist-min@3.2.0"]

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

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-gl3d-dist-min@3.1.2"]
lib_dependencies: list[str] = ["plotly.js-gl3d-dist-min@3.2.0"]

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

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-gl2d-dist-min@3.1.2"]
lib_dependencies: list[str] = ["plotly.js-gl2d-dist-min@3.2.0"]

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

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-mapbox-dist-min@3.1.2"]
lib_dependencies: list[str] = ["plotly.js-mapbox-dist-min@3.2.0"]

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

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-finance-dist-min@3.1.2"]
lib_dependencies: list[str] = ["plotly.js-finance-dist-min@3.2.0"]

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

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-strict-dist-min@3.1.2"]
lib_dependencies: list[str] = ["plotly.js-strict-dist-min@3.2.0"]

def add_imports(self) -> ImportDict | list[ImportDict]:
"""Add imports for the plotly strict component.
Expand Down
4 changes: 2 additions & 2 deletions reflex/constants/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class Node(SimpleNamespace):


def _determine_react_router_version() -> str:
default_version = "7.9.4"
default_version = "7.9.5"
if (version := os.getenv("REACT_ROUTER_VERSION")) and version != default_version:
from reflex.utils import console

Expand Down Expand Up @@ -131,7 +131,7 @@ def DEPENDENCIES(cls) -> dict[str, str]:
"react": cls._react_version,
"react-helmet": "6.1.0",
"react-dom": cls._react_version,
"isbot": "5.1.31",
"isbot": "5.1.32",
"socket.io-client": "4.8.1",
"universal-cookie": "7.2.2",
}
Expand Down
Loading