Skip to content

Commit 019e97c

Browse files
authored
update deps 0714 (#5328)
* update deps 0714 * precommit
1 parent 8c43a92 commit 019e97c

File tree

7 files changed

+176
-175
lines changed

7 files changed

+176
-175
lines changed

pyproject.toml

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

214214
[[tool.pre-commit.repos]]
215215
repo = "https://github.com/astral-sh/ruff-pre-commit"
216-
rev = "v0.11.8"
216+
rev = "v0.11.11"
217217
hooks = [
218218
{ id = "ruff-format", args = [
219219
"reflex",
@@ -245,7 +245,7 @@ hooks = [
245245

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

251251
[[tool.pre-commit.repos]]

reflex/components/radix/primitives/accordion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _inherited_variant_selector(
5454
class AccordionComponent(RadixPrimitiveComponent):
5555
"""Base class for all @radix-ui/accordion components."""
5656

57-
library = "@radix-ui/react-accordion@1.2.10"
57+
library = "@radix-ui/react-accordion@1.2.11"
5858

5959
# The color scheme of the component.
6060
color_scheme: Var[LiteralAccentColor]

reflex/components/radix/primitives/drawer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class DrawerComponent(RadixPrimitiveComponent):
2121

2222
library = "vaul@1.1.2"
2323

24-
lib_dependencies: list[str] = ["@radix-ui/react-dialog@1.1.13"]
24+
lib_dependencies: list[str] = ["@radix-ui/react-dialog@1.1.14"]
2525

2626

2727
LiteralDirectionType = Literal["top", "bottom", "left", "right"]

reflex/components/radix/primitives/form.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class FormComponent(RadixPrimitiveComponentWithClassName):
1818
"""Base class for all @radix-ui/react-form components."""
1919

20-
library = "@radix-ui/react-form@0.1.6"
20+
library = "@radix-ui/react-form@0.1.7"
2121

2222

2323
class FormRoot(FormComponent, HTMLForm):

reflex/constants/installer.py

Lines changed: 1 addition & 1 deletion
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.2.13"
17+
VERSION = "1.2.14"
1818

1919
# Min Bun Version
2020
MIN_VERSION = "1.2.8"

reflex/vars/dep_tracking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def __post_init__(self):
7373
self.func = cast(FunctionType, self.func.func) # pyright: ignore[reportAttributeAccessIssue]
7474
with contextlib.suppress(AttributeError):
7575
# unbox EventHandler
76-
self.func = cast(FunctionType, self.func.fn) # pyright: ignore[reportAttributeAccessIssue]
76+
self.func = cast(FunctionType, self.func.fn) # pyright: ignore[reportAttributeAccessIssue,reportFunctionMemberAccess]
7777

7878
if isinstance(self.func, FunctionType):
7979
with contextlib.suppress(AttributeError, IndexError):

uv.lock

Lines changed: 168 additions & 167 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)