From 4206afeb7b140e36c3ab4fffde704be9ff22666f Mon Sep 17 00:00:00 2001 From: Masen Furer Date: Tue, 13 Feb 2024 10:06:28 -0800 Subject: [PATCH] [REF-1958] Remove shadowed radix css props (#2590) * style: shorthand replacements need camelCase Avoid warning on terminal and in browser console from using kebab-case CSS props with emotion. * _rename_props only replace prop name once In case the value also contains the prop name, we don't want to replace it multiple times. * pyi_generator: ignore _rename_props in create signature * Avoid shadowing CSS prop `display` and `gap` Replace usages of `gap` with `spacing` to retain Radix sizing number system, while allowing users to specify a responsive `gap` using CSS units. Remove `display` props from radix components, allowing `display` to accept responsive lists. * checkbox: apply `gap` to `flex` if provided * Remove _rename_props from .create signatures * Fix spacing prop in blank template * Fixup tests after changing style shorthand to return camelCase --- .../benchmarks/test_compile_benchmark.py | 4 +- reflex/.templates/apps/blank/code/blank.py | 2 +- reflex/components/base/app_wrap.pyi | 1 - reflex/components/base/body.pyi | 2 - reflex/components/base/document.pyi | 10 ---- reflex/components/base/fragment.pyi | 2 - reflex/components/base/head.pyi | 4 -- reflex/components/base/link.pyi | 4 -- reflex/components/base/meta.pyi | 8 --- reflex/components/base/script.pyi | 2 - reflex/components/chakra/base.pyi | 5 -- .../components/chakra/datadisplay/badge.pyi | 2 - reflex/components/chakra/datadisplay/code.pyi | 2 - .../components/chakra/datadisplay/divider.pyi | 2 - .../chakra/datadisplay/keyboard_key.pyi | 2 - reflex/components/chakra/datadisplay/list.pyi | 8 --- reflex/components/chakra/datadisplay/stat.pyi | 12 ---- .../components/chakra/datadisplay/table.pyi | 18 ------ reflex/components/chakra/datadisplay/tag.pyi | 9 --- .../chakra/disclosure/accordion.pyi | 10 ---- reflex/components/chakra/disclosure/tabs.pyi | 10 ---- .../chakra/disclosure/transition.pyi | 12 ---- .../chakra/disclosure/visuallyhidden.pyi | 2 - reflex/components/chakra/feedback/alert.pyi | 8 --- .../chakra/feedback/circularprogress.pyi | 4 -- .../components/chakra/feedback/progress.pyi | 2 - .../components/chakra/feedback/skeleton.pyi | 6 -- reflex/components/chakra/feedback/spinner.pyi | 2 - reflex/components/chakra/forms/button.pyi | 4 -- reflex/components/chakra/forms/checkbox.pyi | 4 -- .../chakra/forms/colormodeswitch.pyi | 7 --- .../components/chakra/forms/date_picker.pyi | 2 - .../chakra/forms/date_time_picker.pyi | 2 - reflex/components/chakra/forms/editable.pyi | 8 --- reflex/components/chakra/forms/email.pyi | 2 - reflex/components/chakra/forms/form.pyi | 10 ---- reflex/components/chakra/forms/iconbutton.pyi | 2 - reflex/components/chakra/forms/input.pyi | 12 ---- .../components/chakra/forms/numberinput.pyi | 10 ---- reflex/components/chakra/forms/password.pyi | 2 - reflex/components/chakra/forms/pininput.pyi | 4 -- reflex/components/chakra/forms/radio.pyi | 4 -- .../components/chakra/forms/rangeslider.pyi | 8 --- reflex/components/chakra/forms/select.pyi | 4 -- reflex/components/chakra/forms/slider.pyi | 10 ---- reflex/components/chakra/forms/switch.pyi | 2 - reflex/components/chakra/forms/textarea.pyi | 2 - .../components/chakra/forms/time_picker.pyi | 2 - .../components/chakra/layout/aspect_ratio.pyi | 2 - reflex/components/chakra/layout/box.pyi | 2 - reflex/components/chakra/layout/card.pyi | 7 --- reflex/components/chakra/layout/center.pyi | 6 -- reflex/components/chakra/layout/container.pyi | 2 - reflex/components/chakra/layout/flex.pyi | 2 - reflex/components/chakra/layout/grid.pyi | 6 -- reflex/components/chakra/layout/spacer.pyi | 2 - reflex/components/chakra/layout/stack.pyi | 6 -- reflex/components/chakra/layout/wrap.pyi | 4 -- reflex/components/chakra/media/avatar.pyi | 6 -- reflex/components/chakra/media/icon.pyi | 4 -- reflex/components/chakra/media/image.pyi | 2 - .../chakra/navigation/breadcrumb.pyi | 8 --- reflex/components/chakra/navigation/link.pyi | 2 - .../chakra/navigation/linkoverlay.pyi | 4 -- .../components/chakra/navigation/stepper.pyi | 18 ------ .../components/chakra/overlay/alertdialog.pyi | 14 ----- reflex/components/chakra/overlay/drawer.pyi | 14 ----- reflex/components/chakra/overlay/menu.pyi | 16 ------ reflex/components/chakra/overlay/modal.pyi | 14 ----- reflex/components/chakra/overlay/popover.pyi | 18 ------ reflex/components/chakra/overlay/tooltip.pyi | 2 - .../components/chakra/typography/heading.pyi | 2 - .../chakra/typography/highlight.pyi | 2 - reflex/components/chakra/typography/span.pyi | 2 - reflex/components/chakra/typography/text.pyi | 2 - reflex/components/component.py | 2 +- reflex/components/core/banner.pyi | 3 - .../components/core/client_side_routing.pyi | 4 -- reflex/components/core/debounce.pyi | 1 - reflex/components/core/html.pyi | 2 - reflex/components/core/upload.pyi | 4 -- reflex/components/datadisplay/code.pyi | 2 - reflex/components/datadisplay/dataeditor.pyi | 2 - reflex/components/el/element.pyi | 2 - reflex/components/el/elements/base.pyi | 2 - reflex/components/el/elements/forms.pyi | 28 --------- reflex/components/el/elements/inline.pyi | 56 ------------------ reflex/components/el/elements/media.pyi | 28 --------- reflex/components/el/elements/metadata.pyi | 10 ---- reflex/components/el/elements/other.pyi | 14 ----- reflex/components/el/elements/scripts.pyi | 6 -- reflex/components/el/elements/sectioning.pyi | 30 ---------- reflex/components/el/elements/tables.pyi | 20 ------- reflex/components/el/elements/typography.pyi | 30 ---------- reflex/components/gridjs/datatable.pyi | 4 -- reflex/components/lucide/icon.pyi | 4 -- reflex/components/markdown/markdown.pyi | 2 - reflex/components/moment/moment.pyi | 2 - reflex/components/next/base.pyi | 2 - reflex/components/next/image.pyi | 2 - reflex/components/next/link.pyi | 2 - reflex/components/next/video.pyi | 2 - reflex/components/plotly/plotly.pyi | 4 -- .../components/radix/primitives/accordion.pyi | 12 ---- reflex/components/radix/primitives/base.pyi | 4 -- reflex/components/radix/primitives/drawer.pyi | 20 ------- reflex/components/radix/primitives/form.pyi | 18 ------ .../components/radix/primitives/progress.pyi | 6 -- reflex/components/radix/primitives/slider.pyi | 10 ---- reflex/components/radix/themes/base.pyi | 10 ---- reflex/components/radix/themes/color_mode.pyi | 5 -- .../radix/themes/components/alert_dialog.pyi | 14 ----- .../radix/themes/components/aspect_ratio.pyi | 2 - .../radix/themes/components/avatar.pyi | 2 - .../radix/themes/components/badge.pyi | 2 - .../radix/themes/components/button.pyi | 2 - .../radix/themes/components/callout.pyi | 10 ---- .../radix/themes/components/card.pyi | 2 - .../radix/themes/components/checkbox.py | 10 +++- .../radix/themes/components/checkbox.pyi | 14 ++--- .../radix/themes/components/context_menu.pyi | 16 ------ .../radix/themes/components/dialog.pyi | 14 ----- .../radix/themes/components/dropdown_menu.pyi | 16 ------ .../radix/themes/components/hover_card.pyi | 8 --- .../radix/themes/components/icon_button.pyi | 2 - .../radix/themes/components/inset.pyi | 2 - .../radix/themes/components/popover.pyi | 8 --- .../radix/themes/components/radio_group.py | 8 +-- .../radix/themes/components/radio_group.pyi | 16 ++---- .../radix/themes/components/radiogroup.pyi | 16 ++---- .../radix/themes/components/scroll_area.pyi | 2 - .../radix/themes/components/select.pyi | 18 ------ .../radix/themes/components/separator.pyi | 2 - .../radix/themes/components/slider.pyi | 2 - .../radix/themes/components/switch.pyi | 2 - .../radix/themes/components/table.py | 11 +--- .../radix/themes/components/table.pyi | 22 +------ .../radix/themes/components/tabs.pyi | 10 ---- .../radix/themes/components/text_area.pyi | 2 - .../radix/themes/components/text_field.pyi | 10 ---- .../radix/themes/components/tooltip.pyi | 2 - .../components/radix/themes/layout/base.pyi | 2 - reflex/components/radix/themes/layout/box.pyi | 2 - .../components/radix/themes/layout/center.pyi | 13 +---- .../radix/themes/layout/container.pyi | 2 - reflex/components/radix/themes/layout/flex.py | 11 ++-- .../components/radix/themes/layout/flex.pyi | 16 +----- reflex/components/radix/themes/layout/grid.py | 19 ++++--- .../components/radix/themes/layout/grid.pyi | 27 ++++----- .../components/radix/themes/layout/list.pyi | 41 ++----------- .../radix/themes/layout/section.pyi | 2 - .../components/radix/themes/layout/spacer.pyi | 13 +---- .../components/radix/themes/layout/stack.py | 23 ++++---- .../components/radix/themes/layout/stack.pyi | 57 ++----------------- .../radix/themes/typography/blockquote.pyi | 2 - .../radix/themes/typography/code.pyi | 2 - .../radix/themes/typography/heading.pyi | 2 - .../radix/themes/typography/link.pyi | 2 - .../radix/themes/typography/text.pyi | 12 ---- reflex/components/react_player/audio.pyi | 2 - .../components/react_player/react_player.pyi | 2 - reflex/components/react_player/video.pyi | 2 - reflex/components/recharts/cartesian.pyi | 38 ------------- reflex/components/recharts/charts.pyi | 22 ------- reflex/components/recharts/general.pyi | 10 ---- reflex/components/recharts/polar.pyi | 12 ---- reflex/components/recharts/recharts.pyi | 4 -- reflex/components/suneditor/editor.pyi | 2 - reflex/style.py | 10 ++-- scripts/pyi_generator.py | 1 + tests/components/typography/test_markdown.py | 4 +- tests/test_style.py | 10 ++-- 172 files changed, 99 insertions(+), 1295 deletions(-) diff --git a/integration/benchmarks/test_compile_benchmark.py b/integration/benchmarks/test_compile_benchmark.py index 82162de00..85815bae0 100644 --- a/integration/benchmarks/test_compile_benchmark.py +++ b/integration/benchmarks/test_compile_benchmark.py @@ -43,7 +43,7 @@ def sample_small_page() -> rx.Component: """ return rx.vstack( *[rx.button(State.count, font_size="2em") for i in range(100)], - spacing="1em", + gap="1em", ) @@ -62,7 +62,7 @@ def sample_large_page() -> rx.Component: ) for i in range(100) ], - spacing="1em", + gap="1em", ) diff --git a/reflex/.templates/apps/blank/code/blank.py b/reflex/.templates/apps/blank/code/blank.py index 96e73e1af..9adaa08fa 100644 --- a/reflex/.templates/apps/blank/code/blank.py +++ b/reflex/.templates/apps/blank/code/blank.py @@ -32,7 +32,7 @@ def index() -> rx.Component: ) }, ), - spacing="1.5em", + gap="1.5em", font_size="2em", padding_top="10%", ), diff --git a/reflex/components/base/app_wrap.pyi b/reflex/components/base/app_wrap.pyi index 1bd4c764e..63302bcc9 100644 --- a/reflex/components/base/app_wrap.pyi +++ b/reflex/components/base/app_wrap.pyi @@ -22,7 +22,6 @@ class AppWrap(Fragment): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] diff --git a/reflex/components/base/body.pyi b/reflex/components/base/body.pyi index 218351a99..7ba105a0d 100644 --- a/reflex/components/base/body.pyi +++ b/reflex/components/base/body.pyi @@ -20,7 +20,6 @@ class Body(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -78,7 +77,6 @@ class Body(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/base/document.pyi b/reflex/components/base/document.pyi index 0a2c4eda8..746a2f18b 100644 --- a/reflex/components/base/document.pyi +++ b/reflex/components/base/document.pyi @@ -20,7 +20,6 @@ class NextDocumentLib(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -78,7 +77,6 @@ class NextDocumentLib(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -101,7 +99,6 @@ class Html(NextDocumentLib): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -159,7 +156,6 @@ class Html(NextDocumentLib): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -182,7 +178,6 @@ class DocumentHead(NextDocumentLib): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -240,7 +235,6 @@ class DocumentHead(NextDocumentLib): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -263,7 +257,6 @@ class Main(NextDocumentLib): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -321,7 +314,6 @@ class Main(NextDocumentLib): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -344,7 +336,6 @@ class NextScript(NextDocumentLib): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -402,7 +393,6 @@ class NextScript(NextDocumentLib): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/base/fragment.pyi b/reflex/components/base/fragment.pyi index 963675c0d..83014e20a 100644 --- a/reflex/components/base/fragment.pyi +++ b/reflex/components/base/fragment.pyi @@ -20,7 +20,6 @@ class Fragment(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -78,7 +77,6 @@ class Fragment(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/base/head.pyi b/reflex/components/base/head.pyi index be8c61e13..dd975844e 100644 --- a/reflex/components/base/head.pyi +++ b/reflex/components/base/head.pyi @@ -20,7 +20,6 @@ class NextHeadLib(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -78,7 +77,6 @@ class NextHeadLib(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -101,7 +99,6 @@ class Head(NextHeadLib, MemoizationLeaf): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -159,7 +156,6 @@ class Head(NextHeadLib, MemoizationLeaf): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/base/link.pyi b/reflex/components/base/link.pyi index 166f42c33..a7754ae9a 100644 --- a/reflex/components/base/link.pyi +++ b/reflex/components/base/link.pyi @@ -23,7 +23,6 @@ class RawLink(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -83,7 +82,6 @@ class RawLink(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -113,7 +111,6 @@ class ScriptTag(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -178,7 +175,6 @@ class ScriptTag(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/base/meta.pyi b/reflex/components/base/meta.pyi index 9a44dff50..61f3e344a 100644 --- a/reflex/components/base/meta.pyi +++ b/reflex/components/base/meta.pyi @@ -23,7 +23,6 @@ class Title(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -81,7 +80,6 @@ class Title(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -109,7 +107,6 @@ class Meta(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -172,7 +169,6 @@ class Meta(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -200,7 +196,6 @@ class Description(Meta): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -263,7 +258,6 @@ class Description(Meta): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -291,7 +285,6 @@ class Image(Meta): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -354,7 +347,6 @@ class Image(Meta): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/base/script.pyi b/reflex/components/base/script.pyi index e27fcff86..3a1e6f582 100644 --- a/reflex/components/base/script.pyi +++ b/reflex/components/base/script.pyi @@ -24,7 +24,6 @@ class Script(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -103,7 +102,6 @@ class Script(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/base.pyi b/reflex/components/chakra/base.pyi index 44a1fd4a1..a21cd2951 100644 --- a/reflex/components/chakra/base.pyi +++ b/reflex/components/chakra/base.pyi @@ -24,7 +24,6 @@ class ChakraComponent(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -82,7 +81,6 @@ class ChakraComponent(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -106,7 +104,6 @@ class ChakraProvider(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -175,7 +172,6 @@ class ChakraColorModeProvider(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -233,7 +229,6 @@ class ChakraColorModeProvider(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/datadisplay/badge.pyi b/reflex/components/chakra/datadisplay/badge.pyi index 0913d741a..8480b89de 100644 --- a/reflex/components/chakra/datadisplay/badge.pyi +++ b/reflex/components/chakra/datadisplay/badge.pyi @@ -28,7 +28,6 @@ class Badge(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -88,7 +87,6 @@ class Badge(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/datadisplay/code.pyi b/reflex/components/chakra/datadisplay/code.pyi index 6252eafc6..8702c162e 100644 --- a/reflex/components/chakra/datadisplay/code.pyi +++ b/reflex/components/chakra/datadisplay/code.pyi @@ -20,7 +20,6 @@ class Code(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -78,7 +77,6 @@ class Code(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/datadisplay/divider.pyi b/reflex/components/chakra/datadisplay/divider.pyi index dc61c0d02..174234e5a 100644 --- a/reflex/components/chakra/datadisplay/divider.pyi +++ b/reflex/components/chakra/datadisplay/divider.pyi @@ -33,7 +33,6 @@ class Divider(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -93,7 +92,6 @@ class Divider(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/datadisplay/keyboard_key.pyi b/reflex/components/chakra/datadisplay/keyboard_key.pyi index 4a2831af7..a3e7dcff0 100644 --- a/reflex/components/chakra/datadisplay/keyboard_key.pyi +++ b/reflex/components/chakra/datadisplay/keyboard_key.pyi @@ -20,7 +20,6 @@ class KeyboardKey(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -78,7 +77,6 @@ class KeyboardKey(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/datadisplay/list.pyi b/reflex/components/chakra/datadisplay/list.pyi index 2c034413d..a246c3f02 100644 --- a/reflex/components/chakra/datadisplay/list.pyi +++ b/reflex/components/chakra/datadisplay/list.pyi @@ -27,7 +27,6 @@ class List(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -89,7 +88,6 @@ class List(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -109,7 +107,6 @@ class ListItem(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -167,7 +164,6 @@ class ListItem(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -194,7 +190,6 @@ class OrderedList(List): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -256,7 +251,6 @@ class OrderedList(List): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -280,7 +274,6 @@ class UnorderedList(List): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -342,7 +335,6 @@ class UnorderedList(List): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/chakra/datadisplay/stat.pyi b/reflex/components/chakra/datadisplay/stat.pyi index 978c5d124..09b123fac 100644 --- a/reflex/components/chakra/datadisplay/stat.pyi +++ b/reflex/components/chakra/datadisplay/stat.pyi @@ -26,7 +26,6 @@ class Stat(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -88,7 +87,6 @@ class Stat(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -108,7 +106,6 @@ class StatLabel(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -166,7 +163,6 @@ class StatLabel(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -189,7 +185,6 @@ class StatNumber(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -247,7 +242,6 @@ class StatNumber(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -270,7 +264,6 @@ class StatHelpText(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -328,7 +321,6 @@ class StatHelpText(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -352,7 +344,6 @@ class StatArrow(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -411,7 +402,6 @@ class StatArrow(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -434,7 +424,6 @@ class StatGroup(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -492,7 +481,6 @@ class StatGroup(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/datadisplay/table.pyi b/reflex/components/chakra/datadisplay/table.pyi index bd0d840d8..bd9774b7e 100644 --- a/reflex/components/chakra/datadisplay/table.pyi +++ b/reflex/components/chakra/datadisplay/table.pyi @@ -33,7 +33,6 @@ class Table(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -99,7 +98,6 @@ class Table(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -120,7 +118,6 @@ class Thead(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -179,7 +176,6 @@ class Thead(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -203,7 +199,6 @@ class Tbody(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -262,7 +257,6 @@ class Tbody(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -285,7 +279,6 @@ class Tfoot(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -344,7 +337,6 @@ class Tfoot(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -368,7 +360,6 @@ class Tr(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -428,7 +419,6 @@ class Tr(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -449,7 +439,6 @@ class Th(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -508,7 +497,6 @@ class Th(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -532,7 +520,6 @@ class Td(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -591,7 +578,6 @@ class Td(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -615,7 +601,6 @@ class TableCaption(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -674,7 +659,6 @@ class TableCaption(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -697,7 +681,6 @@ class TableContainer(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -755,7 +738,6 @@ class TableContainer(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/datadisplay/tag.pyi b/reflex/components/chakra/datadisplay/tag.pyi index e0026982f..3f4171958 100644 --- a/reflex/components/chakra/datadisplay/tag.pyi +++ b/reflex/components/chakra/datadisplay/tag.pyi @@ -28,7 +28,6 @@ class TagLabel(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -86,7 +85,6 @@ class TagLabel(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -109,7 +107,6 @@ class TagLeftIcon(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -167,7 +164,6 @@ class TagLeftIcon(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -190,7 +186,6 @@ class TagRightIcon(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -248,7 +243,6 @@ class TagRightIcon(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -271,7 +265,6 @@ class TagCloseButton(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -329,7 +322,6 @@ class TagCloseButton(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -394,7 +386,6 @@ class Tag(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] diff --git a/reflex/components/chakra/disclosure/accordion.pyi b/reflex/components/chakra/disclosure/accordion.pyi index b62942800..c18f02a15 100644 --- a/reflex/components/chakra/disclosure/accordion.pyi +++ b/reflex/components/chakra/disclosure/accordion.pyi @@ -34,7 +34,6 @@ class Accordion(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -99,7 +98,6 @@ class Accordion(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -122,7 +120,6 @@ class AccordionItem(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -183,7 +180,6 @@ class AccordionItem(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -206,7 +202,6 @@ class AccordionButton(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -264,7 +259,6 @@ class AccordionButton(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -287,7 +281,6 @@ class AccordionPanel(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -345,7 +338,6 @@ class AccordionPanel(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -368,7 +360,6 @@ class AccordionIcon(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -426,7 +417,6 @@ class AccordionIcon(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/disclosure/tabs.pyi b/reflex/components/chakra/disclosure/tabs.pyi index 4f526098d..097185aa3 100644 --- a/reflex/components/chakra/disclosure/tabs.pyi +++ b/reflex/components/chakra/disclosure/tabs.pyi @@ -112,7 +112,6 @@ class Tabs(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -181,7 +180,6 @@ class Tabs(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -205,7 +203,6 @@ class Tab(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -267,7 +264,6 @@ class Tab(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -290,7 +286,6 @@ class TabList(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -348,7 +343,6 @@ class TabList(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -371,7 +365,6 @@ class TabPanels(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -429,7 +422,6 @@ class TabPanels(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -452,7 +444,6 @@ class TabPanel(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -510,7 +501,6 @@ class TabPanel(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/disclosure/transition.pyi b/reflex/components/chakra/disclosure/transition.pyi index 8f46a6a3d..52092e502 100644 --- a/reflex/components/chakra/disclosure/transition.pyi +++ b/reflex/components/chakra/disclosure/transition.pyi @@ -24,7 +24,6 @@ class Transition(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -84,7 +83,6 @@ class Transition(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -109,7 +107,6 @@ class Fade(Transition): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -169,7 +166,6 @@ class Fade(Transition): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -196,7 +192,6 @@ class ScaleFade(Transition): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -258,7 +253,6 @@ class ScaleFade(Transition): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -284,7 +278,6 @@ class Slide(Transition): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -345,7 +338,6 @@ class Slide(Transition): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -373,7 +365,6 @@ class SlideFade(Transition): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -436,7 +427,6 @@ class SlideFade(Transition): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -464,7 +454,6 @@ class Collapse(Transition): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -527,7 +516,6 @@ class Collapse(Transition): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/disclosure/visuallyhidden.pyi b/reflex/components/chakra/disclosure/visuallyhidden.pyi index 181cc0262..b8717da83 100644 --- a/reflex/components/chakra/disclosure/visuallyhidden.pyi +++ b/reflex/components/chakra/disclosure/visuallyhidden.pyi @@ -20,7 +20,6 @@ class VisuallyHidden(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -78,7 +77,6 @@ class VisuallyHidden(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/feedback/alert.pyi b/reflex/components/chakra/feedback/alert.pyi index 769241125..aae57c1f7 100644 --- a/reflex/components/chakra/feedback/alert.pyi +++ b/reflex/components/chakra/feedback/alert.pyi @@ -37,7 +37,6 @@ class Alert(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -100,7 +99,6 @@ class Alert(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -120,7 +118,6 @@ class AlertIcon(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -178,7 +175,6 @@ class AlertIcon(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -201,7 +197,6 @@ class AlertTitle(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -259,7 +254,6 @@ class AlertTitle(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -282,7 +276,6 @@ class AlertDescription(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -340,7 +333,6 @@ class AlertDescription(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/feedback/circularprogress.pyi b/reflex/components/chakra/feedback/circularprogress.pyi index d033946fa..4f1582041 100644 --- a/reflex/components/chakra/feedback/circularprogress.pyi +++ b/reflex/components/chakra/feedback/circularprogress.pyi @@ -34,7 +34,6 @@ class CircularProgress(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -103,7 +102,6 @@ class CircularProgress(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: the props of the component. @@ -123,7 +121,6 @@ class CircularProgressLabel(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -181,7 +178,6 @@ class CircularProgressLabel(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/feedback/progress.pyi b/reflex/components/chakra/feedback/progress.pyi index 4d9a1e714..c6c7b1aa4 100644 --- a/reflex/components/chakra/feedback/progress.pyi +++ b/reflex/components/chakra/feedback/progress.pyi @@ -29,7 +29,6 @@ class Progress(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -94,7 +93,6 @@ class Progress(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/feedback/skeleton.pyi b/reflex/components/chakra/feedback/skeleton.pyi index 4cc33fff9..a393e5899 100644 --- a/reflex/components/chakra/feedback/skeleton.pyi +++ b/reflex/components/chakra/feedback/skeleton.pyi @@ -26,7 +26,6 @@ class Skeleton(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -89,7 +88,6 @@ class Skeleton(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -117,7 +115,6 @@ class SkeletonCircle(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -180,7 +177,6 @@ class SkeletonCircle(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -209,7 +205,6 @@ class SkeletonText(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -273,7 +268,6 @@ class SkeletonText(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/feedback/spinner.pyi b/reflex/components/chakra/feedback/spinner.pyi index 5e2a195ba..6bd414911 100644 --- a/reflex/components/chakra/feedback/spinner.pyi +++ b/reflex/components/chakra/feedback/spinner.pyi @@ -31,7 +31,6 @@ class Spinner(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -94,7 +93,6 @@ class Spinner(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/button.pyi b/reflex/components/chakra/forms/button.pyi index 62023db77..47f2f9222 100644 --- a/reflex/components/chakra/forms/button.pyi +++ b/reflex/components/chakra/forms/button.pyi @@ -96,7 +96,6 @@ class Button(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -166,7 +165,6 @@ class Button(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -201,7 +199,6 @@ class ButtonGroup(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -264,7 +261,6 @@ class ButtonGroup(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/checkbox.pyi b/reflex/components/chakra/forms/checkbox.pyi index 867bf8aab..024066d01 100644 --- a/reflex/components/chakra/forms/checkbox.pyi +++ b/reflex/components/chakra/forms/checkbox.pyi @@ -85,7 +85,6 @@ class Checkbox(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -158,7 +157,6 @@ class Checkbox(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -185,7 +183,6 @@ class CheckboxGroup(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -247,7 +244,6 @@ class CheckboxGroup(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/colormodeswitch.pyi b/reflex/components/chakra/forms/colormodeswitch.pyi index be3700b00..ea273cc1f 100644 --- a/reflex/components/chakra/forms/colormodeswitch.pyi +++ b/reflex/components/chakra/forms/colormodeswitch.pyi @@ -32,7 +32,6 @@ class ColorModeIcon(Cond): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -161,7 +160,6 @@ class ColorModeSwitch(Switch): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -233,7 +231,6 @@ class ColorModeSwitch(Switch): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props to pass to the component. @@ -321,7 +318,6 @@ class ColorModeButton(Button): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -391,7 +387,6 @@ class ColorModeButton(Button): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props to pass to the component. @@ -411,7 +406,6 @@ class ColorModeScript(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -469,7 +463,6 @@ class ColorModeScript(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/date_picker.pyi b/reflex/components/chakra/forms/date_picker.pyi index c5d0f153e..e59fa43d4 100644 --- a/reflex/components/chakra/forms/date_picker.pyi +++ b/reflex/components/chakra/forms/date_picker.pyi @@ -41,7 +41,6 @@ class DatePicker(Input): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -121,7 +120,6 @@ class DatePicker(Input): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/chakra/forms/date_time_picker.pyi b/reflex/components/chakra/forms/date_time_picker.pyi index 330739121..f205749c0 100644 --- a/reflex/components/chakra/forms/date_time_picker.pyi +++ b/reflex/components/chakra/forms/date_time_picker.pyi @@ -41,7 +41,6 @@ class DateTimePicker(Input): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -121,7 +120,6 @@ class DateTimePicker(Input): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/chakra/forms/editable.pyi b/reflex/components/chakra/forms/editable.pyi index de7dfe4cb..26bb23e5b 100644 --- a/reflex/components/chakra/forms/editable.pyi +++ b/reflex/components/chakra/forms/editable.pyi @@ -32,7 +32,6 @@ class Editable(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -110,7 +109,6 @@ class Editable(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -133,7 +131,6 @@ class EditableInput(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -191,7 +188,6 @@ class EditableInput(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -214,7 +210,6 @@ class EditableTextarea(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -272,7 +267,6 @@ class EditableTextarea(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -295,7 +289,6 @@ class EditablePreview(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -353,7 +346,6 @@ class EditablePreview(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/email.pyi b/reflex/components/chakra/forms/email.pyi index 5763c1c7b..51f90957d 100644 --- a/reflex/components/chakra/forms/email.pyi +++ b/reflex/components/chakra/forms/email.pyi @@ -41,7 +41,6 @@ class Email(Input): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -121,7 +120,6 @@ class Email(Input): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/chakra/forms/form.pyi b/reflex/components/chakra/forms/form.pyi index 0a291ebf1..fd915a736 100644 --- a/reflex/components/chakra/forms/form.pyi +++ b/reflex/components/chakra/forms/form.pyi @@ -38,7 +38,6 @@ class Form(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -102,7 +101,6 @@ class Form(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the form. @@ -131,7 +129,6 @@ class FormControl(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -197,7 +194,6 @@ class FormControl(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the form control. @@ -220,7 +216,6 @@ class FormHelperText(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -278,7 +273,6 @@ class FormHelperText(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -302,7 +296,6 @@ class FormLabel(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -361,7 +354,6 @@ class FormLabel(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -384,7 +376,6 @@ class FormErrorMessage(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -442,7 +433,6 @@ class FormErrorMessage(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/iconbutton.pyi b/reflex/components/chakra/forms/iconbutton.pyi index 6da52491d..245f7b2f0 100644 --- a/reflex/components/chakra/forms/iconbutton.pyi +++ b/reflex/components/chakra/forms/iconbutton.pyi @@ -33,7 +33,6 @@ class IconButton(Text): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -101,7 +100,6 @@ class IconButton(Text): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/input.pyi b/reflex/components/chakra/forms/input.pyi index afd36c736..3c7ee8826 100644 --- a/reflex/components/chakra/forms/input.pyi +++ b/reflex/components/chakra/forms/input.pyi @@ -105,7 +105,6 @@ class Input(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -185,7 +184,6 @@ class Input(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -205,7 +203,6 @@ class InputGroup(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -263,7 +260,6 @@ class InputGroup(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -286,7 +282,6 @@ class InputLeftAddon(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -344,7 +339,6 @@ class InputLeftAddon(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -367,7 +361,6 @@ class InputRightAddon(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -425,7 +418,6 @@ class InputRightAddon(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -448,7 +440,6 @@ class InputLeftElement(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -506,7 +497,6 @@ class InputLeftElement(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -529,7 +519,6 @@ class InputRightElement(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -587,7 +576,6 @@ class InputRightElement(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/numberinput.pyi b/reflex/components/chakra/forms/numberinput.pyi index 6f094a0f0..017040989 100644 --- a/reflex/components/chakra/forms/numberinput.pyi +++ b/reflex/components/chakra/forms/numberinput.pyi @@ -55,7 +55,6 @@ class NumberInput(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -136,7 +135,6 @@ class NumberInput(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -156,7 +154,6 @@ class NumberInputField(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -214,7 +211,6 @@ class NumberInputField(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -237,7 +233,6 @@ class NumberInputStepper(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -295,7 +290,6 @@ class NumberInputStepper(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -318,7 +312,6 @@ class NumberIncrementStepper(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -376,7 +369,6 @@ class NumberIncrementStepper(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -399,7 +391,6 @@ class NumberDecrementStepper(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -457,7 +448,6 @@ class NumberDecrementStepper(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/password.pyi b/reflex/components/chakra/forms/password.pyi index ec30a0d38..c9a4ec026 100644 --- a/reflex/components/chakra/forms/password.pyi +++ b/reflex/components/chakra/forms/password.pyi @@ -41,7 +41,6 @@ class Password(Input): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -121,7 +120,6 @@ class Password(Input): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/chakra/forms/pininput.pyi b/reflex/components/chakra/forms/pininput.pyi index 841370871..f255b7db1 100644 --- a/reflex/components/chakra/forms/pininput.pyi +++ b/reflex/components/chakra/forms/pininput.pyi @@ -49,7 +49,6 @@ class PinInput(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -131,7 +130,6 @@ class PinInput(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -156,7 +154,6 @@ class PinInputField(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -216,7 +213,6 @@ class PinInputField(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/radio.pyi b/reflex/components/chakra/forms/radio.pyi index 81485ee13..d48cb6c33 100644 --- a/reflex/components/chakra/forms/radio.pyi +++ b/reflex/components/chakra/forms/radio.pyi @@ -31,7 +31,6 @@ class RadioGroup(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -95,7 +94,6 @@ class RadioGroup(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -126,7 +124,6 @@ class Radio(Text): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -197,7 +194,6 @@ class Radio(Text): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/rangeslider.pyi b/reflex/components/chakra/forms/rangeslider.pyi index 63d4a9bf0..cb76cfbe8 100644 --- a/reflex/components/chakra/forms/rangeslider.pyi +++ b/reflex/components/chakra/forms/rangeslider.pyi @@ -40,7 +40,6 @@ class RangeSlider(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -120,7 +119,6 @@ class RangeSlider(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -140,7 +138,6 @@ class RangeSliderTrack(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -198,7 +195,6 @@ class RangeSliderTrack(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -221,7 +217,6 @@ class RangeSliderFilledTrack(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -279,7 +274,6 @@ class RangeSliderFilledTrack(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -304,7 +298,6 @@ class RangeSliderThumb(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -363,7 +356,6 @@ class RangeSliderThumb(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/select.pyi b/reflex/components/chakra/forms/select.pyi index eae35ab04..a443896e4 100644 --- a/reflex/components/chakra/forms/select.pyi +++ b/reflex/components/chakra/forms/select.pyi @@ -44,7 +44,6 @@ class Select(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -119,7 +118,6 @@ class Select(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -142,7 +140,6 @@ class Option(Text): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -204,7 +201,6 @@ class Option(Text): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/slider.pyi b/reflex/components/chakra/forms/slider.pyi index 9db6c6cf0..5bc500930 100644 --- a/reflex/components/chakra/forms/slider.pyi +++ b/reflex/components/chakra/forms/slider.pyi @@ -52,7 +52,6 @@ class Slider(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -139,7 +138,6 @@ class Slider(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -159,7 +157,6 @@ class SliderTrack(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -217,7 +214,6 @@ class SliderTrack(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -240,7 +236,6 @@ class SliderFilledTrack(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -298,7 +293,6 @@ class SliderFilledTrack(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -322,7 +316,6 @@ class SliderThumb(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -381,7 +374,6 @@ class SliderThumb(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -404,7 +396,6 @@ class SliderMark(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -462,7 +453,6 @@ class SliderMark(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/switch.pyi b/reflex/components/chakra/forms/switch.pyi index e5376bec4..1af43b2f1 100644 --- a/reflex/components/chakra/forms/switch.pyi +++ b/reflex/components/chakra/forms/switch.pyi @@ -82,7 +82,6 @@ class Switch(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -154,7 +153,6 @@ class Switch(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/forms/textarea.pyi b/reflex/components/chakra/forms/textarea.pyi index 87b867be9..48358e2ad 100644 --- a/reflex/components/chakra/forms/textarea.pyi +++ b/reflex/components/chakra/forms/textarea.pyi @@ -42,7 +42,6 @@ class TextArea(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -120,7 +119,6 @@ class TextArea(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/chakra/forms/time_picker.pyi b/reflex/components/chakra/forms/time_picker.pyi index 172f8406d..ac833e37b 100644 --- a/reflex/components/chakra/forms/time_picker.pyi +++ b/reflex/components/chakra/forms/time_picker.pyi @@ -41,7 +41,6 @@ class TimePicker(Input): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -121,7 +120,6 @@ class TimePicker(Input): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/chakra/layout/aspect_ratio.pyi b/reflex/components/chakra/layout/aspect_ratio.pyi index 59ec83f9b..1cd574abc 100644 --- a/reflex/components/chakra/layout/aspect_ratio.pyi +++ b/reflex/components/chakra/layout/aspect_ratio.pyi @@ -22,7 +22,6 @@ class AspectRatio(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -81,7 +80,6 @@ class AspectRatio(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/layout/box.pyi b/reflex/components/chakra/layout/box.pyi index 832b2d803..ba1f769b8 100644 --- a/reflex/components/chakra/layout/box.pyi +++ b/reflex/components/chakra/layout/box.pyi @@ -25,7 +25,6 @@ class Box(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -86,7 +85,6 @@ class Box(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/layout/card.pyi b/reflex/components/chakra/layout/card.pyi index 8c09b0095..6ec404acd 100644 --- a/reflex/components/chakra/layout/card.pyi +++ b/reflex/components/chakra/layout/card.pyi @@ -28,7 +28,6 @@ class CardHeader(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -86,7 +85,6 @@ class CardHeader(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -109,7 +107,6 @@ class CardBody(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -167,7 +164,6 @@ class CardBody(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -190,7 +186,6 @@ class CardFooter(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -248,7 +243,6 @@ class CardFooter(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -333,7 +327,6 @@ class Card(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] diff --git a/reflex/components/chakra/layout/center.pyi b/reflex/components/chakra/layout/center.pyi index 690be5b73..98fbbb84b 100644 --- a/reflex/components/chakra/layout/center.pyi +++ b/reflex/components/chakra/layout/center.pyi @@ -20,7 +20,6 @@ class Center(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -78,7 +77,6 @@ class Center(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -101,7 +99,6 @@ class Square(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -159,7 +156,6 @@ class Square(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -182,7 +178,6 @@ class Circle(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -240,7 +235,6 @@ class Circle(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/layout/container.pyi b/reflex/components/chakra/layout/container.pyi index ed0b08966..22594f4af 100644 --- a/reflex/components/chakra/layout/container.pyi +++ b/reflex/components/chakra/layout/container.pyi @@ -22,7 +22,6 @@ class Container(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -81,7 +80,6 @@ class Container(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/layout/flex.pyi b/reflex/components/chakra/layout/flex.pyi index 19614eae2..dbb3b36dc 100644 --- a/reflex/components/chakra/layout/flex.pyi +++ b/reflex/components/chakra/layout/flex.pyi @@ -31,7 +31,6 @@ class Flex(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -96,7 +95,6 @@ class Flex(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/layout/grid.pyi b/reflex/components/chakra/layout/grid.pyi index 1be11985c..7195a1579 100644 --- a/reflex/components/chakra/layout/grid.pyi +++ b/reflex/components/chakra/layout/grid.pyi @@ -29,7 +29,6 @@ class Grid(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -94,7 +93,6 @@ class Grid(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -124,7 +122,6 @@ class GridItem(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -189,7 +186,6 @@ class GridItem(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -225,7 +221,6 @@ class ResponsiveGrid(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -296,7 +291,6 @@ class ResponsiveGrid(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/layout/spacer.pyi b/reflex/components/chakra/layout/spacer.pyi index 2797311e2..6a793ce19 100644 --- a/reflex/components/chakra/layout/spacer.pyi +++ b/reflex/components/chakra/layout/spacer.pyi @@ -20,7 +20,6 @@ class Spacer(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -78,7 +77,6 @@ class Spacer(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/layout/stack.pyi b/reflex/components/chakra/layout/stack.pyi index af39a2773..28d110979 100644 --- a/reflex/components/chakra/layout/stack.pyi +++ b/reflex/components/chakra/layout/stack.pyi @@ -35,7 +35,6 @@ class Stack(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -101,7 +100,6 @@ class Stack(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -137,7 +135,6 @@ class Hstack(Stack): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -203,7 +200,6 @@ class Hstack(Stack): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -239,7 +235,6 @@ class Vstack(Stack): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -305,7 +300,6 @@ class Vstack(Stack): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/layout/wrap.pyi b/reflex/components/chakra/layout/wrap.pyi index 895a35f1a..ba54d9431 100644 --- a/reflex/components/chakra/layout/wrap.pyi +++ b/reflex/components/chakra/layout/wrap.pyi @@ -30,7 +30,6 @@ class Wrap(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -96,7 +95,6 @@ class Wrap(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -116,7 +114,6 @@ class WrapItem(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -174,7 +171,6 @@ class WrapItem(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/media/avatar.pyi b/reflex/components/chakra/media/avatar.pyi index 1b313ecd6..69b017801 100644 --- a/reflex/components/chakra/media/avatar.pyi +++ b/reflex/components/chakra/media/avatar.pyi @@ -36,7 +36,6 @@ class Avatar(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -105,7 +104,6 @@ class Avatar(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -128,7 +126,6 @@ class AvatarBadge(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -186,7 +183,6 @@ class AvatarBadge(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -211,7 +207,6 @@ class AvatarGroup(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -271,7 +266,6 @@ class AvatarGroup(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/media/icon.pyi b/reflex/components/chakra/media/icon.pyi index f856a2f40..987722c01 100644 --- a/reflex/components/chakra/media/icon.pyi +++ b/reflex/components/chakra/media/icon.pyi @@ -22,7 +22,6 @@ class ChakraIconComponent(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -80,7 +79,6 @@ class ChakraIconComponent(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -103,7 +101,6 @@ class Icon(ChakraIconComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -163,7 +160,6 @@ class Icon(ChakraIconComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The keyword arguments diff --git a/reflex/components/chakra/media/image.pyi b/reflex/components/chakra/media/image.pyi index 6804f974b..e20e3a871 100644 --- a/reflex/components/chakra/media/image.pyi +++ b/reflex/components/chakra/media/image.pyi @@ -37,7 +37,6 @@ class Image(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -112,7 +111,6 @@ class Image(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the image. diff --git a/reflex/components/chakra/navigation/breadcrumb.pyi b/reflex/components/chakra/navigation/breadcrumb.pyi index 6d10aae15..e7993cd52 100644 --- a/reflex/components/chakra/navigation/breadcrumb.pyi +++ b/reflex/components/chakra/navigation/breadcrumb.pyi @@ -27,7 +27,6 @@ class Breadcrumb(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -90,7 +89,6 @@ class Breadcrumb(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -116,7 +114,6 @@ class BreadcrumbItem(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -180,7 +177,6 @@ class BreadcrumbItem(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -200,7 +196,6 @@ class BreadcrumbSeparator(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -258,7 +253,6 @@ class BreadcrumbSeparator(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -287,7 +281,6 @@ class BreadcrumbLink(Link): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -351,7 +344,6 @@ class BreadcrumbLink(Link): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/navigation/link.pyi b/reflex/components/chakra/navigation/link.pyi index 190fb7b09..a5b3db0e0 100644 --- a/reflex/components/chakra/navigation/link.pyi +++ b/reflex/components/chakra/navigation/link.pyi @@ -31,7 +31,6 @@ class Link(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -94,7 +93,6 @@ class Link(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/navigation/linkoverlay.pyi b/reflex/components/chakra/navigation/linkoverlay.pyi index 9fcc7cc83..7daaf1924 100644 --- a/reflex/components/chakra/navigation/linkoverlay.pyi +++ b/reflex/components/chakra/navigation/linkoverlay.pyi @@ -23,7 +23,6 @@ class LinkOverlay(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -83,7 +82,6 @@ class LinkOverlay(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -106,7 +104,6 @@ class LinkBox(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -164,7 +161,6 @@ class LinkBox(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/navigation/stepper.pyi b/reflex/components/chakra/navigation/stepper.pyi index 6bdb20843..a4020d1cf 100644 --- a/reflex/components/chakra/navigation/stepper.pyi +++ b/reflex/components/chakra/navigation/stepper.pyi @@ -80,7 +80,6 @@ class Stepper(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -144,7 +143,6 @@ class Stepper(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -164,7 +162,6 @@ class Step(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -222,7 +219,6 @@ class Step(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -245,7 +241,6 @@ class StepDescription(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -303,7 +298,6 @@ class StepDescription(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -326,7 +320,6 @@ class StepIcon(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -384,7 +377,6 @@ class StepIcon(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -407,7 +399,6 @@ class StepIndicator(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -465,7 +456,6 @@ class StepIndicator(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -488,7 +478,6 @@ class StepNumber(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -546,7 +535,6 @@ class StepNumber(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -569,7 +557,6 @@ class StepSeparator(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -627,7 +614,6 @@ class StepSeparator(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -653,7 +639,6 @@ class StepStatus(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -712,7 +697,6 @@ class StepStatus(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -735,7 +719,6 @@ class StepTitle(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -793,7 +776,6 @@ class StepTitle(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/overlay/alertdialog.pyi b/reflex/components/chakra/overlay/alertdialog.pyi index ce508361f..01fd6240e 100644 --- a/reflex/components/chakra/overlay/alertdialog.pyi +++ b/reflex/components/chakra/overlay/alertdialog.pyi @@ -62,7 +62,6 @@ class AlertDialog(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -149,7 +148,6 @@ class AlertDialog(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the alert dialog component. @@ -172,7 +170,6 @@ class AlertDialogBody(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -230,7 +227,6 @@ class AlertDialogBody(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -253,7 +249,6 @@ class AlertDialogHeader(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -311,7 +306,6 @@ class AlertDialogHeader(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -334,7 +328,6 @@ class AlertDialogFooter(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -392,7 +385,6 @@ class AlertDialogFooter(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -415,7 +407,6 @@ class AlertDialogContent(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -473,7 +464,6 @@ class AlertDialogContent(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -496,7 +486,6 @@ class AlertDialogOverlay(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -554,7 +543,6 @@ class AlertDialogOverlay(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -577,7 +565,6 @@ class AlertDialogCloseButton(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -635,7 +622,6 @@ class AlertDialogCloseButton(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/overlay/drawer.pyi b/reflex/components/chakra/overlay/drawer.pyi index 189378795..be6c3830b 100644 --- a/reflex/components/chakra/overlay/drawer.pyi +++ b/reflex/components/chakra/overlay/drawer.pyi @@ -101,7 +101,6 @@ class Drawer(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -191,7 +190,6 @@ class Drawer(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the drawer component. @@ -214,7 +212,6 @@ class DrawerBody(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -272,7 +269,6 @@ class DrawerBody(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -295,7 +291,6 @@ class DrawerHeader(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -353,7 +348,6 @@ class DrawerHeader(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -376,7 +370,6 @@ class DrawerFooter(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -434,7 +427,6 @@ class DrawerFooter(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -457,7 +449,6 @@ class DrawerOverlay(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -515,7 +506,6 @@ class DrawerOverlay(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -538,7 +528,6 @@ class DrawerContent(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -596,7 +585,6 @@ class DrawerContent(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -619,7 +607,6 @@ class DrawerCloseButton(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -677,7 +664,6 @@ class DrawerCloseButton(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/overlay/menu.pyi b/reflex/components/chakra/overlay/menu.pyi index 660838313..3450cfde9 100644 --- a/reflex/components/chakra/overlay/menu.pyi +++ b/reflex/components/chakra/overlay/menu.pyi @@ -52,7 +52,6 @@ class Menu(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -134,7 +133,6 @@ class Menu(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -156,7 +154,6 @@ class MenuButton(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -216,7 +213,6 @@ class MenuButton(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -240,7 +236,6 @@ class MenuList(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -299,7 +294,6 @@ class MenuList(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -324,7 +318,6 @@ class MenuItem(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -387,7 +380,6 @@ class MenuItem(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -420,7 +412,6 @@ class MenuItemOption(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -486,7 +477,6 @@ class MenuItemOption(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -509,7 +499,6 @@ class MenuGroup(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -567,7 +556,6 @@ class MenuGroup(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -594,7 +582,6 @@ class MenuOptionGroup(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -654,7 +641,6 @@ class MenuOptionGroup(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -677,7 +663,6 @@ class MenuDivider(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -735,7 +720,6 @@ class MenuDivider(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/overlay/modal.pyi b/reflex/components/chakra/overlay/modal.pyi index 9b3d2826e..5550f6d42 100644 --- a/reflex/components/chakra/overlay/modal.pyi +++ b/reflex/components/chakra/overlay/modal.pyi @@ -49,7 +49,6 @@ class Modal(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -136,7 +135,6 @@ class Modal(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -159,7 +157,6 @@ class ModalOverlay(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -217,7 +214,6 @@ class ModalOverlay(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -240,7 +236,6 @@ class ModalHeader(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -298,7 +293,6 @@ class ModalHeader(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -321,7 +315,6 @@ class ModalFooter(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -379,7 +372,6 @@ class ModalFooter(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -402,7 +394,6 @@ class ModalContent(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -460,7 +451,6 @@ class ModalContent(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -483,7 +473,6 @@ class ModalBody(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -541,7 +530,6 @@ class ModalBody(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -564,7 +552,6 @@ class ModalCloseButton(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -622,7 +609,6 @@ class ModalCloseButton(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/overlay/popover.pyi b/reflex/components/chakra/overlay/popover.pyi index d502f29bb..2f39860d3 100644 --- a/reflex/components/chakra/overlay/popover.pyi +++ b/reflex/components/chakra/overlay/popover.pyi @@ -58,7 +58,6 @@ class Popover(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -147,7 +146,6 @@ class Popover(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -167,7 +165,6 @@ class PopoverContent(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -225,7 +222,6 @@ class PopoverContent(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -248,7 +244,6 @@ class PopoverHeader(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -306,7 +301,6 @@ class PopoverHeader(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -329,7 +323,6 @@ class PopoverFooter(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -387,7 +380,6 @@ class PopoverFooter(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -410,7 +402,6 @@ class PopoverBody(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -468,7 +459,6 @@ class PopoverBody(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -491,7 +481,6 @@ class PopoverArrow(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -549,7 +538,6 @@ class PopoverArrow(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -572,7 +560,6 @@ class PopoverCloseButton(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -630,7 +617,6 @@ class PopoverCloseButton(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -653,7 +639,6 @@ class PopoverAnchor(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -711,7 +696,6 @@ class PopoverAnchor(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -734,7 +718,6 @@ class PopoverTrigger(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -792,7 +775,6 @@ class PopoverTrigger(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/overlay/tooltip.pyi b/reflex/components/chakra/overlay/tooltip.pyi index 492e1c41c..e7aad7f50 100644 --- a/reflex/components/chakra/overlay/tooltip.pyi +++ b/reflex/components/chakra/overlay/tooltip.pyi @@ -42,7 +42,6 @@ class Tooltip(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -123,7 +122,6 @@ class Tooltip(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/typography/heading.pyi b/reflex/components/chakra/typography/heading.pyi index 2aef0a631..e6cfa6b11 100644 --- a/reflex/components/chakra/typography/heading.pyi +++ b/reflex/components/chakra/typography/heading.pyi @@ -28,7 +28,6 @@ class Heading(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -88,7 +87,6 @@ class Heading(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/typography/highlight.pyi b/reflex/components/chakra/typography/highlight.pyi index 91b194554..0d935a7e8 100644 --- a/reflex/components/chakra/typography/highlight.pyi +++ b/reflex/components/chakra/typography/highlight.pyi @@ -25,7 +25,6 @@ class Highlight(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -85,7 +84,6 @@ class Highlight(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/typography/span.pyi b/reflex/components/chakra/typography/span.pyi index 84c39bcbd..5cb16e319 100644 --- a/reflex/components/chakra/typography/span.pyi +++ b/reflex/components/chakra/typography/span.pyi @@ -22,7 +22,6 @@ class Span(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -81,7 +80,6 @@ class Span(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/chakra/typography/text.pyi b/reflex/components/chakra/typography/text.pyi index 6fb06ada7..ca81acc24 100644 --- a/reflex/components/chakra/typography/text.pyi +++ b/reflex/components/chakra/typography/text.pyi @@ -23,7 +23,6 @@ class Text(ChakraComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -83,7 +82,6 @@ class Text(ChakraComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/component.py b/reflex/components/component.py index 0d619a8cf..889aa8d59 100644 --- a/reflex/components/component.py +++ b/reflex/components/component.py @@ -659,7 +659,7 @@ class Component(BaseComponent, ABC): for ix, prop in enumerate(rendered_dict["props"]): for old_prop, new_prop in self._rename_props.items(): if prop.startswith(old_prop): - rendered_dict["props"][ix] = prop.replace(old_prop, new_prop) + rendered_dict["props"][ix] = prop.replace(old_prop, new_prop, 1) def _validate_component_children(self, children: List[Component]): """Validate the children components. diff --git a/reflex/components/core/banner.pyi b/reflex/components/core/banner.pyi index 00f9a5121..456d54bea 100644 --- a/reflex/components/core/banner.pyi +++ b/reflex/components/core/banner.pyi @@ -34,7 +34,6 @@ class WebsocketTargetURL(Bare): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -103,7 +102,6 @@ class ConnectionBanner(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -173,7 +171,6 @@ class ConnectionModal(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] diff --git a/reflex/components/core/client_side_routing.pyi b/reflex/components/core/client_side_routing.pyi index 4b90e79c4..53bf90043 100644 --- a/reflex/components/core/client_side_routing.pyi +++ b/reflex/components/core/client_side_routing.pyi @@ -26,7 +26,6 @@ class ClientSideRouting(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -84,7 +83,6 @@ class ClientSideRouting(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -110,7 +108,6 @@ class Default404Page(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -168,7 +165,6 @@ class Default404Page(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/core/debounce.pyi b/reflex/components/core/debounce.pyi index db9a3e8b0..a37d6c1ae 100644 --- a/reflex/components/core/debounce.pyi +++ b/reflex/components/core/debounce.pyi @@ -32,7 +32,6 @@ class DebounceInput(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] diff --git a/reflex/components/core/html.pyi b/reflex/components/core/html.pyi index f16001435..e5246380c 100644 --- a/reflex/components/core/html.pyi +++ b/reflex/components/core/html.pyi @@ -65,7 +65,6 @@ class Html(Div): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -140,7 +139,6 @@ class Html(Div): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props to pass to the component. diff --git a/reflex/components/core/upload.pyi b/reflex/components/core/upload.pyi index f11d1ea10..e8f4c6d18 100644 --- a/reflex/components/core/upload.pyi +++ b/reflex/components/core/upload.pyi @@ -46,7 +46,6 @@ class UploadFilesProvider(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -104,7 +103,6 @@ class UploadFilesProvider(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -140,7 +138,6 @@ class Upload(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -210,7 +207,6 @@ class Upload(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/datadisplay/code.pyi b/reflex/components/datadisplay/code.pyi index cdbf8454b..99b40c55e 100644 --- a/reflex/components/datadisplay/code.pyi +++ b/reflex/components/datadisplay/code.pyi @@ -1036,7 +1036,6 @@ class CodeBlock(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1104,7 +1103,6 @@ class CodeBlock(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props to pass to the component. diff --git a/reflex/components/datadisplay/dataeditor.pyi b/reflex/components/datadisplay/dataeditor.pyi index 8e7d00827..fcc299926 100644 --- a/reflex/components/datadisplay/dataeditor.pyi +++ b/reflex/components/datadisplay/dataeditor.pyi @@ -134,7 +134,6 @@ class DataEditor(NoSSRComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_cell_activated: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -224,7 +223,6 @@ class DataEditor(NoSSRComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the data editor. diff --git a/reflex/components/el/element.pyi b/reflex/components/el/element.pyi index 818fc5061..5b488d919 100644 --- a/reflex/components/el/element.pyi +++ b/reflex/components/el/element.pyi @@ -20,7 +20,6 @@ class Element(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -78,7 +77,6 @@ class Element(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/el/elements/base.pyi b/reflex/components/el/elements/base.pyi index cdd2a8af4..5b58c88d6 100644 --- a/reflex/components/el/elements/base.pyi +++ b/reflex/components/el/elements/base.pyi @@ -62,7 +62,6 @@ class BaseHTML(Element): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -136,7 +135,6 @@ class BaseHTML(Element): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/el/elements/forms.pyi b/reflex/components/el/elements/forms.pyi index 402f22550..dd681a35a 100644 --- a/reflex/components/el/elements/forms.pyi +++ b/reflex/components/el/elements/forms.pyi @@ -89,7 +89,6 @@ class Button(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -174,7 +173,6 @@ class Button(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -237,7 +235,6 @@ class Datalist(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -311,7 +308,6 @@ class Datalist(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -339,7 +335,6 @@ class Fieldset(Element): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -400,7 +395,6 @@ class Fieldset(Element): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -488,7 +482,6 @@ class Form(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -571,7 +564,6 @@ class Form(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -708,7 +700,6 @@ class Input(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -822,7 +813,6 @@ class Input(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -889,7 +879,6 @@ class Label(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -965,7 +954,6 @@ class Label(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1028,7 +1016,6 @@ class Legend(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1102,7 +1089,6 @@ class Legend(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1176,7 +1162,6 @@ class Meter(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1257,7 +1242,6 @@ class Meter(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1326,7 +1310,6 @@ class Optgroup(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1402,7 +1385,6 @@ class Optgroup(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1477,7 +1459,6 @@ class Option(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1555,7 +1536,6 @@ class Option(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1623,7 +1603,6 @@ class Output(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1700,7 +1679,6 @@ class Output(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1768,7 +1746,6 @@ class Progress(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1845,7 +1822,6 @@ class Progress(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1927,7 +1903,6 @@ class Select(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2012,7 +1987,6 @@ class Select(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2111,7 +2085,6 @@ class Textarea(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2209,7 +2182,6 @@ class Textarea(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/el/elements/inline.pyi b/reflex/components/el/elements/inline.pyi index ffb1daf90..971ec8d68 100644 --- a/reflex/components/el/elements/inline.pyi +++ b/reflex/components/el/elements/inline.pyi @@ -83,7 +83,6 @@ class A(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -166,7 +165,6 @@ class A(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -229,7 +227,6 @@ class Abbr(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -303,7 +300,6 @@ class Abbr(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -366,7 +362,6 @@ class B(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -440,7 +435,6 @@ class B(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -503,7 +497,6 @@ class Bdi(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -577,7 +570,6 @@ class Bdi(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -640,7 +632,6 @@ class Bdo(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -714,7 +705,6 @@ class Bdo(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -777,7 +767,6 @@ class Br(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -851,7 +840,6 @@ class Br(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -914,7 +902,6 @@ class Cite(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -988,7 +975,6 @@ class Cite(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1051,7 +1037,6 @@ class Code(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1125,7 +1110,6 @@ class Code(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1191,7 +1175,6 @@ class Data(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1266,7 +1249,6 @@ class Data(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1329,7 +1311,6 @@ class Dfn(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1403,7 +1384,6 @@ class Dfn(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1466,7 +1446,6 @@ class Em(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1540,7 +1519,6 @@ class Em(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1603,7 +1581,6 @@ class I(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1677,7 +1654,6 @@ class I(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1740,7 +1716,6 @@ class Kbd(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1814,7 +1789,6 @@ class Kbd(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1877,7 +1851,6 @@ class Mark(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1951,7 +1924,6 @@ class Mark(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2015,7 +1987,6 @@ class Q(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2090,7 +2061,6 @@ class Q(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2153,7 +2123,6 @@ class Rp(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2227,7 +2196,6 @@ class Rp(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2290,7 +2258,6 @@ class Rt(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2364,7 +2331,6 @@ class Rt(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2427,7 +2393,6 @@ class Ruby(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2501,7 +2466,6 @@ class Ruby(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2564,7 +2528,6 @@ class S(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2638,7 +2601,6 @@ class S(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2701,7 +2663,6 @@ class Samp(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2775,7 +2736,6 @@ class Samp(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2838,7 +2798,6 @@ class Small(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2912,7 +2871,6 @@ class Small(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2975,7 +2933,6 @@ class Span(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -3049,7 +3006,6 @@ class Span(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -3112,7 +3068,6 @@ class Strong(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -3186,7 +3141,6 @@ class Strong(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -3249,7 +3203,6 @@ class Sub(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -3323,7 +3276,6 @@ class Sub(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -3386,7 +3338,6 @@ class Sup(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -3460,7 +3411,6 @@ class Sup(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -3526,7 +3476,6 @@ class Time(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -3601,7 +3550,6 @@ class Time(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -3664,7 +3612,6 @@ class U(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -3738,7 +3685,6 @@ class U(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -3801,7 +3747,6 @@ class Wbr(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -3875,7 +3820,6 @@ class Wbr(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/el/elements/media.pyi b/reflex/components/el/elements/media.pyi index f6479bef1..5e0316199 100644 --- a/reflex/components/el/elements/media.pyi +++ b/reflex/components/el/elements/media.pyi @@ -87,7 +87,6 @@ class Area(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -172,7 +171,6 @@ class Area(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -255,7 +253,6 @@ class Audio(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -337,7 +334,6 @@ class Audio(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -432,7 +428,6 @@ class Img(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -518,7 +513,6 @@ class Img(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -582,7 +576,6 @@ class Map(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -657,7 +650,6 @@ class Map(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -731,7 +723,6 @@ class Track(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -810,7 +801,6 @@ class Track(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -899,7 +889,6 @@ class Video(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -983,7 +972,6 @@ class Video(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1048,7 +1036,6 @@ class Embed(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1124,7 +1111,6 @@ class Embed(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1208,7 +1194,6 @@ class Iframe(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1291,7 +1276,6 @@ class Iframe(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1361,7 +1345,6 @@ class Object(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1440,7 +1423,6 @@ class Object(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1503,7 +1485,6 @@ class Picture(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1577,7 +1558,6 @@ class Picture(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1640,7 +1620,6 @@ class Portal(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1714,7 +1693,6 @@ class Portal(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1788,7 +1766,6 @@ class Source(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1867,7 +1844,6 @@ class Source(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1930,7 +1906,6 @@ class Svg(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2004,7 +1979,6 @@ class Svg(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2068,7 +2042,6 @@ class Path(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2143,7 +2116,6 @@ class Path(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/el/elements/metadata.pyi b/reflex/components/el/elements/metadata.pyi index 9bfb237b2..8dd05ff96 100644 --- a/reflex/components/el/elements/metadata.pyi +++ b/reflex/components/el/elements/metadata.pyi @@ -67,7 +67,6 @@ class Base(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -141,7 +140,6 @@ class Base(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -204,7 +202,6 @@ class Head(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -278,7 +275,6 @@ class Head(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -362,7 +358,6 @@ class Link(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -436,7 +431,6 @@ class Link(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -509,7 +503,6 @@ class Meta(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -583,7 +576,6 @@ class Meta(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -606,7 +598,6 @@ class Title(Element): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -664,7 +655,6 @@ class Title(Element): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/el/elements/other.pyi b/reflex/components/el/elements/other.pyi index 3753d7926..1d939d5c2 100644 --- a/reflex/components/el/elements/other.pyi +++ b/reflex/components/el/elements/other.pyi @@ -63,7 +63,6 @@ class Details(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -138,7 +137,6 @@ class Details(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -202,7 +200,6 @@ class Dialog(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -277,7 +274,6 @@ class Dialog(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -340,7 +336,6 @@ class Summary(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -414,7 +409,6 @@ class Summary(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -477,7 +471,6 @@ class Slot(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -551,7 +544,6 @@ class Slot(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -614,7 +606,6 @@ class Template(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -688,7 +679,6 @@ class Template(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -751,7 +741,6 @@ class Math(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -825,7 +814,6 @@ class Math(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -891,7 +879,6 @@ class Html(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -966,7 +953,6 @@ class Html(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/el/elements/scripts.pyi b/reflex/components/el/elements/scripts.pyi index 5d9f57a0c..ca2ec9fc6 100644 --- a/reflex/components/el/elements/scripts.pyi +++ b/reflex/components/el/elements/scripts.pyi @@ -62,7 +62,6 @@ class Canvas(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -136,7 +135,6 @@ class Canvas(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -199,7 +197,6 @@ class Noscript(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -273,7 +270,6 @@ class Noscript(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -359,7 +355,6 @@ class Script(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -442,7 +437,6 @@ class Script(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/el/elements/sectioning.pyi b/reflex/components/el/elements/sectioning.pyi index 69e984532..8233d45d3 100644 --- a/reflex/components/el/elements/sectioning.pyi +++ b/reflex/components/el/elements/sectioning.pyi @@ -61,7 +61,6 @@ class Body(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -135,7 +134,6 @@ class Body(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -198,7 +196,6 @@ class Address(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -272,7 +269,6 @@ class Address(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -335,7 +331,6 @@ class Article(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -409,7 +404,6 @@ class Article(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -472,7 +466,6 @@ class Aside(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -546,7 +539,6 @@ class Aside(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -609,7 +601,6 @@ class Footer(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -683,7 +674,6 @@ class Footer(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -746,7 +736,6 @@ class Header(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -820,7 +809,6 @@ class Header(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -883,7 +871,6 @@ class H1(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -957,7 +944,6 @@ class H1(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1020,7 +1006,6 @@ class H2(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1094,7 +1079,6 @@ class H2(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1157,7 +1141,6 @@ class H3(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1231,7 +1214,6 @@ class H3(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1294,7 +1276,6 @@ class H4(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1368,7 +1349,6 @@ class H4(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1431,7 +1411,6 @@ class H5(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1505,7 +1484,6 @@ class H5(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1568,7 +1546,6 @@ class H6(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1642,7 +1619,6 @@ class H6(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1705,7 +1681,6 @@ class Main(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1779,7 +1754,6 @@ class Main(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1842,7 +1816,6 @@ class Nav(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1916,7 +1889,6 @@ class Nav(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1979,7 +1951,6 @@ class Section(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2053,7 +2024,6 @@ class Section(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/el/elements/tables.pyi b/reflex/components/el/elements/tables.pyi index a01095c53..3d1ac50a3 100644 --- a/reflex/components/el/elements/tables.pyi +++ b/reflex/components/el/elements/tables.pyi @@ -65,7 +65,6 @@ class Caption(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -140,7 +139,6 @@ class Caption(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -207,7 +205,6 @@ class Col(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -283,7 +280,6 @@ class Col(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -350,7 +346,6 @@ class Colgroup(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -426,7 +421,6 @@ class Colgroup(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -495,7 +489,6 @@ class Table(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -571,7 +564,6 @@ class Table(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -637,7 +629,6 @@ class Tbody(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -712,7 +703,6 @@ class Tbody(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -787,7 +777,6 @@ class Td(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -865,7 +854,6 @@ class Td(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -931,7 +919,6 @@ class Tfoot(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1006,7 +993,6 @@ class Tfoot(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1084,7 +1070,6 @@ class Th(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1163,7 +1148,6 @@ class Th(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1229,7 +1213,6 @@ class Thead(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1304,7 +1287,6 @@ class Thead(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1370,7 +1352,6 @@ class Tr(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1445,7 +1426,6 @@ class Tr(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/el/elements/typography.pyi b/reflex/components/el/elements/typography.pyi index 2f30c4805..bb70908af 100644 --- a/reflex/components/el/elements/typography.pyi +++ b/reflex/components/el/elements/typography.pyi @@ -63,7 +63,6 @@ class Blockquote(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -138,7 +137,6 @@ class Blockquote(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -201,7 +199,6 @@ class Dd(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -275,7 +272,6 @@ class Dd(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -338,7 +334,6 @@ class Div(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -412,7 +407,6 @@ class Div(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -475,7 +469,6 @@ class Dl(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -549,7 +542,6 @@ class Dl(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -612,7 +604,6 @@ class Dt(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -686,7 +677,6 @@ class Dt(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -749,7 +739,6 @@ class Figcaption(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -823,7 +812,6 @@ class Figcaption(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -889,7 +877,6 @@ class Hr(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -964,7 +951,6 @@ class Hr(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1027,7 +1013,6 @@ class Li(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1101,7 +1086,6 @@ class Li(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1165,7 +1149,6 @@ class Menu(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1240,7 +1223,6 @@ class Menu(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1310,7 +1292,6 @@ class Ol(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1387,7 +1368,6 @@ class Ol(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1450,7 +1430,6 @@ class P(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1524,7 +1503,6 @@ class P(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1587,7 +1565,6 @@ class Pre(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1661,7 +1638,6 @@ class Pre(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1724,7 +1700,6 @@ class Ul(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1798,7 +1773,6 @@ class Ul(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1865,7 +1839,6 @@ class Ins(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1941,7 +1914,6 @@ class Ins(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -2008,7 +1980,6 @@ class Del(BaseHTML): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -2084,7 +2055,6 @@ class Del(BaseHTML): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/gridjs/datatable.pyi b/reflex/components/gridjs/datatable.pyi index 9ad0d03d2..691c3d4bd 100644 --- a/reflex/components/gridjs/datatable.pyi +++ b/reflex/components/gridjs/datatable.pyi @@ -25,7 +25,6 @@ class Gridjs(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -83,7 +82,6 @@ class Gridjs(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -112,7 +110,6 @@ class DataTable(Gridjs): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -176,7 +173,6 @@ class DataTable(Gridjs): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props to pass to the component. diff --git a/reflex/components/lucide/icon.pyi b/reflex/components/lucide/icon.pyi index cdca826cd..26eabb48b 100644 --- a/reflex/components/lucide/icon.pyi +++ b/reflex/components/lucide/icon.pyi @@ -23,7 +23,6 @@ class LucideIconComponent(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -81,7 +80,6 @@ class LucideIconComponent(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -105,7 +103,6 @@ class Icon(LucideIconComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -166,7 +163,6 @@ class Icon(LucideIconComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The keyword arguments diff --git a/reflex/components/markdown/markdown.pyi b/reflex/components/markdown/markdown.pyi index 27c9789ac..1322e7622 100644 --- a/reflex/components/markdown/markdown.pyi +++ b/reflex/components/markdown/markdown.pyi @@ -55,7 +55,6 @@ class Markdown(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -116,7 +115,6 @@ class Markdown(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/moment/moment.pyi b/reflex/components/moment/moment.pyi index bd5392f7e..6eb780cda 100644 --- a/reflex/components/moment/moment.pyi +++ b/reflex/components/moment/moment.pyi @@ -56,7 +56,6 @@ class Moment(NoSSRComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -137,7 +136,6 @@ class Moment(NoSSRComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/next/base.pyi b/reflex/components/next/base.pyi index f940aaca1..57fab6a9a 100644 --- a/reflex/components/next/base.pyi +++ b/reflex/components/next/base.pyi @@ -22,7 +22,6 @@ class NextComponent(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -80,7 +79,6 @@ class NextComponent(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/next/image.pyi b/reflex/components/next/image.pyi index 3eba50fba..a8f7d8379 100644 --- a/reflex/components/next/image.pyi +++ b/reflex/components/next/image.pyi @@ -38,7 +38,6 @@ class Image(NextComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -114,7 +113,6 @@ class Image(NextComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props:The props of the component. diff --git a/reflex/components/next/link.pyi b/reflex/components/next/link.pyi index 57e42d550..3d8809968 100644 --- a/reflex/components/next/link.pyi +++ b/reflex/components/next/link.pyi @@ -23,7 +23,6 @@ class NextLink(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -83,7 +82,6 @@ class NextLink(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/next/video.pyi b/reflex/components/next/video.pyi index 25cd027d6..cee5c4c9d 100644 --- a/reflex/components/next/video.pyi +++ b/reflex/components/next/video.pyi @@ -25,7 +25,6 @@ class Video(NextComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -84,7 +83,6 @@ class Video(NextComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/plotly/plotly.pyi b/reflex/components/plotly/plotly.pyi index d237f1c12..2a0653aeb 100644 --- a/reflex/components/plotly/plotly.pyi +++ b/reflex/components/plotly/plotly.pyi @@ -27,7 +27,6 @@ class PlotlyLib(NoSSRComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -85,7 +84,6 @@ class PlotlyLib(NoSSRComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -113,7 +111,6 @@ class Plotly(PlotlyLib): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -176,7 +173,6 @@ class Plotly(PlotlyLib): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/radix/primitives/accordion.pyi b/reflex/components/radix/primitives/accordion.pyi index a56b70b70..5e38a5516 100644 --- a/reflex/components/radix/primitives/accordion.pyi +++ b/reflex/components/radix/primitives/accordion.pyi @@ -51,7 +51,6 @@ class AccordionComponent(RadixPrimitiveComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -110,7 +109,6 @@ class AccordionComponent(RadixPrimitiveComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -218,7 +216,6 @@ class AccordionRoot(AccordionComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -291,7 +288,6 @@ class AccordionRoot(AccordionComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -315,7 +311,6 @@ class AccordionItem(AccordionComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -376,7 +371,6 @@ class AccordionItem(AccordionComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -400,7 +394,6 @@ class AccordionHeader(AccordionComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -459,7 +452,6 @@ class AccordionHeader(AccordionComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -483,7 +475,6 @@ class AccordionTrigger(AccordionComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -542,7 +533,6 @@ class AccordionTrigger(AccordionComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -566,7 +556,6 @@ class AccordionContent(AccordionComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -625,7 +614,6 @@ class AccordionContent(AccordionComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/radix/primitives/base.pyi b/reflex/components/radix/primitives/base.pyi index e1e2e5711..f31a66252 100644 --- a/reflex/components/radix/primitives/base.pyi +++ b/reflex/components/radix/primitives/base.pyi @@ -25,7 +25,6 @@ class RadixPrimitiveComponent(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -84,7 +83,6 @@ class RadixPrimitiveComponent(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -108,7 +106,6 @@ class RadixPrimitiveComponentWithClassName(RadixPrimitiveComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -167,7 +164,6 @@ class RadixPrimitiveComponentWithClassName(RadixPrimitiveComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/radix/primitives/drawer.pyi b/reflex/components/radix/primitives/drawer.pyi index 8c57293c7..352460f87 100644 --- a/reflex/components/radix/primitives/drawer.pyi +++ b/reflex/components/radix/primitives/drawer.pyi @@ -25,7 +25,6 @@ class DrawerComponent(RadixPrimitiveComponentWithClassName): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -84,7 +83,6 @@ class DrawerComponent(RadixPrimitiveComponentWithClassName): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -125,7 +123,6 @@ class DrawerRoot(DrawerComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -196,7 +193,6 @@ class DrawerRoot(DrawerComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -220,7 +216,6 @@ class DrawerTrigger(DrawerComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -279,7 +274,6 @@ class DrawerTrigger(DrawerComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -303,7 +297,6 @@ class DrawerPortal(DrawerComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -362,7 +355,6 @@ class DrawerPortal(DrawerComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -387,7 +379,6 @@ class DrawerContent(DrawerComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -461,7 +452,6 @@ class DrawerContent(DrawerComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -485,7 +475,6 @@ class DrawerOverlay(DrawerComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -544,7 +533,6 @@ class DrawerOverlay(DrawerComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -568,7 +556,6 @@ class DrawerClose(DrawerComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -627,7 +614,6 @@ class DrawerClose(DrawerComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -651,7 +637,6 @@ class DrawerTitle(DrawerComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -710,7 +695,6 @@ class DrawerTitle(DrawerComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -734,7 +718,6 @@ class DrawerDescription(DrawerComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -793,7 +776,6 @@ class DrawerDescription(DrawerComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -838,7 +820,6 @@ class Drawer(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -909,7 +890,6 @@ class Drawer(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/radix/primitives/form.pyi b/reflex/components/radix/primitives/form.pyi index f2ea87c1f..752d365cb 100644 --- a/reflex/components/radix/primitives/form.pyi +++ b/reflex/components/radix/primitives/form.pyi @@ -39,7 +39,6 @@ class FormComponent(RadixPrimitiveComponentWithClassName): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -98,7 +97,6 @@ class FormComponent(RadixPrimitiveComponentWithClassName): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -125,7 +123,6 @@ class FormRoot(FormComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -192,7 +189,6 @@ class FormRoot(FormComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the form. @@ -215,7 +211,6 @@ class FormField(FormComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -276,7 +271,6 @@ class FormField(FormComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -300,7 +294,6 @@ class FormLabel(FormComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -359,7 +352,6 @@ class FormLabel(FormComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -383,7 +375,6 @@ class FormControl(FormComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -442,7 +433,6 @@ class FormControl(FormComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the form. @@ -512,7 +502,6 @@ class FormMessage(FormComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -574,7 +563,6 @@ class FormMessage(FormComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -598,7 +586,6 @@ class FormValidityState(FormComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -657,7 +644,6 @@ class FormValidityState(FormComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -681,7 +667,6 @@ class FormSubmit(FormComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -740,7 +725,6 @@ class FormSubmit(FormComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -772,7 +756,6 @@ class Form(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -839,7 +822,6 @@ class Form(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the form. diff --git a/reflex/components/radix/primitives/progress.pyi b/reflex/components/radix/primitives/progress.pyi index 61186c33b..70e19be44 100644 --- a/reflex/components/radix/primitives/progress.pyi +++ b/reflex/components/radix/primitives/progress.pyi @@ -27,7 +27,6 @@ class ProgressComponent(RadixPrimitiveComponentWithClassName): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -86,7 +85,6 @@ class ProgressComponent(RadixPrimitiveComponentWithClassName): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -112,7 +110,6 @@ class ProgressRoot(ProgressComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -173,7 +170,6 @@ class ProgressRoot(ProgressComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -198,7 +194,6 @@ class ProgressIndicator(ProgressComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -258,7 +253,6 @@ class ProgressIndicator(ProgressComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/radix/primitives/slider.pyi b/reflex/components/radix/primitives/slider.pyi index 57c58ef9d..da2228c90 100644 --- a/reflex/components/radix/primitives/slider.pyi +++ b/reflex/components/radix/primitives/slider.pyi @@ -29,7 +29,6 @@ class SliderComponent(RadixPrimitiveComponentWithClassName): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -88,7 +87,6 @@ class SliderComponent(RadixPrimitiveComponentWithClassName): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -129,7 +127,6 @@ class SliderRoot(SliderComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -194,7 +191,6 @@ class SliderRoot(SliderComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -218,7 +214,6 @@ class SliderTrack(SliderComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -277,7 +272,6 @@ class SliderTrack(SliderComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -301,7 +295,6 @@ class SliderRange(SliderComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -360,7 +353,6 @@ class SliderRange(SliderComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -384,7 +376,6 @@ class SliderThumb(SliderComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -443,7 +434,6 @@ class SliderThumb(SliderComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/radix/themes/base.pyi b/reflex/components/radix/themes/base.pyi index 213afde02..da3cf1d5e 100644 --- a/reflex/components/radix/themes/base.pyi +++ b/reflex/components/radix/themes/base.pyi @@ -104,7 +104,6 @@ class CommonMarginProps(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -169,7 +168,6 @@ class CommonMarginProps(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -255,7 +253,6 @@ class RadixThemesComponent(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -318,7 +315,6 @@ class RadixThemesComponent(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -431,7 +427,6 @@ class Theme(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -497,7 +492,6 @@ class Theme(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -581,7 +575,6 @@ class ThemePanel(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -645,7 +638,6 @@ class ThemePanel(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -665,7 +657,6 @@ class RadixThemesColorModeProvider(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -723,7 +714,6 @@ class RadixThemesColorModeProvider(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/radix/themes/color_mode.pyi b/reflex/components/radix/themes/color_mode.pyi index 3542d481b..5818d6753 100644 --- a/reflex/components/radix/themes/color_mode.pyi +++ b/reflex/components/radix/themes/color_mode.pyi @@ -33,7 +33,6 @@ class ColorModeIcon(Cond): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -188,7 +187,6 @@ class ColorModeSwitch(Switch): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -261,7 +259,6 @@ class ColorModeSwitch(Switch): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props to pass to the component. @@ -425,7 +422,6 @@ class ColorModeButton(Button): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -516,7 +512,6 @@ class ColorModeButton(Button): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props to pass to the component. diff --git a/reflex/components/radix/themes/components/alert_dialog.pyi b/reflex/components/radix/themes/components/alert_dialog.pyi index 9ba8fa07f..2cec7b3a1 100644 --- a/reflex/components/radix/themes/components/alert_dialog.pyi +++ b/reflex/components/radix/themes/components/alert_dialog.pyi @@ -92,7 +92,6 @@ class AlertDialogRoot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -159,7 +158,6 @@ class AlertDialogRoot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -242,7 +240,6 @@ class AlertDialogTrigger(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -305,7 +302,6 @@ class AlertDialogTrigger(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -433,7 +429,6 @@ class AlertDialogContent(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -523,7 +518,6 @@ class AlertDialogContent(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -606,7 +600,6 @@ class AlertDialogTitle(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -669,7 +662,6 @@ class AlertDialogTitle(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -752,7 +744,6 @@ class AlertDialogDescription(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -815,7 +806,6 @@ class AlertDialogDescription(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -898,7 +888,6 @@ class AlertDialogAction(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -961,7 +950,6 @@ class AlertDialogAction(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1044,7 +1032,6 @@ class AlertDialogCancel(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1107,7 +1094,6 @@ class AlertDialogCancel(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/aspect_ratio.pyi b/reflex/components/radix/themes/components/aspect_ratio.pyi index 2efcfc54f..12bb55c08 100644 --- a/reflex/components/radix/themes/components/aspect_ratio.pyi +++ b/reflex/components/radix/themes/components/aspect_ratio.pyi @@ -86,7 +86,6 @@ class AspectRatio(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -150,7 +149,6 @@ class AspectRatio(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/avatar.pyi b/reflex/components/radix/themes/components/avatar.pyi index 232d765d8..5b8722d74 100644 --- a/reflex/components/radix/themes/components/avatar.pyi +++ b/reflex/components/radix/themes/components/avatar.pyi @@ -103,7 +103,6 @@ class Avatar(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -172,7 +171,6 @@ class Avatar(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/badge.pyi b/reflex/components/radix/themes/components/badge.pyi index 9586b06ba..9968994fc 100644 --- a/reflex/components/radix/themes/components/badge.pyi +++ b/reflex/components/radix/themes/components/badge.pyi @@ -140,7 +140,6 @@ class Badge(el.Span, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -223,7 +222,6 @@ class Badge(el.Span, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/button.pyi b/reflex/components/radix/themes/components/button.pyi index b0258ab56..ffb7d2d3b 100644 --- a/reflex/components/radix/themes/components/button.pyi +++ b/reflex/components/radix/themes/components/button.pyi @@ -175,7 +175,6 @@ class Button(el.Button, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -270,7 +269,6 @@ class Button(el.Button, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/callout.pyi b/reflex/components/radix/themes/components/callout.pyi index e8221e2a3..3954f491e 100644 --- a/reflex/components/radix/themes/components/callout.pyi +++ b/reflex/components/radix/themes/components/callout.pyi @@ -143,7 +143,6 @@ class CalloutRoot(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -226,7 +225,6 @@ class CalloutRoot(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -349,7 +347,6 @@ class CalloutIcon(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -428,7 +425,6 @@ class CalloutIcon(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -551,7 +547,6 @@ class CalloutText(el.P, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -630,7 +625,6 @@ class CalloutText(el.P, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -765,7 +759,6 @@ class Callout(CalloutRoot): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -846,7 +839,6 @@ class Callout(CalloutRoot): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -983,7 +975,6 @@ class CalloutNamespace(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1064,7 +1055,6 @@ class CalloutNamespace(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/radix/themes/components/card.pyi b/reflex/components/radix/themes/components/card.pyi index bcb2e956f..88713fb84 100644 --- a/reflex/components/radix/themes/components/card.pyi +++ b/reflex/components/radix/themes/components/card.pyi @@ -138,7 +138,6 @@ class Card(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -220,7 +219,6 @@ class Card(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/checkbox.py b/reflex/components/radix/themes/components/checkbox.py index 60e186406..c614cc19f 100644 --- a/reflex/components/radix/themes/components/checkbox.py +++ b/reflex/components/radix/themes/components/checkbox.py @@ -80,7 +80,7 @@ class HighLevelCheckbox(RadixThemesComponent): text: Var[str] # The gap between the checkbox and the label. - gap: Var[LiteralSize] + spacing: Var[LiteralSize] # The size of the checkbox "1" - "3". size: Var[LiteralCheckboxSize] @@ -140,8 +140,11 @@ class HighLevelCheckbox(RadixThemesComponent): Returns: The checkbox component with a label. """ - gap = props.pop("gap", "2") + spacing = props.pop("spacing", "2") size = props.pop("size", "2") + flex_props = {} + if "gap" in props: + flex_props["gap"] = props.pop("gap", None) return Text.create( Flex.create( @@ -150,7 +153,8 @@ class HighLevelCheckbox(RadixThemesComponent): **props, ), text, - gap=gap, + spacing=spacing, + **flex_props, ), as_="label", size=size, diff --git a/reflex/components/radix/themes/components/checkbox.pyi b/reflex/components/radix/themes/components/checkbox.pyi index 8ff9e64ef..c28a09518 100644 --- a/reflex/components/radix/themes/components/checkbox.pyi +++ b/reflex/components/radix/themes/components/checkbox.pyi @@ -111,7 +111,6 @@ class Checkbox(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -187,7 +186,6 @@ class Checkbox(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -204,7 +202,7 @@ class HighLevelCheckbox(RadixThemesComponent): cls, *children, text: Optional[Union[Var[str], str]] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -294,7 +292,6 @@ class HighLevelCheckbox(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -351,7 +348,7 @@ class HighLevelCheckbox(RadixThemesComponent): Args: text: The text of the label. text: The text label for the checkbox. - gap: The gap between the checkbox and the label. + spacing: The gap between the checkbox and the label. size: The size of the checkbox "1" - "3". as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. variant: Variant of checkbox: "classic" | "surface" | "soft" @@ -368,7 +365,6 @@ class HighLevelCheckbox(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Additional properties to apply to the checkbox item. @@ -382,7 +378,7 @@ class CheckboxNamespace(SimpleNamespace): def __call__( *children, text: Optional[Union[Var[str], str]] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -472,7 +468,6 @@ class CheckboxNamespace(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -529,7 +524,7 @@ class CheckboxNamespace(SimpleNamespace): Args: text: The text of the label. text: The text label for the checkbox. - gap: The gap between the checkbox and the label. + spacing: The gap between the checkbox and the label. size: The size of the checkbox "1" - "3". as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. variant: Variant of checkbox: "classic" | "surface" | "soft" @@ -546,7 +541,6 @@ class CheckboxNamespace(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Additional properties to apply to the checkbox item. diff --git a/reflex/components/radix/themes/components/context_menu.pyi b/reflex/components/radix/themes/components/context_menu.pyi index 92ca55563..3d92b2696 100644 --- a/reflex/components/radix/themes/components/context_menu.pyi +++ b/reflex/components/radix/themes/components/context_menu.pyi @@ -89,7 +89,6 @@ class ContextMenuRoot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -156,7 +155,6 @@ class ContextMenuRoot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -240,7 +238,6 @@ class ContextMenuTrigger(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -304,7 +301,6 @@ class ContextMenuTrigger(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -395,7 +391,6 @@ class ContextMenuContent(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -478,7 +473,6 @@ class ContextMenuContent(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -561,7 +555,6 @@ class ContextMenuSub(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -624,7 +617,6 @@ class ContextMenuSub(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -708,7 +700,6 @@ class ContextMenuSubTrigger(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -772,7 +763,6 @@ class ContextMenuSubTrigger(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -857,7 +847,6 @@ class ContextMenuSubContent(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -933,7 +922,6 @@ class ContextMenuSubContent(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1017,7 +1005,6 @@ class ContextMenuItem(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1081,7 +1068,6 @@ class ContextMenuItem(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1164,7 +1150,6 @@ class ContextMenuSeparator(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1227,7 +1212,6 @@ class ContextMenuSeparator(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/dialog.pyi b/reflex/components/radix/themes/components/dialog.pyi index 1a455754b..ef41b0b71 100644 --- a/reflex/components/radix/themes/components/dialog.pyi +++ b/reflex/components/radix/themes/components/dialog.pyi @@ -90,7 +90,6 @@ class DialogRoot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -157,7 +156,6 @@ class DialogRoot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -240,7 +238,6 @@ class DialogTrigger(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -303,7 +300,6 @@ class DialogTrigger(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -386,7 +382,6 @@ class DialogTitle(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -449,7 +444,6 @@ class DialogTitle(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -576,7 +570,6 @@ class DialogContent(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -671,7 +664,6 @@ class DialogContent(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -754,7 +746,6 @@ class DialogDescription(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -817,7 +808,6 @@ class DialogDescription(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -900,7 +890,6 @@ class DialogClose(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -963,7 +952,6 @@ class DialogClose(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1052,7 +1040,6 @@ class Dialog(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1119,7 +1106,6 @@ class Dialog(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/dropdown_menu.pyi b/reflex/components/radix/themes/components/dropdown_menu.pyi index 1b11e2b60..877a99038 100644 --- a/reflex/components/radix/themes/components/dropdown_menu.pyi +++ b/reflex/components/radix/themes/components/dropdown_menu.pyi @@ -99,7 +99,6 @@ class DropdownMenuRoot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -169,7 +168,6 @@ class DropdownMenuRoot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -253,7 +251,6 @@ class DropdownMenuTrigger(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -317,7 +314,6 @@ class DropdownMenuTrigger(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -437,7 +433,6 @@ class DropdownMenuContent(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -530,7 +525,6 @@ class DropdownMenuContent(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -616,7 +610,6 @@ class DropdownMenuSubTrigger(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -682,7 +675,6 @@ class DropdownMenuSubTrigger(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -768,7 +760,6 @@ class DropdownMenuSub(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -836,7 +827,6 @@ class DropdownMenuSub(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -939,7 +929,6 @@ class DropdownMenuSubContent(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1024,7 +1013,6 @@ class DropdownMenuSubContent(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1112,7 +1100,6 @@ class DropdownMenuItem(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1182,7 +1169,6 @@ class DropdownMenuItem(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1265,7 +1251,6 @@ class DropdownMenuSeparator(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1328,7 +1313,6 @@ class DropdownMenuSeparator(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/hover_card.pyi b/reflex/components/radix/themes/components/hover_card.pyi index 9f74370aa..8c89c0239 100644 --- a/reflex/components/radix/themes/components/hover_card.pyi +++ b/reflex/components/radix/themes/components/hover_card.pyi @@ -93,7 +93,6 @@ class HoverCardRoot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -163,7 +162,6 @@ class HoverCardRoot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -246,7 +244,6 @@ class HoverCardTrigger(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -309,7 +306,6 @@ class HoverCardTrigger(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -446,7 +442,6 @@ class HoverCardContent(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -529,7 +524,6 @@ class HoverCardContent(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -618,7 +612,6 @@ class HoverCard(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -688,7 +681,6 @@ class HoverCard(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/icon_button.pyi b/reflex/components/radix/themes/components/icon_button.pyi index c0300b02f..7abd29682 100644 --- a/reflex/components/radix/themes/components/icon_button.pyi +++ b/reflex/components/radix/themes/components/icon_button.pyi @@ -178,7 +178,6 @@ class IconButton(el.Button, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -269,7 +268,6 @@ class IconButton(el.Button, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/radix/themes/components/inset.pyi b/reflex/components/radix/themes/components/inset.pyi index 609af896e..54c57a7c2 100644 --- a/reflex/components/radix/themes/components/inset.pyi +++ b/reflex/components/radix/themes/components/inset.pyi @@ -147,7 +147,6 @@ class Inset(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -235,7 +234,6 @@ class Inset(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/popover.pyi b/reflex/components/radix/themes/components/popover.pyi index 3d3bf8383..5aed1d7f6 100644 --- a/reflex/components/radix/themes/components/popover.pyi +++ b/reflex/components/radix/themes/components/popover.pyi @@ -91,7 +91,6 @@ class PopoverRoot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -159,7 +158,6 @@ class PopoverRoot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -242,7 +240,6 @@ class PopoverTrigger(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -305,7 +302,6 @@ class PopoverTrigger(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -447,7 +443,6 @@ class PopoverContent(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -550,7 +545,6 @@ class PopoverContent(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -633,7 +627,6 @@ class PopoverClose(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -696,7 +689,6 @@ class PopoverClose(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/radio_group.py b/reflex/components/radix/themes/components/radio_group.py index f8bd72ce6..986d7271f 100644 --- a/reflex/components/radix/themes/components/radio_group.py +++ b/reflex/components/radix/themes/components/radio_group.py @@ -90,7 +90,7 @@ class HighLevelRadioGroup(RadixThemesComponent): direction: Var[LiteralFlexDirection] = Var.create_safe("column") # The gap between the items of the radio group. - gap: Var[LiteralSize] = Var.create_safe("2") + spacing: Var[LiteralSize] = Var.create_safe("2") # The size of the radio group. size: Var[Literal["1", "2", "3"]] = Var.create_safe("2") @@ -138,7 +138,7 @@ class HighLevelRadioGroup(RadixThemesComponent): The created radio group component. """ direction = props.pop("direction", "column") - gap = props.pop("gap", "2") + spacing = props.pop("spacing", "2") size = props.pop("size", "2") default_value = props.pop("default_value", "") @@ -167,7 +167,7 @@ class HighLevelRadioGroup(RadixThemesComponent): Flex.create( RadioGroupItem.create(value=item_value), item_value, - gap="2", + spacing="2", ), size=size, as_="label", @@ -180,7 +180,7 @@ class HighLevelRadioGroup(RadixThemesComponent): Flex.create( *children, direction=direction, - gap=gap, + spacing=spacing, ), size=size, default_value=default_value, diff --git a/reflex/components/radix/themes/components/radio_group.pyi b/reflex/components/radix/themes/components/radio_group.pyi index 3967de4f7..6c70f7317 100644 --- a/reflex/components/radix/themes/components/radio_group.pyi +++ b/reflex/components/radix/themes/components/radio_group.pyi @@ -109,7 +109,6 @@ class RadioGroupRoot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -183,7 +182,6 @@ class RadioGroupRoot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -269,7 +267,6 @@ class RadioGroupItem(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -335,7 +332,6 @@ class RadioGroupItem(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -357,7 +353,7 @@ class HighLevelRadioGroup(RadixThemesComponent): Literal["row", "column", "row-reverse", "column-reverse"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -445,7 +441,6 @@ class HighLevelRadioGroup(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -500,7 +495,7 @@ class HighLevelRadioGroup(RadixThemesComponent): items: The items of the radio group. items: The items of the radio group. direction: The direction of the radio group. - gap: The gap between the items of the radio group. + spacing: The gap between the items of the radio group. size: The size of the radio group. variant: The variant of the radio group color_scheme: The color of the radio group @@ -515,7 +510,6 @@ class HighLevelRadioGroup(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Additional properties to apply to the accordion item. @@ -538,7 +532,7 @@ class RadioGroup(SimpleNamespace): Literal["row", "column", "row-reverse", "column-reverse"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -626,7 +620,6 @@ class RadioGroup(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -681,7 +674,7 @@ class RadioGroup(SimpleNamespace): items: The items of the radio group. items: The items of the radio group. direction: The direction of the radio group. - gap: The gap between the items of the radio group. + spacing: The gap between the items of the radio group. size: The size of the radio group. variant: The variant of the radio group color_scheme: The color of the radio group @@ -696,7 +689,6 @@ class RadioGroup(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Additional properties to apply to the accordion item. diff --git a/reflex/components/radix/themes/components/radiogroup.pyi b/reflex/components/radix/themes/components/radiogroup.pyi index 3fbce8923..1ea3e3bfa 100644 --- a/reflex/components/radix/themes/components/radiogroup.pyi +++ b/reflex/components/radix/themes/components/radiogroup.pyi @@ -109,7 +109,6 @@ class RadioGroupRoot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -183,7 +182,6 @@ class RadioGroupRoot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -269,7 +267,6 @@ class RadioGroupItem(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -335,7 +332,6 @@ class RadioGroupItem(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -357,7 +353,7 @@ class HighLevelRadioGroup(RadixThemesComponent): Literal["row", "column", "row-reverse", "column-reverse"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -445,7 +441,6 @@ class HighLevelRadioGroup(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -500,7 +495,7 @@ class HighLevelRadioGroup(RadixThemesComponent): items: The items of the radio group. items: The items of the radio group. direction: The direction of the radio group. - gap: The gap between the items of the radio group. + spacing: The gap between the items of the radio group. size: The size of the radio group. variant: The variant of the radio group color_scheme: The color of the radio group @@ -515,7 +510,6 @@ class HighLevelRadioGroup(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Additional properties to apply to the accordion item. @@ -538,7 +532,7 @@ class RadioGroup(SimpleNamespace): Literal["row", "column", "row-reverse", "column-reverse"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -626,7 +620,6 @@ class RadioGroup(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -681,7 +674,7 @@ class RadioGroup(SimpleNamespace): items: The items of the radio group. items: The items of the radio group. direction: The direction of the radio group. - gap: The gap between the items of the radio group. + spacing: The gap between the items of the radio group. size: The size of the radio group. variant: The variant of the radio group color_scheme: The color of the radio group @@ -696,7 +689,6 @@ class RadioGroup(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Additional properties to apply to the accordion item. diff --git a/reflex/components/radix/themes/components/scroll_area.pyi b/reflex/components/radix/themes/components/scroll_area.pyi index aef8e18d6..dd3ee45b2 100644 --- a/reflex/components/radix/themes/components/scroll_area.pyi +++ b/reflex/components/radix/themes/components/scroll_area.pyi @@ -98,7 +98,6 @@ class ScrollArea(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -164,7 +163,6 @@ class ScrollArea(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/select.pyi b/reflex/components/radix/themes/components/select.pyi index 85ca6e72b..adb8a1550 100644 --- a/reflex/components/radix/themes/components/select.pyi +++ b/reflex/components/radix/themes/components/select.pyi @@ -100,7 +100,6 @@ class SelectRoot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -177,7 +176,6 @@ class SelectRoot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -273,7 +271,6 @@ class SelectTrigger(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -339,7 +336,6 @@ class SelectTrigger(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -447,7 +443,6 @@ class SelectContent(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -526,7 +521,6 @@ class SelectContent(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -609,7 +603,6 @@ class SelectGroup(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -672,7 +665,6 @@ class SelectGroup(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -757,7 +749,6 @@ class SelectItem(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -822,7 +813,6 @@ class SelectItem(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -905,7 +895,6 @@ class SelectLabel(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -968,7 +957,6 @@ class SelectLabel(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1051,7 +1039,6 @@ class SelectSeparator(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1114,7 +1101,6 @@ class SelectSeparator(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1223,7 +1209,6 @@ class HighLevelSelect(SelectRoot): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1303,7 +1288,6 @@ class HighLevelSelect(SelectRoot): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Additional properties to apply to the select component. @@ -1418,7 +1402,6 @@ class Select(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1498,7 +1481,6 @@ class Select(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Additional properties to apply to the select component. diff --git a/reflex/components/radix/themes/components/separator.pyi b/reflex/components/radix/themes/components/separator.pyi index 0e0ded0ac..12ab6e2fa 100644 --- a/reflex/components/radix/themes/components/separator.pyi +++ b/reflex/components/radix/themes/components/separator.pyi @@ -97,7 +97,6 @@ class Separator(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -163,7 +162,6 @@ class Separator(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/slider.pyi b/reflex/components/radix/themes/components/slider.pyi index 841a47980..581410a23 100644 --- a/reflex/components/radix/themes/components/slider.pyi +++ b/reflex/components/radix/themes/components/slider.pyi @@ -124,7 +124,6 @@ class Slider(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -203,7 +202,6 @@ class Slider(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/radix/themes/components/switch.pyi b/reflex/components/radix/themes/components/switch.pyi index f1ff6a375..d29e661f1 100644 --- a/reflex/components/radix/themes/components/switch.pyi +++ b/reflex/components/radix/themes/components/switch.pyi @@ -111,7 +111,6 @@ class Switch(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -188,7 +187,6 @@ class Switch(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/table.py b/reflex/components/radix/themes/components/table.py index c50bc5eac..aa032f318 100644 --- a/reflex/components/radix/themes/components/table.py +++ b/reflex/components/radix/themes/components/table.py @@ -1,6 +1,6 @@ """Interactive components provided by @radix-ui/themes.""" from types import SimpleNamespace -from typing import List, Literal, Union +from typing import List, Literal from reflex import el from reflex.vars import Var @@ -51,9 +51,6 @@ class TableColumnHeaderCell(el.Th, RadixThemesComponent): # The justification of the column justify: Var[Literal["start", "center", "end"]] - # width of the column - width: Var[Union[str, int]] - _invalid_children: List[str] = [ "TableBody", "TableHeader", @@ -87,9 +84,6 @@ class TableCell(el.Td, RadixThemesComponent): # The justification of the column justify: Var[Literal["start", "center", "end"]] - # width of the column - width: Var[Union[str, int]] - _invalid_children: List[str] = [ "TableBody", "TableHeader", @@ -107,9 +101,6 @@ class TableRowHeaderCell(el.Th, RadixThemesComponent): # The justification of the column justify: Var[Literal["start", "center", "end"]] - # width of the column - width: Var[Union[str, int]] - _invalid_children: List[str] = [ "TableBody", "TableHeader", diff --git a/reflex/components/radix/themes/components/table.pyi b/reflex/components/radix/themes/components/table.pyi index 65a6bf54f..6b911ddb7 100644 --- a/reflex/components/radix/themes/components/table.pyi +++ b/reflex/components/radix/themes/components/table.pyi @@ -8,7 +8,7 @@ from reflex.vars import Var, BaseVar, ComputedVar from reflex.event import EventChain, EventHandler, EventSpec from reflex.style import Style from types import SimpleNamespace -from typing import List, Literal, Union +from typing import List, Literal from reflex import el from reflex.vars import Var from ..base import RadixThemesComponent @@ -139,7 +139,6 @@ class TableRoot(el.Table, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -222,7 +221,6 @@ class TableRoot(el.Table, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -348,7 +346,6 @@ class TableHeader(el.Thead, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -428,7 +425,6 @@ class TableHeader(el.Thead, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -557,7 +553,6 @@ class TableRow(el.Tr, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -637,7 +632,6 @@ class TableRow(el.Tr, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -721,7 +715,6 @@ class TableColumnHeaderCell(el.Th, RadixThemesComponent): Literal["start", "center", "end"], ] ] = None, - width: Optional[Union[Var[Union[str, int]], Union[str, int]]] = None, align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -782,7 +775,6 @@ class TableColumnHeaderCell(el.Th, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -841,7 +833,6 @@ class TableColumnHeaderCell(el.Th, RadixThemesComponent): color: map to CSS default color property. color_scheme: map to radix color property. justify: The justification of the column - width: width of the column align: Alignment of the content within the table header cell col_span: Number of columns a header cell should span headers: IDs of the headers associated with this header cell @@ -868,7 +859,6 @@ class TableColumnHeaderCell(el.Th, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -994,7 +984,6 @@ class TableBody(el.Tbody, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1074,7 +1063,6 @@ class TableBody(el.Tbody, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1158,7 +1146,6 @@ class TableCell(el.Td, RadixThemesComponent): Literal["start", "center", "end"], ] ] = None, - width: Optional[Union[Var[Union[str, int]], Union[str, int]]] = None, align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1216,7 +1203,6 @@ class TableCell(el.Td, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1275,7 +1261,6 @@ class TableCell(el.Td, RadixThemesComponent): color: map to CSS default color property. color_scheme: map to radix color property. justify: The justification of the column - width: width of the column align: Alignment of the content within the table cell col_span: Number of columns a cell should span headers: IDs of the headers associated with this cell @@ -1301,7 +1286,6 @@ class TableCell(el.Td, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1385,7 +1369,6 @@ class TableRowHeaderCell(el.Th, RadixThemesComponent): Literal["start", "center", "end"], ] ] = None, - width: Optional[Union[Var[Union[str, int]], Union[str, int]]] = None, align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1446,7 +1429,6 @@ class TableRowHeaderCell(el.Th, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1505,7 +1487,6 @@ class TableRowHeaderCell(el.Th, RadixThemesComponent): color: map to CSS default color property. color_scheme: map to radix color property. justify: The justification of the column - width: width of the column align: Alignment of the content within the table header cell col_span: Number of columns a header cell should span headers: IDs of the headers associated with this header cell @@ -1532,7 +1513,6 @@ class TableRowHeaderCell(el.Th, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/tabs.pyi b/reflex/components/radix/themes/components/tabs.pyi index f3b635ec2..b671852c1 100644 --- a/reflex/components/radix/themes/components/tabs.pyi +++ b/reflex/components/radix/themes/components/tabs.pyi @@ -96,7 +96,6 @@ class TabsRoot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -165,7 +164,6 @@ class TabsRoot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -249,7 +247,6 @@ class TabsList(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -313,7 +310,6 @@ class TabsList(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -398,7 +394,6 @@ class TabsTrigger(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -463,7 +458,6 @@ class TabsTrigger(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -547,7 +541,6 @@ class TabsContent(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -611,7 +604,6 @@ class TabsContent(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -705,7 +697,6 @@ class Tabs(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -774,7 +765,6 @@ class Tabs(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/components/text_area.pyi b/reflex/components/radix/themes/components/text_area.pyi index 7be25db1a..3ac4d2daf 100644 --- a/reflex/components/radix/themes/components/text_area.pyi +++ b/reflex/components/radix/themes/components/text_area.pyi @@ -154,7 +154,6 @@ class TextArea(RadixThemesComponent, el.Textarea): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -255,7 +254,6 @@ class TextArea(RadixThemesComponent, el.Textarea): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/radix/themes/components/text_field.pyi b/reflex/components/radix/themes/components/text_field.pyi index 127c17fdc..13ca66229 100644 --- a/reflex/components/radix/themes/components/text_field.pyi +++ b/reflex/components/radix/themes/components/text_field.pyi @@ -150,7 +150,6 @@ class TextFieldRoot(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -232,7 +231,6 @@ class TextFieldRoot(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -439,7 +437,6 @@ class TextFieldInput(el.Input, TextFieldRoot): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -556,7 +553,6 @@ class TextFieldInput(el.Input, TextFieldRoot): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -640,7 +636,6 @@ class TextFieldSlot(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -703,7 +698,6 @@ class TextFieldSlot(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -810,7 +804,6 @@ class Input(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -890,7 +883,6 @@ class Input(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -1000,7 +992,6 @@ class TextField(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1080,7 +1071,6 @@ class TextField(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. diff --git a/reflex/components/radix/themes/components/tooltip.pyi b/reflex/components/radix/themes/components/tooltip.pyi index 7709f4d0b..531569ae2 100644 --- a/reflex/components/radix/themes/components/tooltip.pyi +++ b/reflex/components/radix/themes/components/tooltip.pyi @@ -67,7 +67,6 @@ class Tooltip(RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -152,7 +151,6 @@ class Tooltip(RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The keyword arguments diff --git a/reflex/components/radix/themes/layout/base.pyi b/reflex/components/radix/themes/layout/base.pyi index a085807c9..fa3cfd9fa 100644 --- a/reflex/components/radix/themes/layout/base.pyi +++ b/reflex/components/radix/themes/layout/base.pyi @@ -173,7 +173,6 @@ class LayoutComponent(CommonMarginProps, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -252,7 +251,6 @@ class LayoutComponent(CommonMarginProps, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/layout/box.pyi b/reflex/components/radix/themes/layout/box.pyi index 816e7a7d6..59439c2e2 100644 --- a/reflex/components/radix/themes/layout/box.pyi +++ b/reflex/components/radix/themes/layout/box.pyi @@ -124,7 +124,6 @@ class Box(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -203,7 +202,6 @@ class Box(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/layout/center.pyi b/reflex/components/radix/themes/layout/center.pyi index 05799bbfb..c0ea78630 100644 --- a/reflex/components/radix/themes/layout/center.pyi +++ b/reflex/components/radix/themes/layout/center.pyi @@ -80,12 +80,6 @@ class Center(Flex): ] ] = None, as_child: Optional[Union[Var[bool], bool]] = None, - display: Optional[ - Union[ - Var[Literal["none", "inline-flex", "flex"]], - Literal["none", "inline-flex", "flex"], - ] - ] = None, direction: Optional[ Union[ Var[Literal["row", "column", "row-reverse", "column-reverse"]], @@ -110,7 +104,7 @@ class Center(Flex): Literal["nowrap", "wrap", "wrap-reverse"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -161,7 +155,6 @@ class Center(Flex): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -220,12 +213,11 @@ class Center(Flex): color: map to CSS default color property. color_scheme: map to radix color property. as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. - display: How to display the element: "none" | "inline-flex" | "flex" direction: How child items are layed out: "row" | "column" | "row-reverse" | "column-reverse" align: Alignment of children along the main axis: "start" | "center" | "end" | "baseline" | "stretch" justify: Alignment of children along the cross axis: "start" | "center" | "end" | "between" wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse" - gap: Gap between children: "0" - "9" + spacing: Gap between children: "0" - "9" access_key: Provides a hint for generating a keyboard shortcut for the current element. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user. content_editable: Indicates whether the element's content is editable. @@ -247,7 +239,6 @@ class Center(Flex): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/layout/container.pyi b/reflex/components/radix/themes/layout/container.pyi index 92cf5e182..cde82511c 100644 --- a/reflex/components/radix/themes/layout/container.pyi +++ b/reflex/components/radix/themes/layout/container.pyi @@ -131,7 +131,6 @@ class Container(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -211,7 +210,6 @@ class Container(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/layout/flex.py b/reflex/components/radix/themes/layout/flex.py index 39dfdea41..295df7832 100644 --- a/reflex/components/radix/themes/layout/flex.py +++ b/reflex/components/radix/themes/layout/flex.py @@ -1,7 +1,7 @@ """Declarative layout and common spacing props.""" from __future__ import annotations -from typing import Literal +from typing import Dict, Literal from reflex import el from reflex.vars import Var @@ -14,7 +14,6 @@ from ..base import ( ) LiteralFlexDirection = Literal["row", "column", "row-reverse", "column-reverse"] -LiteralFlexDisplay = Literal["none", "inline-flex", "flex"] LiteralFlexWrap = Literal["nowrap", "wrap", "wrap-reverse"] @@ -26,9 +25,6 @@ class Flex(el.Div, RadixThemesComponent): # Change the default rendered element for the one passed as a child, merging their props and behavior. as_child: Var[bool] - # How to display the element: "none" | "inline-flex" | "flex" - display: Var[LiteralFlexDisplay] - # How child items are layed out: "row" | "column" | "row-reverse" | "column-reverse" direction: Var[LiteralFlexDirection] @@ -42,4 +38,7 @@ class Flex(el.Div, RadixThemesComponent): wrap: Var[LiteralFlexWrap] # Gap between children: "0" - "9" - gap: Var[LiteralSize] + spacing: Var[LiteralSize] + + # Reflex maps the "spacing" prop to "gap" prop. + _rename_props: Dict[str, str] = {"spacing": "gap"} diff --git a/reflex/components/radix/themes/layout/flex.pyi b/reflex/components/radix/themes/layout/flex.pyi index 5033a3360..29bca6d21 100644 --- a/reflex/components/radix/themes/layout/flex.pyi +++ b/reflex/components/radix/themes/layout/flex.pyi @@ -7,13 +7,12 @@ from typing import Any, Dict, Literal, Optional, Union, overload from reflex.vars import Var, BaseVar, ComputedVar from reflex.event import EventChain, EventHandler, EventSpec from reflex.style import Style -from typing import Literal +from typing import Dict, Literal from reflex import el from reflex.vars import Var from ..base import LiteralAlign, LiteralJustify, LiteralSize, RadixThemesComponent LiteralFlexDirection = Literal["row", "column", "row-reverse", "column-reverse"] -LiteralFlexDisplay = Literal["none", "inline-flex", "flex"] LiteralFlexWrap = Literal["nowrap", "wrap", "wrap-reverse"] class Flex(el.Div, RadixThemesComponent): @@ -86,12 +85,6 @@ class Flex(el.Div, RadixThemesComponent): ] ] = None, as_child: Optional[Union[Var[bool], bool]] = None, - display: Optional[ - Union[ - Var[Literal["none", "inline-flex", "flex"]], - Literal["none", "inline-flex", "flex"], - ] - ] = None, direction: Optional[ Union[ Var[Literal["row", "column", "row-reverse", "column-reverse"]], @@ -116,7 +109,7 @@ class Flex(el.Div, RadixThemesComponent): Literal["nowrap", "wrap", "wrap-reverse"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -167,7 +160,6 @@ class Flex(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -226,12 +218,11 @@ class Flex(el.Div, RadixThemesComponent): color: map to CSS default color property. color_scheme: map to radix color property. as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. - display: How to display the element: "none" | "inline-flex" | "flex" direction: How child items are layed out: "row" | "column" | "row-reverse" | "column-reverse" align: Alignment of children along the main axis: "start" | "center" | "end" | "baseline" | "stretch" justify: Alignment of children along the cross axis: "start" | "center" | "end" | "between" wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse" - gap: Gap between children: "0" - "9" + spacing: Gap between children: "0" - "9" access_key: Provides a hint for generating a keyboard shortcut for the current element. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user. content_editable: Indicates whether the element's content is editable. @@ -253,7 +244,6 @@ class Flex(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/layout/grid.py b/reflex/components/radix/themes/layout/grid.py index f9c9bd6c8..90665b911 100644 --- a/reflex/components/radix/themes/layout/grid.py +++ b/reflex/components/radix/themes/layout/grid.py @@ -1,7 +1,7 @@ """Declarative layout and common spacing props.""" from __future__ import annotations -from typing import Literal +from typing import Dict, Literal from reflex import el from reflex.vars import Var @@ -13,7 +13,6 @@ from ..base import ( RadixThemesComponent, ) -LiteralGridDisplay = Literal["none", "inline-grid", "grid"] LiteralGridFlow = Literal["row", "column", "dense", "row-dense", "column-dense"] @@ -25,9 +24,6 @@ class Grid(el.Div, RadixThemesComponent): # Change the default rendered element for the one passed as a child, merging their props and behavior. as_child: Var[bool] - # How to display the element: "none" | "inline-grid" | "grid" - display: Var[LiteralGridDisplay] - # Number of columns columns: Var[str] @@ -44,10 +40,17 @@ class Grid(el.Div, RadixThemesComponent): justify: Var[LiteralJustify] # Gap between children: "0" - "9" - gap: Var[LiteralSize] + spacing: Var[LiteralSize] # Gap between children horizontal: "0" - "9" - gap_x: Var[LiteralSize] + spacing_x: Var[LiteralSize] # Gap between children vertical: "0" - "9" - gap_x: Var[LiteralSize] + spacing_y: Var[LiteralSize] + + # Reflex maps the "spacing" prop to "gap" prop. + _rename_props: Dict[str, str] = { + "spacing": "gap", + "spacing_x": "gap_x", + "spacing_y": "gap_y", + } diff --git a/reflex/components/radix/themes/layout/grid.pyi b/reflex/components/radix/themes/layout/grid.pyi index 2b4c03f40..cbe160531 100644 --- a/reflex/components/radix/themes/layout/grid.pyi +++ b/reflex/components/radix/themes/layout/grid.pyi @@ -7,12 +7,11 @@ from typing import Any, Dict, Literal, Optional, Union, overload from reflex.vars import Var, BaseVar, ComputedVar from reflex.event import EventChain, EventHandler, EventSpec from reflex.style import Style -from typing import Literal +from typing import Dict, Literal from reflex import el from reflex.vars import Var from ..base import LiteralAlign, LiteralJustify, LiteralSize, RadixThemesComponent -LiteralGridDisplay = Literal["none", "inline-grid", "grid"] LiteralGridFlow = Literal["row", "column", "dense", "row-dense", "column-dense"] class Grid(el.Div, RadixThemesComponent): @@ -85,12 +84,6 @@ class Grid(el.Div, RadixThemesComponent): ] ] = None, as_child: Optional[Union[Var[bool], bool]] = None, - display: Optional[ - Union[ - Var[Literal["none", "inline-grid", "grid"]], - Literal["none", "inline-grid", "grid"], - ] - ] = None, columns: Optional[Union[Var[str], str]] = None, rows: Optional[Union[Var[str], str]] = None, flow: Optional[ @@ -111,13 +104,19 @@ class Grid(el.Div, RadixThemesComponent): Literal["start", "center", "end", "between"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], ] ] = None, - gap_x: Optional[ + spacing_x: Optional[ + Union[ + Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], + Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], + ] + ] = None, + spacing_y: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -168,7 +167,6 @@ class Grid(el.Div, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -227,14 +225,14 @@ class Grid(el.Div, RadixThemesComponent): color: map to CSS default color property. color_scheme: map to radix color property. as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. - display: How to display the element: "none" | "inline-grid" | "grid" columns: Number of columns rows: Number of rows flow: How the grid items are layed out: "row" | "column" | "dense" | "row-dense" | "column-dense" align: Alignment of children along the main axis: "start" | "center" | "end" | "baseline" | "stretch" justify: Alignment of children along the cross axis: "start" | "center" | "end" | "between" - gap: Gap between children: "0" - "9" - gap_x: Gap between children vertical: "0" - "9" + spacing: Gap between children: "0" - "9" + spacing_x: Gap between children horizontal: "0" - "9" + spacing_y: Gap between children vertical: "0" - "9" access_key: Provides a hint for generating a keyboard shortcut for the current element. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user. content_editable: Indicates whether the element's content is editable. @@ -256,7 +254,6 @@ class Grid(el.Div, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/layout/list.pyi b/reflex/components/radix/themes/layout/list.pyi index 7cda1899e..878cdc9ea 100644 --- a/reflex/components/radix/themes/layout/list.pyi +++ b/reflex/components/radix/themes/layout/list.pyi @@ -44,12 +44,6 @@ class BaseList(Flex, LayoutComponent): items: Optional[Union[Union[Var[Iterable], Iterable], Iterable]] = None, list_style_type: Optional[str] = "", as_child: Optional[Union[Var[bool], bool]] = None, - display: Optional[ - Union[ - Var[Literal["none", "inline-flex", "flex"]], - Literal["none", "inline-flex", "flex"], - ] - ] = None, direction: Optional[ Union[ Var[Literal["row", "column", "row-reverse", "column-reverse"]], @@ -74,7 +68,7 @@ class BaseList(Flex, LayoutComponent): Literal["nowrap", "wrap", "wrap-reverse"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -211,7 +205,6 @@ class BaseList(Flex, LayoutComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -267,12 +260,11 @@ class BaseList(Flex, LayoutComponent): items: A list of items to add to the list. list_style_type: The style of the list. as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. - display: How to display the element: "none" | "inline-flex" | "flex" direction: How child items are layed out: "row" | "column" | "row-reverse" | "column-reverse" align: Alignment of children along the main axis: "start" | "center" | "end" | "baseline" | "stretch" justify: Alignment of children along the cross axis: "start" | "center" | "end" | "between" wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse" - gap: Gap between children: "0" - "9" + spacing: Gap between children: "0" - "9" access_key: Provides a hint for generating a keyboard shortcut for the current element. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user. content_editable: Indicates whether the element's content is editable. @@ -310,7 +302,6 @@ class BaseList(Flex, LayoutComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -328,12 +319,6 @@ class UnorderedList(BaseList): items: Optional[Union[Var[Iterable], Iterable]] = None, list_style_type: Optional[Literal["none", "disc", "circle", "square"]] = "disc", as_child: Optional[Union[Var[bool], bool]] = None, - display: Optional[ - Union[ - Var[Literal["none", "inline-flex", "flex"]], - Literal["none", "inline-flex", "flex"], - ] - ] = None, direction: Optional[ Union[ Var[Literal["row", "column", "row-reverse", "column-reverse"]], @@ -358,7 +343,7 @@ class UnorderedList(BaseList): Literal["nowrap", "wrap", "wrap-reverse"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -495,7 +480,6 @@ class UnorderedList(BaseList): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -551,12 +535,11 @@ class UnorderedList(BaseList): items: A list of items to add to the list. list_style_type: The style of the list. as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. - display: How to display the element: "none" | "inline-flex" | "flex" direction: How child items are layed out: "row" | "column" | "row-reverse" | "column-reverse" align: Alignment of children along the main axis: "start" | "center" | "end" | "baseline" | "stretch" justify: Alignment of children along the cross axis: "start" | "center" | "end" | "between" wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse" - gap: Gap between children: "0" - "9" + spacing: Gap between children: "0" - "9" access_key: Provides a hint for generating a keyboard shortcut for the current element. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user. content_editable: Indicates whether the element's content is editable. @@ -594,7 +577,6 @@ class UnorderedList(BaseList): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -629,12 +611,6 @@ class OrderedList(BaseList): ] ] = "decimal", as_child: Optional[Union[Var[bool], bool]] = None, - display: Optional[ - Union[ - Var[Literal["none", "inline-flex", "flex"]], - Literal["none", "inline-flex", "flex"], - ] - ] = None, direction: Optional[ Union[ Var[Literal["row", "column", "row-reverse", "column-reverse"]], @@ -659,7 +635,7 @@ class OrderedList(BaseList): Literal["nowrap", "wrap", "wrap-reverse"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -796,7 +772,6 @@ class OrderedList(BaseList): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -852,12 +827,11 @@ class OrderedList(BaseList): items: A list of items to add to the list. list_style_type: The style of the list. as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. - display: How to display the element: "none" | "inline-flex" | "flex" direction: How child items are layed out: "row" | "column" | "row-reverse" | "column-reverse" align: Alignment of children along the main axis: "start" | "center" | "end" | "baseline" | "stretch" justify: Alignment of children along the cross axis: "start" | "center" | "end" | "between" wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse" - gap: Gap between children: "0" - "9" + spacing: Gap between children: "0" - "9" access_key: Provides a hint for generating a keyboard shortcut for the current element. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user. content_editable: Indicates whether the element's content is editable. @@ -895,7 +869,6 @@ class OrderedList(BaseList): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the component. @@ -957,7 +930,6 @@ class ListItem(Li): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1031,7 +1003,6 @@ class ListItem(Li): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/radix/themes/layout/section.pyi b/reflex/components/radix/themes/layout/section.pyi index ebcb83546..eed8ee381 100644 --- a/reflex/components/radix/themes/layout/section.pyi +++ b/reflex/components/radix/themes/layout/section.pyi @@ -131,7 +131,6 @@ class Section(el.Section, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -211,7 +210,6 @@ class Section(el.Section, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/layout/spacer.pyi b/reflex/components/radix/themes/layout/spacer.pyi index 6a6718ece..553b5c34f 100644 --- a/reflex/components/radix/themes/layout/spacer.pyi +++ b/reflex/components/radix/themes/layout/spacer.pyi @@ -80,12 +80,6 @@ class Spacer(Flex): ] ] = None, as_child: Optional[Union[Var[bool], bool]] = None, - display: Optional[ - Union[ - Var[Literal["none", "inline-flex", "flex"]], - Literal["none", "inline-flex", "flex"], - ] - ] = None, direction: Optional[ Union[ Var[Literal["row", "column", "row-reverse", "column-reverse"]], @@ -110,7 +104,7 @@ class Spacer(Flex): Literal["nowrap", "wrap", "wrap-reverse"], ] ] = None, - gap: Optional[ + spacing: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], @@ -161,7 +155,6 @@ class Spacer(Flex): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -220,12 +213,11 @@ class Spacer(Flex): color: map to CSS default color property. color_scheme: map to radix color property. as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. - display: How to display the element: "none" | "inline-flex" | "flex" direction: How child items are layed out: "row" | "column" | "row-reverse" | "column-reverse" align: Alignment of children along the main axis: "start" | "center" | "end" | "baseline" | "stretch" justify: Alignment of children along the cross axis: "start" | "center" | "end" | "between" wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse" - gap: Gap between children: "0" - "9" + spacing: Gap between children: "0" - "9" access_key: Provides a hint for generating a keyboard shortcut for the current element. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user. content_editable: Indicates whether the element's content is editable. @@ -247,7 +239,6 @@ class Spacer(Flex): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/layout/stack.py b/reflex/components/radix/themes/layout/stack.py index 02d550c63..afec5a378 100644 --- a/reflex/components/radix/themes/layout/stack.py +++ b/reflex/components/radix/themes/layout/stack.py @@ -1,10 +1,11 @@ """Stack components.""" from __future__ import annotations -from typing import Literal, Optional +from typing import Literal from reflex.components.component import Component +from ..base import LiteralSize from .flex import Flex LiteralJustify = Literal["start", "center", "end"] @@ -18,9 +19,9 @@ class Stack(Flex): def create( cls, *children, - justify: Optional[LiteralJustify] = "start", - align: Optional[LiteralAlign] = "center", - spacing: Optional[str] = "0.5rem", + justify: LiteralJustify = "start", + align: LiteralAlign = "center", + spacing: LiteralSize = "2", **props, ) -> Component: """Create a new instance of the component. @@ -35,15 +36,13 @@ class Stack(Flex): Returns: The stack component. """ - style = props.setdefault("style", {}) - style.update( - { - "alignItems": align, - "justifyContent": justify, - "gap": spacing, - } + return super().create( + *children, + align=align, + justify=justify, + spacing=spacing, + **props, ) - return super().create(*children, **props) class VStack(Stack): diff --git a/reflex/components/radix/themes/layout/stack.pyi b/reflex/components/radix/themes/layout/stack.pyi index e2a785495..5b4239543 100644 --- a/reflex/components/radix/themes/layout/stack.pyi +++ b/reflex/components/radix/themes/layout/stack.pyi @@ -7,8 +7,9 @@ from typing import Any, Dict, Literal, Optional, Union, overload from reflex.vars import Var, BaseVar, ComputedVar from reflex.event import EventChain, EventHandler, EventSpec from reflex.style import Style -from typing import Literal, Optional +from typing import Literal from reflex.components.component import Component +from ..base import LiteralSize from .flex import Flex LiteralJustify = Literal["start", "center", "end"] @@ -22,14 +23,8 @@ class Stack(Flex): *children, justify: Optional[LiteralJustify] = "start", align: Optional[LiteralAlign] = "center", - spacing: Optional[str] = "0.5rem", + spacing: Optional[LiteralSize] = "2", as_child: Optional[Union[Var[bool], bool]] = None, - display: Optional[ - Union[ - Var[Literal["none", "inline-flex", "flex"]], - Literal["none", "inline-flex", "flex"], - ] - ] = None, direction: Optional[ Union[ Var[Literal["row", "column", "row-reverse", "column-reverse"]], @@ -42,12 +37,6 @@ class Stack(Flex): Literal["nowrap", "wrap", "wrap-reverse"], ] ] = None, - gap: Optional[ - Union[ - Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], - Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], - ] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -93,7 +82,6 @@ class Stack(Flex): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -150,10 +138,8 @@ class Stack(Flex): align: The alignment of the stack elements. spacing: The spacing between each stack item. as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. - display: How to display the element: "none" | "inline-flex" | "flex" direction: How child items are layed out: "row" | "column" | "row-reverse" | "column-reverse" wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse" - gap: Gap between children: "0" - "9" access_key: Provides a hint for generating a keyboard shortcut for the current element. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user. content_editable: Indicates whether the element's content is editable. @@ -175,7 +161,6 @@ class Stack(Flex): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the stack. @@ -192,14 +177,8 @@ class VStack(Stack): *children, justify: Optional[LiteralJustify] = "start", align: Optional[LiteralAlign] = "center", - spacing: Optional[str] = "0.5rem", + spacing: Optional[LiteralSize] = "2", as_child: Optional[Union[Var[bool], bool]] = None, - display: Optional[ - Union[ - Var[Literal["none", "inline-flex", "flex"]], - Literal["none", "inline-flex", "flex"], - ] - ] = None, direction: Optional[ Union[ Var[Literal["row", "column", "row-reverse", "column-reverse"]], @@ -212,12 +191,6 @@ class VStack(Stack): Literal["nowrap", "wrap", "wrap-reverse"], ] ] = None, - gap: Optional[ - Union[ - Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], - Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], - ] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -263,7 +236,6 @@ class VStack(Stack): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -320,10 +292,8 @@ class VStack(Stack): align: The alignment of the stack elements. spacing: The spacing between each stack item. as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. - display: How to display the element: "none" | "inline-flex" | "flex" direction: How child items are layed out: "row" | "column" | "row-reverse" | "column-reverse" wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse" - gap: Gap between children: "0" - "9" access_key: Provides a hint for generating a keyboard shortcut for the current element. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user. content_editable: Indicates whether the element's content is editable. @@ -345,7 +315,6 @@ class VStack(Stack): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the stack. @@ -362,14 +331,8 @@ class HStack(Stack): *children, justify: Optional[LiteralJustify] = "start", align: Optional[LiteralAlign] = "center", - spacing: Optional[str] = "0.5rem", + spacing: Optional[LiteralSize] = "2", as_child: Optional[Union[Var[bool], bool]] = None, - display: Optional[ - Union[ - Var[Literal["none", "inline-flex", "flex"]], - Literal["none", "inline-flex", "flex"], - ] - ] = None, direction: Optional[ Union[ Var[Literal["row", "column", "row-reverse", "column-reverse"]], @@ -382,12 +345,6 @@ class HStack(Stack): Literal["nowrap", "wrap", "wrap-reverse"], ] ] = None, - gap: Optional[ - Union[ - Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], - Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"], - ] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -433,7 +390,6 @@ class HStack(Stack): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -490,10 +446,8 @@ class HStack(Stack): align: The alignment of the stack elements. spacing: The spacing between each stack item. as_child: Change the default rendered element for the one passed as a child, merging their props and behavior. - display: How to display the element: "none" | "inline-flex" | "flex" direction: How child items are layed out: "row" | "column" | "row-reverse" | "column-reverse" wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse" - gap: Gap between children: "0" - "9" access_key: Provides a hint for generating a keyboard shortcut for the current element. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user. content_editable: Indicates whether the element's content is editable. @@ -515,7 +469,6 @@ class HStack(Stack): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the stack. diff --git a/reflex/components/radix/themes/typography/blockquote.pyi b/reflex/components/radix/themes/typography/blockquote.pyi index 38915a5fc..801a4d9fb 100644 --- a/reflex/components/radix/themes/typography/blockquote.pyi +++ b/reflex/components/radix/themes/typography/blockquote.pyi @@ -140,7 +140,6 @@ class Blockquote(el.Blockquote, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -223,7 +222,6 @@ class Blockquote(el.Blockquote, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/typography/code.pyi b/reflex/components/radix/themes/typography/code.pyi index 8cc4bfb45..8fe0e0a84 100644 --- a/reflex/components/radix/themes/typography/code.pyi +++ b/reflex/components/radix/themes/typography/code.pyi @@ -145,7 +145,6 @@ class Code(el.Code, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -228,7 +227,6 @@ class Code(el.Code, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/typography/heading.pyi b/reflex/components/radix/themes/typography/heading.pyi index 01db21e4c..705cad9a6 100644 --- a/reflex/components/radix/themes/typography/heading.pyi +++ b/reflex/components/radix/themes/typography/heading.pyi @@ -153,7 +153,6 @@ class Heading(el.H1, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -239,7 +238,6 @@ class Heading(el.H1, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/radix/themes/typography/link.pyi b/reflex/components/radix/themes/typography/link.pyi index 4ccd22c59..ee0bc844c 100644 --- a/reflex/components/radix/themes/typography/link.pyi +++ b/reflex/components/radix/themes/typography/link.pyi @@ -179,7 +179,6 @@ class Link(RadixThemesComponent, A): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -269,7 +268,6 @@ class Link(RadixThemesComponent, A): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/radix/themes/typography/text.pyi b/reflex/components/radix/themes/typography/text.pyi index 7e266cfb8..382b04b3d 100644 --- a/reflex/components/radix/themes/typography/text.pyi +++ b/reflex/components/radix/themes/typography/text.pyi @@ -162,7 +162,6 @@ class Text(el.Span, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -248,7 +247,6 @@ class Text(el.Span, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -371,7 +369,6 @@ class Em(el.Em, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -450,7 +447,6 @@ class Em(el.Em, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -579,7 +575,6 @@ class Kbd(el.Kbd, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -659,7 +654,6 @@ class Kbd(el.Kbd, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -783,7 +777,6 @@ class Quote(el.Q, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -863,7 +856,6 @@ class Quote(el.Q, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -986,7 +978,6 @@ class Strong(el.Strong, RadixThemesComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1065,7 +1056,6 @@ class Strong(el.Strong, RadixThemesComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. @@ -1223,7 +1213,6 @@ class TextNamespace(SimpleNamespace): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1309,7 +1298,6 @@ class TextNamespace(SimpleNamespace): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Component properties. diff --git a/reflex/components/react_player/audio.pyi b/reflex/components/react_player/audio.pyi index 061c9c29e..d45dbcdaf 100644 --- a/reflex/components/react_player/audio.pyi +++ b/reflex/components/react_player/audio.pyi @@ -31,7 +31,6 @@ class Audio(ReactPlayer): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -98,7 +97,6 @@ class Audio(ReactPlayer): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/react_player/react_player.pyi b/reflex/components/react_player/react_player.pyi index 539adc7d6..49ab91ab1 100644 --- a/reflex/components/react_player/react_player.pyi +++ b/reflex/components/react_player/react_player.pyi @@ -30,7 +30,6 @@ class ReactPlayer(NoSSRComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -97,7 +96,6 @@ class ReactPlayer(NoSSRComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/react_player/video.pyi b/reflex/components/react_player/video.pyi index 93627287c..a3c447cb0 100644 --- a/reflex/components/react_player/video.pyi +++ b/reflex/components/react_player/video.pyi @@ -31,7 +31,6 @@ class Video(ReactPlayer): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -98,7 +97,6 @@ class Video(ReactPlayer): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/recharts/cartesian.pyi b/reflex/components/recharts/cartesian.pyi index bf5259651..3af7849a2 100644 --- a/reflex/components/recharts/cartesian.pyi +++ b/reflex/components/recharts/cartesian.pyi @@ -95,7 +95,6 @@ class Axis(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -140,7 +139,6 @@ class Axis(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -220,7 +218,6 @@ class XAxis(Axis): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -265,7 +262,6 @@ class XAxis(Axis): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -345,7 +341,6 @@ class YAxis(Axis): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -390,7 +385,6 @@ class YAxis(Axis): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -457,7 +451,6 @@ class ZAxis(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -520,7 +513,6 @@ class ZAxis(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -555,7 +547,6 @@ class Brush(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_change: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -582,7 +573,6 @@ class Brush(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -615,7 +605,6 @@ class Cartesian(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -650,7 +639,6 @@ class Cartesian(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -729,7 +717,6 @@ class Area(Cartesian): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -772,7 +759,6 @@ class Area(Cartesian): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -812,7 +798,6 @@ class Bar(Cartesian): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -855,7 +840,6 @@ class Bar(Cartesian): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -934,7 +918,6 @@ class Line(Cartesian): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -977,7 +960,6 @@ class Line(Cartesian): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1035,7 +1017,6 @@ class Scatter(Cartesian): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1077,7 +1058,6 @@ class Scatter(Cartesian): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1118,7 +1098,6 @@ class Funnel(Cartesian): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1157,7 +1136,6 @@ class Funnel(Cartesian): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1187,7 +1165,6 @@ class ErrorBar(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1250,7 +1227,6 @@ class ErrorBar(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1284,7 +1260,6 @@ class Reference(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1348,7 +1323,6 @@ class Reference(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1383,7 +1357,6 @@ class ReferenceLine(Reference): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1448,7 +1421,6 @@ class ReferenceLine(Reference): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1483,7 +1455,6 @@ class ReferenceDot(Reference): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1520,7 +1491,6 @@ class ReferenceDot(Reference): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1559,7 +1529,6 @@ class ReferenceArea(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1628,7 +1597,6 @@ class ReferenceArea(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1655,7 +1623,6 @@ class Grid(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1717,7 +1684,6 @@ class Grid(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1749,7 +1715,6 @@ class CartesianGrid(Grid): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1816,7 +1781,6 @@ class CartesianGrid(Grid): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -1862,7 +1826,6 @@ class CartesianAxis(Grid): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -1933,7 +1896,6 @@ class CartesianAxis(Grid): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/recharts/charts.pyi b/reflex/components/recharts/charts.pyi index 4c401901f..2d133cba7 100644 --- a/reflex/components/recharts/charts.pyi +++ b/reflex/components/recharts/charts.pyi @@ -53,7 +53,6 @@ class ChartBase(RechartsCharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -86,7 +85,6 @@ class ChartBase(RechartsCharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the chart component. @@ -132,7 +130,6 @@ class AreaChart(ChartBase): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -166,7 +163,6 @@ class AreaChart(ChartBase): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the chart component. @@ -211,7 +207,6 @@ class BarChart(ChartBase): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -249,7 +244,6 @@ class BarChart(ChartBase): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the chart component. @@ -289,7 +283,6 @@ class LineChart(ChartBase): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -322,7 +315,6 @@ class LineChart(ChartBase): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the chart component. @@ -372,7 +364,6 @@ class ComposedChart(ChartBase): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -410,7 +401,6 @@ class ComposedChart(ChartBase): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the chart component. @@ -451,7 +441,6 @@ class PieChart(ChartBase): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -481,7 +470,6 @@ class PieChart(ChartBase): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the chart component. @@ -528,7 +516,6 @@ class RadarChart(ChartBase): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -567,7 +554,6 @@ class RadarChart(ChartBase): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the chart component. @@ -617,7 +603,6 @@ class RadialBarChart(ChartBase): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -659,7 +644,6 @@ class RadialBarChart(ChartBase): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the chart component. @@ -700,7 +684,6 @@ class ScatterChart(ChartBase): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -739,7 +722,6 @@ class ScatterChart(ChartBase): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the chart component. @@ -773,7 +755,6 @@ class FunnelChart(RechartsCharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -806,7 +787,6 @@ class FunnelChart(RechartsCharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -840,7 +820,6 @@ class Treemap(RechartsCharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -907,7 +886,6 @@ class Treemap(RechartsCharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The properties of the chart component. diff --git a/reflex/components/recharts/general.pyi b/reflex/components/recharts/general.pyi index 43eb3c1fa..8b5cb5c62 100644 --- a/reflex/components/recharts/general.pyi +++ b/reflex/components/recharts/general.pyi @@ -37,7 +37,6 @@ class ResponsiveContainer(Recharts, MemoizationLeaf): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -101,7 +100,6 @@ class ResponsiveContainer(Recharts, MemoizationLeaf): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -176,7 +174,6 @@ class Legend(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -217,7 +214,6 @@ class Legend(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -248,7 +244,6 @@ class GraphingTooltip(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -314,7 +309,6 @@ class GraphingTooltip(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -386,7 +380,6 @@ class Label(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -448,7 +441,6 @@ class Label(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -521,7 +513,6 @@ class LabelList(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -584,7 +575,6 @@ class LabelList(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/recharts/polar.pyi b/reflex/components/recharts/polar.pyi index d19a39f77..8270f1cde 100644 --- a/reflex/components/recharts/polar.pyi +++ b/reflex/components/recharts/polar.pyi @@ -46,7 +46,6 @@ class Pie(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -93,7 +92,6 @@ class Pie(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -132,7 +130,6 @@ class Radar(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -201,7 +198,6 @@ class Radar(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -230,7 +226,6 @@ class RadialBar(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -266,7 +261,6 @@ class RadialBar(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -305,7 +299,6 @@ class PolarAngleAxis(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -347,7 +340,6 @@ class PolarAngleAxis(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -379,7 +371,6 @@ class PolarGrid(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -444,7 +435,6 @@ class PolarGrid(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -522,7 +512,6 @@ class PolarRadiusAxis(Recharts): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_click: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -564,7 +553,6 @@ class PolarRadiusAxis(Recharts): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/recharts/recharts.pyi b/reflex/components/recharts/recharts.pyi index 787095e82..1eb3a2203 100644 --- a/reflex/components/recharts/recharts.pyi +++ b/reflex/components/recharts/recharts.pyi @@ -21,7 +21,6 @@ class Recharts(Component): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -79,7 +78,6 @@ class Recharts(Component): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. @@ -102,7 +100,6 @@ class RechartsCharts(NoSSRComponent, MemoizationLeaf): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -160,7 +157,6 @@ class RechartsCharts(NoSSRComponent, MemoizationLeaf): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: The props of the component. diff --git a/reflex/components/suneditor/editor.pyi b/reflex/components/suneditor/editor.pyi index 92c4b5e2b..867274434 100644 --- a/reflex/components/suneditor/editor.pyi +++ b/reflex/components/suneditor/editor.pyi @@ -126,7 +126,6 @@ class Editor(NoSSRComponent): id: Optional[Any] = None, class_name: Optional[Any] = None, autofocus: Optional[bool] = None, - _rename_props: Optional[Dict[str, str]] = None, custom_attrs: Optional[Dict[str, Union[Var, str]]] = None, on_blur: Optional[ Union[EventHandler, EventSpec, list, function, BaseVar] @@ -227,7 +226,6 @@ class Editor(NoSSRComponent): id: The id for the component. class_name: The class name for the component. autofocus: Whether the component should take the focus once the page is loaded - _rename_props: props to change the name of custom_attrs: custom attribute **props: Any properties to be passed to the Editor diff --git a/reflex/style.py b/reflex/style.py index 6117b3369..3b916da43 100644 --- a/reflex/style.py +++ b/reflex/style.py @@ -41,12 +41,12 @@ toggle_color_mode = BaseVar( breakpoints = ["0", "30em", "48em", "62em", "80em", "96em"] STYLE_PROP_SHORTHAND_MAPPING = { - "paddingX": ("padding-inline-start", "padding-inline-end"), - "paddingY": ("padding-top", "padding-bottom"), - "marginX": ("margin-inline-start", "margin-inline-end"), - "marginY": ("margin-top", "margin-bottom"), + "paddingX": ("paddingInlineStart", "paddingInlineEnd"), + "paddingY": ("paddingTop", "paddingBottom"), + "marginX": ("marginInlineStart", "marginInlineEnd"), + "marginY": ("marginTop", "marginBottom"), "bg": ("background",), - "bgColor": ("background-color",), + "bgColor": ("backgroundColor",), } diff --git a/scripts/pyi_generator.py b/scripts/pyi_generator.py index 2ce0ae61f..2e8936d13 100644 --- a/scripts/pyi_generator.py +++ b/scripts/pyi_generator.py @@ -54,6 +54,7 @@ EXCLUDED_PROPS = [ "special_props", "_invalid_children", "_memoization_mode", + "_rename_props", "_valid_children", "_valid_parents", ] diff --git a/tests/components/typography/test_markdown.py b/tests/components/typography/test_markdown.py index e5580dd5f..32d6c040f 100644 --- a/tests/components/typography/test_markdown.py +++ b/tests/components/typography/test_markdown.py @@ -58,6 +58,6 @@ def test_pass_custom_styles(): comp = md.get_component("h1") # type: ignore assert comp.style == { "color": "red", - "margin-bottom": "0.5em", - "margin-top": "0.5em", + "marginBottom": "0.5em", + "marginTop": "0.5em", } diff --git a/tests/test_style.py b/tests/test_style.py index 79ecee23c..cbe2b2ac1 100644 --- a/tests/test_style.py +++ b/tests/test_style.py @@ -20,17 +20,17 @@ test_style = [ {"::-webkit-scrollbar": {"display": "none"}}, {"::-webkit-scrollbar": {"display": "none"}}, ), - ({"margin_y": "2rem"}, {"margin-bottom": "2rem", "margin-top": "2rem"}), - ({"marginY": "2rem"}, {"margin-bottom": "2rem", "margin-top": "2rem"}), + ({"margin_y": "2rem"}, {"marginBottom": "2rem", "marginTop": "2rem"}), + ({"marginY": "2rem"}, {"marginBottom": "2rem", "marginTop": "2rem"}), ( {"::-webkit-scrollbar": {"bgColor": "red"}}, - {"::-webkit-scrollbar": {"background-color": "red"}}, + {"::-webkit-scrollbar": {"backgroundColor": "red"}}, ), ( {"paddingX": ["2rem", "3rem"]}, { - "padding-inline-start": ["2rem", "3rem"], - "padding-inline-end": ["2rem", "3rem"], + "paddingInlineStart": ["2rem", "3rem"], + "paddingInlineEnd": ["2rem", "3rem"], }, ), ]