reflex 0.3.9a2__py3-none-any.whl → 0.3.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of reflex might be problematic. Click here for more details.
- reflex/__init__.py +3 -1
- reflex/__init__.pyi +3 -1
- reflex/app.py +13 -5
- reflex/compiler/utils.py +13 -12
- reflex/components/base/app_wrap.pyi +1 -0
- reflex/components/base/body.pyi +2 -0
- reflex/components/base/document.pyi +10 -0
- reflex/components/base/fragment.pyi +2 -0
- reflex/components/base/head.pyi +4 -0
- reflex/components/base/link.pyi +4 -0
- reflex/components/base/meta.pyi +8 -0
- reflex/components/base/script.pyi +2 -0
- reflex/components/chakra/base.pyi +7 -0
- reflex/components/chakra/datadisplay/badge.pyi +2 -0
- reflex/components/chakra/datadisplay/code.pyi +4 -0
- reflex/components/chakra/datadisplay/divider.pyi +2 -0
- reflex/components/chakra/datadisplay/keyboard_key.pyi +2 -0
- reflex/components/chakra/datadisplay/list.pyi +8 -0
- reflex/components/chakra/datadisplay/stat.pyi +12 -0
- reflex/components/chakra/datadisplay/table.pyi +18 -0
- reflex/components/chakra/datadisplay/tag.pyi +9 -0
- reflex/components/chakra/disclosure/accordion.pyi +10 -0
- reflex/components/chakra/disclosure/tabs.py +8 -0
- reflex/components/chakra/disclosure/tabs.pyi +10 -0
- reflex/components/chakra/disclosure/transition.pyi +12 -0
- reflex/components/chakra/disclosure/visuallyhidden.pyi +2 -0
- reflex/components/chakra/feedback/alert.pyi +8 -0
- reflex/components/chakra/feedback/circularprogress.pyi +4 -0
- reflex/components/chakra/feedback/progress.pyi +2 -0
- reflex/components/chakra/feedback/skeleton.pyi +6 -0
- reflex/components/chakra/feedback/spinner.pyi +2 -0
- reflex/components/chakra/forms/button.pyi +4 -0
- reflex/components/chakra/forms/checkbox.pyi +4 -0
- reflex/components/chakra/forms/colormodeswitch.pyi +7 -0
- reflex/components/chakra/forms/date_picker.pyi +2 -0
- reflex/components/chakra/forms/date_time_picker.pyi +2 -0
- reflex/components/chakra/forms/editable.pyi +8 -0
- reflex/components/chakra/forms/email.pyi +2 -0
- reflex/components/chakra/forms/form.pyi +10 -0
- reflex/components/chakra/forms/iconbutton.py +1 -0
- reflex/components/chakra/forms/iconbutton.pyi +2 -0
- reflex/components/chakra/forms/input.pyi +12 -0
- reflex/components/chakra/forms/numberinput.pyi +10 -0
- reflex/components/chakra/forms/password.pyi +2 -0
- reflex/components/chakra/forms/pininput.pyi +4 -0
- reflex/components/chakra/forms/radio.pyi +4 -0
- reflex/components/chakra/forms/rangeslider.pyi +8 -0
- reflex/components/chakra/forms/select.pyi +4 -0
- reflex/components/chakra/forms/slider.pyi +10 -0
- reflex/components/chakra/forms/switch.pyi +2 -0
- reflex/components/chakra/forms/textarea.pyi +2 -0
- reflex/components/chakra/forms/time_picker.pyi +2 -0
- reflex/components/chakra/layout/aspect_ratio.pyi +2 -0
- reflex/components/chakra/layout/box.pyi +2 -0
- reflex/components/chakra/layout/card.pyi +7 -0
- reflex/components/chakra/layout/center.pyi +6 -0
- reflex/components/chakra/layout/container.pyi +2 -0
- reflex/components/chakra/layout/flex.pyi +2 -0
- reflex/components/chakra/layout/grid.pyi +6 -0
- reflex/components/chakra/layout/html.pyi +2 -0
- reflex/components/chakra/layout/spacer.pyi +2 -0
- reflex/components/chakra/layout/stack.pyi +6 -0
- reflex/components/chakra/layout/wrap.pyi +4 -0
- reflex/components/chakra/media/avatar.pyi +6 -0
- reflex/components/chakra/media/icon.pyi +4 -0
- reflex/components/chakra/media/image.pyi +2 -0
- reflex/components/chakra/navigation/breadcrumb.pyi +8 -0
- reflex/components/chakra/navigation/link.pyi +2 -0
- reflex/components/chakra/navigation/linkoverlay.pyi +4 -0
- reflex/components/chakra/navigation/stepper.pyi +18 -0
- reflex/components/chakra/overlay/alertdialog.pyi +14 -0
- reflex/components/chakra/overlay/drawer.pyi +14 -0
- reflex/components/chakra/overlay/menu.pyi +16 -0
- reflex/components/chakra/overlay/modal.pyi +14 -0
- reflex/components/chakra/overlay/popover.pyi +18 -0
- reflex/components/chakra/overlay/tooltip.pyi +2 -0
- reflex/components/chakra/typography/heading.pyi +2 -0
- reflex/components/chakra/typography/highlight.pyi +2 -0
- reflex/components/chakra/typography/span.pyi +2 -0
- reflex/components/chakra/typography/text.pyi +2 -0
- reflex/components/component.py +41 -3
- reflex/components/core/__init__.py +2 -0
- reflex/components/core/banner.pyi +3 -0
- reflex/components/core/client_side_routing.pyi +4 -0
- reflex/components/core/colors.py +21 -0
- reflex/components/core/cond.py +11 -2
- reflex/components/core/debounce.pyi +1 -0
- reflex/components/core/layout/__init__.py +1 -0
- reflex/components/core/match.py +44 -18
- reflex/components/core/upload.py +8 -2
- reflex/components/core/upload.pyi +7 -1
- reflex/components/datadisplay/dataeditor.pyi +2 -0
- reflex/components/el/element.pyi +2 -0
- reflex/components/el/elements/base.pyi +2 -0
- reflex/components/el/elements/forms.py +3 -0
- reflex/components/el/elements/forms.pyi +32 -0
- reflex/components/el/elements/inline.pyi +56 -0
- reflex/components/el/elements/media.pyi +28 -0
- reflex/components/el/elements/metadata.pyi +10 -0
- reflex/components/el/elements/other.pyi +14 -0
- reflex/components/el/elements/scripts.pyi +6 -0
- reflex/components/el/elements/sectioning.pyi +30 -0
- reflex/components/el/elements/tables.pyi +20 -0
- reflex/components/el/elements/typography.pyi +30 -0
- reflex/components/gridjs/datatable.pyi +4 -0
- reflex/components/lucide/__init__.py +5 -0
- reflex/components/lucide/icon.py +1484 -0
- reflex/components/lucide/icon.pyi +1594 -0
- reflex/components/markdown/markdown.pyi +2 -0
- reflex/components/moment/moment.pyi +2 -0
- reflex/components/next/base.pyi +2 -0
- reflex/components/next/image.pyi +2 -0
- reflex/components/next/link.pyi +2 -0
- reflex/components/next/video.pyi +2 -0
- reflex/components/plotly/plotly.pyi +4 -0
- reflex/components/radix/primitives/__init__.py +10 -0
- reflex/components/radix/primitives/accordion.py +51 -32
- reflex/components/radix/primitives/accordion.pyi +16 -3
- reflex/components/radix/primitives/base.pyi +4 -0
- reflex/components/radix/primitives/drawer.py +240 -0
- reflex/components/radix/primitives/drawer.pyi +814 -0
- reflex/components/radix/primitives/form.py +40 -7
- reflex/components/radix/primitives/form.pyi +32 -10
- reflex/components/radix/primitives/progress.py +2 -2
- reflex/components/radix/primitives/progress.pyi +6 -0
- reflex/components/radix/primitives/slider.pyi +10 -0
- reflex/components/radix/themes/base.py +46 -12
- reflex/components/radix/themes/base.pyi +23 -9
- reflex/components/radix/themes/components/__init__.py +4 -2
- reflex/components/radix/themes/components/alertdialog.py +13 -12
- reflex/components/radix/themes/components/alertdialog.pyi +23 -351
- reflex/components/radix/themes/components/aspectratio.py +2 -5
- reflex/components/radix/themes/components/aspectratio.pyi +4 -51
- reflex/components/radix/themes/components/avatar.py +3 -4
- reflex/components/radix/themes/components/avatar.pyi +4 -57
- reflex/components/radix/themes/components/badge.py +3 -4
- reflex/components/radix/themes/components/badge.pyi +4 -56
- reflex/components/radix/themes/components/button.py +2 -3
- reflex/components/radix/themes/components/button.pyi +3 -51
- reflex/components/radix/themes/components/callout.py +9 -12
- reflex/components/radix/themes/components/callout.pyi +24 -217
- reflex/components/radix/themes/components/card.py +1 -2
- reflex/components/radix/themes/components/card.pyi +4 -51
- reflex/components/radix/themes/components/checkbox.py +11 -5
- reflex/components/radix/themes/components/checkbox.pyi +13 -112
- reflex/components/radix/themes/components/contextmenu.py +21 -21
- reflex/components/radix/themes/components/contextmenu.pyi +26 -401
- reflex/components/radix/themes/components/dialog.py +13 -16
- reflex/components/radix/themes/components/dialog.pyi +20 -303
- reflex/components/radix/themes/components/dropdownmenu.py +196 -32
- reflex/components/radix/themes/components/dropdownmenu.pyi +147 -389
- reflex/components/radix/themes/components/hovercard.py +5 -5
- reflex/components/radix/themes/components/hovercard.pyi +11 -151
- reflex/components/radix/themes/components/iconbutton.py +56 -4
- reflex/components/radix/themes/components/iconbutton.pyi +25 -71
- reflex/components/radix/themes/components/icons.pyi +4 -0
- reflex/components/radix/themes/components/inset.py +1 -2
- reflex/components/radix/themes/components/inset.pyi +4 -51
- reflex/components/radix/themes/components/popover.py +12 -12
- reflex/components/radix/themes/components/popover.pyi +14 -201
- reflex/components/radix/themes/components/radiogroup.py +47 -20
- reflex/components/radix/themes/components/radiogroup.pyi +26 -171
- reflex/components/radix/themes/components/scrollarea.py +2 -3
- reflex/components/radix/themes/components/scrollarea.pyi +4 -51
- reflex/components/radix/themes/components/select.py +28 -25
- reflex/components/radix/themes/components/select.pyi +43 -419
- reflex/components/radix/themes/components/separator.py +4 -5
- reflex/components/radix/themes/components/separator.pyi +5 -52
- reflex/components/radix/themes/components/slider.py +8 -5
- reflex/components/radix/themes/components/slider.pyi +9 -60
- reflex/components/radix/themes/components/switch.py +6 -4
- reflex/components/radix/themes/components/switch.pyi +5 -53
- reflex/components/radix/themes/components/table.py +14 -15
- reflex/components/radix/themes/components/table.pyi +22 -351
- reflex/components/radix/themes/components/tabs.py +9 -6
- reflex/components/radix/themes/components/tabs.pyi +18 -205
- reflex/components/radix/themes/components/textarea.py +2 -3
- reflex/components/radix/themes/components/textarea.pyi +10 -53
- reflex/components/radix/themes/components/textfield.py +105 -4
- reflex/components/radix/themes/components/textfield.pyi +200 -108
- reflex/components/radix/themes/components/tooltip.py +102 -2
- reflex/components/radix/themes/components/tooltip.pyi +66 -110
- reflex/components/radix/themes/layout/__init__.py +7 -0
- reflex/components/radix/themes/layout/base.pyi +2 -0
- reflex/components/radix/themes/layout/box.py +2 -2
- reflex/components/radix/themes/layout/box.pyi +4 -104
- reflex/components/radix/themes/layout/center.py +19 -0
- reflex/components/radix/themes/layout/center.pyi +261 -0
- reflex/components/radix/themes/layout/container.py +2 -2
- reflex/components/radix/themes/layout/container.pyi +4 -104
- reflex/components/radix/themes/layout/flex.py +2 -2
- reflex/components/radix/themes/layout/flex.pyi +4 -105
- reflex/components/radix/themes/layout/grid.pyi +2 -0
- reflex/components/radix/themes/layout/section.py +2 -2
- reflex/components/radix/themes/layout/section.pyi +4 -104
- reflex/components/radix/themes/layout/spacer.py +19 -0
- reflex/components/radix/themes/layout/spacer.pyi +261 -0
- reflex/components/radix/themes/layout/stack.py +60 -0
- reflex/components/radix/themes/layout/stack.pyi +537 -0
- reflex/components/radix/themes/typography/blockquote.py +2 -3
- reflex/components/radix/themes/typography/blockquote.pyi +4 -51
- reflex/components/radix/themes/typography/code.py +2 -3
- reflex/components/radix/themes/typography/code.pyi +4 -56
- reflex/components/radix/themes/typography/em.py +1 -2
- reflex/components/radix/themes/typography/em.pyi +4 -51
- reflex/components/radix/themes/typography/heading.py +2 -3
- reflex/components/radix/themes/typography/heading.pyi +4 -51
- reflex/components/radix/themes/typography/kbd.py +1 -2
- reflex/components/radix/themes/typography/kbd.pyi +4 -51
- reflex/components/radix/themes/typography/link.py +34 -3
- reflex/components/radix/themes/typography/link.pyi +41 -86
- reflex/components/radix/themes/typography/quote.py +1 -2
- reflex/components/radix/themes/typography/quote.pyi +4 -51
- reflex/components/radix/themes/typography/strong.py +1 -2
- reflex/components/radix/themes/typography/strong.pyi +4 -51
- reflex/components/radix/themes/typography/text.py +2 -3
- reflex/components/radix/themes/typography/text.pyi +4 -51
- reflex/components/radix/themes/typography.py +10 -11
- reflex/components/react_player/audio.pyi +2 -0
- reflex/components/react_player/react_player.pyi +2 -0
- reflex/components/react_player/video.pyi +2 -0
- reflex/components/recharts/cartesian.pyi +38 -0
- reflex/components/recharts/charts.pyi +22 -0
- reflex/components/recharts/general.pyi +10 -0
- reflex/components/recharts/polar.pyi +12 -0
- reflex/components/recharts/recharts.pyi +4 -0
- reflex/components/suneditor/editor.pyi +2 -0
- reflex/components/tags/tag.py +1 -1
- reflex/constants/base.py +5 -1
- reflex/constants/colors.py +80 -0
- reflex/constants/event.py +10 -1
- reflex/page.py +1 -1
- reflex/reflex.py +4 -0
- reflex/style.py +8 -3
- reflex/testing.py +21 -10
- reflex/utils/format.py +13 -9
- reflex/utils/prerequisites.py +41 -3
- reflex/utils/serializers.py +14 -0
- reflex/utils/telemetry.py +8 -2
- reflex/utils/types.py +36 -2
- reflex/vars.py +53 -18
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/METADATA +1 -2
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/RECORD +246 -232
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/WHEEL +1 -1
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/LICENSE +0 -0
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/entry_points.txt +0 -0
|
@@ -95,6 +95,7 @@ class Axis(Recharts):
|
|
|
95
95
|
id: Optional[Any] = None,
|
|
96
96
|
class_name: Optional[Any] = None,
|
|
97
97
|
autofocus: Optional[bool] = None,
|
|
98
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
98
99
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
99
100
|
on_click: Optional[
|
|
100
101
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -139,6 +140,7 @@ class Axis(Recharts):
|
|
|
139
140
|
id: The id for the component.
|
|
140
141
|
class_name: The class name for the component.
|
|
141
142
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
143
|
+
_rename_props: props to change the name of
|
|
142
144
|
custom_attrs: custom attribute
|
|
143
145
|
**props: The props of the component.
|
|
144
146
|
|
|
@@ -218,6 +220,7 @@ class XAxis(Axis):
|
|
|
218
220
|
id: Optional[Any] = None,
|
|
219
221
|
class_name: Optional[Any] = None,
|
|
220
222
|
autofocus: Optional[bool] = None,
|
|
223
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
221
224
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
222
225
|
on_click: Optional[
|
|
223
226
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -262,6 +265,7 @@ class XAxis(Axis):
|
|
|
262
265
|
id: The id for the component.
|
|
263
266
|
class_name: The class name for the component.
|
|
264
267
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
268
|
+
_rename_props: props to change the name of
|
|
265
269
|
custom_attrs: custom attribute
|
|
266
270
|
**props: The props of the component.
|
|
267
271
|
|
|
@@ -341,6 +345,7 @@ class YAxis(Axis):
|
|
|
341
345
|
id: Optional[Any] = None,
|
|
342
346
|
class_name: Optional[Any] = None,
|
|
343
347
|
autofocus: Optional[bool] = None,
|
|
348
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
344
349
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
345
350
|
on_click: Optional[
|
|
346
351
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -385,6 +390,7 @@ class YAxis(Axis):
|
|
|
385
390
|
id: The id for the component.
|
|
386
391
|
class_name: The class name for the component.
|
|
387
392
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
393
|
+
_rename_props: props to change the name of
|
|
388
394
|
custom_attrs: custom attribute
|
|
389
395
|
**props: The props of the component.
|
|
390
396
|
|
|
@@ -451,6 +457,7 @@ class ZAxis(Recharts):
|
|
|
451
457
|
id: Optional[Any] = None,
|
|
452
458
|
class_name: Optional[Any] = None,
|
|
453
459
|
autofocus: Optional[bool] = None,
|
|
460
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
454
461
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
455
462
|
on_blur: Optional[
|
|
456
463
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -513,6 +520,7 @@ class ZAxis(Recharts):
|
|
|
513
520
|
id: The id for the component.
|
|
514
521
|
class_name: The class name for the component.
|
|
515
522
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
523
|
+
_rename_props: props to change the name of
|
|
516
524
|
custom_attrs: custom attribute
|
|
517
525
|
**props: The props of the component.
|
|
518
526
|
|
|
@@ -547,6 +555,7 @@ class Brush(Recharts):
|
|
|
547
555
|
id: Optional[Any] = None,
|
|
548
556
|
class_name: Optional[Any] = None,
|
|
549
557
|
autofocus: Optional[bool] = None,
|
|
558
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
550
559
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
551
560
|
on_change: Optional[
|
|
552
561
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -573,6 +582,7 @@ class Brush(Recharts):
|
|
|
573
582
|
id: The id for the component.
|
|
574
583
|
class_name: The class name for the component.
|
|
575
584
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
585
|
+
_rename_props: props to change the name of
|
|
576
586
|
custom_attrs: custom attribute
|
|
577
587
|
**props: The props of the component.
|
|
578
588
|
|
|
@@ -605,6 +615,7 @@ class Cartesian(Recharts):
|
|
|
605
615
|
id: Optional[Any] = None,
|
|
606
616
|
class_name: Optional[Any] = None,
|
|
607
617
|
autofocus: Optional[bool] = None,
|
|
618
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
608
619
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
609
620
|
on_click: Optional[
|
|
610
621
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -639,6 +650,7 @@ class Cartesian(Recharts):
|
|
|
639
650
|
id: The id for the component.
|
|
640
651
|
class_name: The class name for the component.
|
|
641
652
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
653
|
+
_rename_props: props to change the name of
|
|
642
654
|
custom_attrs: custom attribute
|
|
643
655
|
**props: The props of the component.
|
|
644
656
|
|
|
@@ -717,6 +729,7 @@ class Area(Cartesian):
|
|
|
717
729
|
id: Optional[Any] = None,
|
|
718
730
|
class_name: Optional[Any] = None,
|
|
719
731
|
autofocus: Optional[bool] = None,
|
|
732
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
720
733
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
721
734
|
on_click: Optional[
|
|
722
735
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -759,6 +772,7 @@ class Area(Cartesian):
|
|
|
759
772
|
id: The id for the component.
|
|
760
773
|
class_name: The class name for the component.
|
|
761
774
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
775
|
+
_rename_props: props to change the name of
|
|
762
776
|
custom_attrs: custom attribute
|
|
763
777
|
**props: The props of the component.
|
|
764
778
|
|
|
@@ -798,6 +812,7 @@ class Bar(Cartesian):
|
|
|
798
812
|
id: Optional[Any] = None,
|
|
799
813
|
class_name: Optional[Any] = None,
|
|
800
814
|
autofocus: Optional[bool] = None,
|
|
815
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
801
816
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
802
817
|
on_click: Optional[
|
|
803
818
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -840,6 +855,7 @@ class Bar(Cartesian):
|
|
|
840
855
|
id: The id for the component.
|
|
841
856
|
class_name: The class name for the component.
|
|
842
857
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
858
|
+
_rename_props: props to change the name of
|
|
843
859
|
custom_attrs: custom attribute
|
|
844
860
|
**props: The props of the component.
|
|
845
861
|
|
|
@@ -918,6 +934,7 @@ class Line(Cartesian):
|
|
|
918
934
|
id: Optional[Any] = None,
|
|
919
935
|
class_name: Optional[Any] = None,
|
|
920
936
|
autofocus: Optional[bool] = None,
|
|
937
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
921
938
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
922
939
|
on_click: Optional[
|
|
923
940
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -960,6 +977,7 @@ class Line(Cartesian):
|
|
|
960
977
|
id: The id for the component.
|
|
961
978
|
class_name: The class name for the component.
|
|
962
979
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
980
|
+
_rename_props: props to change the name of
|
|
963
981
|
custom_attrs: custom attribute
|
|
964
982
|
**props: The props of the component.
|
|
965
983
|
|
|
@@ -1017,6 +1035,7 @@ class Scatter(Cartesian):
|
|
|
1017
1035
|
id: Optional[Any] = None,
|
|
1018
1036
|
class_name: Optional[Any] = None,
|
|
1019
1037
|
autofocus: Optional[bool] = None,
|
|
1038
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1020
1039
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1021
1040
|
on_click: Optional[
|
|
1022
1041
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1058,6 +1077,7 @@ class Scatter(Cartesian):
|
|
|
1058
1077
|
id: The id for the component.
|
|
1059
1078
|
class_name: The class name for the component.
|
|
1060
1079
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1080
|
+
_rename_props: props to change the name of
|
|
1061
1081
|
custom_attrs: custom attribute
|
|
1062
1082
|
**props: The props of the component.
|
|
1063
1083
|
|
|
@@ -1098,6 +1118,7 @@ class Funnel(Cartesian):
|
|
|
1098
1118
|
id: Optional[Any] = None,
|
|
1099
1119
|
class_name: Optional[Any] = None,
|
|
1100
1120
|
autofocus: Optional[bool] = None,
|
|
1121
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1101
1122
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1102
1123
|
on_click: Optional[
|
|
1103
1124
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1136,6 +1157,7 @@ class Funnel(Cartesian):
|
|
|
1136
1157
|
id: The id for the component.
|
|
1137
1158
|
class_name: The class name for the component.
|
|
1138
1159
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1160
|
+
_rename_props: props to change the name of
|
|
1139
1161
|
custom_attrs: custom attribute
|
|
1140
1162
|
**props: The props of the component.
|
|
1141
1163
|
|
|
@@ -1165,6 +1187,7 @@ class ErrorBar(Recharts):
|
|
|
1165
1187
|
id: Optional[Any] = None,
|
|
1166
1188
|
class_name: Optional[Any] = None,
|
|
1167
1189
|
autofocus: Optional[bool] = None,
|
|
1190
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1168
1191
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1169
1192
|
on_blur: Optional[
|
|
1170
1193
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1227,6 +1250,7 @@ class ErrorBar(Recharts):
|
|
|
1227
1250
|
id: The id for the component.
|
|
1228
1251
|
class_name: The class name for the component.
|
|
1229
1252
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1253
|
+
_rename_props: props to change the name of
|
|
1230
1254
|
custom_attrs: custom attribute
|
|
1231
1255
|
**props: The props of the component.
|
|
1232
1256
|
|
|
@@ -1260,6 +1284,7 @@ class Reference(Recharts):
|
|
|
1260
1284
|
id: Optional[Any] = None,
|
|
1261
1285
|
class_name: Optional[Any] = None,
|
|
1262
1286
|
autofocus: Optional[bool] = None,
|
|
1287
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1263
1288
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1264
1289
|
on_blur: Optional[
|
|
1265
1290
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1323,6 +1348,7 @@ class Reference(Recharts):
|
|
|
1323
1348
|
id: The id for the component.
|
|
1324
1349
|
class_name: The class name for the component.
|
|
1325
1350
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1351
|
+
_rename_props: props to change the name of
|
|
1326
1352
|
custom_attrs: custom attribute
|
|
1327
1353
|
**props: The props of the component.
|
|
1328
1354
|
|
|
@@ -1357,6 +1383,7 @@ class ReferenceLine(Reference):
|
|
|
1357
1383
|
id: Optional[Any] = None,
|
|
1358
1384
|
class_name: Optional[Any] = None,
|
|
1359
1385
|
autofocus: Optional[bool] = None,
|
|
1386
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1360
1387
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1361
1388
|
on_blur: Optional[
|
|
1362
1389
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1421,6 +1448,7 @@ class ReferenceLine(Reference):
|
|
|
1421
1448
|
id: The id for the component.
|
|
1422
1449
|
class_name: The class name for the component.
|
|
1423
1450
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1451
|
+
_rename_props: props to change the name of
|
|
1424
1452
|
custom_attrs: custom attribute
|
|
1425
1453
|
**props: The props of the component.
|
|
1426
1454
|
|
|
@@ -1455,6 +1483,7 @@ class ReferenceDot(Reference):
|
|
|
1455
1483
|
id: Optional[Any] = None,
|
|
1456
1484
|
class_name: Optional[Any] = None,
|
|
1457
1485
|
autofocus: Optional[bool] = None,
|
|
1486
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1458
1487
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1459
1488
|
on_click: Optional[
|
|
1460
1489
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1491,6 +1520,7 @@ class ReferenceDot(Reference):
|
|
|
1491
1520
|
id: The id for the component.
|
|
1492
1521
|
class_name: The class name for the component.
|
|
1493
1522
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1523
|
+
_rename_props: props to change the name of
|
|
1494
1524
|
custom_attrs: custom attribute
|
|
1495
1525
|
**props: The props of the component.
|
|
1496
1526
|
|
|
@@ -1529,6 +1559,7 @@ class ReferenceArea(Recharts):
|
|
|
1529
1559
|
id: Optional[Any] = None,
|
|
1530
1560
|
class_name: Optional[Any] = None,
|
|
1531
1561
|
autofocus: Optional[bool] = None,
|
|
1562
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1532
1563
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1533
1564
|
on_blur: Optional[
|
|
1534
1565
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1597,6 +1628,7 @@ class ReferenceArea(Recharts):
|
|
|
1597
1628
|
id: The id for the component.
|
|
1598
1629
|
class_name: The class name for the component.
|
|
1599
1630
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1631
|
+
_rename_props: props to change the name of
|
|
1600
1632
|
custom_attrs: custom attribute
|
|
1601
1633
|
**props: The props of the component.
|
|
1602
1634
|
|
|
@@ -1623,6 +1655,7 @@ class Grid(Recharts):
|
|
|
1623
1655
|
id: Optional[Any] = None,
|
|
1624
1656
|
class_name: Optional[Any] = None,
|
|
1625
1657
|
autofocus: Optional[bool] = None,
|
|
1658
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1626
1659
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1627
1660
|
on_blur: Optional[
|
|
1628
1661
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1684,6 +1717,7 @@ class Grid(Recharts):
|
|
|
1684
1717
|
id: The id for the component.
|
|
1685
1718
|
class_name: The class name for the component.
|
|
1686
1719
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1720
|
+
_rename_props: props to change the name of
|
|
1687
1721
|
custom_attrs: custom attribute
|
|
1688
1722
|
**props: The props of the component.
|
|
1689
1723
|
|
|
@@ -1715,6 +1749,7 @@ class CartesianGrid(Grid):
|
|
|
1715
1749
|
id: Optional[Any] = None,
|
|
1716
1750
|
class_name: Optional[Any] = None,
|
|
1717
1751
|
autofocus: Optional[bool] = None,
|
|
1752
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1718
1753
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1719
1754
|
on_blur: Optional[
|
|
1720
1755
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1781,6 +1816,7 @@ class CartesianGrid(Grid):
|
|
|
1781
1816
|
id: The id for the component.
|
|
1782
1817
|
class_name: The class name for the component.
|
|
1783
1818
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1819
|
+
_rename_props: props to change the name of
|
|
1784
1820
|
custom_attrs: custom attribute
|
|
1785
1821
|
**props: The props of the component.
|
|
1786
1822
|
|
|
@@ -1826,6 +1862,7 @@ class CartesianAxis(Grid):
|
|
|
1826
1862
|
id: Optional[Any] = None,
|
|
1827
1863
|
class_name: Optional[Any] = None,
|
|
1828
1864
|
autofocus: Optional[bool] = None,
|
|
1865
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1829
1866
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1830
1867
|
on_blur: Optional[
|
|
1831
1868
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1896,6 +1933,7 @@ class CartesianAxis(Grid):
|
|
|
1896
1933
|
id: The id for the component.
|
|
1897
1934
|
class_name: The class name for the component.
|
|
1898
1935
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1936
|
+
_rename_props: props to change the name of
|
|
1899
1937
|
custom_attrs: custom attribute
|
|
1900
1938
|
**props: The props of the component.
|
|
1901
1939
|
|
|
@@ -53,6 +53,7 @@ class ChartBase(RechartsCharts):
|
|
|
53
53
|
id: Optional[Any] = None,
|
|
54
54
|
class_name: Optional[Any] = None,
|
|
55
55
|
autofocus: Optional[bool] = None,
|
|
56
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
56
57
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
57
58
|
on_click: Optional[
|
|
58
59
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -85,6 +86,7 @@ class ChartBase(RechartsCharts):
|
|
|
85
86
|
id: The id for the component.
|
|
86
87
|
class_name: The class name for the component.
|
|
87
88
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
89
|
+
_rename_props: props to change the name of
|
|
88
90
|
custom_attrs: custom attribute
|
|
89
91
|
**props: The properties of the chart component.
|
|
90
92
|
|
|
@@ -130,6 +132,7 @@ class AreaChart(ChartBase):
|
|
|
130
132
|
id: Optional[Any] = None,
|
|
131
133
|
class_name: Optional[Any] = None,
|
|
132
134
|
autofocus: Optional[bool] = None,
|
|
135
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
133
136
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
134
137
|
on_click: Optional[
|
|
135
138
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -163,6 +166,7 @@ class AreaChart(ChartBase):
|
|
|
163
166
|
id: The id for the component.
|
|
164
167
|
class_name: The class name for the component.
|
|
165
168
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
169
|
+
_rename_props: props to change the name of
|
|
166
170
|
custom_attrs: custom attribute
|
|
167
171
|
**props: The properties of the chart component.
|
|
168
172
|
|
|
@@ -207,6 +211,7 @@ class BarChart(ChartBase):
|
|
|
207
211
|
id: Optional[Any] = None,
|
|
208
212
|
class_name: Optional[Any] = None,
|
|
209
213
|
autofocus: Optional[bool] = None,
|
|
214
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
210
215
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
211
216
|
on_click: Optional[
|
|
212
217
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -244,6 +249,7 @@ class BarChart(ChartBase):
|
|
|
244
249
|
id: The id for the component.
|
|
245
250
|
class_name: The class name for the component.
|
|
246
251
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
252
|
+
_rename_props: props to change the name of
|
|
247
253
|
custom_attrs: custom attribute
|
|
248
254
|
**props: The properties of the chart component.
|
|
249
255
|
|
|
@@ -283,6 +289,7 @@ class LineChart(ChartBase):
|
|
|
283
289
|
id: Optional[Any] = None,
|
|
284
290
|
class_name: Optional[Any] = None,
|
|
285
291
|
autofocus: Optional[bool] = None,
|
|
292
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
286
293
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
287
294
|
on_click: Optional[
|
|
288
295
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -315,6 +322,7 @@ class LineChart(ChartBase):
|
|
|
315
322
|
id: The id for the component.
|
|
316
323
|
class_name: The class name for the component.
|
|
317
324
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
325
|
+
_rename_props: props to change the name of
|
|
318
326
|
custom_attrs: custom attribute
|
|
319
327
|
**props: The properties of the chart component.
|
|
320
328
|
|
|
@@ -364,6 +372,7 @@ class ComposedChart(ChartBase):
|
|
|
364
372
|
id: Optional[Any] = None,
|
|
365
373
|
class_name: Optional[Any] = None,
|
|
366
374
|
autofocus: Optional[bool] = None,
|
|
375
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
367
376
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
368
377
|
on_click: Optional[
|
|
369
378
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -401,6 +410,7 @@ class ComposedChart(ChartBase):
|
|
|
401
410
|
id: The id for the component.
|
|
402
411
|
class_name: The class name for the component.
|
|
403
412
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
413
|
+
_rename_props: props to change the name of
|
|
404
414
|
custom_attrs: custom attribute
|
|
405
415
|
**props: The properties of the chart component.
|
|
406
416
|
|
|
@@ -441,6 +451,7 @@ class PieChart(ChartBase):
|
|
|
441
451
|
id: Optional[Any] = None,
|
|
442
452
|
class_name: Optional[Any] = None,
|
|
443
453
|
autofocus: Optional[bool] = None,
|
|
454
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
444
455
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
445
456
|
on_click: Optional[
|
|
446
457
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -470,6 +481,7 @@ class PieChart(ChartBase):
|
|
|
470
481
|
id: The id for the component.
|
|
471
482
|
class_name: The class name for the component.
|
|
472
483
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
484
|
+
_rename_props: props to change the name of
|
|
473
485
|
custom_attrs: custom attribute
|
|
474
486
|
**props: The properties of the chart component.
|
|
475
487
|
|
|
@@ -516,6 +528,7 @@ class RadarChart(ChartBase):
|
|
|
516
528
|
id: Optional[Any] = None,
|
|
517
529
|
class_name: Optional[Any] = None,
|
|
518
530
|
autofocus: Optional[bool] = None,
|
|
531
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
519
532
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
520
533
|
on_click: Optional[
|
|
521
534
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -554,6 +567,7 @@ class RadarChart(ChartBase):
|
|
|
554
567
|
id: The id for the component.
|
|
555
568
|
class_name: The class name for the component.
|
|
556
569
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
570
|
+
_rename_props: props to change the name of
|
|
557
571
|
custom_attrs: custom attribute
|
|
558
572
|
**props: The properties of the chart component.
|
|
559
573
|
|
|
@@ -603,6 +617,7 @@ class RadialBarChart(ChartBase):
|
|
|
603
617
|
id: Optional[Any] = None,
|
|
604
618
|
class_name: Optional[Any] = None,
|
|
605
619
|
autofocus: Optional[bool] = None,
|
|
620
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
606
621
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
607
622
|
on_click: Optional[
|
|
608
623
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -644,6 +659,7 @@ class RadialBarChart(ChartBase):
|
|
|
644
659
|
id: The id for the component.
|
|
645
660
|
class_name: The class name for the component.
|
|
646
661
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
662
|
+
_rename_props: props to change the name of
|
|
647
663
|
custom_attrs: custom attribute
|
|
648
664
|
**props: The properties of the chart component.
|
|
649
665
|
|
|
@@ -684,6 +700,7 @@ class ScatterChart(ChartBase):
|
|
|
684
700
|
id: Optional[Any] = None,
|
|
685
701
|
class_name: Optional[Any] = None,
|
|
686
702
|
autofocus: Optional[bool] = None,
|
|
703
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
687
704
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
688
705
|
on_click: Optional[
|
|
689
706
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -722,6 +739,7 @@ class ScatterChart(ChartBase):
|
|
|
722
739
|
id: The id for the component.
|
|
723
740
|
class_name: The class name for the component.
|
|
724
741
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
742
|
+
_rename_props: props to change the name of
|
|
725
743
|
custom_attrs: custom attribute
|
|
726
744
|
**props: The properties of the chart component.
|
|
727
745
|
|
|
@@ -755,6 +773,7 @@ class FunnelChart(RechartsCharts):
|
|
|
755
773
|
id: Optional[Any] = None,
|
|
756
774
|
class_name: Optional[Any] = None,
|
|
757
775
|
autofocus: Optional[bool] = None,
|
|
776
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
758
777
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
759
778
|
on_click: Optional[
|
|
760
779
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -787,6 +806,7 @@ class FunnelChart(RechartsCharts):
|
|
|
787
806
|
id: The id for the component.
|
|
788
807
|
class_name: The class name for the component.
|
|
789
808
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
809
|
+
_rename_props: props to change the name of
|
|
790
810
|
custom_attrs: custom attribute
|
|
791
811
|
**props: The props of the component.
|
|
792
812
|
|
|
@@ -820,6 +840,7 @@ class Treemap(RechartsCharts):
|
|
|
820
840
|
id: Optional[Any] = None,
|
|
821
841
|
class_name: Optional[Any] = None,
|
|
822
842
|
autofocus: Optional[bool] = None,
|
|
843
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
823
844
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
824
845
|
on_blur: Optional[
|
|
825
846
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -886,6 +907,7 @@ class Treemap(RechartsCharts):
|
|
|
886
907
|
id: The id for the component.
|
|
887
908
|
class_name: The class name for the component.
|
|
888
909
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
910
|
+
_rename_props: props to change the name of
|
|
889
911
|
custom_attrs: custom attribute
|
|
890
912
|
**props: The properties of the chart component.
|
|
891
913
|
|
|
@@ -37,6 +37,7 @@ class ResponsiveContainer(Recharts, MemoizationLeaf):
|
|
|
37
37
|
id: Optional[Any] = None,
|
|
38
38
|
class_name: Optional[Any] = None,
|
|
39
39
|
autofocus: Optional[bool] = None,
|
|
40
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
40
41
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
41
42
|
on_blur: Optional[
|
|
42
43
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -100,6 +101,7 @@ class ResponsiveContainer(Recharts, MemoizationLeaf):
|
|
|
100
101
|
id: The id for the component.
|
|
101
102
|
class_name: The class name for the component.
|
|
102
103
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
104
|
+
_rename_props: props to change the name of
|
|
103
105
|
custom_attrs: custom attribute
|
|
104
106
|
**props: The props of the component.
|
|
105
107
|
|
|
@@ -174,6 +176,7 @@ class Legend(Recharts):
|
|
|
174
176
|
id: Optional[Any] = None,
|
|
175
177
|
class_name: Optional[Any] = None,
|
|
176
178
|
autofocus: Optional[bool] = None,
|
|
179
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
177
180
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
178
181
|
on_click: Optional[
|
|
179
182
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -214,6 +217,7 @@ class Legend(Recharts):
|
|
|
214
217
|
id: The id for the component.
|
|
215
218
|
class_name: The class name for the component.
|
|
216
219
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
220
|
+
_rename_props: props to change the name of
|
|
217
221
|
custom_attrs: custom attribute
|
|
218
222
|
**props: The props of the component.
|
|
219
223
|
|
|
@@ -244,6 +248,7 @@ class GraphingTooltip(Recharts):
|
|
|
244
248
|
id: Optional[Any] = None,
|
|
245
249
|
class_name: Optional[Any] = None,
|
|
246
250
|
autofocus: Optional[bool] = None,
|
|
251
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
247
252
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
248
253
|
on_blur: Optional[
|
|
249
254
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -309,6 +314,7 @@ class GraphingTooltip(Recharts):
|
|
|
309
314
|
id: The id for the component.
|
|
310
315
|
class_name: The class name for the component.
|
|
311
316
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
317
|
+
_rename_props: props to change the name of
|
|
312
318
|
custom_attrs: custom attribute
|
|
313
319
|
**props: The props of the component.
|
|
314
320
|
|
|
@@ -380,6 +386,7 @@ class Label(Recharts):
|
|
|
380
386
|
id: Optional[Any] = None,
|
|
381
387
|
class_name: Optional[Any] = None,
|
|
382
388
|
autofocus: Optional[bool] = None,
|
|
389
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
383
390
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
384
391
|
on_blur: Optional[
|
|
385
392
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -441,6 +448,7 @@ class Label(Recharts):
|
|
|
441
448
|
id: The id for the component.
|
|
442
449
|
class_name: The class name for the component.
|
|
443
450
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
451
|
+
_rename_props: props to change the name of
|
|
444
452
|
custom_attrs: custom attribute
|
|
445
453
|
**props: The props of the component.
|
|
446
454
|
|
|
@@ -513,6 +521,7 @@ class LabelList(Recharts):
|
|
|
513
521
|
id: Optional[Any] = None,
|
|
514
522
|
class_name: Optional[Any] = None,
|
|
515
523
|
autofocus: Optional[bool] = None,
|
|
524
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
516
525
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
517
526
|
on_blur: Optional[
|
|
518
527
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -575,6 +584,7 @@ class LabelList(Recharts):
|
|
|
575
584
|
id: The id for the component.
|
|
576
585
|
class_name: The class name for the component.
|
|
577
586
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
587
|
+
_rename_props: props to change the name of
|
|
578
588
|
custom_attrs: custom attribute
|
|
579
589
|
**props: The props of the component.
|
|
580
590
|
|
|
@@ -46,6 +46,7 @@ class Pie(Recharts):
|
|
|
46
46
|
id: Optional[Any] = None,
|
|
47
47
|
class_name: Optional[Any] = None,
|
|
48
48
|
autofocus: Optional[bool] = None,
|
|
49
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
49
50
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
50
51
|
on_click: Optional[
|
|
51
52
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -92,6 +93,7 @@ class Pie(Recharts):
|
|
|
92
93
|
id: The id for the component.
|
|
93
94
|
class_name: The class name for the component.
|
|
94
95
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
96
|
+
_rename_props: props to change the name of
|
|
95
97
|
custom_attrs: custom attribute
|
|
96
98
|
**props: The props of the component.
|
|
97
99
|
|
|
@@ -130,6 +132,7 @@ class Radar(Recharts):
|
|
|
130
132
|
id: Optional[Any] = None,
|
|
131
133
|
class_name: Optional[Any] = None,
|
|
132
134
|
autofocus: Optional[bool] = None,
|
|
135
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
133
136
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
134
137
|
on_blur: Optional[
|
|
135
138
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -198,6 +201,7 @@ class Radar(Recharts):
|
|
|
198
201
|
id: The id for the component.
|
|
199
202
|
class_name: The class name for the component.
|
|
200
203
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
204
|
+
_rename_props: props to change the name of
|
|
201
205
|
custom_attrs: custom attribute
|
|
202
206
|
**props: The props of the component.
|
|
203
207
|
|
|
@@ -226,6 +230,7 @@ class RadialBar(Recharts):
|
|
|
226
230
|
id: Optional[Any] = None,
|
|
227
231
|
class_name: Optional[Any] = None,
|
|
228
232
|
autofocus: Optional[bool] = None,
|
|
233
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
229
234
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
230
235
|
on_click: Optional[
|
|
231
236
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -261,6 +266,7 @@ class RadialBar(Recharts):
|
|
|
261
266
|
id: The id for the component.
|
|
262
267
|
class_name: The class name for the component.
|
|
263
268
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
269
|
+
_rename_props: props to change the name of
|
|
264
270
|
custom_attrs: custom attribute
|
|
265
271
|
**props: The props of the component.
|
|
266
272
|
|
|
@@ -299,6 +305,7 @@ class PolarAngleAxis(Recharts):
|
|
|
299
305
|
id: Optional[Any] = None,
|
|
300
306
|
class_name: Optional[Any] = None,
|
|
301
307
|
autofocus: Optional[bool] = None,
|
|
308
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
302
309
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
303
310
|
on_click: Optional[
|
|
304
311
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -340,6 +347,7 @@ class PolarAngleAxis(Recharts):
|
|
|
340
347
|
id: The id for the component.
|
|
341
348
|
class_name: The class name for the component.
|
|
342
349
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
350
|
+
_rename_props: props to change the name of
|
|
343
351
|
custom_attrs: custom attribute
|
|
344
352
|
**props: The props of the component.
|
|
345
353
|
|
|
@@ -371,6 +379,7 @@ class PolarGrid(Recharts):
|
|
|
371
379
|
id: Optional[Any] = None,
|
|
372
380
|
class_name: Optional[Any] = None,
|
|
373
381
|
autofocus: Optional[bool] = None,
|
|
382
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
374
383
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
375
384
|
on_blur: Optional[
|
|
376
385
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -435,6 +444,7 @@ class PolarGrid(Recharts):
|
|
|
435
444
|
id: The id for the component.
|
|
436
445
|
class_name: The class name for the component.
|
|
437
446
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
447
|
+
_rename_props: props to change the name of
|
|
438
448
|
custom_attrs: custom attribute
|
|
439
449
|
**props: The props of the component.
|
|
440
450
|
|
|
@@ -512,6 +522,7 @@ class PolarRadiusAxis(Recharts):
|
|
|
512
522
|
id: Optional[Any] = None,
|
|
513
523
|
class_name: Optional[Any] = None,
|
|
514
524
|
autofocus: Optional[bool] = None,
|
|
525
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
515
526
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
516
527
|
on_click: Optional[
|
|
517
528
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -553,6 +564,7 @@ class PolarRadiusAxis(Recharts):
|
|
|
553
564
|
id: The id for the component.
|
|
554
565
|
class_name: The class name for the component.
|
|
555
566
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
567
|
+
_rename_props: props to change the name of
|
|
556
568
|
custom_attrs: custom attribute
|
|
557
569
|
**props: The props of the component.
|
|
558
570
|
|
|
@@ -21,6 +21,7 @@ class Recharts(Component):
|
|
|
21
21
|
id: Optional[Any] = None,
|
|
22
22
|
class_name: Optional[Any] = None,
|
|
23
23
|
autofocus: Optional[bool] = None,
|
|
24
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
24
25
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
25
26
|
on_blur: Optional[
|
|
26
27
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -78,6 +79,7 @@ class Recharts(Component):
|
|
|
78
79
|
id: The id for the component.
|
|
79
80
|
class_name: The class name for the component.
|
|
80
81
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
82
|
+
_rename_props: props to change the name of
|
|
81
83
|
custom_attrs: custom attribute
|
|
82
84
|
**props: The props of the component.
|
|
83
85
|
|
|
@@ -100,6 +102,7 @@ class RechartsCharts(NoSSRComponent, MemoizationLeaf):
|
|
|
100
102
|
id: Optional[Any] = None,
|
|
101
103
|
class_name: Optional[Any] = None,
|
|
102
104
|
autofocus: Optional[bool] = None,
|
|
105
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
103
106
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
104
107
|
on_blur: Optional[
|
|
105
108
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -157,6 +160,7 @@ class RechartsCharts(NoSSRComponent, MemoizationLeaf):
|
|
|
157
160
|
id: The id for the component.
|
|
158
161
|
class_name: The class name for the component.
|
|
159
162
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
163
|
+
_rename_props: props to change the name of
|
|
160
164
|
custom_attrs: custom attribute
|
|
161
165
|
**props: The props of the component.
|
|
162
166
|
|
|
@@ -126,6 +126,7 @@ class Editor(NoSSRComponent):
|
|
|
126
126
|
id: Optional[Any] = None,
|
|
127
127
|
class_name: Optional[Any] = None,
|
|
128
128
|
autofocus: Optional[bool] = None,
|
|
129
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
129
130
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
130
131
|
on_blur: Optional[
|
|
131
132
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -226,6 +227,7 @@ class Editor(NoSSRComponent):
|
|
|
226
227
|
id: The id for the component.
|
|
227
228
|
class_name: The class name for the component.
|
|
228
229
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
230
|
+
_rename_props: props to change the name of
|
|
229
231
|
custom_attrs: custom attribute
|
|
230
232
|
**props: Any properties to be passed to the Editor
|
|
231
233
|
|