feffery_antd_components 0.2.10-rc9 → 0.2.10
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.
- package/DESCRIPTION +1 -1
- package/NAMESPACE +2 -2
- package/Project.toml +1 -1
- package/README-en_US.md +3 -3
- package/README.md +3 -3
- package/build/lib/feffery_antd_components/AntdButton.py +6 -3
- package/build/lib/feffery_antd_components/AntdCascader.py +9 -3
- package/build/lib/feffery_antd_components/AntdCenter.py +53 -0
- package/build/lib/feffery_antd_components/AntdCheckbox.py +9 -3
- package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +7 -3
- package/build/lib/feffery_antd_components/AntdComment.py +7 -3
- package/build/lib/feffery_antd_components/AntdDatePicker.py +15 -5
- package/build/lib/feffery_antd_components/AntdDateRangePicker.py +13 -5
- package/build/lib/feffery_antd_components/AntdDraggerUpload.py +25 -5
- package/build/lib/feffery_antd_components/AntdDropdown.py +7 -3
- package/build/lib/feffery_antd_components/AntdForm.py +9 -3
- package/build/lib/feffery_antd_components/AntdFormItem.py +5 -1
- package/build/lib/feffery_antd_components/AntdInput.py +7 -3
- package/build/lib/feffery_antd_components/AntdInputNumber.py +9 -3
- package/build/lib/feffery_antd_components/AntdMentions.py +8 -6
- package/build/lib/feffery_antd_components/AntdMenu.py +8 -4
- package/build/lib/feffery_antd_components/AntdPagination.py +9 -3
- package/build/lib/feffery_antd_components/AntdPictureUpload.py +23 -5
- package/build/lib/feffery_antd_components/AntdRadioGroup.py +7 -3
- package/build/lib/feffery_antd_components/AntdRate.py +7 -3
- package/build/lib/feffery_antd_components/AntdSegmented.py +7 -3
- package/build/lib/feffery_antd_components/AntdSegmentedColoring.py +7 -3
- package/build/lib/feffery_antd_components/AntdSelect.py +9 -3
- package/build/lib/feffery_antd_components/AntdSlider.py +7 -3
- package/build/lib/feffery_antd_components/AntdSwitch.py +9 -3
- package/build/lib/feffery_antd_components/AntdTable.py +11 -5
- package/build/lib/feffery_antd_components/AntdTabs.py +31 -3
- package/build/lib/feffery_antd_components/AntdTimePicker.py +15 -5
- package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +13 -5
- package/build/lib/feffery_antd_components/AntdTransfer.py +7 -3
- package/build/lib/feffery_antd_components/AntdTree.py +37 -5
- package/build/lib/feffery_antd_components/AntdTreeSelect.py +7 -3
- package/build/lib/feffery_antd_components/AntdUpload.py +25 -5
- package/build/lib/feffery_antd_components/__init__.py +34 -2
- package/build/lib/feffery_antd_components/_imports_.py +6 -4
- package/build/lib/feffery_antd_components/alias.py +118 -116
- package/build/lib/feffery_antd_components/async-antd_table.js +1 -0
- package/build/lib/feffery_antd_components/async-antd_upload.js +1 -0
- package/build/lib/feffery_antd_components/async-data_display.js +1 -0
- package/build/lib/feffery_antd_components/async-data_entry.js +1 -0
- package/build/lib/feffery_antd_components/async-upload.js +1 -0
- package/build/lib/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/build/lib/feffery_antd_components/metadata.json +2001 -794
- package/build/lib/feffery_antd_components/package-info.json +1 -2
- package/build/lib/feffery_antd_components/utils.py +211 -0
- package/feffery_antd_components/AntdButton.py +6 -3
- package/feffery_antd_components/AntdCascader.py +9 -3
- package/feffery_antd_components/AntdCheckbox.py +9 -3
- package/feffery_antd_components/AntdCheckboxGroup.py +7 -3
- package/feffery_antd_components/AntdComment.py +7 -3
- package/feffery_antd_components/AntdDatePicker.py +15 -5
- package/feffery_antd_components/AntdDateRangePicker.py +13 -5
- package/feffery_antd_components/AntdDraggerUpload.py +25 -5
- package/feffery_antd_components/AntdDropdown.py +7 -3
- package/feffery_antd_components/AntdForm.py +9 -3
- package/feffery_antd_components/AntdFormItem.py +5 -1
- package/feffery_antd_components/AntdInput.py +7 -3
- package/feffery_antd_components/AntdInputNumber.py +9 -3
- package/feffery_antd_components/AntdMentions.py +8 -6
- package/feffery_antd_components/AntdMenu.py +8 -4
- package/feffery_antd_components/AntdPagination.py +9 -3
- package/feffery_antd_components/AntdPictureUpload.py +23 -5
- package/feffery_antd_components/AntdRadioGroup.py +7 -3
- package/feffery_antd_components/AntdRate.py +7 -3
- package/feffery_antd_components/AntdSegmented.py +7 -3
- package/feffery_antd_components/AntdSegmentedColoring.py +7 -3
- package/feffery_antd_components/AntdSelect.py +9 -3
- package/feffery_antd_components/AntdSlider.py +7 -3
- package/feffery_antd_components/AntdSwitch.py +9 -3
- package/feffery_antd_components/AntdTable.py +9 -3
- package/feffery_antd_components/AntdTabs.py +31 -3
- package/feffery_antd_components/AntdTimePicker.py +15 -5
- package/feffery_antd_components/AntdTimeRangePicker.py +13 -5
- package/feffery_antd_components/AntdTransfer.py +7 -3
- package/feffery_antd_components/AntdTree.py +35 -5
- package/feffery_antd_components/AntdTreeSelect.py +7 -3
- package/feffery_antd_components/AntdUpload.py +25 -5
- package/feffery_antd_components/__init__.py +34 -2
- package/feffery_antd_components/_imports_.py +4 -4
- package/feffery_antd_components/alias.py +118 -116
- package/feffery_antd_components/async-antd_table.js +1 -0
- package/feffery_antd_components/async-data_display.js +1 -0
- package/feffery_antd_components/async-data_entry.js +1 -0
- package/feffery_antd_components/async-upload.js +1 -0
- package/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/feffery_antd_components/metadata.json +1700 -592
- package/feffery_antd_components/package-info.json +1 -1
- package/feffery_antd_components/utils.py +211 -0
- package/package.json +1 -1
- package/setup.py +3 -0
- package/src/jl/'feffery'_antdbutton.jl +3 -1
- package/src/jl/'feffery'_antdcascader.jl +4 -1
- package/src/jl/'feffery'_antdcheckbox.jl +4 -1
- package/src/jl/'feffery'_antdcheckboxgroup.jl +3 -1
- package/src/jl/'feffery'_antdcomment.jl +3 -1
- package/src/jl/'feffery'_antddatepicker.jl +6 -1
- package/src/jl/'feffery'_antddaterangepicker.jl +5 -1
- package/src/jl/'feffery'_antddraggerupload.jl +17 -7
- package/src/jl/'feffery'_antddropdown.jl +3 -1
- package/src/jl/'feffery'_antdform.jl +6 -3
- package/src/jl/'feffery'_antdformitem.jl +4 -2
- package/src/jl/'feffery'_antdinput.jl +3 -1
- package/src/jl/'feffery'_antdinputnumber.jl +4 -1
- package/src/jl/'feffery'_antdmentions.jl +3 -2
- package/src/jl/'feffery'_antdmenu.jl +3 -1
- package/src/jl/'feffery'_antdpagination.jl +4 -1
- package/src/jl/'feffery'_antdpictureupload.jl +15 -6
- package/src/jl/'feffery'_antdradiogroup.jl +3 -1
- package/src/jl/'feffery'_antdrate.jl +3 -1
- package/src/jl/'feffery'_antdsegmented.jl +3 -1
- package/src/jl/'feffery'_antdsegmentedcoloring.jl +3 -1
- package/src/jl/'feffery'_antdselect.jl +4 -1
- package/src/jl/'feffery'_antdslider.jl +3 -1
- package/src/jl/'feffery'_antdswitch.jl +4 -1
- package/src/jl/'feffery'_antdtable.jl +6 -3
- package/src/jl/'feffery'_antdtabs.jl +17 -3
- package/src/jl/'feffery'_antdtimepicker.jl +6 -1
- package/src/jl/'feffery'_antdtimerangepicker.jl +5 -1
- package/src/jl/'feffery'_antdtransfer.jl +3 -1
- package/src/jl/'feffery'_antdtree.jl +16 -1
- package/src/jl/'feffery'_antdtreeselect.jl +3 -1
- package/src/jl/'feffery'_antdupload.jl +17 -7
- package/src/lib/components/dataDisplay/AntdAccordion.react.js +9 -76
- package/src/lib/components/dataDisplay/AntdAvatar.react.js +11 -108
- package/src/lib/components/dataDisplay/AntdAvatarGroup.react.js +10 -40
- package/src/lib/components/dataDisplay/AntdBadge.react.js +9 -55
- package/src/lib/components/dataDisplay/AntdCarousel.react.js +9 -44
- package/src/lib/components/dataDisplay/AntdComment.react.js +19 -142
- package/src/lib/components/dataDisplay/AntdCountdown.react.js +9 -52
- package/src/lib/components/dataDisplay/AntdEmpty.react.js +9 -49
- package/src/lib/components/dataDisplay/AntdImage.react.js +11 -99
- package/src/lib/components/dataDisplay/AntdPopover.react.js +9 -78
- package/src/lib/components/dataDisplay/AntdRibbon.react.js +9 -36
- package/src/lib/components/dataDisplay/AntdSegmented.react.js +20 -99
- package/src/lib/components/dataDisplay/AntdSpoiler.react.js +9 -77
- package/src/lib/components/dataDisplay/AntdTable.react.js +29 -1866
- package/src/lib/components/dataDisplay/AntdTimeline.react.js +9 -46
- package/src/lib/components/dataDisplay/AntdTooltip.react.js +10 -69
- package/src/lib/components/dataDisplay/AntdTree.react.js +70 -312
- package/src/lib/components/dataDisplay/card/AntdCard.react.js +9 -66
- package/src/lib/components/dataDisplay/card/AntdCardGrid.react.js +9 -35
- package/src/lib/components/dataDisplay/descriptions/AntdDescriptionItem.react.js +10 -40
- package/src/lib/components/dataDisplay/descriptions/AntdDescriptions.react.js +10 -120
- package/src/lib/components/dataDisplay/tabs/AntdTabs.react.js +48 -215
- package/src/lib/components/{dataDisplay → dataEntry}/AntdCalendar.react.js +9 -64
- package/src/lib/components/dataEntry/AntdCascader.react.js +20 -133
- package/src/lib/components/dataEntry/AntdCheckbox.react.js +21 -61
- package/src/lib/components/dataEntry/AntdCheckboxGroup.react.js +17 -58
- package/src/lib/components/dataEntry/AntdDatePicker.react.js +29 -408
- package/src/lib/components/dataEntry/AntdDateRangePicker.react.js +24 -431
- package/src/lib/components/dataEntry/AntdInput.react.js +19 -312
- package/src/lib/components/dataEntry/AntdInputNumber.react.js +21 -121
- package/src/lib/components/dataEntry/AntdMentions.react.js +16 -104
- package/src/lib/components/dataEntry/AntdRadioGroup.react.js +17 -122
- package/src/lib/components/dataEntry/AntdRate.react.js +17 -63
- package/src/lib/components/dataEntry/AntdSegmentedColoring.react.js +131 -0
- package/src/lib/components/dataEntry/AntdSelect.react.js +22 -275
- package/src/lib/components/dataEntry/AntdSlider.react.js +17 -110
- package/src/lib/components/dataEntry/AntdSwitch.react.js +21 -71
- package/src/lib/components/dataEntry/AntdTimePicker.react.js +28 -108
- package/src/lib/components/dataEntry/AntdTimeRangePicker.react.js +24 -126
- package/src/lib/components/dataEntry/AntdTransfer.react.js +17 -119
- package/src/lib/components/dataEntry/AntdTreeSelect.react.js +19 -194
- package/src/lib/components/dataEntry/check-card/AntdCheckCard.react.js +10 -66
- package/src/lib/components/dataEntry/check-card/AntdCheckCardGroup.react.js +10 -79
- package/src/lib/components/dataEntry/form/AntdForm.react.js +27 -41
- package/src/lib/components/dataEntry/form/AntdFormItem.react.js +21 -55
- package/src/lib/components/dataEntry/upload/AntdDraggerUpload.react.js +42 -396
- package/src/lib/components/dataEntry/upload/AntdPictureUpload.react.js +37 -431
- package/src/lib/components/dataEntry/upload/AntdUpload.react.js +44 -382
- package/src/lib/components/feedback/AntdMessage.react.js +1 -1
- package/src/lib/components/feedback/AntdSpin.react.js +6 -6
- package/src/lib/components/feedback/skeleton/AntdCustomSkeleton.react.js +5 -5
- package/src/lib/components/feedback/skeleton/AntdSkeleton.react.js +5 -5
- package/src/lib/components/general/AntdButton.react.js +9 -0
- package/src/lib/components/locales.react.js +4 -0
- package/src/lib/components/navigation/AntdDropdown.react.js +24 -3
- package/src/lib/components/navigation/AntdMenu.react.js +25 -11
- package/src/lib/components/navigation/AntdPagination.react.js +32 -3
- package/src/lib/components/styles.css +9 -0
- package/src/lib/fragments/AntdTable.react.js +1897 -0
- package/src/lib/fragments/dataDisplay/AntdAccordion.react.js +87 -0
- package/src/lib/fragments/dataDisplay/AntdAvatar.react.js +116 -0
- package/src/lib/fragments/dataDisplay/AntdAvatarGroup.react.js +50 -0
- package/src/lib/fragments/dataDisplay/AntdBadge.react.js +66 -0
- package/src/lib/fragments/dataDisplay/AntdCarousel.react.js +54 -0
- package/src/lib/fragments/dataDisplay/AntdComment.react.js +164 -0
- package/src/lib/fragments/dataDisplay/AntdCountdown.react.js +62 -0
- package/src/lib/fragments/dataDisplay/AntdEmpty.react.js +60 -0
- package/src/lib/fragments/dataDisplay/AntdImage.react.js +107 -0
- package/src/lib/fragments/dataDisplay/AntdPopover.react.js +89 -0
- package/src/lib/fragments/dataDisplay/AntdRibbon.react.js +47 -0
- package/src/lib/fragments/dataDisplay/AntdSegmented.react.js +119 -0
- package/src/lib/fragments/dataDisplay/AntdSpoiler.react.js +88 -0
- package/src/lib/fragments/dataDisplay/AntdTimeline.react.js +56 -0
- package/src/lib/fragments/dataDisplay/AntdTooltip.react.js +79 -0
- package/src/lib/fragments/dataDisplay/AntdTree.react.js +485 -0
- package/src/lib/fragments/dataDisplay/card/AntdCard.react.js +76 -0
- package/src/lib/fragments/dataDisplay/card/AntdCardGrid.react.js +45 -0
- package/src/lib/fragments/dataDisplay/descriptions/AntdDescriptionItem.react.js +50 -0
- package/src/lib/fragments/dataDisplay/descriptions/AntdDescriptions.react.js +130 -0
- package/src/lib/fragments/dataDisplay/tabs/AntdTabPane.react.js +105 -0
- package/src/lib/fragments/dataDisplay/tabs/AntdTabs.react.js +288 -0
- package/src/lib/fragments/dataEntry/AntdCalendar.react.js +74 -0
- package/src/lib/fragments/dataEntry/AntdCascader.react.js +159 -0
- package/src/lib/fragments/dataEntry/AntdCheckbox.react.js +87 -0
- package/src/lib/fragments/dataEntry/AntdCheckboxGroup.react.js +82 -0
- package/src/lib/fragments/dataEntry/AntdDatePicker.react.js +438 -0
- package/src/lib/fragments/dataEntry/AntdDateRangePicker.react.js +460 -0
- package/src/lib/fragments/dataEntry/AntdInput.react.js +333 -0
- package/src/lib/fragments/dataEntry/AntdInputNumber.react.js +147 -0
- package/src/lib/fragments/dataEntry/AntdMentions.react.js +121 -0
- package/src/lib/fragments/dataEntry/AntdRadioGroup.react.js +146 -0
- package/src/lib/fragments/dataEntry/AntdRate.react.js +87 -0
- package/src/lib/{components/other → fragments/dataEntry}/AntdSegmentedColoring.react.js +20 -108
- package/src/lib/fragments/dataEntry/AntdSelect.react.js +300 -0
- package/src/lib/fragments/dataEntry/AntdSlider.react.js +134 -0
- package/src/lib/fragments/dataEntry/AntdSwitch.react.js +97 -0
- package/src/lib/fragments/dataEntry/AntdTimePicker.react.js +138 -0
- package/src/lib/fragments/dataEntry/AntdTimeRangePicker.react.js +154 -0
- package/src/lib/fragments/dataEntry/AntdTransfer.react.js +143 -0
- package/src/lib/fragments/dataEntry/AntdTreeSelect.react.js +216 -0
- package/src/lib/fragments/dataEntry/check-card/AntdCheckCard.react.js +77 -0
- package/src/lib/fragments/dataEntry/check-card/AntdCheckCardGroup.react.js +89 -0
- package/src/lib/fragments/dataEntry/form/AntdForm.react.js +53 -0
- package/src/lib/fragments/dataEntry/form/AntdFormItem.react.js +65 -0
- package/src/lib/fragments/upload/AntdDraggerUpload.react.js +471 -0
- package/src/lib/fragments/upload/AntdPictureUpload.react.js +488 -0
- package/src/lib/fragments/upload/AntdUpload.react.js +463 -0
- package/src/lib/index.js +4 -4
- package/usage.py +7 -14
- package/webpack.config.js +15 -2
- package/build/lib/feffery_antd_components/AntdAccordionItem.py +0 -64
- package/build/lib/feffery_antd_components/AntdPasteImage.py +0 -53
- package/feffery_antd_components/AntdAccordionItem.py +0 -64
- package/feffery_antd_components/AntdPasteImage.py +0 -53
- package/src/demo/App.js +0 -32
- package/src/demo/index.js +0 -5
|
@@ -15,6 +15,12 @@ Keyword arguments:
|
|
|
15
15
|
|
|
16
16
|
- addonBefore (a list of or a singular dash component, string or number; optional)
|
|
17
17
|
|
|
18
|
+
- autoFocus (boolean; default False)
|
|
19
|
+
|
|
20
|
+
- batchPropsNames (list of strings; optional)
|
|
21
|
+
|
|
22
|
+
- batchPropsValues (dict; optional)
|
|
23
|
+
|
|
18
24
|
- bordered (boolean; default True)
|
|
19
25
|
|
|
20
26
|
- className (string | dict; optional)
|
|
@@ -95,10 +101,10 @@ Keyword arguments:
|
|
|
95
101
|
_namespace = 'feffery_antd_components'
|
|
96
102
|
_type = 'AntdInputNumber'
|
|
97
103
|
@_explicitize_args
|
|
98
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, addonBefore=Component.UNDEFINED, addonAfter=Component.UNDEFINED, prefix=Component.UNDEFINED, controls=Component.UNDEFINED, keyboard=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, precision=Component.UNDEFINED, stringMode=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, debounceValue=Component.UNDEFINED, debounceWait=Component.UNDEFINED, nSubmit=Component.UNDEFINED, status=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
99
|
-
self._prop_names = ['id', 'addonAfter', 'addonBefore', 'bordered', 'className', 'controls', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'key', 'keyboard', 'loading_state', 'max', 'min', 'nSubmit', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'precision', 'prefix', 'readOnly', 'size', 'status', 'step', 'stringMode', 'style', 'value']
|
|
104
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, addonBefore=Component.UNDEFINED, addonAfter=Component.UNDEFINED, autoFocus=Component.UNDEFINED, prefix=Component.UNDEFINED, controls=Component.UNDEFINED, keyboard=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, precision=Component.UNDEFINED, stringMode=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, debounceValue=Component.UNDEFINED, debounceWait=Component.UNDEFINED, nSubmit=Component.UNDEFINED, status=Component.UNDEFINED, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
105
|
+
self._prop_names = ['id', 'addonAfter', 'addonBefore', 'autoFocus', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'controls', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'key', 'keyboard', 'loading_state', 'max', 'min', 'nSubmit', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'precision', 'prefix', 'readOnly', 'size', 'status', 'step', 'stringMode', 'style', 'value']
|
|
100
106
|
self._valid_wildcard_attributes = []
|
|
101
|
-
self.available_properties = ['id', 'addonAfter', 'addonBefore', 'bordered', 'className', 'controls', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'key', 'keyboard', 'loading_state', 'max', 'min', 'nSubmit', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'precision', 'prefix', 'readOnly', 'size', 'status', 'step', 'stringMode', 'style', 'value']
|
|
107
|
+
self.available_properties = ['id', 'addonAfter', 'addonBefore', 'autoFocus', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'controls', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'key', 'keyboard', 'loading_state', 'max', 'min', 'nSubmit', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'precision', 'prefix', 'readOnly', 'size', 'status', 'step', 'stringMode', 'style', 'value']
|
|
102
108
|
self.available_wildcard_properties = []
|
|
103
109
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
104
110
|
_locals = locals()
|
|
@@ -19,6 +19,10 @@ Keyword arguments:
|
|
|
19
19
|
|
|
20
20
|
- minRows (number; optional)
|
|
21
21
|
|
|
22
|
+
- batchPropsNames (list of strings; optional)
|
|
23
|
+
|
|
24
|
+
- batchPropsValues (dict; optional)
|
|
25
|
+
|
|
22
26
|
- className (string | dict; optional)
|
|
23
27
|
|
|
24
28
|
- defaultValue (string; optional)
|
|
@@ -50,12 +54,10 @@ Keyword arguments:
|
|
|
50
54
|
|
|
51
55
|
- placement (a value equal to: 'top', 'bottom'; default 'bottom')
|
|
52
56
|
|
|
53
|
-
- popupContainer (a value equal to: 'parent', 'body';
|
|
57
|
+
- popupContainer (a value equal to: 'parent', 'body'; optional)
|
|
54
58
|
|
|
55
59
|
- prefix (string; default '@')
|
|
56
60
|
|
|
57
|
-
- readOnly (boolean; default False)
|
|
58
|
-
|
|
59
61
|
- selectedOptions (list of strings; optional)
|
|
60
62
|
|
|
61
63
|
- status (a value equal to: 'error', 'warning'; optional)
|
|
@@ -68,10 +70,10 @@ Keyword arguments:
|
|
|
68
70
|
_namespace = 'feffery_antd_components'
|
|
69
71
|
_type = 'AntdMentions'
|
|
70
72
|
@_explicitize_args
|
|
71
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, autoSize=Component.UNDEFINED, prefix=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, options=Component.REQUIRED, selectedOptions=Component.UNDEFINED, disabled=Component.UNDEFINED, placement=Component.UNDEFINED, status=Component.UNDEFINED, popupContainer=Component.UNDEFINED,
|
|
72
|
-
self._prop_names = ['id', 'autoSize', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', '
|
|
73
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, autoSize=Component.UNDEFINED, prefix=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, options=Component.REQUIRED, selectedOptions=Component.UNDEFINED, disabled=Component.UNDEFINED, placement=Component.UNDEFINED, status=Component.UNDEFINED, popupContainer=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
74
|
+
self._prop_names = ['id', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'selectedOptions', 'status', 'style', 'value']
|
|
73
75
|
self._valid_wildcard_attributes = []
|
|
74
|
-
self.available_properties = ['id', 'autoSize', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', '
|
|
76
|
+
self.available_properties = ['id', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'selectedOptions', 'status', 'style', 'value']
|
|
75
77
|
self.available_wildcard_properties = []
|
|
76
78
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
77
79
|
_locals = locals()
|
|
@@ -21,6 +21,8 @@ Keyword arguments:
|
|
|
21
21
|
|
|
22
22
|
- inlineCollapsed (boolean; default False)
|
|
23
23
|
|
|
24
|
+
- inlineIndent (number; default 24)
|
|
25
|
+
|
|
24
26
|
- key (string; optional)
|
|
25
27
|
|
|
26
28
|
- loading_state (dict; optional)
|
|
@@ -36,6 +38,8 @@ Keyword arguments:
|
|
|
36
38
|
- prop_name (string; optional):
|
|
37
39
|
Holds which property is loading.
|
|
38
40
|
|
|
41
|
+
- menuItemKeyToTitle (dict with strings as keys and values of type a list of or a singular dash component, string or number; optional)
|
|
42
|
+
|
|
39
43
|
- menuItems (list; optional)
|
|
40
44
|
|
|
41
45
|
- mode (a value equal to: 'vertical', 'horizontal', 'inline'; default 'vertical')
|
|
@@ -68,15 +72,15 @@ Keyword arguments:
|
|
|
68
72
|
- style (dict; optional)
|
|
69
73
|
|
|
70
74
|
- theme (a value equal to: 'light', 'dark'; default 'light')"""
|
|
71
|
-
_children_props = []
|
|
75
|
+
_children_props = ['menuItemKeyToTitle{}']
|
|
72
76
|
_base_nodes = ['children']
|
|
73
77
|
_namespace = 'feffery_antd_components'
|
|
74
78
|
_type = 'AntdMenu'
|
|
75
79
|
@_explicitize_args
|
|
76
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, menuItems=Component.UNDEFINED, mode=Component.UNDEFINED, theme=Component.UNDEFINED, currentKey=Component.UNDEFINED, openKeys=Component.UNDEFINED, defaultOpenKeys=Component.UNDEFINED, defaultSelectedKey=Component.UNDEFINED, renderCollapsedButton=Component.UNDEFINED, popupContainer=Component.UNDEFINED, inlineCollapsed=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
77
|
-
self._prop_names = ['id', 'className', 'currentKey', 'defaultOpenKeys', 'defaultSelectedKey', 'inlineCollapsed', 'key', 'loading_state', 'menuItems', 'mode', 'openKeys', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'renderCollapsedButton', 'style', 'theme']
|
|
80
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, menuItems=Component.UNDEFINED, menuItemKeyToTitle=Component.UNDEFINED, mode=Component.UNDEFINED, theme=Component.UNDEFINED, currentKey=Component.UNDEFINED, openKeys=Component.UNDEFINED, defaultOpenKeys=Component.UNDEFINED, defaultSelectedKey=Component.UNDEFINED, renderCollapsedButton=Component.UNDEFINED, popupContainer=Component.UNDEFINED, inlineCollapsed=Component.UNDEFINED, inlineIndent=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
81
|
+
self._prop_names = ['id', 'className', 'currentKey', 'defaultOpenKeys', 'defaultSelectedKey', 'inlineCollapsed', 'inlineIndent', 'key', 'loading_state', 'menuItemKeyToTitle', 'menuItems', 'mode', 'openKeys', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'renderCollapsedButton', 'style', 'theme']
|
|
78
82
|
self._valid_wildcard_attributes = []
|
|
79
|
-
self.available_properties = ['id', 'className', 'currentKey', 'defaultOpenKeys', 'defaultSelectedKey', 'inlineCollapsed', 'key', 'loading_state', 'menuItems', 'mode', 'openKeys', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'renderCollapsedButton', 'style', 'theme']
|
|
83
|
+
self.available_properties = ['id', 'className', 'currentKey', 'defaultOpenKeys', 'defaultSelectedKey', 'inlineCollapsed', 'inlineIndent', 'key', 'loading_state', 'menuItemKeyToTitle', 'menuItems', 'mode', 'openKeys', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'renderCollapsedButton', 'style', 'theme']
|
|
80
84
|
self.available_wildcard_properties = []
|
|
81
85
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
82
86
|
_locals = locals()
|
|
@@ -11,6 +11,10 @@ Keyword arguments:
|
|
|
11
11
|
|
|
12
12
|
- id (string; optional)
|
|
13
13
|
|
|
14
|
+
- batchPropsNames (list of strings; optional)
|
|
15
|
+
|
|
16
|
+
- batchPropsValues (dict; optional)
|
|
17
|
+
|
|
14
18
|
- className (string | dict; optional)
|
|
15
19
|
|
|
16
20
|
- current (number; optional)
|
|
@@ -63,6 +67,8 @@ Keyword arguments:
|
|
|
63
67
|
is kept after the browser quit. session: window.sessionStorage,
|
|
64
68
|
data is cleared once the browser quit.
|
|
65
69
|
|
|
70
|
+
- showLessItems (boolean; default False)
|
|
71
|
+
|
|
66
72
|
- showQuickJumper (boolean; default False)
|
|
67
73
|
|
|
68
74
|
- showSizeChanger (boolean; default False)
|
|
@@ -85,10 +91,10 @@ Keyword arguments:
|
|
|
85
91
|
_namespace = 'feffery_antd_components'
|
|
86
92
|
_type = 'AntdPagination'
|
|
87
93
|
@_explicitize_args
|
|
88
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, defaultCurrent=Component.UNDEFINED, defaultPageSize=Component.UNDEFINED, current=Component.UNDEFINED, disabled=Component.UNDEFINED, hideOnSinglePage=Component.UNDEFINED, pageSize=Component.UNDEFINED, pageSizeOptions=Component.UNDEFINED, showSizeChanger=Component.UNDEFINED, showQuickJumper=Component.UNDEFINED, showTotalPrefix=Component.UNDEFINED, showTotalSuffix=Component.UNDEFINED, simple=Component.UNDEFINED, size=Component.UNDEFINED, total=Component.UNDEFINED, showTotal=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
89
|
-
self._prop_names = ['id', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
|
|
94
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, defaultCurrent=Component.UNDEFINED, defaultPageSize=Component.UNDEFINED, current=Component.UNDEFINED, disabled=Component.UNDEFINED, hideOnSinglePage=Component.UNDEFINED, pageSize=Component.UNDEFINED, pageSizeOptions=Component.UNDEFINED, showSizeChanger=Component.UNDEFINED, showQuickJumper=Component.UNDEFINED, showTotalPrefix=Component.UNDEFINED, showTotalSuffix=Component.UNDEFINED, simple=Component.UNDEFINED, size=Component.UNDEFINED, total=Component.UNDEFINED, showTotal=Component.UNDEFINED, showLessItems=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
95
|
+
self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showLessItems', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
|
|
90
96
|
self._valid_wildcard_attributes = []
|
|
91
|
-
self.available_properties = ['id', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
|
|
97
|
+
self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showLessItems', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
|
|
92
98
|
self.available_wildcard_properties = []
|
|
93
99
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
94
100
|
_locals = locals()
|
|
@@ -13,6 +13,8 @@ Keyword arguments:
|
|
|
13
13
|
|
|
14
14
|
- apiUrl (string; optional)
|
|
15
15
|
|
|
16
|
+
- apiUrlExtraParams (dict; optional)
|
|
17
|
+
|
|
16
18
|
- buttonContent (a list of or a singular dash component, string or number; optional)
|
|
17
19
|
|
|
18
20
|
- className (string | dict; optional)
|
|
@@ -39,6 +41,10 @@ Keyword arguments:
|
|
|
39
41
|
|
|
40
42
|
- downloadUrl (string; optional)
|
|
41
43
|
|
|
44
|
+
- downloadUrlExtraParams (dict; optional)
|
|
45
|
+
|
|
46
|
+
- downloadUrlFromBackend (boolean; default False)
|
|
47
|
+
|
|
42
48
|
- editConfig (dict; optional)
|
|
43
49
|
|
|
44
50
|
`editConfig` is a dict with keys:
|
|
@@ -93,7 +99,11 @@ Keyword arguments:
|
|
|
93
99
|
|
|
94
100
|
- taskId (string; optional)
|
|
95
101
|
|
|
96
|
-
- taskStatus (string; optional)
|
|
102
|
+
- taskStatus (string; optional)
|
|
103
|
+
|
|
104
|
+
- uploadResponse (boolean | number | string | dict | list; optional)
|
|
105
|
+
|
|
106
|
+
- url (string; optional) | list of dicts with keys:
|
|
97
107
|
|
|
98
108
|
- completeTimestamp (number; optional)
|
|
99
109
|
|
|
@@ -105,6 +115,10 @@ Keyword arguments:
|
|
|
105
115
|
|
|
106
116
|
- taskStatus (string; optional)
|
|
107
117
|
|
|
118
|
+
- uploadResponse (boolean | number | string | dict | list; optional)
|
|
119
|
+
|
|
120
|
+
- url (string; optional)
|
|
121
|
+
|
|
108
122
|
- listUploadTaskRecord (list of dicts; optional)
|
|
109
123
|
|
|
110
124
|
`listUploadTaskRecord` is a list of dicts with keys:
|
|
@@ -121,6 +135,8 @@ Keyword arguments:
|
|
|
121
135
|
|
|
122
136
|
- uid (string; optional)
|
|
123
137
|
|
|
138
|
+
- uploadResponse (boolean | number | string | dict | list; optional)
|
|
139
|
+
|
|
124
140
|
- url (string; optional)
|
|
125
141
|
|
|
126
142
|
- loading_state (dict; optional)
|
|
@@ -176,16 +192,18 @@ Keyword arguments:
|
|
|
176
192
|
|
|
177
193
|
- style (dict; optional)
|
|
178
194
|
|
|
179
|
-
- uploadId (string; optional)
|
|
195
|
+
- uploadId (string; optional)
|
|
196
|
+
|
|
197
|
+
- withCredentials (boolean; default False)"""
|
|
180
198
|
_children_props = ['buttonContent']
|
|
181
199
|
_base_nodes = ['buttonContent', 'children']
|
|
182
200
|
_namespace = 'feffery_antd_components'
|
|
183
201
|
_type = 'AntdPictureUpload'
|
|
184
202
|
@_explicitize_args
|
|
185
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, apiUrl=Component.UNDEFINED, headers=Component.UNDEFINED, downloadUrl=Component.UNDEFINED, editable=Component.UNDEFINED, editConfig=Component.UNDEFINED, fileListMaxLength=Component.UNDEFINED, fileTypes=Component.UNDEFINED, buttonContent=Component.UNDEFINED, uploadId=Component.UNDEFINED, fileMaxSize=Component.UNDEFINED, failedTooltipInfo=Component.UNDEFINED, showRemoveIcon=Component.UNDEFINED, showPreviewIcon=Component.UNDEFINED, confirmBeforeDelete=Component.UNDEFINED, showPercent=Component.UNDEFINED, progressProps=Component.UNDEFINED, showSuccessMessage=Component.UNDEFINED, showErrorMessage=Component.UNDEFINED, lastUploadTaskRecord=Component.UNDEFINED, listUploadTaskRecord=Component.UNDEFINED, defaultFileList=Component.UNDEFINED, disabled=Component.UNDEFINED, status=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
186
|
-
self._prop_names = ['id', 'apiUrl', 'buttonContent', 'className', 'confirmBeforeDelete', 'defaultFileList', 'disabled', 'downloadUrl', 'editConfig', 'editable', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'progressProps', 'showErrorMessage', 'showPercent', 'showPreviewIcon', 'showRemoveIcon', 'showSuccessMessage', 'status', 'style', 'uploadId']
|
|
203
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, apiUrl=Component.UNDEFINED, apiUrlExtraParams=Component.UNDEFINED, headers=Component.UNDEFINED, withCredentials=Component.UNDEFINED, downloadUrl=Component.UNDEFINED, downloadUrlExtraParams=Component.UNDEFINED, downloadUrlFromBackend=Component.UNDEFINED, editable=Component.UNDEFINED, editConfig=Component.UNDEFINED, fileListMaxLength=Component.UNDEFINED, fileTypes=Component.UNDEFINED, buttonContent=Component.UNDEFINED, uploadId=Component.UNDEFINED, fileMaxSize=Component.UNDEFINED, failedTooltipInfo=Component.UNDEFINED, showRemoveIcon=Component.UNDEFINED, showPreviewIcon=Component.UNDEFINED, confirmBeforeDelete=Component.UNDEFINED, showPercent=Component.UNDEFINED, progressProps=Component.UNDEFINED, showSuccessMessage=Component.UNDEFINED, showErrorMessage=Component.UNDEFINED, lastUploadTaskRecord=Component.UNDEFINED, listUploadTaskRecord=Component.UNDEFINED, defaultFileList=Component.UNDEFINED, disabled=Component.UNDEFINED, status=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
204
|
+
self._prop_names = ['id', 'apiUrl', 'apiUrlExtraParams', 'buttonContent', 'className', 'confirmBeforeDelete', 'defaultFileList', 'disabled', 'downloadUrl', 'downloadUrlExtraParams', 'downloadUrlFromBackend', 'editConfig', 'editable', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'progressProps', 'showErrorMessage', 'showPercent', 'showPreviewIcon', 'showRemoveIcon', 'showSuccessMessage', 'status', 'style', 'uploadId', 'withCredentials']
|
|
187
205
|
self._valid_wildcard_attributes = []
|
|
188
|
-
self.available_properties = ['id', 'apiUrl', 'buttonContent', 'className', 'confirmBeforeDelete', 'defaultFileList', 'disabled', 'downloadUrl', 'editConfig', 'editable', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'progressProps', 'showErrorMessage', 'showPercent', 'showPreviewIcon', 'showRemoveIcon', 'showSuccessMessage', 'status', 'style', 'uploadId']
|
|
206
|
+
self.available_properties = ['id', 'apiUrl', 'apiUrlExtraParams', 'buttonContent', 'className', 'confirmBeforeDelete', 'defaultFileList', 'disabled', 'downloadUrl', 'downloadUrlExtraParams', 'downloadUrlFromBackend', 'editConfig', 'editable', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'progressProps', 'showErrorMessage', 'showPercent', 'showPreviewIcon', 'showRemoveIcon', 'showSuccessMessage', 'status', 'style', 'uploadId', 'withCredentials']
|
|
189
207
|
self.available_wildcard_properties = []
|
|
190
208
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
191
209
|
_locals = locals()
|
|
@@ -11,6 +11,10 @@ Keyword arguments:
|
|
|
11
11
|
|
|
12
12
|
- id (string; optional)
|
|
13
13
|
|
|
14
|
+
- batchPropsNames (list of strings; optional)
|
|
15
|
+
|
|
16
|
+
- batchPropsValues (dict; optional)
|
|
17
|
+
|
|
14
18
|
- buttonStyle (a value equal to: 'outline', 'solid'; default 'outline')
|
|
15
19
|
|
|
16
20
|
- className (string | dict; optional)
|
|
@@ -79,10 +83,10 @@ Keyword arguments:
|
|
|
79
83
|
_namespace = 'feffery_antd_components'
|
|
80
84
|
_type = 'AntdRadioGroup'
|
|
81
85
|
@_explicitize_args
|
|
82
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, direction=Component.UNDEFINED, options=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, optionType=Component.UNDEFINED, buttonStyle=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
83
|
-
self._prop_names = ['id', 'buttonStyle', 'className', 'defaultValue', 'direction', 'disabled', 'key', 'loading_state', 'optionType', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
|
|
86
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, direction=Component.UNDEFINED, options=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, optionType=Component.UNDEFINED, buttonStyle=Component.UNDEFINED, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
87
|
+
self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'buttonStyle', 'className', 'defaultValue', 'direction', 'disabled', 'key', 'loading_state', 'optionType', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
|
|
84
88
|
self._valid_wildcard_attributes = []
|
|
85
|
-
self.available_properties = ['id', 'buttonStyle', 'className', 'defaultValue', 'direction', 'disabled', 'key', 'loading_state', 'optionType', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
|
|
89
|
+
self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'buttonStyle', 'className', 'defaultValue', 'direction', 'disabled', 'key', 'loading_state', 'optionType', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
|
|
86
90
|
self.available_wildcard_properties = []
|
|
87
91
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
88
92
|
_locals = locals()
|
|
@@ -15,6 +15,10 @@ Keyword arguments:
|
|
|
15
15
|
|
|
16
16
|
- allowHalf (boolean; default False)
|
|
17
17
|
|
|
18
|
+
- batchPropsNames (list of strings; optional)
|
|
19
|
+
|
|
20
|
+
- batchPropsValues (dict; optional)
|
|
21
|
+
|
|
18
22
|
- className (string | dict; optional)
|
|
19
23
|
|
|
20
24
|
- count (number; default 5)
|
|
@@ -67,10 +71,10 @@ Keyword arguments:
|
|
|
67
71
|
_namespace = 'feffery_antd_components'
|
|
68
72
|
_type = 'AntdRate'
|
|
69
73
|
@_explicitize_args
|
|
70
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, allowClear=Component.UNDEFINED, allowHalf=Component.UNDEFINED, count=Component.UNDEFINED, tooltips=Component.UNDEFINED, disabled=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
71
|
-
self._prop_names = ['id', 'allowClear', 'allowHalf', 'className', 'count', 'defaultValue', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'style', 'tooltips', 'value']
|
|
74
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, allowClear=Component.UNDEFINED, allowHalf=Component.UNDEFINED, count=Component.UNDEFINED, tooltips=Component.UNDEFINED, disabled=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
75
|
+
self._prop_names = ['id', 'allowClear', 'allowHalf', 'batchPropsNames', 'batchPropsValues', 'className', 'count', 'defaultValue', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'style', 'tooltips', 'value']
|
|
72
76
|
self._valid_wildcard_attributes = []
|
|
73
|
-
self.available_properties = ['id', 'allowClear', 'allowHalf', 'className', 'count', 'defaultValue', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'style', 'tooltips', 'value']
|
|
77
|
+
self.available_properties = ['id', 'allowClear', 'allowHalf', 'batchPropsNames', 'batchPropsValues', 'className', 'count', 'defaultValue', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'style', 'tooltips', 'value']
|
|
74
78
|
self.available_wildcard_properties = []
|
|
75
79
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
76
80
|
_locals = locals()
|
|
@@ -11,6 +11,10 @@ Keyword arguments:
|
|
|
11
11
|
|
|
12
12
|
- id (string; optional)
|
|
13
13
|
|
|
14
|
+
- batchPropsNames (list of strings; optional)
|
|
15
|
+
|
|
16
|
+
- batchPropsValues (dict; optional)
|
|
17
|
+
|
|
14
18
|
- block (boolean; default False)
|
|
15
19
|
|
|
16
20
|
- className (string | dict; optional)
|
|
@@ -77,10 +81,10 @@ Keyword arguments:
|
|
|
77
81
|
_namespace = 'feffery_antd_components'
|
|
78
82
|
_type = 'AntdSegmented'
|
|
79
83
|
@_explicitize_args
|
|
80
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, options=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, block=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
81
|
-
self._prop_names = ['id', 'block', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
|
|
84
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, options=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, block=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
85
|
+
self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'block', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
|
|
82
86
|
self._valid_wildcard_attributes = []
|
|
83
|
-
self.available_properties = ['id', 'block', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
|
|
87
|
+
self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'block', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
|
|
84
88
|
self.available_wildcard_properties = []
|
|
85
89
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
86
90
|
_locals = locals()
|
|
@@ -11,6 +11,10 @@ Keyword arguments:
|
|
|
11
11
|
|
|
12
12
|
- id (string; optional)
|
|
13
13
|
|
|
14
|
+
- batchPropsNames (list of strings; optional)
|
|
15
|
+
|
|
16
|
+
- batchPropsValues (dict; optional)
|
|
17
|
+
|
|
14
18
|
- bordered (boolean; default True)
|
|
15
19
|
|
|
16
20
|
- breakpoints (list of numbers; required)
|
|
@@ -70,10 +74,10 @@ Keyword arguments:
|
|
|
70
74
|
_namespace = 'feffery_antd_components'
|
|
71
75
|
_type = 'AntdSegmentedColoring'
|
|
72
76
|
@_explicitize_args
|
|
73
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, breakpoints=Component.REQUIRED, colors=Component.REQUIRED, controls=Component.UNDEFINED, keyboard=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, precision=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, readOnly=Component.UNDEFINED, pureLegend=Component.UNDEFINED, inputNumberStyle=Component.UNDEFINED, colorBlockStyle=Component.UNDEFINED, colorBlockPosition=Component.UNDEFINED, pureLegendLabelStyle=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
74
|
-
self._prop_names = ['id', 'bordered', 'breakpoints', 'className', 'colorBlockPosition', 'colorBlockStyle', 'colors', 'controls', 'disabled', 'inputNumberStyle', 'key', 'keyboard', 'loading_state', 'max', 'min', 'placeholder', 'precision', 'pureLegend', 'pureLegendLabelStyle', 'readOnly', 'size', 'step', 'style']
|
|
77
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, breakpoints=Component.REQUIRED, colors=Component.REQUIRED, controls=Component.UNDEFINED, keyboard=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, precision=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, readOnly=Component.UNDEFINED, pureLegend=Component.UNDEFINED, inputNumberStyle=Component.UNDEFINED, colorBlockStyle=Component.UNDEFINED, colorBlockPosition=Component.UNDEFINED, pureLegendLabelStyle=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
78
|
+
self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'bordered', 'breakpoints', 'className', 'colorBlockPosition', 'colorBlockStyle', 'colors', 'controls', 'disabled', 'inputNumberStyle', 'key', 'keyboard', 'loading_state', 'max', 'min', 'placeholder', 'precision', 'pureLegend', 'pureLegendLabelStyle', 'readOnly', 'size', 'step', 'style']
|
|
75
79
|
self._valid_wildcard_attributes = []
|
|
76
|
-
self.available_properties = ['id', 'bordered', 'breakpoints', 'className', 'colorBlockPosition', 'colorBlockStyle', 'colors', 'controls', 'disabled', 'inputNumberStyle', 'key', 'keyboard', 'loading_state', 'max', 'min', 'placeholder', 'precision', 'pureLegend', 'pureLegendLabelStyle', 'readOnly', 'size', 'step', 'style']
|
|
80
|
+
self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'bordered', 'breakpoints', 'className', 'colorBlockPosition', 'colorBlockStyle', 'colors', 'controls', 'disabled', 'inputNumberStyle', 'key', 'keyboard', 'loading_state', 'max', 'min', 'placeholder', 'precision', 'pureLegend', 'pureLegendLabelStyle', 'readOnly', 'size', 'step', 'style']
|
|
77
81
|
self.available_wildcard_properties = []
|
|
78
82
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
79
83
|
_locals = locals()
|
|
@@ -15,8 +15,14 @@ Keyword arguments:
|
|
|
15
15
|
|
|
16
16
|
- autoClearSearchValue (boolean; default True)
|
|
17
17
|
|
|
18
|
+
- autoFocus (boolean; default False)
|
|
19
|
+
|
|
18
20
|
- autoSpin (boolean; default False)
|
|
19
21
|
|
|
22
|
+
- batchPropsNames (list of strings; optional)
|
|
23
|
+
|
|
24
|
+
- batchPropsValues (dict; optional)
|
|
25
|
+
|
|
20
26
|
- bordered (boolean; default True)
|
|
21
27
|
|
|
22
28
|
- className (string | dict; optional)
|
|
@@ -137,10 +143,10 @@ Keyword arguments:
|
|
|
137
143
|
_namespace = 'feffery_antd_components'
|
|
138
144
|
_type = 'AntdSelect'
|
|
139
145
|
@_explicitize_args
|
|
140
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, options=Component.UNDEFINED, listHeight=Component.UNDEFINED, colorsMode=Component.UNDEFINED, colorsNameWidth=Component.UNDEFINED, mode=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, maxTagCount=Component.UNDEFINED, status=Component.UNDEFINED, optionFilterProp=Component.UNDEFINED, searchValue=Component.UNDEFINED, optionFilterMode=Component.UNDEFINED, debounceSearchValue=Component.UNDEFINED, debounceWait=Component.UNDEFINED, autoSpin=Component.UNDEFINED, autoClearSearchValue=Component.UNDEFINED, emptyContent=Component.UNDEFINED, loadingEmptyContent=Component.UNDEFINED, dropdownBefore=Component.UNDEFINED, dropdownAfter=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
141
|
-
self._prop_names = ['id', 'allowClear', 'autoClearSearchValue', 'autoSpin', 'bordered', 'className', 'colorsMode', 'colorsNameWidth', 'debounceSearchValue', 'debounceWait', 'defaultValue', 'disabled', 'dropdownAfter', 'dropdownBefore', 'emptyContent', 'key', 'listHeight', 'loadingEmptyContent', 'loading_state', 'locale', 'maxTagCount', 'mode', 'optionFilterMode', 'optionFilterProp', 'options', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'searchValue', 'size', 'status', 'style', 'value']
|
|
146
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, options=Component.UNDEFINED, listHeight=Component.UNDEFINED, colorsMode=Component.UNDEFINED, colorsNameWidth=Component.UNDEFINED, mode=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, maxTagCount=Component.UNDEFINED, status=Component.UNDEFINED, optionFilterProp=Component.UNDEFINED, searchValue=Component.UNDEFINED, optionFilterMode=Component.UNDEFINED, debounceSearchValue=Component.UNDEFINED, debounceWait=Component.UNDEFINED, autoSpin=Component.UNDEFINED, autoClearSearchValue=Component.UNDEFINED, emptyContent=Component.UNDEFINED, loadingEmptyContent=Component.UNDEFINED, dropdownBefore=Component.UNDEFINED, dropdownAfter=Component.UNDEFINED, allowClear=Component.UNDEFINED, autoFocus=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
147
|
+
self._prop_names = ['id', 'allowClear', 'autoClearSearchValue', 'autoFocus', 'autoSpin', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'colorsMode', 'colorsNameWidth', 'debounceSearchValue', 'debounceWait', 'defaultValue', 'disabled', 'dropdownAfter', 'dropdownBefore', 'emptyContent', 'key', 'listHeight', 'loadingEmptyContent', 'loading_state', 'locale', 'maxTagCount', 'mode', 'optionFilterMode', 'optionFilterProp', 'options', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'searchValue', 'size', 'status', 'style', 'value']
|
|
142
148
|
self._valid_wildcard_attributes = []
|
|
143
|
-
self.available_properties = ['id', 'allowClear', 'autoClearSearchValue', 'autoSpin', 'bordered', 'className', 'colorsMode', 'colorsNameWidth', 'debounceSearchValue', 'debounceWait', 'defaultValue', 'disabled', 'dropdownAfter', 'dropdownBefore', 'emptyContent', 'key', 'listHeight', 'loadingEmptyContent', 'loading_state', 'locale', 'maxTagCount', 'mode', 'optionFilterMode', 'optionFilterProp', 'options', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'searchValue', 'size', 'status', 'style', 'value']
|
|
149
|
+
self.available_properties = ['id', 'allowClear', 'autoClearSearchValue', 'autoFocus', 'autoSpin', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'colorsMode', 'colorsNameWidth', 'debounceSearchValue', 'debounceWait', 'defaultValue', 'disabled', 'dropdownAfter', 'dropdownBefore', 'emptyContent', 'key', 'listHeight', 'loadingEmptyContent', 'loading_state', 'locale', 'maxTagCount', 'mode', 'optionFilterMode', 'optionFilterProp', 'options', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'searchValue', 'size', 'status', 'style', 'value']
|
|
144
150
|
self.available_wildcard_properties = []
|
|
145
151
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
146
152
|
_locals = locals()
|
|
@@ -11,6 +11,10 @@ Keyword arguments:
|
|
|
11
11
|
|
|
12
12
|
- id (string; optional)
|
|
13
13
|
|
|
14
|
+
- batchPropsNames (list of strings; optional)
|
|
15
|
+
|
|
16
|
+
- batchPropsValues (dict; optional)
|
|
17
|
+
|
|
14
18
|
- className (string | dict; optional)
|
|
15
19
|
|
|
16
20
|
- defaultValue (number | list of numbers; optional)
|
|
@@ -83,10 +87,10 @@ Keyword arguments:
|
|
|
83
87
|
_namespace = 'feffery_antd_components'
|
|
84
88
|
_type = 'AntdSlider'
|
|
85
89
|
@_explicitize_args
|
|
86
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, railStyle=Component.UNDEFINED, key=Component.UNDEFINED, vertical=Component.UNDEFINED, range=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, marks=Component.UNDEFINED, tooltipVisible=Component.UNDEFINED, tooltipPrefix=Component.UNDEFINED, tooltipSuffix=Component.UNDEFINED, disabled=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, popupContainer=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
87
|
-
self._prop_names = ['id', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'railStyle', 'range', 'readOnly', 'step', 'style', 'tooltipPrefix', 'tooltipSuffix', 'tooltipVisible', 'value', 'vertical']
|
|
90
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, railStyle=Component.UNDEFINED, key=Component.UNDEFINED, vertical=Component.UNDEFINED, range=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, marks=Component.UNDEFINED, tooltipVisible=Component.UNDEFINED, tooltipPrefix=Component.UNDEFINED, tooltipSuffix=Component.UNDEFINED, disabled=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, popupContainer=Component.UNDEFINED, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
91
|
+
self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'railStyle', 'range', 'readOnly', 'step', 'style', 'tooltipPrefix', 'tooltipSuffix', 'tooltipVisible', 'value', 'vertical']
|
|
88
92
|
self._valid_wildcard_attributes = []
|
|
89
|
-
self.available_properties = ['id', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'railStyle', 'range', 'readOnly', 'step', 'style', 'tooltipPrefix', 'tooltipSuffix', 'tooltipVisible', 'value', 'vertical']
|
|
93
|
+
self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'railStyle', 'range', 'readOnly', 'step', 'style', 'tooltipPrefix', 'tooltipSuffix', 'tooltipVisible', 'value', 'vertical']
|
|
90
94
|
self.available_wildcard_properties = []
|
|
91
95
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
92
96
|
_locals = locals()
|
|
@@ -11,6 +11,12 @@ Keyword arguments:
|
|
|
11
11
|
|
|
12
12
|
- id (string; optional)
|
|
13
13
|
|
|
14
|
+
- autoFocus (boolean; default False)
|
|
15
|
+
|
|
16
|
+
- batchPropsNames (list of strings; optional)
|
|
17
|
+
|
|
18
|
+
- batchPropsValues (dict; optional)
|
|
19
|
+
|
|
14
20
|
- checked (boolean; optional)
|
|
15
21
|
|
|
16
22
|
- checkedChildren (a list of or a singular dash component, string or number; optional)
|
|
@@ -67,10 +73,10 @@ Keyword arguments:
|
|
|
67
73
|
_namespace = 'feffery_antd_components'
|
|
68
74
|
_type = 'AntdSwitch'
|
|
69
75
|
@_explicitize_args
|
|
70
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, checked=Component.UNDEFINED, checkedChildren=Component.UNDEFINED, unCheckedChildren=Component.UNDEFINED, size=Component.UNDEFINED, loading=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
71
|
-
self._prop_names = ['id', 'checked', 'checkedChildren', 'className', 'disabled', 'key', 'loading', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'unCheckedChildren']
|
|
76
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, autoFocus=Component.UNDEFINED, checked=Component.UNDEFINED, checkedChildren=Component.UNDEFINED, unCheckedChildren=Component.UNDEFINED, size=Component.UNDEFINED, loading=Component.UNDEFINED, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
77
|
+
self._prop_names = ['id', 'autoFocus', 'batchPropsNames', 'batchPropsValues', 'checked', 'checkedChildren', 'className', 'disabled', 'key', 'loading', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'unCheckedChildren']
|
|
72
78
|
self._valid_wildcard_attributes = []
|
|
73
|
-
self.available_properties = ['id', 'checked', 'checkedChildren', 'className', 'disabled', 'key', 'loading', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'unCheckedChildren']
|
|
79
|
+
self.available_properties = ['id', 'autoFocus', 'batchPropsNames', 'batchPropsValues', 'checked', 'checkedChildren', 'className', 'disabled', 'key', 'loading', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'unCheckedChildren']
|
|
74
80
|
self.available_wildcard_properties = []
|
|
75
81
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
76
82
|
_locals = locals()
|
|
@@ -19,6 +19,8 @@ Keyword arguments:
|
|
|
19
19
|
|
|
20
20
|
- clickedContent (string; optional)
|
|
21
21
|
|
|
22
|
+
- clickedCustom (boolean | number | string | dict | list; optional)
|
|
23
|
+
|
|
22
24
|
- columns (list of dicts; optional)
|
|
23
25
|
|
|
24
26
|
`columns` is a list of dicts with keys:
|
|
@@ -122,8 +124,6 @@ Keyword arguments:
|
|
|
122
124
|
|
|
123
125
|
- rule (string; optional)
|
|
124
126
|
|
|
125
|
-
- columnsWidthResizable (boolean; default False)
|
|
126
|
-
|
|
127
127
|
- conditionalStyleFuncs (dict with strings as keys and values of type string; optional)
|
|
128
128
|
|
|
129
129
|
- containerId (string; optional)
|
|
@@ -320,6 +320,8 @@ Keyword arguments:
|
|
|
320
320
|
|
|
321
321
|
- value (string | number | list of string | numbers; optional)
|
|
322
322
|
|
|
323
|
+
- dataDeepCompare (boolean; default False)
|
|
324
|
+
|
|
323
325
|
- defaultExpandedRowKeys (list of strings; optional)
|
|
324
326
|
|
|
325
327
|
- defaultFilteredValues (dict with strings as keys and values of type list; optional):
|
|
@@ -413,6 +415,8 @@ Keyword arguments:
|
|
|
413
415
|
|
|
414
416
|
- position (a value equal to: 'topLeft', 'topCenter', 'topRight', 'bottomLeft', 'bottomCenter', 'bottomRight'; optional)
|
|
415
417
|
|
|
418
|
+
- showLessItems (boolean; optional)
|
|
419
|
+
|
|
416
420
|
- showQuickJumper (boolean; optional)
|
|
417
421
|
|
|
418
422
|
- showSizeChanger (boolean; optional)
|
|
@@ -441,6 +445,8 @@ Keyword arguments:
|
|
|
441
445
|
|
|
442
446
|
- recentlyCellDoubleClickRecord (dict; optional)
|
|
443
447
|
|
|
448
|
+
- recentlyChangedColumn (string; optional)
|
|
449
|
+
|
|
444
450
|
- recentlyChangedRow (dict; optional)
|
|
445
451
|
|
|
446
452
|
- recentlyCheckedDataIndex (string; optional)
|
|
@@ -540,10 +546,10 @@ Keyword arguments:
|
|
|
540
546
|
_namespace = 'feffery_antd_components'
|
|
541
547
|
_type = 'AntdTable'
|
|
542
548
|
@_explicitize_args
|
|
543
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, containerId=Component.UNDEFINED, columns=Component.UNDEFINED, data=Component.UNDEFINED, bordered=Component.UNDEFINED, maxHeight=Component.UNDEFINED, maxWidth=Component.UNDEFINED, size=Component.UNDEFINED, rowSelectionType=Component.UNDEFINED, selectedRowKeys=Component.UNDEFINED, rowSelectionWidth=Component.UNDEFINED, selectedRows=Component.UNDEFINED, selectedRowsSyncWithData=Component.UNDEFINED, sticky=Component.UNDEFINED, enableHoverListen=Component.UNDEFINED, recentlyMouseEnterColumnDataIndex=Component.UNDEFINED, recentlyMouseEnterRowKey=Component.UNDEFINED, recentlyMouseEnterRow=Component.UNDEFINED, titlePopoverInfo=Component.UNDEFINED, columnsFormatConstraint=Component.UNDEFINED, sortOptions=Component.UNDEFINED, filterOptions=Component.UNDEFINED, defaultFilteredValues=Component.UNDEFINED, pagination=Component.UNDEFINED, currentData=Component.UNDEFINED, recentlyChangedRow=Component.UNDEFINED, sorter=Component.UNDEFINED, filter=Component.UNDEFINED, mode=Component.UNDEFINED, summaryRowContents=Component.UNDEFINED, summaryRowFixed=Component.UNDEFINED, conditionalStyleFuncs=Component.UNDEFINED, expandedRowKeyToContent=Component.UNDEFINED, expandedRowWidth=Component.UNDEFINED, expandRowByClick=Component.UNDEFINED, defaultExpandedRowKeys=Component.UNDEFINED, enableCellClickListenColumns=Component.UNDEFINED, recentlyCellClickColumn=Component.UNDEFINED, recentlyCellClickRecord=Component.UNDEFINED, nClicksCell=Component.UNDEFINED, recentlyCellDoubleClickColumn=Component.UNDEFINED, recentlyCellDoubleClickRecord=Component.UNDEFINED, nDoubleClicksCell=Component.UNDEFINED, emptyContent=Component.UNDEFINED, cellUpdateOptimize=Component.UNDEFINED, miniChartHeight=Component.UNDEFINED, miniChartAnimation=Component.UNDEFINED, recentlyButtonClickedRow=Component.UNDEFINED, nClicksButton=Component.UNDEFINED, clickedContent=Component.UNDEFINED, recentlyButtonClickedDataIndex=Component.UNDEFINED, customFormatFuncs=Component.UNDEFINED, recentlyCheckedRow=Component.UNDEFINED, recentlyCheckedLabel=Component.UNDEFINED, recentlyCheckedDataIndex=Component.UNDEFINED, recentlyCheckedStatus=Component.UNDEFINED, recentlySwitchRow=Component.UNDEFINED, recentlySwitchDataIndex=Component.UNDEFINED, recentlySwitchStatus=Component.UNDEFINED, nClicksDropdownItem=Component.UNDEFINED, recentlyClickedDropdownItemTitle=Component.UNDEFINED, recentlyDropdownItemClickedDataIndex=Component.UNDEFINED, recentlyDropdownItemClickedRow=Component.UNDEFINED, recentlySelectRow=Component.UNDEFINED, recentlySelectDataIndex=Component.UNDEFINED, recentlySelectValue=Component.UNDEFINED, hiddenRowKeys=Component.UNDEFINED,
|
|
544
|
-
self._prop_names = ['id', 'bordered', 'cellUpdateOptimize', 'className', 'clickedContent', '
|
|
549
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, containerId=Component.UNDEFINED, columns=Component.UNDEFINED, data=Component.UNDEFINED, bordered=Component.UNDEFINED, maxHeight=Component.UNDEFINED, maxWidth=Component.UNDEFINED, size=Component.UNDEFINED, rowSelectionType=Component.UNDEFINED, selectedRowKeys=Component.UNDEFINED, rowSelectionWidth=Component.UNDEFINED, selectedRows=Component.UNDEFINED, selectedRowsSyncWithData=Component.UNDEFINED, sticky=Component.UNDEFINED, enableHoverListen=Component.UNDEFINED, recentlyMouseEnterColumnDataIndex=Component.UNDEFINED, recentlyMouseEnterRowKey=Component.UNDEFINED, recentlyMouseEnterRow=Component.UNDEFINED, titlePopoverInfo=Component.UNDEFINED, columnsFormatConstraint=Component.UNDEFINED, sortOptions=Component.UNDEFINED, filterOptions=Component.UNDEFINED, defaultFilteredValues=Component.UNDEFINED, pagination=Component.UNDEFINED, currentData=Component.UNDEFINED, recentlyChangedRow=Component.UNDEFINED, recentlyChangedColumn=Component.UNDEFINED, sorter=Component.UNDEFINED, filter=Component.UNDEFINED, mode=Component.UNDEFINED, summaryRowContents=Component.UNDEFINED, summaryRowFixed=Component.UNDEFINED, conditionalStyleFuncs=Component.UNDEFINED, expandedRowKeyToContent=Component.UNDEFINED, expandedRowWidth=Component.UNDEFINED, expandRowByClick=Component.UNDEFINED, defaultExpandedRowKeys=Component.UNDEFINED, enableCellClickListenColumns=Component.UNDEFINED, recentlyCellClickColumn=Component.UNDEFINED, recentlyCellClickRecord=Component.UNDEFINED, nClicksCell=Component.UNDEFINED, recentlyCellDoubleClickColumn=Component.UNDEFINED, recentlyCellDoubleClickRecord=Component.UNDEFINED, nDoubleClicksCell=Component.UNDEFINED, emptyContent=Component.UNDEFINED, cellUpdateOptimize=Component.UNDEFINED, miniChartHeight=Component.UNDEFINED, miniChartAnimation=Component.UNDEFINED, recentlyButtonClickedRow=Component.UNDEFINED, nClicksButton=Component.UNDEFINED, clickedContent=Component.UNDEFINED, clickedCustom=Component.UNDEFINED, recentlyButtonClickedDataIndex=Component.UNDEFINED, customFormatFuncs=Component.UNDEFINED, recentlyCheckedRow=Component.UNDEFINED, recentlyCheckedLabel=Component.UNDEFINED, recentlyCheckedDataIndex=Component.UNDEFINED, recentlyCheckedStatus=Component.UNDEFINED, recentlySwitchRow=Component.UNDEFINED, recentlySwitchDataIndex=Component.UNDEFINED, recentlySwitchStatus=Component.UNDEFINED, nClicksDropdownItem=Component.UNDEFINED, recentlyClickedDropdownItemTitle=Component.UNDEFINED, recentlyDropdownItemClickedDataIndex=Component.UNDEFINED, recentlyDropdownItemClickedRow=Component.UNDEFINED, recentlySelectRow=Component.UNDEFINED, recentlySelectDataIndex=Component.UNDEFINED, recentlySelectValue=Component.UNDEFINED, hiddenRowKeys=Component.UNDEFINED, dataDeepCompare=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
550
|
+
self._prop_names = ['id', 'bordered', 'cellUpdateOptimize', 'className', 'clickedContent', 'clickedCustom', 'columns', 'columnsFormatConstraint', 'conditionalStyleFuncs', 'containerId', 'currentData', 'customFormatFuncs', 'data', 'dataDeepCompare', 'defaultExpandedRowKeys', 'defaultFilteredValues', 'emptyContent', 'enableCellClickListenColumns', 'enableHoverListen', 'expandRowByClick', 'expandedRowKeyToContent', 'expandedRowWidth', 'filter', 'filterOptions', 'hiddenRowKeys', 'key', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'nClicksCell', 'nClicksDropdownItem', 'nDoubleClicksCell', 'pagination', 'recentlyButtonClickedDataIndex', 'recentlyButtonClickedRow', 'recentlyCellClickColumn', 'recentlyCellClickRecord', 'recentlyCellDoubleClickColumn', 'recentlyCellDoubleClickRecord', 'recentlyChangedColumn', 'recentlyChangedRow', 'recentlyCheckedDataIndex', 'recentlyCheckedLabel', 'recentlyCheckedRow', 'recentlyCheckedStatus', 'recentlyClickedDropdownItemTitle', 'recentlyDropdownItemClickedDataIndex', 'recentlyDropdownItemClickedRow', 'recentlyMouseEnterColumnDataIndex', 'recentlyMouseEnterRow', 'recentlyMouseEnterRowKey', 'recentlySelectDataIndex', 'recentlySelectRow', 'recentlySelectValue', 'recentlySwitchDataIndex', 'recentlySwitchRow', 'recentlySwitchStatus', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'selectedRowsSyncWithData', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'titlePopoverInfo']
|
|
545
551
|
self._valid_wildcard_attributes = []
|
|
546
|
-
self.available_properties = ['id', 'bordered', 'cellUpdateOptimize', 'className', 'clickedContent', '
|
|
552
|
+
self.available_properties = ['id', 'bordered', 'cellUpdateOptimize', 'className', 'clickedContent', 'clickedCustom', 'columns', 'columnsFormatConstraint', 'conditionalStyleFuncs', 'containerId', 'currentData', 'customFormatFuncs', 'data', 'dataDeepCompare', 'defaultExpandedRowKeys', 'defaultFilteredValues', 'emptyContent', 'enableCellClickListenColumns', 'enableHoverListen', 'expandRowByClick', 'expandedRowKeyToContent', 'expandedRowWidth', 'filter', 'filterOptions', 'hiddenRowKeys', 'key', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'nClicksCell', 'nClicksDropdownItem', 'nDoubleClicksCell', 'pagination', 'recentlyButtonClickedDataIndex', 'recentlyButtonClickedRow', 'recentlyCellClickColumn', 'recentlyCellClickRecord', 'recentlyCellDoubleClickColumn', 'recentlyCellDoubleClickRecord', 'recentlyChangedColumn', 'recentlyChangedRow', 'recentlyCheckedDataIndex', 'recentlyCheckedLabel', 'recentlyCheckedRow', 'recentlyCheckedStatus', 'recentlyClickedDropdownItemTitle', 'recentlyDropdownItemClickedDataIndex', 'recentlyDropdownItemClickedRow', 'recentlyMouseEnterColumnDataIndex', 'recentlyMouseEnterRow', 'recentlyMouseEnterRowKey', 'recentlySelectDataIndex', 'recentlySelectRow', 'recentlySelectValue', 'recentlySwitchDataIndex', 'recentlySwitchRow', 'recentlySwitchStatus', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'selectedRowsSyncWithData', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'titlePopoverInfo']
|
|
547
553
|
self.available_wildcard_properties = []
|
|
548
554
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
549
555
|
_locals = locals()
|
|
@@ -19,8 +19,20 @@ Keyword arguments:
|
|
|
19
19
|
|
|
20
20
|
- className (string | dict; optional)
|
|
21
21
|
|
|
22
|
+
- clickedContextMenu (dict; optional)
|
|
23
|
+
|
|
24
|
+
`clickedContextMenu` is a dict with keys:
|
|
25
|
+
|
|
26
|
+
- menuKey (string; optional)
|
|
27
|
+
|
|
28
|
+
- tabKey (string; optional)
|
|
29
|
+
|
|
30
|
+
- timestamp (number; optional)
|
|
31
|
+
|
|
22
32
|
- defaultActiveKey (string; optional)
|
|
23
33
|
|
|
34
|
+
- destroyInactiveTabPane (boolean; default False)
|
|
35
|
+
|
|
24
36
|
- disabledTabKeys (list of strings; optional)
|
|
25
37
|
|
|
26
38
|
- inkBarAnimated (boolean; default True)
|
|
@@ -33,6 +45,18 @@ Keyword arguments:
|
|
|
33
45
|
|
|
34
46
|
- closable (boolean; optional)
|
|
35
47
|
|
|
48
|
+
- contextMenu (list of dicts; optional)
|
|
49
|
+
|
|
50
|
+
`contextMenu` is a list of dicts with keys:
|
|
51
|
+
|
|
52
|
+
- icon (string; optional)
|
|
53
|
+
|
|
54
|
+
- iconRenderer (a value equal to: 'AntdIcon', 'fontawesome'; optional)
|
|
55
|
+
|
|
56
|
+
- key (string; optional)
|
|
57
|
+
|
|
58
|
+
- label (string; optional)
|
|
59
|
+
|
|
36
60
|
- disabled (boolean; optional)
|
|
37
61
|
|
|
38
62
|
- forceRender (boolean; optional)
|
|
@@ -87,6 +111,10 @@ Keyword arguments:
|
|
|
87
111
|
|
|
88
112
|
- tabBarRightExtraContent (a list of or a singular dash component, string or number; optional)
|
|
89
113
|
|
|
114
|
+
- tabCloseCounts (number; default 0)
|
|
115
|
+
|
|
116
|
+
- tabCount (number; optional)
|
|
117
|
+
|
|
90
118
|
- tabPaneAnimated (boolean; default False)
|
|
91
119
|
|
|
92
120
|
- tabPosition (a value equal to: 'top', 'left', 'right', 'bottom'; default 'top')
|
|
@@ -97,10 +125,10 @@ Keyword arguments:
|
|
|
97
125
|
_namespace = 'feffery_antd_components'
|
|
98
126
|
_type = 'AntdTabs'
|
|
99
127
|
@_explicitize_args
|
|
100
|
-
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, items=Component.UNDEFINED, activeKey=Component.UNDEFINED, defaultActiveKey=Component.UNDEFINED, disabledTabKeys=Component.UNDEFINED, tabPosition=Component.UNDEFINED, size=Component.UNDEFINED, type=Component.UNDEFINED, centered=Component.UNDEFINED, tabBarGutter=Component.UNDEFINED, inkBarAnimated=Component.UNDEFINED, tabPaneAnimated=Component.UNDEFINED, latestDeletePane=Component.UNDEFINED, tabBarLeftExtraContent=Component.UNDEFINED, tabBarRightExtraContent=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
101
|
-
self._prop_names = ['children', 'id', 'activeKey', 'centered', 'className', 'defaultActiveKey', 'disabledTabKeys', 'inkBarAnimated', 'items', 'key', 'latestDeletePane', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'tabBarGutter', 'tabBarLeftExtraContent', 'tabBarRightExtraContent', 'tabPaneAnimated', 'tabPosition', 'type']
|
|
128
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, items=Component.UNDEFINED, activeKey=Component.UNDEFINED, defaultActiveKey=Component.UNDEFINED, disabledTabKeys=Component.UNDEFINED, tabPosition=Component.UNDEFINED, size=Component.UNDEFINED, type=Component.UNDEFINED, centered=Component.UNDEFINED, tabBarGutter=Component.UNDEFINED, inkBarAnimated=Component.UNDEFINED, tabPaneAnimated=Component.UNDEFINED, latestDeletePane=Component.UNDEFINED, tabCloseCounts=Component.UNDEFINED, tabBarLeftExtraContent=Component.UNDEFINED, tabBarRightExtraContent=Component.UNDEFINED, tabCount=Component.UNDEFINED, destroyInactiveTabPane=Component.UNDEFINED, clickedContextMenu=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
129
|
+
self._prop_names = ['children', 'id', 'activeKey', 'centered', 'className', 'clickedContextMenu', 'defaultActiveKey', 'destroyInactiveTabPane', 'disabledTabKeys', 'inkBarAnimated', 'items', 'key', 'latestDeletePane', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'tabBarGutter', 'tabBarLeftExtraContent', 'tabBarRightExtraContent', 'tabCloseCounts', 'tabCount', 'tabPaneAnimated', 'tabPosition', 'type']
|
|
102
130
|
self._valid_wildcard_attributes = []
|
|
103
|
-
self.available_properties = ['children', 'id', 'activeKey', 'centered', 'className', 'defaultActiveKey', 'disabledTabKeys', 'inkBarAnimated', 'items', 'key', 'latestDeletePane', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'tabBarGutter', 'tabBarLeftExtraContent', 'tabBarRightExtraContent', 'tabPaneAnimated', 'tabPosition', 'type']
|
|
131
|
+
self.available_properties = ['children', 'id', 'activeKey', 'centered', 'className', 'clickedContextMenu', 'defaultActiveKey', 'destroyInactiveTabPane', 'disabledTabKeys', 'inkBarAnimated', 'items', 'key', 'latestDeletePane', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'tabBarGutter', 'tabBarLeftExtraContent', 'tabBarRightExtraContent', 'tabCloseCounts', 'tabCount', 'tabPaneAnimated', 'tabPosition', 'type']
|
|
104
132
|
self.available_wildcard_properties = []
|
|
105
133
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
106
134
|
_locals = locals()
|