Skip to content

Commit 520989a

Browse files
committed
Merge remote-tracking branch 'origin/main' into rework-transformers-and-serialize-subfields-of-color-vars
2 parents 415009f + a21414d commit 520989a

File tree

4 files changed

+236
-221
lines changed

4 files changed

+236
-221
lines changed

pyproject.toml

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

230230
[[tool.pre-commit.repos]]
231231
repo = "https://github.com/astral-sh/ruff-pre-commit"
232-
rev = "v0.13.0"
232+
rev = "v0.13.1"
233233
hooks = [
234234
{ id = "ruff-format", args = [
235235
"reflex",

reflex/components/recharts/recharts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class Recharts(Component):
99
"""A component that wraps a recharts lib."""
1010

11-
library = "[email protected].0"
11+
library = "[email protected].1"
1212

1313
def _get_style(self) -> dict:
1414
return {"wrapperStyle": self.style}
@@ -17,7 +17,7 @@ def _get_style(self) -> dict:
1717
class RechartsCharts(NoSSRComponent, MemoizationLeaf):
1818
"""A component that wraps a recharts lib."""
1919

20-
library = "[email protected].0"
20+
library = "[email protected].1"
2121

2222

2323
LiteralAnimationEasing = Literal["ease", "ease-in", "ease-out", "ease-in-out", "linear"]

reflex/plugins/shared_tailwind.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class TailwindPlugin(PluginBase):
179179
config: TailwindConfig = dataclasses.field(
180180
default_factory=lambda: TailwindConfig(
181181
plugins=[
182-
"@tailwindcss/[email protected].16",
182+
"@tailwindcss/[email protected].18",
183183
],
184184
)
185185
)

0 commit comments

Comments
 (0)