Skip to content

Commit dcb1c10

Browse files
authored
bump to 0.7.12dev (#5287)
* bump to 0.7.12dev * bump frontend deps
1 parent 9b8aab9 commit dcb1c10

13 files changed

Lines changed: 336 additions & 333 deletions

File tree

pyi_hashes.json

Lines changed: 110 additions & 110 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.7.11dev1"
3+
version = "0.7.12dev1"
44
description = "Web apps in pure Python."
55
license = { text = "Apache-2.0" }
66
authors = [

reflex/components/datadisplay/dataeditor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,10 @@ class DataEditor(NoSSRComponent):
164164

165165
tag = "DataEditor"
166166
is_default = True
167-
library: str | None = "@glideapps/glide-data-grid@^6.0.3"
167+
library: str | None = "@glideapps/glide-data-grid@6.0.3"
168168
lib_dependencies: list[str] = [
169-
"lodash@^4.17.21",
170-
"react-responsive-carousel@^3.2.7",
169+
"lodash@4.17.21",
170+
"react-responsive-carousel@3.2.23",
171171
]
172172

173173
# Number of rows.

reflex/components/lucide/icon.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class LucideIconComponent(Component):
1111
"""Lucide Icon Component."""
1212

13-
library = "lucide-react@0.508.0"
13+
library = "lucide-react@0.510.0"
1414

1515

1616
class Icon(LucideIconComponent):
@@ -422,6 +422,7 @@ def _get_imports(self):
422422
"chart_spline",
423423
"check",
424424
"check_check",
425+
"check_line",
425426
"chef_hat",
426427
"cherry",
427428
"chevron_down",
@@ -836,6 +837,7 @@ def _get_imports(self):
836837
"globe",
837838
"globe_lock",
838839
"goal",
840+
"gpu",
839841
"grab",
840842
"graduation_cap",
841843
"grape",

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.8"
57+
library = "@radix-ui/react-accordion@1.2.10"
5858

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

reflex/components/radix/primitives/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ class RadixPrimitiveComponent(Component):
1212
# Change the default rendered element for the one passed as a child.
1313
as_child: Var[bool]
1414

15-
lib_dependencies: list[str] = ["@emotion/react@^11.11.1"]
16-
1715

1816
class RadixPrimitiveComponentWithClassName(RadixPrimitiveComponent):
1917
"""Basic component for radix Primitives with a class name prop."""

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.6"]
24+
lib_dependencies: list[str] = ["@radix-ui/react-dialog@1.1.13"]
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.4"
20+
library = "@radix-ui/react-form@0.1.6"
2121

2222

2323
class FormRoot(FormComponent, HTMLForm):

reflex/components/radix/primitives/progress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
class ProgressComponent(RadixPrimitiveComponentWithClassName):
1616
"""A Progress component."""
1717

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

2020

2121
class ProgressRoot(ProgressComponent):

reflex/components/radix/primitives/slider.py

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

20-
library = "@radix-ui/react-slider@^1.3.2"
20+
library = "@radix-ui/react-slider@1.3.4"
2121

2222

2323
def on_value_event_spec(

0 commit comments

Comments
 (0)