Skip to content
Merged

088dev #5719

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": "e3f299e59bb8ff87aa949c6b606551c9",
"reflex/components/el/elements/typography.pyi": "b4ec4ffb448f7a9b5f94712404448d9e",
"reflex/components/gridjs/datatable.pyi": "98a7e1b3f3b60cafcdfcd8879750ee42",
"reflex/components/lucide/icon.pyi": "020db5c37c5a6bee5912532a89d6deda",
"reflex/components/lucide/icon.pyi": "69e5b61d7a914321fdc03280960d511c",
"reflex/components/markdown/markdown.pyi": "2f84254a548e908020949564fc289339",
"reflex/components/moment/moment.pyi": "93fa4c6009390fe9400197ab52735b84",
"reflex/components/plotly/plotly.pyi": "4311a0aae2abcc9226abb6a273f96372",
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "reflex"
version = "0.8.7dev1"
version = "0.8.8dev1"
description = "Web apps in pure Python."
license.text = "Apache-2.0"
authors = [
Expand All @@ -23,7 +23,7 @@ dependencies = [
"alembic >=1.15.2,<2.0",
"click >=8.2",
"granian[reload] >=2.4.0",
"httpx >=0.28.0,<1.0",
"httpx >=0.23.3,<1.0",
"jinja2 >=3.1.2,<4.0",
"packaging >=24.2,<26",
"platformdirs >=4.3.7,<5.0",
Expand All @@ -32,7 +32,7 @@ dependencies = [
"python-multipart >=0.0.20,<1.0",
"python-socketio >=5.12.0,<6.0",
"redis >=5.2.1,<7.0",
"reflex-hosting-cli >=0.1.54",
"reflex-hosting-cli >=0.1.55",
"rich >=13,<15",
"sqlmodel >=0.0.24,<0.1",
"starlette >=0.47.0",
Expand Down Expand Up @@ -233,7 +233,7 @@ fail_fast = true

[[tool.pre-commit.repos]]
repo = "https://github.com/astral-sh/ruff-pre-commit"
rev = "v0.12.8"
rev = "v0.12.9"
hooks = [
{ id = "ruff-format", args = [
"reflex",
Expand Down
3 changes: 2 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.539.0"
LUCIDE_LIBRARY = "lucide-react@0.540.0"


class LucideIconComponent(Component):
Expand Down Expand Up @@ -1330,6 +1330,7 @@ def _get_imports(self):
"rocket",
"rocking_chair",
"roller_coaster",
"rose",
"rotate_3d",
"rotate_ccw_key",
"rotate_ccw_square",
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/radix/primitives/accordion.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _inherited_variant_selector(
class AccordionComponent(RadixPrimitiveComponent):
"""Base class for all @radix-ui/accordion components."""

library = "@radix-ui/react-accordion@1.2.11"
library = "@radix-ui/react-accordion@1.2.12"

# The color scheme of the component.
color_scheme: Var[LiteralAccentColor]
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/radix/primitives/drawer.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class DrawerComponent(RadixPrimitiveComponent):

library = "vaul@1.1.2"

lib_dependencies: list[str] = ["@radix-ui/react-dialog@1.1.14"]
lib_dependencies: list[str] = ["@radix-ui/react-dialog@1.1.15"]


LiteralDirectionType = Literal["top", "bottom", "left", "right"]
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/radix/primitives/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class FormComponent(RadixPrimitiveComponentWithClassName):
"""Base class for all @radix-ui/react-form components."""

library = "@radix-ui/react-form@0.1.7"
library = "@radix-ui/react-form@0.1.8"


class FormRoot(FormComponent, HTMLForm):
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/radix/primitives/slider.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class SliderComponent(RadixPrimitiveComponentWithClassName):
"""Base class for all @radix-ui/react-slider components."""

library = "@radix-ui/react-slider@1.3.5"
library = "@radix-ui/react-slider@1.3.6"


def on_value_event_spec(
Expand Down
8 changes: 4 additions & 4 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.8.0"
default_version = "7.8.1"
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.29",
"isbot": "5.1.30",
"socket.io-client": "4.8.1",
"universal-cookie": "7.2.2",
}
Expand All @@ -143,11 +143,11 @@ def DEPENDENCIES(cls) -> dict[str, str]:
"postcss-import": "16.1.1",
"@react-router/dev": _react_router_version,
"@react-router/fs-routes": _react_router_version,
"vite": "npm:rolldown-vite@7.1.2",
"vite": "npm:rolldown-vite@7.1.3",
}
OVERRIDES = {
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
"react-is": _react_version,
"cookie": "1.0.2",
"vite": "npm:rolldown-vite@7.1.2",
"vite": "npm:rolldown-vite@7.1.3",
}
4 changes: 2 additions & 2 deletions reflex/plugins/tailwind_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Constants(SimpleNamespace):
"""Tailwind constants."""

# The Tailwindcss version
VERSION = "tailwindcss@4.1.11"
VERSION = "tailwindcss@4.1.12"
# The Tailwind config.
CONFIG = "tailwind.config.js"
# Default Tailwind content paths
Expand Down Expand Up @@ -156,7 +156,7 @@ def get_frontend_development_dependencies(self, **context) -> list[str]:
return [
*super().get_frontend_development_dependencies(**context),
Constants.VERSION,
"@tailwindcss/postcss@4.1.11",
"@tailwindcss/postcss@4.1.12",
]

def pre_compile(self, **context):
Expand Down
Loading
Loading