From 3136a86e5887afa875f497fc01a0121d307ceb1b Mon Sep 17 00:00:00 2001 From: Masen Furer Date: Fri, 9 Feb 2024 16:13:35 -0800 Subject: [PATCH] [REF-1921] Remove HTML attributes that shadow CSS props (#2566) --- reflex/components/core/html.pyi | 4 - reflex/components/el/elements/base.py | 3 - reflex/components/el/elements/base.pyi | 4 - reflex/components/el/elements/forms.py | 6 - reflex/components/el/elements/forms.pyi | 60 ---------- reflex/components/el/elements/inline.pyi | 112 ------------------ reflex/components/el/elements/media.py | 36 ------ reflex/components/el/elements/media.pyi | 104 ---------------- reflex/components/el/elements/metadata.pyi | 16 --- reflex/components/el/elements/other.pyi | 28 ----- reflex/components/el/elements/scripts.py | 6 - reflex/components/el/elements/scripts.pyi | 20 ---- reflex/components/el/elements/sectioning.py | 4 - reflex/components/el/elements/sectioning.pyi | 67 ----------- reflex/components/el/elements/tables.py | 36 ------ reflex/components/el/elements/tables.pyi | 88 -------------- reflex/components/el/elements/typography.py | 3 - reflex/components/el/elements/typography.pyi | 64 ---------- reflex/components/radix/themes/color_mode.pyi | 4 - .../radix/themes/components/alertdialog.pyi | 4 - .../radix/themes/components/badge.pyi | 4 - .../radix/themes/components/button.pyi | 4 - .../radix/themes/components/callout.pyi | 20 ---- .../radix/themes/components/card.pyi | 4 - .../radix/themes/components/dialog.pyi | 4 - .../radix/themes/components/hovercard.pyi | 4 - .../radix/themes/components/iconbutton.pyi | 4 - .../radix/themes/components/inset.pyi | 4 - .../radix/themes/components/popover.pyi | 4 - .../radix/themes/components/table.pyi | 72 ----------- .../radix/themes/components/textarea.pyi | 4 - .../radix/themes/components/textfield.pyi | 16 --- reflex/components/radix/themes/layout/box.pyi | 4 - .../components/radix/themes/layout/center.pyi | 4 - .../radix/themes/layout/container.pyi | 4 - .../components/radix/themes/layout/flex.pyi | 4 - .../components/radix/themes/layout/grid.pyi | 4 - .../components/radix/themes/layout/list.pyi | 16 --- .../radix/themes/layout/section.pyi | 4 - .../components/radix/themes/layout/spacer.pyi | 4 - .../components/radix/themes/layout/stack.pyi | 12 -- .../radix/themes/typography/blockquote.pyi | 4 - .../radix/themes/typography/code.pyi | 4 - .../components/radix/themes/typography/em.pyi | 4 - .../radix/themes/typography/heading.pyi | 4 - .../radix/themes/typography/kbd.pyi | 4 - .../radix/themes/typography/link.pyi | 4 - .../radix/themes/typography/quote.pyi | 4 - .../radix/themes/typography/strong.pyi | 4 - .../radix/themes/typography/text.pyi | 4 - 50 files changed, 905 deletions(-) diff --git a/reflex/components/core/html.pyi b/reflex/components/core/html.pyi index 48d6e37ed..f16001435 100644 --- a/reflex/components/core/html.pyi +++ b/reflex/components/core/html.pyi @@ -60,9 +60,6 @@ class Html(Div): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -138,7 +135,6 @@ class Html(Div): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/el/elements/base.py b/reflex/components/el/elements/base.py index 207f98007..fd2dc8cbb 100644 --- a/reflex/components/el/elements/base.py +++ b/reflex/components/el/elements/base.py @@ -55,6 +55,3 @@ class BaseHTML(Element): # Defines a tooltip for the element. title: Var[Union[str, int, bool]] - - # Specifies whether the content of an element should be translated or not. - translate: Var[Union[str, int, bool]] diff --git a/reflex/components/el/elements/base.pyi b/reflex/components/el/elements/base.pyi index 6920c274d..cdd2a8af4 100644 --- a/reflex/components/el/elements/base.pyi +++ b/reflex/components/el/elements/base.pyi @@ -57,9 +57,6 @@ class BaseHTML(Element): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -134,7 +131,6 @@ class BaseHTML(Element): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/el/elements/forms.py b/reflex/components/el/elements/forms.py index 8be9a5c89..141181732 100644 --- a/reflex/components/el/elements/forms.py +++ b/reflex/components/el/elements/forms.py @@ -149,9 +149,6 @@ class Input(BaseHTML): # Specifies where to display the response after submitting the form (for type="submit" buttons) form_target: Var[Union[str, int, bool]] - # The height of the input (only for type="image") - height: Var[Union[str, int, bool]] - # References a datalist for suggested options list: Var[Union[str, int, bool]] @@ -203,9 +200,6 @@ class Input(BaseHTML): # Value of the input value: Var[Union[str, int, bool]] - # The width of the input (only for type="image") - width: Var[Union[str, int, bool]] - def get_event_triggers(self) -> Dict[str, Any]: """Get the event triggers that pass the component's value to the handler. diff --git a/reflex/components/el/elements/forms.pyi b/reflex/components/el/elements/forms.pyi index 054c3b7e9..402f22550 100644 --- a/reflex/components/el/elements/forms.pyi +++ b/reflex/components/el/elements/forms.pyi @@ -84,9 +84,6 @@ class Button(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -172,7 +169,6 @@ class Button(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -236,9 +232,6 @@ class Datalist(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -313,7 +306,6 @@ class Datalist(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -491,9 +483,6 @@ class Form(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -577,7 +566,6 @@ class Form(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -640,9 +628,6 @@ class Input(BaseHTML): form_target: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - height: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, list: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, max: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, max_length: Optional[ @@ -678,9 +663,6 @@ class Input(BaseHTML): value: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - width: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -721,9 +703,6 @@ class Input(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -805,7 +784,6 @@ class Input(BaseHTML): form_method: HTTP method to use for sending form data (for type="submit" buttons) form_no_validate: Bypasses form validation when submitting (for type="submit" buttons) form_target: Specifies where to display the response after submitting the form (for type="submit" buttons) - height: The height of the input (only for type="image") list: References a datalist for suggested options max: Specifies the maximum value for the input max_length: Specifies the maximum number of characters allowed in the input @@ -823,7 +801,6 @@ class Input(BaseHTML): type: Specifies the type of input use_map: Name of the image map used with the input value: Value of the input - width: The width of the input (only for type="image") 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. @@ -840,7 +817,6 @@ class Input(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -908,9 +884,6 @@ class Label(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -987,7 +960,6 @@ class Label(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1051,9 +1023,6 @@ class Legend(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1128,7 +1097,6 @@ class Legend(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1203,9 +1171,6 @@ class Meter(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1287,7 +1252,6 @@ class Meter(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1357,9 +1321,6 @@ class Optgroup(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1436,7 +1397,6 @@ class Optgroup(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1512,9 +1472,6 @@ class Option(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1593,7 +1550,6 @@ class Option(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1662,9 +1618,6 @@ class Output(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1742,7 +1695,6 @@ class Output(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1811,9 +1763,6 @@ class Progress(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1891,7 +1840,6 @@ class Progress(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1974,9 +1922,6 @@ class Select(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2062,7 +2007,6 @@ class Select(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2162,9 +2106,6 @@ class Textarea(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2263,7 +2204,6 @@ class Textarea(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/el/elements/inline.pyi b/reflex/components/el/elements/inline.pyi index 598d3cd93..ffb1daf90 100644 --- a/reflex/components/el/elements/inline.pyi +++ b/reflex/components/el/elements/inline.pyi @@ -78,9 +78,6 @@ class A(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -164,7 +161,6 @@ class A(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -228,9 +224,6 @@ class Abbr(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -305,7 +298,6 @@ class Abbr(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -369,9 +361,6 @@ class B(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -446,7 +435,6 @@ class B(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -510,9 +498,6 @@ class Bdi(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -587,7 +572,6 @@ class Bdi(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -651,9 +635,6 @@ class Bdo(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -728,7 +709,6 @@ class Bdo(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -792,9 +772,6 @@ class Br(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -869,7 +846,6 @@ class Br(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -933,9 +909,6 @@ class Cite(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1010,7 +983,6 @@ class Cite(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1074,9 +1046,6 @@ class Code(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1151,7 +1120,6 @@ class Code(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1218,9 +1186,6 @@ class Data(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1296,7 +1261,6 @@ class Data(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1360,9 +1324,6 @@ class Dfn(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1437,7 +1398,6 @@ class Dfn(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1501,9 +1461,6 @@ class Em(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1578,7 +1535,6 @@ class Em(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1642,9 +1598,6 @@ class I(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1719,7 +1672,6 @@ class I(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1783,9 +1735,6 @@ class Kbd(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1860,7 +1809,6 @@ class Kbd(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1924,9 +1872,6 @@ class Mark(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2001,7 +1946,6 @@ class Mark(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2066,9 +2010,6 @@ class Q(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2144,7 +2085,6 @@ class Q(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2208,9 +2148,6 @@ class Rp(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2285,7 +2222,6 @@ class Rp(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2349,9 +2285,6 @@ class Rt(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2426,7 +2359,6 @@ class Rt(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2490,9 +2422,6 @@ class Ruby(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2567,7 +2496,6 @@ class Ruby(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2631,9 +2559,6 @@ class S(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2708,7 +2633,6 @@ class S(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2772,9 +2696,6 @@ class Samp(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2849,7 +2770,6 @@ class Samp(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2913,9 +2833,6 @@ class Small(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2990,7 +2907,6 @@ class Small(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -3054,9 +2970,6 @@ class Span(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -3131,7 +3044,6 @@ class Span(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -3195,9 +3107,6 @@ class Strong(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -3272,7 +3181,6 @@ class Strong(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -3336,9 +3244,6 @@ class Sub(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -3413,7 +3318,6 @@ class Sub(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -3477,9 +3381,6 @@ class Sup(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -3554,7 +3455,6 @@ class Sup(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -3621,9 +3521,6 @@ class Time(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -3699,7 +3596,6 @@ class Time(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -3763,9 +3659,6 @@ class U(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -3840,7 +3733,6 @@ class U(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -3904,9 +3796,6 @@ class Wbr(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -3981,7 +3870,6 @@ class Wbr(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/el/elements/media.py b/reflex/components/el/elements/media.py index 464fe82d8..787404ceb 100644 --- a/reflex/components/el/elements/media.py +++ b/reflex/components/el/elements/media.py @@ -86,9 +86,6 @@ class Img(BaseHTML): # Alternative text for the image alt: Var[Union[str, int, bool]] - # Border width around the image - border: Var[Union[str, int, bool]] - # Configures the CORS requests for the image cross_origin: Var[Union[str, int, bool]] @@ -167,9 +164,6 @@ class Video(BaseHTML): # Configures the CORS requests for the video cross_origin: Var[Union[str, int, bool]] - # The intrinsic height of the video - height: Var[Union[str, int, bool]] - # Specifies that the video will loop loop: Var[Union[str, int, bool]] @@ -188,27 +182,18 @@ class Video(BaseHTML): # URL of the video to play src: Var[Union[str, int, bool]] - # The intrinsic width of the video - width: Var[Union[str, int, bool]] - class Embed(BaseHTML): """Display the embed element.""" tag = "embed" - # The intrinsic height of the embedded content - height: Var[Union[str, int, bool]] - # URL of the embedded content src: Var[Union[str, int, bool]] # Media type of the embedded content type: Var[Union[str, int, bool]] - # The intrinsic width of the embedded content - width: Var[Union[str, int, bool]] - class Iframe(BaseHTML): """Display the iframe element.""" @@ -224,9 +209,6 @@ class Iframe(BaseHTML): # Content Security Policy to apply to the iframe's content csp: Var[Union[str, int, bool]] - # The height of the iframe - height: Var[Union[str, int, bool]] - # Specifies the loading behavior of the iframe loading: Var[Union[str, int, bool]] @@ -245,27 +227,18 @@ class Iframe(BaseHTML): # HTML content to embed directly within the iframe src_doc: Var[Union[str, int, bool]] - # The width of the iframe - width: Var[Union[str, int, bool]] - class Object(BaseHTML): """Display the object element.""" tag = "object" - # Border width around the object - border: Var[Union[str, int, bool]] - # URL of the data to be used by the object data: Var[Union[str, int, bool]] # Associates the object with a form element form: Var[Union[str, int, bool]] - # The intrinsic height of the object - height: Var[Union[str, int, bool]] - # Name of the object, used for scripting or as a target for forms and links name: Var[Union[str, int, bool]] @@ -275,9 +248,6 @@ class Object(BaseHTML): # Name of an image map to use with the object use_map: Var[Union[str, int, bool]] - # The intrinsic width of the object - width: Var[Union[str, int, bool]] - class Picture(BaseHTML): """Display the picture element.""" @@ -319,12 +289,6 @@ class Svg(BaseHTML): tag = "svg" - # Specifies the width of the element - width: Var[Union[str, int, bool]] - - # Specifies the height of the element - height: Var[Union[str, int, bool]] - class Path(BaseHTML): """Display the path element.""" diff --git a/reflex/components/el/elements/media.pyi b/reflex/components/el/elements/media.pyi index cf4cbb1a4..f6479bef1 100644 --- a/reflex/components/el/elements/media.pyi +++ b/reflex/components/el/elements/media.pyi @@ -82,9 +82,6 @@ class Area(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -170,7 +167,6 @@ class Area(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -254,9 +250,6 @@ class Audio(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -339,7 +332,6 @@ class Audio(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -367,9 +359,6 @@ class Img(BaseHTML): Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, alt: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, - border: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, cross_origin: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -438,9 +427,6 @@ class Img(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -501,7 +487,6 @@ class Img(BaseHTML): *children: The children of the component. align: Image alignment with respect to its surrounding elements alt: Alternative text for the image - border: Border width around the image cross_origin: Configures the CORS requests for the image decoding: How the image should be decoded intrinsicsize: Specifies an intrinsic size for the image @@ -528,7 +513,6 @@ class Img(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -593,9 +577,6 @@ class Map(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -671,7 +652,6 @@ class Map(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -746,9 +726,6 @@ class Track(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -828,7 +805,6 @@ class Track(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -864,9 +840,6 @@ class Video(BaseHTML): cross_origin: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - height: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, loop: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, muted: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] @@ -881,9 +854,6 @@ class Video(BaseHTML): Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, src: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, - width: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -924,9 +894,6 @@ class Video(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -989,14 +956,12 @@ class Video(BaseHTML): buffered: Represents the time range of the buffered media controls: Displays the standard video controls cross_origin: Configures the CORS requests for the video - height: The intrinsic height of the video loop: Specifies that the video will loop muted: Indicates whether the video is muted by default plays_inline: Indicates that the video should play 'inline', inside its element's playback area poster: URL of an image to show while the video is downloading, or until the user hits the play button preload: Specifies how the video file should be preloaded src: URL of the video to play - width: The intrinsic width of the video 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. @@ -1013,7 +978,6 @@ class Video(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1037,14 +1001,8 @@ class Embed(BaseHTML): def create( # type: ignore cls, *children, - height: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, src: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, type: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, - width: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1085,9 +1043,6 @@ class Embed(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1146,10 +1101,8 @@ class Embed(BaseHTML): Args: *children: The children of the component. - height: The intrinsic height of the embedded content src: URL of the embedded content type: Media type of the embedded content - width: The intrinsic width of the embedded content 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. @@ -1166,7 +1119,6 @@ class Embed(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1197,9 +1149,6 @@ class Iframe(BaseHTML): Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, csp: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, - height: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, loading: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1214,9 +1163,6 @@ class Iframe(BaseHTML): src_doc: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - width: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1257,9 +1203,6 @@ class Iframe(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1321,14 +1264,12 @@ class Iframe(BaseHTML): align: Alignment of the iframe within the page or surrounding elements allow: Permissions policy for the iframe csp: Content Security Policy to apply to the iframe's content - height: The height of the iframe loading: Specifies the loading behavior of the iframe name: Name of the iframe, used as a target for hyperlinks and forms referrer_policy: Referrer policy for the iframe sandbox: Security restrictions for the content in the iframe src: URL of the document to display in the iframe src_doc: HTML content to embed directly within the iframe - width: The width of the iframe 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. @@ -1345,7 +1286,6 @@ class Iframe(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1369,22 +1309,13 @@ class Object(BaseHTML): def create( # type: ignore cls, *children, - border: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, data: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, form: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, - height: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, name: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, type: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, use_map: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - width: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1425,9 +1356,6 @@ class Object(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1486,14 +1414,11 @@ class Object(BaseHTML): Args: *children: The children of the component. - border: Border width around the object data: URL of the data to be used by the object form: Associates the object with a form element - height: The intrinsic height of the object name: Name of the object, used for scripting or as a target for forms and links type: Media type of the data specified in the data attribute use_map: Name of an image map to use with the object - width: The intrinsic width of the object 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. @@ -1510,7 +1435,6 @@ class Object(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1574,9 +1498,6 @@ class Picture(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1651,7 +1572,6 @@ class Picture(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1715,9 +1635,6 @@ class Portal(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1792,7 +1709,6 @@ class Portal(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1867,9 +1783,6 @@ class Source(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1949,7 +1862,6 @@ class Source(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1973,12 +1885,6 @@ class Svg(BaseHTML): def create( # type: ignore cls, *children, - width: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - height: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -2019,9 +1925,6 @@ class Svg(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2080,8 +1983,6 @@ class Svg(BaseHTML): Args: *children: The children of the component. - width: Specifies the width of the element - height: Specifies the height of the element 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. @@ -2098,7 +1999,6 @@ class Svg(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2163,9 +2063,6 @@ class Path(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2241,7 +2138,6 @@ class Path(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/el/elements/metadata.pyi b/reflex/components/el/elements/metadata.pyi index 0b8c11898..9bfb237b2 100644 --- a/reflex/components/el/elements/metadata.pyi +++ b/reflex/components/el/elements/metadata.pyi @@ -62,9 +62,6 @@ class Base(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -139,7 +136,6 @@ class Base(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -203,9 +199,6 @@ class Head(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -280,7 +273,6 @@ class Head(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -365,9 +357,6 @@ class Link(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -442,7 +431,6 @@ class Link(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -516,9 +504,6 @@ class Meta(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -593,7 +578,6 @@ class Meta(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/el/elements/other.pyi b/reflex/components/el/elements/other.pyi index 4f3dc0337..3753d7926 100644 --- a/reflex/components/el/elements/other.pyi +++ b/reflex/components/el/elements/other.pyi @@ -58,9 +58,6 @@ class Details(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -136,7 +133,6 @@ class Details(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -201,9 +197,6 @@ class Dialog(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -279,7 +272,6 @@ class Dialog(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -343,9 +335,6 @@ class Summary(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -420,7 +409,6 @@ class Summary(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -484,9 +472,6 @@ class Slot(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -561,7 +546,6 @@ class Slot(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -625,9 +609,6 @@ class Template(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -702,7 +683,6 @@ class Template(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -766,9 +746,6 @@ class Math(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -843,7 +820,6 @@ class Math(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -910,9 +886,6 @@ class Html(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -988,7 +961,6 @@ class Html(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/el/elements/scripts.py b/reflex/components/el/elements/scripts.py index 0eefa43ab..a37a32494 100644 --- a/reflex/components/el/elements/scripts.py +++ b/reflex/components/el/elements/scripts.py @@ -11,12 +11,6 @@ class Canvas(BaseHTML): tag = "canvas" - # The height of the canvas in CSS pixels - height: Var[Union[str, int, bool]] - - # The width of the canvas in CSS pixels - width: Var[Union[str, int, bool]] - class Noscript(BaseHTML): """Display the noscript element.""" diff --git a/reflex/components/el/elements/scripts.pyi b/reflex/components/el/elements/scripts.pyi index 9c5a0233b..5d9f57a0c 100644 --- a/reflex/components/el/elements/scripts.pyi +++ b/reflex/components/el/elements/scripts.pyi @@ -17,12 +17,6 @@ class Canvas(BaseHTML): def create( # type: ignore cls, *children, - height: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - width: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -63,9 +57,6 @@ class Canvas(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -124,8 +115,6 @@ class Canvas(BaseHTML): Args: *children: The children of the component. - height: The height of the canvas in CSS pixels - width: The width of the canvas in CSS pixels 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. @@ -142,7 +131,6 @@ class Canvas(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -206,9 +194,6 @@ class Noscript(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -283,7 +268,6 @@ class Noscript(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -370,9 +354,6 @@ class Script(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -456,7 +437,6 @@ class Script(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/el/elements/sectioning.py b/reflex/components/el/elements/sectioning.py index 140a661bb..ce3549573 100644 --- a/reflex/components/el/elements/sectioning.py +++ b/reflex/components/el/elements/sectioning.py @@ -1,5 +1,4 @@ """Element classes. This is an auto-generated file. Do not edit. See ../generate.py.""" -from typing import Union from reflex.vars import Var as Var @@ -11,9 +10,6 @@ class Body(BaseHTML): # noqa: E742 tag = "body" - bgcolor: Var[Union[str, int, bool]] - background: Var[Union[str, int, bool]] - class Address(BaseHTML): # noqa: E742 """Display the address element.""" diff --git a/reflex/components/el/elements/sectioning.pyi b/reflex/components/el/elements/sectioning.pyi index ad9b4afee..69e984532 100644 --- a/reflex/components/el/elements/sectioning.pyi +++ b/reflex/components/el/elements/sectioning.pyi @@ -7,7 +7,6 @@ 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 Union from reflex.vars import Var as Var from .base import BaseHTML @@ -17,12 +16,6 @@ class Body(BaseHTML): def create( # type: ignore cls, *children, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - background: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -63,9 +56,6 @@ class Body(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -140,7 +130,6 @@ class Body(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -204,9 +193,6 @@ class Address(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -281,7 +267,6 @@ class Address(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -345,9 +330,6 @@ class Article(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -422,7 +404,6 @@ class Article(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -486,9 +467,6 @@ class Aside(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -563,7 +541,6 @@ class Aside(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -627,9 +604,6 @@ class Footer(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -704,7 +678,6 @@ class Footer(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -768,9 +741,6 @@ class Header(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -845,7 +815,6 @@ class Header(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -909,9 +878,6 @@ class H1(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -986,7 +952,6 @@ class H1(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1050,9 +1015,6 @@ class H2(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1127,7 +1089,6 @@ class H2(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1191,9 +1152,6 @@ class H3(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1268,7 +1226,6 @@ class H3(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1332,9 +1289,6 @@ class H4(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1409,7 +1363,6 @@ class H4(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1473,9 +1426,6 @@ class H5(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1550,7 +1500,6 @@ class H5(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1614,9 +1563,6 @@ class H6(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1691,7 +1637,6 @@ class H6(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1755,9 +1700,6 @@ class Main(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1832,7 +1774,6 @@ class Main(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1896,9 +1837,6 @@ class Nav(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1973,7 +1911,6 @@ class Nav(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2037,9 +1974,6 @@ class Section(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2114,7 +2048,6 @@ class Section(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/el/elements/tables.py b/reflex/components/el/elements/tables.py index 49fbb6452..1277e1bea 100644 --- a/reflex/components/el/elements/tables.py +++ b/reflex/components/el/elements/tables.py @@ -23,9 +23,6 @@ class Col(BaseHTML): # Alignment of the content within the column align: Var[Union[str, int, bool]] - # Background color of the column - bgcolor: Var[Union[str, int, bool]] - # Number of columns the col element spans span: Var[Union[str, int, bool]] @@ -38,9 +35,6 @@ class Colgroup(BaseHTML): # Alignment of the content within the column group align: Var[Union[str, int, bool]] - # Background color of the column group - bgcolor: Var[Union[str, int, bool]] - # Number of columns the colgroup element spans span: Var[Union[str, int, bool]] @@ -53,15 +47,6 @@ class Table(BaseHTML): # Alignment of the table align: Var[Union[str, int, bool]] - # Background image for the table - background: Var[Union[str, int, bool]] - - # Background color of the table - bgcolor: Var[Union[str, int, bool]] - - # Specifies the width of the border around the table - border: Var[Union[str, int, bool]] - # Provides a summary of the table's purpose and structure summary: Var[Union[str, int, bool]] @@ -74,9 +59,6 @@ class Tbody(BaseHTML): # Alignment of the content within the table body align: Var[Union[str, int, bool]] - # Background color of the table body - bgcolor: Var[Union[str, int, bool]] - class Td(BaseHTML): """Display the td element.""" @@ -86,12 +68,6 @@ class Td(BaseHTML): # Alignment of the content within the table cell align: Var[Union[str, int, bool]] - # Background image for the table cell - background: Var[Union[str, int, bool]] - - # Background color of the table cell - bgcolor: Var[Union[str, int, bool]] - # Number of columns a cell should span col_span: Var[Union[str, int, bool]] @@ -110,9 +86,6 @@ class Tfoot(BaseHTML): # Alignment of the content within the table footer align: Var[Union[str, int, bool]] - # Background color of the table footer - bgcolor: Var[Union[str, int, bool]] - class Th(BaseHTML): """Display the th element.""" @@ -122,12 +95,6 @@ class Th(BaseHTML): # Alignment of the content within the table header cell align: Var[Union[str, int, bool]] - # Background image for the table header cell - background: Var[Union[str, int, bool]] - - # Background color of the table header cell - bgcolor: Var[Union[str, int, bool]] - # Number of columns a header cell should span col_span: Var[Union[str, int, bool]] @@ -157,6 +124,3 @@ class Tr(BaseHTML): # Alignment of the content within the table row align: Var[Union[str, int, bool]] - - # Background color of the table row - bgcolor: Var[Union[str, int, bool]] diff --git a/reflex/components/el/elements/tables.pyi b/reflex/components/el/elements/tables.pyi index d07b77978..a01095c53 100644 --- a/reflex/components/el/elements/tables.pyi +++ b/reflex/components/el/elements/tables.pyi @@ -60,9 +60,6 @@ class Caption(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -138,7 +135,6 @@ class Caption(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -165,9 +161,6 @@ class Col(BaseHTML): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, span: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] @@ -209,9 +202,6 @@ class Col(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -271,7 +261,6 @@ class Col(BaseHTML): Args: *children: The children of the component. align: Alignment of the content within the column - bgcolor: Background color of the column span: Number of columns the col element spans 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. @@ -289,7 +278,6 @@ class Col(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -316,9 +304,6 @@ class Colgroup(BaseHTML): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, span: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] @@ -360,9 +345,6 @@ class Colgroup(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -422,7 +404,6 @@ class Colgroup(BaseHTML): Args: *children: The children of the component. align: Alignment of the content within the column group - bgcolor: Background color of the column group span: Number of columns the colgroup element spans 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. @@ -440,7 +421,6 @@ class Colgroup(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -467,15 +447,6 @@ class Table(BaseHTML): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - background: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - border: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, summary: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -519,9 +490,6 @@ class Table(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -581,9 +549,6 @@ class Table(BaseHTML): Args: *children: The children of the component. align: Alignment of the table - background: Background image for the table - bgcolor: Background color of the table - border: Specifies the width of the border around the table summary: Provides a summary of the table's purpose and structure 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. @@ -601,7 +566,6 @@ class Table(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -628,9 +592,6 @@ class Tbody(BaseHTML): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -671,9 +632,6 @@ class Tbody(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -733,7 +691,6 @@ class Tbody(BaseHTML): Args: *children: The children of the component. align: Alignment of the content within the table body - bgcolor: Background color of the table body 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. @@ -750,7 +707,6 @@ class Tbody(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -777,12 +733,6 @@ class Td(BaseHTML): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - background: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, col_span: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -832,9 +782,6 @@ class Td(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -894,8 +841,6 @@ class Td(BaseHTML): Args: *children: The children of the component. align: Alignment of the content within the table cell - background: Background image for the table cell - bgcolor: Background color of the table cell col_span: Number of columns a cell should span headers: IDs of the headers associated with this cell row_span: Number of rows a cell should span @@ -915,7 +860,6 @@ class Td(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -942,9 +886,6 @@ class Tfoot(BaseHTML): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -985,9 +926,6 @@ class Tfoot(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1047,7 +985,6 @@ class Tfoot(BaseHTML): Args: *children: The children of the component. align: Alignment of the content within the table footer - bgcolor: Background color of the table footer 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. @@ -1064,7 +1001,6 @@ class Tfoot(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1091,12 +1027,6 @@ class Th(BaseHTML): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - background: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, col_span: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1149,9 +1079,6 @@ class Th(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1211,8 +1138,6 @@ class Th(BaseHTML): Args: *children: The children of the component. align: Alignment of the content within the table header cell - background: Background image for the table header cell - bgcolor: Background color of the table header cell col_span: Number of columns a header cell should span headers: IDs of the headers associated with this header cell row_span: Number of rows a header cell should span @@ -1233,7 +1158,6 @@ class Th(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1300,9 +1224,6 @@ class Thead(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1378,7 +1299,6 @@ class Thead(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1405,9 +1325,6 @@ class Tr(BaseHTML): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1448,9 +1365,6 @@ class Tr(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1510,7 +1424,6 @@ class Tr(BaseHTML): Args: *children: The children of the component. align: Alignment of the content within the table row - bgcolor: Background color of the table row 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. @@ -1527,7 +1440,6 @@ class Tr(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/el/elements/typography.py b/reflex/components/el/elements/typography.py index 01684951c..f8e3769fa 100644 --- a/reflex/components/el/elements/typography.py +++ b/reflex/components/el/elements/typography.py @@ -53,9 +53,6 @@ class Hr(BaseHTML): # Used to specify the alignment of text content of The Element. this attribute is used in all elements. align: Var[Union[str, int, bool]] - # Used to specify the color of a Horizontal rule. - color: Var[Union[str, int, bool]] - class Li(BaseHTML): """Display the li element.""" diff --git a/reflex/components/el/elements/typography.pyi b/reflex/components/el/elements/typography.pyi index 08f5c9b32..2f30c4805 100644 --- a/reflex/components/el/elements/typography.pyi +++ b/reflex/components/el/elements/typography.pyi @@ -58,9 +58,6 @@ class Blockquote(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -136,7 +133,6 @@ class Blockquote(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -200,9 +196,6 @@ class Dd(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -277,7 +270,6 @@ class Dd(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -341,9 +333,6 @@ class Div(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -418,7 +407,6 @@ class Div(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -482,9 +470,6 @@ class Dl(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -559,7 +544,6 @@ class Dl(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -623,9 +607,6 @@ class Dt(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -700,7 +681,6 @@ class Dt(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -764,9 +744,6 @@ class Figcaption(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -841,7 +818,6 @@ class Figcaption(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -868,9 +844,6 @@ class Hr(BaseHTML): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - color: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -911,9 +884,6 @@ class Hr(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -973,7 +943,6 @@ class Hr(BaseHTML): Args: *children: The children of the component. align: Used to specify the alignment of text content of The Element. this attribute is used in all elements. - color: Used to specify the color of a Horizontal rule. 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. @@ -990,7 +959,6 @@ class Hr(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1054,9 +1022,6 @@ class Li(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1131,7 +1096,6 @@ class Li(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1196,9 +1160,6 @@ class Menu(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1274,7 +1235,6 @@ class Menu(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1345,9 +1305,6 @@ class Ol(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1425,7 +1382,6 @@ class Ol(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1489,9 +1445,6 @@ class P(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1566,7 +1519,6 @@ class P(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1630,9 +1582,6 @@ class Pre(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1707,7 +1656,6 @@ class Pre(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1771,9 +1719,6 @@ class Ul(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1848,7 +1793,6 @@ class Ul(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1916,9 +1860,6 @@ class Ins(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1995,7 +1936,6 @@ class Ins(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -2063,9 +2003,6 @@ class Del(BaseHTML): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -2142,7 +2079,6 @@ class Del(BaseHTML): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/color_mode.pyi b/reflex/components/radix/themes/color_mode.pyi index 12f470cad..3542d481b 100644 --- a/reflex/components/radix/themes/color_mode.pyi +++ b/reflex/components/radix/themes/color_mode.pyi @@ -420,9 +420,6 @@ class ColorModeButton(Button): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -514,7 +511,6 @@ class ColorModeButton(Button): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/alertdialog.pyi b/reflex/components/radix/themes/components/alertdialog.pyi index 0ba103c08..ffa4be175 100644 --- a/reflex/components/radix/themes/components/alertdialog.pyi +++ b/reflex/components/radix/themes/components/alertdialog.pyi @@ -428,9 +428,6 @@ class AlertDialogContent(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -521,7 +518,6 @@ class AlertDialogContent(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/badge.pyi b/reflex/components/radix/themes/components/badge.pyi index 2a0b1ee3b..9586b06ba 100644 --- a/reflex/components/radix/themes/components/badge.pyi +++ b/reflex/components/radix/themes/components/badge.pyi @@ -135,9 +135,6 @@ class Badge(el.Span, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -221,7 +218,6 @@ class Badge(el.Span, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/button.pyi b/reflex/components/radix/themes/components/button.pyi index f2bb2e4ed..b0258ab56 100644 --- a/reflex/components/radix/themes/components/button.pyi +++ b/reflex/components/radix/themes/components/button.pyi @@ -170,9 +170,6 @@ class Button(el.Button, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -268,7 +265,6 @@ class Button(el.Button, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/callout.pyi b/reflex/components/radix/themes/components/callout.pyi index 05e86e714..e8221e2a3 100644 --- a/reflex/components/radix/themes/components/callout.pyi +++ b/reflex/components/radix/themes/components/callout.pyi @@ -138,9 +138,6 @@ class CalloutRoot(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -224,7 +221,6 @@ class CalloutRoot(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -348,9 +344,6 @@ class CalloutIcon(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -430,7 +423,6 @@ class CalloutIcon(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -554,9 +546,6 @@ class CalloutText(el.P, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -636,7 +625,6 @@ class CalloutText(el.P, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -772,9 +760,6 @@ class Callout(CalloutRoot): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -856,7 +841,6 @@ class Callout(CalloutRoot): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -994,9 +978,6 @@ class CalloutNamespace(SimpleNamespace): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1078,7 +1059,6 @@ class CalloutNamespace(SimpleNamespace): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/card.pyi b/reflex/components/radix/themes/components/card.pyi index 75b14c2c9..bcb2e956f 100644 --- a/reflex/components/radix/themes/components/card.pyi +++ b/reflex/components/radix/themes/components/card.pyi @@ -133,9 +133,6 @@ class Card(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -218,7 +215,6 @@ class Card(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/dialog.pyi b/reflex/components/radix/themes/components/dialog.pyi index bf21e0cf2..1a455754b 100644 --- a/reflex/components/radix/themes/components/dialog.pyi +++ b/reflex/components/radix/themes/components/dialog.pyi @@ -571,9 +571,6 @@ class DialogContent(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -669,7 +666,6 @@ class DialogContent(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/hovercard.pyi b/reflex/components/radix/themes/components/hovercard.pyi index 32510ba46..5ef0fc92b 100644 --- a/reflex/components/radix/themes/components/hovercard.pyi +++ b/reflex/components/radix/themes/components/hovercard.pyi @@ -441,9 +441,6 @@ class HoverCardContent(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -527,7 +524,6 @@ class HoverCardContent(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/iconbutton.pyi b/reflex/components/radix/themes/components/iconbutton.pyi index 95be21daa..abba0a67a 100644 --- a/reflex/components/radix/themes/components/iconbutton.pyi +++ b/reflex/components/radix/themes/components/iconbutton.pyi @@ -173,9 +173,6 @@ class IconButton(el.Button, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -267,7 +264,6 @@ class IconButton(el.Button, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/inset.pyi b/reflex/components/radix/themes/components/inset.pyi index 11ee8f5c9..609af896e 100644 --- a/reflex/components/radix/themes/components/inset.pyi +++ b/reflex/components/radix/themes/components/inset.pyi @@ -142,9 +142,6 @@ class Inset(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -233,7 +230,6 @@ class Inset(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/popover.pyi b/reflex/components/radix/themes/components/popover.pyi index e6a056753..3d3bf8383 100644 --- a/reflex/components/radix/themes/components/popover.pyi +++ b/reflex/components/radix/themes/components/popover.pyi @@ -442,9 +442,6 @@ class PopoverContent(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -548,7 +545,6 @@ class PopoverContent(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/table.pyi b/reflex/components/radix/themes/components/table.pyi index 0ce59ac2e..65a6bf54f 100644 --- a/reflex/components/radix/themes/components/table.pyi +++ b/reflex/components/radix/themes/components/table.pyi @@ -91,15 +91,6 @@ class TableRoot(el.Table, RadixThemesComponent): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - background: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - border: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, summary: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -143,9 +134,6 @@ class TableRoot(el.Table, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -212,9 +200,6 @@ class TableRoot(el.Table, RadixThemesComponent): size: The size of the table: "1" | "2" | "3" variant: The variant of the table align: Alignment of the table - background: Background image for the table - bgcolor: Background color of the table - border: Specifies the width of the border around the table summary: Provides a summary of the table's purpose and structure 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. @@ -232,7 +217,6 @@ class TableRoot(el.Table, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -359,9 +343,6 @@ class TableHeader(el.Thead, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -442,7 +423,6 @@ class TableHeader(el.Thead, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -532,9 +512,6 @@ class TableRow(el.Tr, RadixThemesComponent): Literal["start", "center", "end", "baseline"], ] ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -575,9 +552,6 @@ class TableRow(el.Tr, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -642,7 +616,6 @@ class TableRow(el.Tr, RadixThemesComponent): color: map to CSS default color property. color_scheme: map to radix color property. align: Alignment of the content within the table row - bgcolor: Background color of the table row 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. @@ -659,7 +632,6 @@ class TableRow(el.Tr, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -753,12 +725,6 @@ class TableColumnHeaderCell(el.Th, RadixThemesComponent): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - background: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, col_span: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -811,9 +777,6 @@ class TableColumnHeaderCell(el.Th, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -880,8 +843,6 @@ class TableColumnHeaderCell(el.Th, RadixThemesComponent): justify: The justification of the column width: width of the column align: Alignment of the content within the table header cell - background: Background image for the table header cell - bgcolor: Background color of the table header cell col_span: Number of columns a header cell should span headers: IDs of the headers associated with this header cell row_span: Number of rows a header cell should span @@ -902,7 +863,6 @@ class TableColumnHeaderCell(el.Th, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -989,9 +949,6 @@ class TableBody(el.Tbody, RadixThemesComponent): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, access_key: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1032,9 +989,6 @@ class TableBody(el.Tbody, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1099,7 +1053,6 @@ class TableBody(el.Tbody, RadixThemesComponent): color: map to CSS default color property. color_scheme: map to radix color property. align: Alignment of the content within the table body - bgcolor: Background color of the table body 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. @@ -1116,7 +1069,6 @@ class TableBody(el.Tbody, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1210,12 +1162,6 @@ class TableCell(el.Td, RadixThemesComponent): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - background: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, col_span: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1265,9 +1211,6 @@ class TableCell(el.Td, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1334,8 +1277,6 @@ class TableCell(el.Td, RadixThemesComponent): justify: The justification of the column width: width of the column align: Alignment of the content within the table cell - background: Background image for the table cell - bgcolor: Background color of the table cell col_span: Number of columns a cell should span headers: IDs of the headers associated with this cell row_span: Number of rows a cell should span @@ -1355,7 +1296,6 @@ class TableCell(el.Td, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -1449,12 +1389,6 @@ class TableRowHeaderCell(el.Th, RadixThemesComponent): align: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - background: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, - bgcolor: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, col_span: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, @@ -1507,9 +1441,6 @@ class TableRowHeaderCell(el.Th, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1576,8 +1507,6 @@ class TableRowHeaderCell(el.Th, RadixThemesComponent): justify: The justification of the column width: width of the column align: Alignment of the content within the table header cell - background: Background image for the table header cell - bgcolor: Background color of the table header cell col_span: Number of columns a header cell should span headers: IDs of the headers associated with this header cell row_span: Number of rows a header cell should span @@ -1598,7 +1527,6 @@ class TableRowHeaderCell(el.Th, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/textarea.pyi b/reflex/components/radix/themes/components/textarea.pyi index c0514e304..7b3ef7ea6 100644 --- a/reflex/components/radix/themes/components/textarea.pyi +++ b/reflex/components/radix/themes/components/textarea.pyi @@ -149,9 +149,6 @@ class TextArea(RadixThemesComponent, el.Textarea): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -253,7 +250,6 @@ class TextArea(RadixThemesComponent, el.Textarea): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/components/textfield.pyi b/reflex/components/radix/themes/components/textfield.pyi index 482fd6009..a4df9f670 100644 --- a/reflex/components/radix/themes/components/textfield.pyi +++ b/reflex/components/radix/themes/components/textfield.pyi @@ -145,9 +145,6 @@ class TextFieldRoot(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -230,7 +227,6 @@ class TextFieldRoot(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -289,9 +285,6 @@ class TextFieldInput(el.Input, TextFieldRoot): form_target: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - height: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, list: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, max: Optional[Union[Var[Union[str, int, bool]], Union[str, int, bool]]] = None, max_length: Optional[ @@ -327,9 +320,6 @@ class TextFieldInput(el.Input, TextFieldRoot): value: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - width: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, variant: Optional[ Union[ Var[Literal["classic", "surface", "soft"]], @@ -444,9 +434,6 @@ class TextFieldInput(el.Input, TextFieldRoot): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -528,7 +515,6 @@ class TextFieldInput(el.Input, TextFieldRoot): form_method: HTTP method to use for sending form data (for type="submit" buttons) form_no_validate: Bypasses form validation when submitting (for type="submit" buttons) form_target: Specifies where to display the response after submitting the form (for type="submit" buttons) - height: The height of the input (only for type="image") list: References a datalist for suggested options max: Specifies the maximum value for the input max_length: Specifies the maximum number of characters allowed in the input @@ -546,7 +532,6 @@ class TextFieldInput(el.Input, TextFieldRoot): type: Specifies the type of input use_map: Name of the image map used with the input value: Value of the input - width: The width of the input (only for type="image") variant: Variant of text field: "classic" | "surface" | "soft" color_scheme: Override theme color for text field radius: Override theme radius for text field: "none" | "small" | "medium" | "large" | "full" @@ -566,7 +551,6 @@ class TextFieldInput(el.Input, TextFieldRoot): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/layout/box.pyi b/reflex/components/radix/themes/layout/box.pyi index f27ade65d..816e7a7d6 100644 --- a/reflex/components/radix/themes/layout/box.pyi +++ b/reflex/components/radix/themes/layout/box.pyi @@ -119,9 +119,6 @@ class Box(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -201,7 +198,6 @@ class Box(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/layout/center.pyi b/reflex/components/radix/themes/layout/center.pyi index 9bbea0f1d..05799bbfb 100644 --- a/reflex/components/radix/themes/layout/center.pyi +++ b/reflex/components/radix/themes/layout/center.pyi @@ -156,9 +156,6 @@ class Center(Flex): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -245,7 +242,6 @@ class Center(Flex): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/layout/container.pyi b/reflex/components/radix/themes/layout/container.pyi index 177cb8954..92cf5e182 100644 --- a/reflex/components/radix/themes/layout/container.pyi +++ b/reflex/components/radix/themes/layout/container.pyi @@ -126,9 +126,6 @@ class Container(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -209,7 +206,6 @@ class Container(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/layout/flex.pyi b/reflex/components/radix/themes/layout/flex.pyi index 5f1c8c2db..5033a3360 100644 --- a/reflex/components/radix/themes/layout/flex.pyi +++ b/reflex/components/radix/themes/layout/flex.pyi @@ -162,9 +162,6 @@ class Flex(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -251,7 +248,6 @@ class Flex(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/layout/grid.pyi b/reflex/components/radix/themes/layout/grid.pyi index 4ae5cc601..2b4c03f40 100644 --- a/reflex/components/radix/themes/layout/grid.pyi +++ b/reflex/components/radix/themes/layout/grid.pyi @@ -163,9 +163,6 @@ class Grid(el.Div, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -254,7 +251,6 @@ class Grid(el.Div, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/layout/list.pyi b/reflex/components/radix/themes/layout/list.pyi index 708cf8fca..7cda1899e 100644 --- a/reflex/components/radix/themes/layout/list.pyi +++ b/reflex/components/radix/themes/layout/list.pyi @@ -120,9 +120,6 @@ class BaseList(Flex, LayoutComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, p: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], @@ -292,7 +289,6 @@ class BaseList(Flex, LayoutComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. p: Padding: "0" - "9" px: Padding horizontal: "0" - "9" py: Padding vertical: "0" - "9" @@ -408,9 +404,6 @@ class UnorderedList(BaseList): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, p: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], @@ -580,7 +573,6 @@ class UnorderedList(BaseList): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. p: Padding: "0" - "9" px: Padding horizontal: "0" - "9" py: Padding vertical: "0" - "9" @@ -713,9 +705,6 @@ class OrderedList(BaseList): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, p: Optional[ Union[ Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]], @@ -885,7 +874,6 @@ class OrderedList(BaseList): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. p: Padding: "0" - "9" px: Padding horizontal: "0" - "9" py: Padding vertical: "0" - "9" @@ -964,9 +952,6 @@ class ListItem(Li): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -1041,7 +1026,6 @@ class ListItem(Li): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/layout/section.pyi b/reflex/components/radix/themes/layout/section.pyi index 8a02ad758..ebcb83546 100644 --- a/reflex/components/radix/themes/layout/section.pyi +++ b/reflex/components/radix/themes/layout/section.pyi @@ -126,9 +126,6 @@ class Section(el.Section, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -209,7 +206,6 @@ class Section(el.Section, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/layout/spacer.pyi b/reflex/components/radix/themes/layout/spacer.pyi index 7738f4f91..6a6718ece 100644 --- a/reflex/components/radix/themes/layout/spacer.pyi +++ b/reflex/components/radix/themes/layout/spacer.pyi @@ -156,9 +156,6 @@ class Spacer(Flex): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -245,7 +242,6 @@ class Spacer(Flex): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/layout/stack.pyi b/reflex/components/radix/themes/layout/stack.pyi index c354db1a1..e2a785495 100644 --- a/reflex/components/radix/themes/layout/stack.pyi +++ b/reflex/components/radix/themes/layout/stack.pyi @@ -88,9 +88,6 @@ class Stack(Flex): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -173,7 +170,6 @@ class Stack(Flex): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -262,9 +258,6 @@ class VStack(Stack): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -347,7 +340,6 @@ class VStack(Stack): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. @@ -436,9 +428,6 @@ class HStack(Stack): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -521,7 +510,6 @@ class HStack(Stack): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/typography/blockquote.pyi b/reflex/components/radix/themes/typography/blockquote.pyi index c6c9d499a..38915a5fc 100644 --- a/reflex/components/radix/themes/typography/blockquote.pyi +++ b/reflex/components/radix/themes/typography/blockquote.pyi @@ -135,9 +135,6 @@ class Blockquote(el.Blockquote, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -221,7 +218,6 @@ class Blockquote(el.Blockquote, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/typography/code.pyi b/reflex/components/radix/themes/typography/code.pyi index 5f22ba3ac..8cc4bfb45 100644 --- a/reflex/components/radix/themes/typography/code.pyi +++ b/reflex/components/radix/themes/typography/code.pyi @@ -140,9 +140,6 @@ class Code(el.Code, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -226,7 +223,6 @@ class Code(el.Code, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/typography/em.pyi b/reflex/components/radix/themes/typography/em.pyi index 556aa92c0..039665aeb 100644 --- a/reflex/components/radix/themes/typography/em.pyi +++ b/reflex/components/radix/themes/typography/em.pyi @@ -119,9 +119,6 @@ class Em(el.Em, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -201,7 +198,6 @@ class Em(el.Em, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/typography/heading.pyi b/reflex/components/radix/themes/typography/heading.pyi index 0c1e81fa9..01db21e4c 100644 --- a/reflex/components/radix/themes/typography/heading.pyi +++ b/reflex/components/radix/themes/typography/heading.pyi @@ -148,9 +148,6 @@ class Heading(el.H1, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -237,7 +234,6 @@ class Heading(el.H1, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/typography/kbd.pyi b/reflex/components/radix/themes/typography/kbd.pyi index 4d2bf3bd3..4b70c24a4 100644 --- a/reflex/components/radix/themes/typography/kbd.pyi +++ b/reflex/components/radix/themes/typography/kbd.pyi @@ -127,9 +127,6 @@ class Kbd(el.Kbd, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -210,7 +207,6 @@ class Kbd(el.Kbd, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/typography/link.pyi b/reflex/components/radix/themes/typography/link.pyi index bf3c62e2f..4ccd22c59 100644 --- a/reflex/components/radix/themes/typography/link.pyi +++ b/reflex/components/radix/themes/typography/link.pyi @@ -174,9 +174,6 @@ class Link(RadixThemesComponent, A): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -267,7 +264,6 @@ class Link(RadixThemesComponent, A): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/typography/quote.pyi b/reflex/components/radix/themes/typography/quote.pyi index aa8e7794e..0608fb8b6 100644 --- a/reflex/components/radix/themes/typography/quote.pyi +++ b/reflex/components/radix/themes/typography/quote.pyi @@ -120,9 +120,6 @@ class Quote(el.Q, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -203,7 +200,6 @@ class Quote(el.Q, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/typography/strong.pyi b/reflex/components/radix/themes/typography/strong.pyi index 5a911cd69..df81f7d41 100644 --- a/reflex/components/radix/themes/typography/strong.pyi +++ b/reflex/components/radix/themes/typography/strong.pyi @@ -119,9 +119,6 @@ class Strong(el.Strong, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -201,7 +198,6 @@ class Strong(el.Strong, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component. diff --git a/reflex/components/radix/themes/typography/text.pyi b/reflex/components/radix/themes/typography/text.pyi index fa5aa6f07..f3cc5c900 100644 --- a/reflex/components/radix/themes/typography/text.pyi +++ b/reflex/components/radix/themes/typography/text.pyi @@ -156,9 +156,6 @@ class Text(el.Span, RadixThemesComponent): title: Optional[ Union[Var[Union[str, int, bool]], Union[str, int, bool]] ] = None, - translate: Optional[ - Union[Var[Union[str, int, bool]], Union[str, int, bool]] - ] = None, style: Optional[Style] = None, key: Optional[Any] = None, id: Optional[Any] = None, @@ -245,7 +242,6 @@ class Text(el.Span, RadixThemesComponent): spell_check: Defines whether the element may be checked for spelling errors. tab_index: Defines the position of the current element in the tabbing order. title: Defines a tooltip for the element. - translate: Specifies whether the content of an element should be translated or not. style: The style of the component. key: A unique key for the component. id: The id for the component.