Skip to content
Merged
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ dev = [
"pandas >=2.1.1,<3.0",
"pillow >=10.0.0,<12.0",
"playwright >=1.46.0",
"plotly >=5.13.0,<6.0",
"plotly >=5.13.0,<7.0",
"pre-commit >=4.1.0,<5.0",
"psycopg[binary] >=3.2.6,<4.0",
"pyright >=1.1.396,<1.2",
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/core/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class GhostUpload(Fragment):
class Upload(MemoizationLeaf):
"""A file upload component."""

library = "react-dropzone@14.3.5"
library = "react-dropzone@14.3.8"

tag = ""

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 @@ -71,7 +71,7 @@ class Plotly(NoSSRComponent):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js@2.35.3"]
lib_dependencies: list[str] = ["plotly.js@3.0.1"]

tag = "Plot"

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

library = "react-plotly.js@2.6.0"

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

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

library = "react-plotly.js@2.6.0"

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

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

library = "react-plotly.js@2.6.0"

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

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

library = "react-plotly.js@2.6.0"

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

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

library = "react-plotly.js@2.6.0"

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

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

library = "react-plotly.js@2.6.0"

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

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

library = "react-plotly.js@2.6.0"

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

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

library = "react-plotly.js@2.6.0"

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

def add_imports(self) -> ImportDict | list[ImportDict]:
"""Add imports for the plotly strict component.
Expand Down
4 changes: 2 additions & 2 deletions reflex/components/recharts/recharts.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class Recharts(Component):
"""A component that wraps a recharts lib."""

library = "recharts@2.15.0"
library = "recharts@2.15.1"

def _get_style(self) -> dict:
return {"wrapperStyle": self.style}
Expand All @@ -17,7 +17,7 @@ def _get_style(self) -> dict:
class RechartsCharts(NoSSRComponent, MemoizationLeaf):
"""A component that wraps a recharts lib."""

library = "recharts@2.15.0"
library = "recharts@2.15.1"


LiteralAnimationEasing = Literal["ease", "ease-in", "ease-out", "ease-in-out", "linear"]
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/sonner/toast.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def dict(self, *args: Any, **kwargs: Any) -> dict[str, Any]:
class Toaster(Component):
"""A Toaster Component for displaying toast notifications."""

library: str | None = "sonner@1.7.2"
library: str | None = "sonner@2.0.1"

tag = "Toaster"

Expand Down
10 changes: 5 additions & 5 deletions reflex/constants/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,20 +82,20 @@ class Commands(SimpleNamespace):

DEPENDENCIES = {
"@emotion/react": "11.14.0",
"axios": "1.7.9",
"axios": "1.8.3",
"json5": "2.2.3",
"next": "15.1.7",
"next": "15.0.4",
"next-sitemap": "4.2.3",
"next-themes": "0.4.4",
"next-themes": "0.4.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-focus-lock": "2.13.6",
"socket.io-client": "4.8.1",
"universal-cookie": "7.2.2",
}
DEV_DEPENDENCIES = {
"autoprefixer": "10.4.20",
"postcss": "8.5.1",
"autoprefixer": "10.4.21",
"postcss": "8.5.3",
"postcss-import": "16.1.0",
}
OVERRIDES = {
Expand Down
Loading
Loading