Skip to content

Commit 62cbb9b

Browse files
committed
rename
1 parent 00fd0ef commit 62cbb9b

26 files changed

Lines changed: 346 additions & 285 deletions

File tree

packages/reflex-components-code/pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ requires-python = ">=3.10"
99
dependencies = []
1010

1111
[tool.hatch.version]
12-
source = "vcs"
13-
raw-options = { root = "../..", tag_regex = "^reflex-components-code-v(?P<version>.+)$" }
12+
source = "uv-dynamic-versioning"
13+
14+
[tool.uv-dynamic-versioning]
15+
pattern-prefix = "reflex-components-code-"
16+
fallback-version = "0.0.0dev0"
1417

1518
[build-system]
16-
requires = ["hatchling", "hatch-vcs"]
19+
requires = ["hatchling", "uv-dynamic-versioning"]
1720
build-backend = "hatchling.build"

packages/reflex-components-core/pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ requires-python = ">=3.10"
99
dependencies = []
1010

1111
[tool.hatch.version]
12-
source = "vcs"
13-
raw-options = { root = "../..", tag_regex = "^reflex-components-core-v(?P<version>.+)$" }
12+
source = "uv-dynamic-versioning"
13+
14+
[tool.uv-dynamic-versioning]
15+
pattern-prefix = "reflex-components-core-"
16+
fallback-version = "0.0.0dev0"
1417

1518
[build-system]
16-
requires = ["hatchling", "hatch-vcs"]
19+
requires = ["hatchling", "uv-dynamic-versioning"]
1720
build-backend = "hatchling.build"

packages/reflex-components-core/src/reflex_components_core/base/meta.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
from reflex.vars.base import Var
77
from reflex_components_core.base.bare import Bare
88
from reflex_components_core.el import elements
9-
from reflex_components_core.el.elements.metadata import Meta as Meta # for compatibility
9+
from reflex_components_core.el.elements.metadata import (
10+
Meta as Meta,
11+
) # for compatibility
1012

1113

1214
class Title(elements.Title):

packages/reflex-components-core/src/reflex_components_core/core/banner.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
from __future__ import annotations
44

55
from reflex_components_lucide.icon import Icon
6-
from reflex_components_radix.themes.components.dialog import DialogContent, DialogRoot, DialogTitle
6+
from reflex_components_radix.themes.components.dialog import (
7+
DialogContent,
8+
DialogRoot,
9+
DialogTitle,
10+
)
711
from reflex_components_radix.themes.layout.flex import Flex
812
from reflex_components_radix.themes.typography.text import Text
913
from reflex_components_sonner.toast import ToastProps, toast_ref

packages/reflex-components-dataeditor/pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ requires-python = ">=3.10"
99
dependencies = []
1010

1111
[tool.hatch.version]
12-
source = "vcs"
13-
raw-options = { root = "../..", tag_regex = "^reflex-components-dataeditor-v(?P<version>.+)$" }
12+
source = "uv-dynamic-versioning"
13+
14+
[tool.uv-dynamic-versioning]
15+
pattern-prefix = "reflex-components-dataeditor-"
16+
fallback-version = "0.0.0dev0"
1417

1518
[build-system]
16-
requires = ["hatchling", "hatch-vcs"]
19+
requires = ["hatchling", "uv-dynamic-versioning"]
1720
build-backend = "hatchling.build"

packages/reflex-components-gridjs/pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ requires-python = ">=3.10"
99
dependencies = []
1010

1111
[tool.hatch.version]
12-
source = "vcs"
13-
raw-options = { root = "../..", tag_regex = "^reflex-components-gridjs-v(?P<version>.+)$" }
12+
source = "uv-dynamic-versioning"
13+
14+
[tool.uv-dynamic-versioning]
15+
pattern-prefix = "reflex-components-gridjs-"
16+
fallback-version = "0.0.0dev0"
1417

1518
[build-system]
16-
requires = ["hatchling", "hatch-vcs"]
19+
requires = ["hatchling", "uv-dynamic-versioning"]
1720
build-backend = "hatchling.build"

packages/reflex-components-lucide/pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ requires-python = ">=3.10"
99
dependencies = []
1010

1111
[tool.hatch.version]
12-
source = "vcs"
13-
raw-options = { root = "../..", tag_regex = "^reflex-components-lucide-v(?P<version>.+)$" }
12+
source = "uv-dynamic-versioning"
13+
14+
[tool.uv-dynamic-versioning]
15+
pattern-prefix = "reflex-components-lucide-"
16+
fallback-version = "0.0.0dev0"
1417

1518
[build-system]
16-
requires = ["hatchling", "hatch-vcs"]
19+
requires = ["hatchling", "uv-dynamic-versioning"]
1720
build-backend = "hatchling.build"

packages/reflex-components-markdown/pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ requires-python = ">=3.10"
99
dependencies = []
1010

1111
[tool.hatch.version]
12-
source = "vcs"
13-
raw-options = { root = "../..", tag_regex = "^reflex-components-markdown-v(?P<version>.+)$" }
12+
source = "uv-dynamic-versioning"
13+
14+
[tool.uv-dynamic-versioning]
15+
pattern-prefix = "reflex-components-markdown-"
16+
fallback-version = "0.0.0dev0"
1417

1518
[build-system]
16-
requires = ["hatchling", "hatch-vcs"]
19+
requires = ["hatchling", "uv-dynamic-versioning"]
1720
build-backend = "hatchling.build"

packages/reflex-components-moment/pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ requires-python = ">=3.10"
99
dependencies = []
1010

1111
[tool.hatch.version]
12-
source = "vcs"
13-
raw-options = { root = "../..", tag_regex = "^reflex-components-moment-v(?P<version>.+)$" }
12+
source = "uv-dynamic-versioning"
13+
14+
[tool.uv-dynamic-versioning]
15+
pattern-prefix = "reflex-components-moment-"
16+
fallback-version = "0.0.0dev0"
1417

1518
[build-system]
16-
requires = ["hatchling", "hatch-vcs"]
19+
requires = ["hatchling", "uv-dynamic-versioning"]
1720
build-backend = "hatchling.build"

packages/reflex-components-plotly/pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ requires-python = ">=3.10"
99
dependencies = []
1010

1111
[tool.hatch.version]
12-
source = "vcs"
13-
raw-options = { root = "../..", tag_regex = "^reflex-components-plotly-v(?P<version>.+)$" }
12+
source = "uv-dynamic-versioning"
13+
14+
[tool.uv-dynamic-versioning]
15+
pattern-prefix = "reflex-components-plotly-"
16+
fallback-version = "0.0.0dev0"
1417

1518
[build-system]
16-
requires = ["hatchling", "hatch-vcs"]
19+
requires = ["hatchling", "uv-dynamic-versioning"]
1720
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)