Skip to content
Open
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
6 changes: 3 additions & 3 deletions docs/app/reflex.lock/bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/app/reflex.lock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"export": "react-router build"
},
"dependencies": {
"@base-ui/react": "1.5.0",
"@base-ui/react": "1.6.0",
"@glideapps/glide-data-grid": "6.0.3",
"@hugeicons/core-free-icons": "4.2.0",
"@hugeicons/react": "1.1.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ class OTPFieldBaseComponent(BaseUIComponent):
@property
def import_var(self):
"""Return the import variable for the OTP field component."""
return ImportVar(tag="OTPFieldPreview", package_path="", install=False)
return ImportVar(tag="OTPField", package_path="", install=False)


class OTPFieldRoot(OTPFieldBaseComponent):
"""Container that manages state for one-time password entry across multiple slots. Renders a div."""

tag = "OTPFieldPreview.Root"
tag = "OTPField.Root"

# The number of input slots. Required.
length: Var[int]
Expand Down Expand Up @@ -107,7 +107,7 @@ def create(cls, *children, **props) -> BaseUIComponent:
class OTPFieldInput(OTPFieldBaseComponent):
"""An individual character slot. Renders an input element."""

tag = "OTPFieldPreview.Input"
tag = "OTPField.Input"

# The render prop
render_: Var[Component]
Expand All @@ -127,7 +127,7 @@ def create(cls, *children, **props) -> BaseUIComponent:
class OTPFieldSeparator(OTPFieldBaseComponent):
"""A visual or semantic divider between input groups. Renders a div."""

tag = "OTPFieldPreview.Separator"
tag = "OTPField.Separator"

# The separator orientation. Defaults to "horizontal".
orientation: Var[LiteralOrientation]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from reflex_components_internal.components.component import CoreComponent

PACKAGE_NAME = "@base-ui/react"
PACKAGE_VERSION = "1.5.0"
PACKAGE_VERSION = "1.6.0"


class BaseUIComponent(CoreComponent):
Expand Down
Loading