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
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "reflex"
version = "0.7.13dev1"
version = "0.7.14dev1"
description = "Web apps in pure Python."
license.text = "Apache-2.0"
authors = [
Expand Down Expand Up @@ -213,7 +213,7 @@ fail_fast = true

[[tool.pre-commit.repos]]
repo = "https://github.com/astral-sh/ruff-pre-commit"
rev = "v0.11.8"
rev = "v0.11.11"
hooks = [
{ id = "ruff-format", args = [
"reflex",
Expand Down Expand Up @@ -245,7 +245,7 @@ hooks = [

[[tool.pre-commit.repos]]
repo = "https://github.com/RobertCraigie/pyright-python"
rev = "v1.1.400"
rev = "v1.1.401"
hooks = [{ id = "pyright", args = ["reflex", "tests"], language = "system" }]

[[tool.pre-commit.repos]]
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.10"
library = "@radix-ui/react-accordion@1.2.11"

# 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.13"]
lib_dependencies: list[str] = ["@radix-ui/react-dialog@1.1.14"]


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.6"
library = "@radix-ui/react-form@0.1.7"


class FormRoot(FormComponent, HTMLForm):
Expand Down
2 changes: 1 addition & 1 deletion reflex/constants/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Bun(SimpleNamespace):
"""Bun constants."""

# The Bun version.
VERSION = "1.2.13"
VERSION = "1.2.14"

# Min Bun Version
MIN_VERSION = "1.2.8"
Expand Down
2 changes: 1 addition & 1 deletion reflex/vars/dep_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __post_init__(self):
self.func = cast(FunctionType, self.func.func) # pyright: ignore[reportAttributeAccessIssue]
with contextlib.suppress(AttributeError):
# unbox EventHandler
self.func = cast(FunctionType, self.func.fn) # pyright: ignore[reportAttributeAccessIssue]
self.func = cast(FunctionType, self.func.fn) # pyright: ignore[reportAttributeAccessIssue,reportFunctionMemberAccess]

if isinstance(self.func, FunctionType):
with contextlib.suppress(AttributeError, IndexError):
Expand Down
335 changes: 168 additions & 167 deletions uv.lock

Large diffs are not rendered by default.