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
220 changes: 110 additions & 110 deletions pyi_hashes.json

Large diffs are not rendered by default.

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.7.11dev1"
version = "0.7.12dev1"
description = "Web apps in pure Python."
license = { text = "Apache-2.0" }
authors = [
Expand Down
6 changes: 3 additions & 3 deletions reflex/components/datadisplay/dataeditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,10 @@ class DataEditor(NoSSRComponent):

tag = "DataEditor"
is_default = True
library: str | None = "@glideapps/glide-data-grid@^6.0.3"
library: str | None = "@glideapps/glide-data-grid@6.0.3"
lib_dependencies: list[str] = [
"lodash@^4.17.21",
"react-responsive-carousel@^3.2.7",
"lodash@4.17.21",
"react-responsive-carousel@3.2.23",
]

# Number of rows.
Expand Down
4 changes: 3 additions & 1 deletion reflex/components/lucide/icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class LucideIconComponent(Component):
"""Lucide Icon Component."""

library = "lucide-react@0.508.0"
library = "lucide-react@0.510.0"


class Icon(LucideIconComponent):
Expand Down Expand Up @@ -422,6 +422,7 @@ def _get_imports(self):
"chart_spline",
"check",
"check_check",
"check_line",
"chef_hat",
"cherry",
"chevron_down",
Expand Down Expand Up @@ -836,6 +837,7 @@ def _get_imports(self):
"globe",
"globe_lock",
"goal",
"gpu",
"grab",
"graduation_cap",
"grape",
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.8"
library = "@radix-ui/react-accordion@1.2.10"

# The color scheme of the component.
color_scheme: Var[LiteralAccentColor]
Expand Down
2 changes: 0 additions & 2 deletions reflex/components/radix/primitives/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ class RadixPrimitiveComponent(Component):
# Change the default rendered element for the one passed as a child.
as_child: Var[bool]

lib_dependencies: list[str] = ["@emotion/react@^11.11.1"]


class RadixPrimitiveComponentWithClassName(RadixPrimitiveComponent):
"""Basic component for radix Primitives with a class name prop."""
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.6"]
lib_dependencies: list[str] = ["@radix-ui/react-dialog@1.1.13"]


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


class FormRoot(FormComponent, HTMLForm):
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/radix/primitives/progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class ProgressComponent(RadixPrimitiveComponentWithClassName):
"""A Progress component."""

library = "@radix-ui/react-progress@^1.1.4"
library = "@radix-ui/react-progress@1.1.6"


class ProgressRoot(ProgressComponent):
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.2"
library = "@radix-ui/react-slider@1.3.4"


def on_value_event_spec(
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/radix/themes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class RadixLoadingProp(Component):
class RadixThemesComponent(Component):
"""Base class for all @radix-ui/themes components."""

library = "@radix-ui/themes@^3.2.1"
library = "@radix-ui/themes@3.2.1"

# "Fake" prop color_scheme is used to avoid shadowing CSS prop "color".
_rename_props: ClassVar[dict[str, str]] = {"colorScheme": "color"}
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.12"
VERSION = "1.2.13"

# Min Bun Version
MIN_VERSION = "1.2.8"
Expand Down
421 changes: 212 additions & 209 deletions uv.lock

Large diffs are not rendered by default.