feffery_antd_components 0.2.10-rc10 → 0.2.10-rc12
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 +1 -1
- package/Project.toml +1 -1
- package/feffery_antd_components/AntdCascader.py +7 -3
- package/feffery_antd_components/AntdCheckbox.py +7 -3
- package/feffery_antd_components/AntdCheckboxGroup.py +7 -3
- package/feffery_antd_components/AntdComment.py +7 -3
- package/feffery_antd_components/AntdDatePicker.py +7 -3
- package/feffery_antd_components/AntdDateRangePicker.py +7 -3
- 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 +7 -3
- package/feffery_antd_components/AntdMentions.py +7 -3
- package/feffery_antd_components/AntdPagination.py +9 -3
- 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 +7 -3
- package/feffery_antd_components/AntdSlider.py +7 -3
- package/feffery_antd_components/AntdSwitch.py +7 -3
- package/feffery_antd_components/AntdTable.py +7 -3
- package/feffery_antd_components/AntdTabs.py +7 -3
- package/feffery_antd_components/AntdTimePicker.py +7 -3
- package/feffery_antd_components/AntdTimeRangePicker.py +7 -3
- package/feffery_antd_components/AntdTransfer.py +7 -3
- package/feffery_antd_components/AntdTree.py +21 -3
- package/feffery_antd_components/AntdTreeSelect.py +7 -3
- package/feffery_antd_components/__init__.py +18 -2
- package/feffery_antd_components/_imports_.py +2 -2
- package/feffery_antd_components/async-antd_table.js +1 -0
- package/feffery_antd_components/async-antd_upload.js +1 -0
- package/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/feffery_antd_components/metadata.json +1085 -447
- package/feffery_antd_components/package-info.json +1 -1
- package/package.json +1 -1
- package/src/jl/'feffery'_antdcascader.jl +3 -1
- package/src/jl/'feffery'_antdcheckbox.jl +3 -1
- package/src/jl/'feffery'_antdcheckboxgroup.jl +3 -1
- package/src/jl/'feffery'_antdcomment.jl +3 -1
- package/src/jl/'feffery'_antddatepicker.jl +3 -1
- package/src/jl/'feffery'_antddaterangepicker.jl +3 -1
- 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 +3 -1
- package/src/jl/'feffery'_antdmentions.jl +3 -1
- package/src/jl/'feffery'_antdpagination.jl +4 -1
- 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 +3 -1
- package/src/jl/'feffery'_antdslider.jl +3 -1
- package/src/jl/'feffery'_antdswitch.jl +3 -1
- package/src/jl/'feffery'_antdtable.jl +5 -3
- package/src/jl/'feffery'_antdtabs.jl +3 -1
- package/src/jl/'feffery'_antdtimepicker.jl +3 -1
- package/src/jl/'feffery'_antdtimerangepicker.jl +3 -1
- package/src/jl/'feffery'_antdtransfer.jl +3 -1
- package/src/jl/'feffery'_antdtree.jl +10 -1
- package/src/jl/'feffery'_antdtreeselect.jl +3 -1
- package/src/lib/components/dataDisplay/AntdComment.react.js +23 -2
- package/src/lib/components/dataDisplay/AntdSegmented.react.js +23 -2
- package/src/lib/components/dataDisplay/AntdTable.react.js +21 -1864
- package/src/lib/components/dataDisplay/AntdTree.react.js +147 -11
- package/src/lib/components/dataDisplay/tabs/AntdTabs.react.js +17 -0
- package/src/lib/components/dataEntry/AntdCascader.react.js +23 -2
- package/src/lib/components/dataEntry/AntdCheckbox.react.js +23 -2
- package/src/lib/components/dataEntry/AntdCheckboxGroup.react.js +23 -2
- package/src/lib/components/dataEntry/AntdDatePicker.react.js +23 -2
- package/src/lib/components/dataEntry/AntdDateRangePicker.react.js +23 -2
- package/src/lib/components/dataEntry/AntdInput.react.js +24 -3
- package/src/lib/components/dataEntry/AntdInputNumber.react.js +23 -2
- package/src/lib/components/dataEntry/AntdMentions.react.js +25 -4
- package/src/lib/components/dataEntry/AntdRadioGroup.react.js +23 -2
- package/src/lib/components/dataEntry/AntdRate.react.js +23 -2
- package/src/lib/components/{other → dataEntry}/AntdSegmentedColoring.react.js +23 -2
- package/src/lib/components/dataEntry/AntdSelect.react.js +24 -3
- package/src/lib/components/dataEntry/AntdSlider.react.js +23 -2
- package/src/lib/components/dataEntry/AntdSwitch.react.js +23 -2
- package/src/lib/components/dataEntry/AntdTimePicker.react.js +23 -2
- package/src/lib/components/dataEntry/AntdTimeRangePicker.react.js +23 -2
- package/src/lib/components/dataEntry/AntdTransfer.react.js +23 -2
- package/src/lib/components/dataEntry/AntdTreeSelect.react.js +24 -3
- package/src/lib/components/dataEntry/form/AntdForm.react.js +20 -1
- package/src/lib/components/dataEntry/form/AntdFormItem.react.js +12 -1
- package/src/lib/components/dataEntry/upload/AntdDraggerUpload.react.js +9 -392
- package/src/lib/components/dataEntry/upload/AntdPictureUpload.react.js +9 -428
- package/src/lib/components/dataEntry/upload/AntdUpload.react.js +9 -379
- package/src/lib/components/navigation/AntdDropdown.react.js +23 -2
- package/src/lib/components/navigation/AntdPagination.react.js +32 -3
- package/src/lib/components/styles.css +4 -0
- package/src/lib/fragments/AntdTable.react.js +1880 -0
- package/src/lib/fragments/upload/AntdDraggerUpload.react.js +402 -0
- package/src/lib/fragments/upload/AntdPictureUpload.react.js +439 -0
- package/src/lib/fragments/upload/AntdUpload.react.js +639 -0
- package/src/lib/index.js +1 -1
- package/usage.py +72 -40
- package/webpack.config.js +15 -2
- package/build/lib/feffery_antd_components/AntdAccordion.py +0 -85
- package/build/lib/feffery_antd_components/AntdAccordionItem.py +0 -64
- package/build/lib/feffery_antd_components/AntdAffix.py +0 -55
- package/build/lib/feffery_antd_components/AntdAlert.py +0 -63
- package/build/lib/feffery_antd_components/AntdAnchor.py +0 -63
- package/build/lib/feffery_antd_components/AntdAvatar.py +0 -82
- package/build/lib/feffery_antd_components/AntdAvatarGroup.py +0 -74
- package/build/lib/feffery_antd_components/AntdBackTop.py +0 -55
- package/build/lib/feffery_antd_components/AntdBadge.py +0 -71
- package/build/lib/feffery_antd_components/AntdBreadcrumb.py +0 -87
- package/build/lib/feffery_antd_components/AntdButton.py +0 -97
- package/build/lib/feffery_antd_components/AntdCalendar.py +0 -76
- package/build/lib/feffery_antd_components/AntdCard.py +0 -89
- package/build/lib/feffery_antd_components/AntdCardGrid.py +0 -53
- package/build/lib/feffery_antd_components/AntdCarousel.py +0 -63
- package/build/lib/feffery_antd_components/AntdCascader.py +0 -109
- package/build/lib/feffery_antd_components/AntdCenter.py +0 -53
- package/build/lib/feffery_antd_components/AntdCheckCard.py +0 -82
- package/build/lib/feffery_antd_components/AntdCheckCardGroup.py +0 -84
- package/build/lib/feffery_antd_components/AntdCheckbox.py +0 -76
- package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +0 -82
- package/build/lib/feffery_antd_components/AntdCol.py +0 -147
- package/build/lib/feffery_antd_components/AntdCollapse.py +0 -82
- package/build/lib/feffery_antd_components/AntdComment.py +0 -94
- package/build/lib/feffery_antd_components/AntdCompact.py +0 -55
- package/build/lib/feffery_antd_components/AntdConfigProvider.py +0 -53
- package/build/lib/feffery_antd_components/AntdContent.py +0 -51
- package/build/lib/feffery_antd_components/AntdCopyText.py +0 -55
- package/build/lib/feffery_antd_components/AntdCountdown.py +0 -63
- package/build/lib/feffery_antd_components/AntdCustomSkeleton.py +0 -61
- package/build/lib/feffery_antd_components/AntdDatePicker.py +0 -118
- package/build/lib/feffery_antd_components/AntdDateRangePicker.py +0 -120
- package/build/lib/feffery_antd_components/AntdDescriptionItem.py +0 -59
- package/build/lib/feffery_antd_components/AntdDescriptions.py +0 -95
- package/build/lib/feffery_antd_components/AntdDivider.py +0 -85
- package/build/lib/feffery_antd_components/AntdDraggerUpload.py +0 -187
- package/build/lib/feffery_antd_components/AntdDrawer.py +0 -91
- package/build/lib/feffery_antd_components/AntdDropdown.py +0 -113
- package/build/lib/feffery_antd_components/AntdEmpty.py +0 -57
- package/build/lib/feffery_antd_components/AntdFooter.py +0 -51
- package/build/lib/feffery_antd_components/AntdForm.py +0 -73
- package/build/lib/feffery_antd_components/AntdFormItem.py +0 -85
- package/build/lib/feffery_antd_components/AntdHeader.py +0 -51
- package/build/lib/feffery_antd_components/AntdIcon.py +0 -62
- package/build/lib/feffery_antd_components/AntdImage.py +0 -63
- package/build/lib/feffery_antd_components/AntdInput.py +0 -124
- package/build/lib/feffery_antd_components/AntdInputNumber.py +0 -108
- package/build/lib/feffery_antd_components/AntdLayout.py +0 -51
- package/build/lib/feffery_antd_components/AntdMentions.py +0 -86
- package/build/lib/feffery_antd_components/AntdMenu.py +0 -86
- package/build/lib/feffery_antd_components/AntdMessage.py +0 -61
- package/build/lib/feffery_antd_components/AntdModal.py +0 -133
- package/build/lib/feffery_antd_components/AntdNotification.py +0 -63
- package/build/lib/feffery_antd_components/AntdPageHeader.py +0 -63
- package/build/lib/feffery_antd_components/AntdPagination.py +0 -98
- package/build/lib/feffery_antd_components/AntdParagraph.py +0 -99
- package/build/lib/feffery_antd_components/AntdPasteImage.py +0 -53
- package/build/lib/feffery_antd_components/AntdPictureUpload.py +0 -195
- package/build/lib/feffery_antd_components/AntdPopconfirm.py +0 -117
- package/build/lib/feffery_antd_components/AntdPopover.py +0 -81
- package/build/lib/feffery_antd_components/AntdPopupCard.py +0 -69
- package/build/lib/feffery_antd_components/AntdProgress.py +0 -105
- package/build/lib/feffery_antd_components/AntdRadioGroup.py +0 -92
- package/build/lib/feffery_antd_components/AntdRate.py +0 -80
- package/build/lib/feffery_antd_components/AntdResult.py +0 -55
- package/build/lib/feffery_antd_components/AntdRibbon.py +0 -55
- package/build/lib/feffery_antd_components/AntdRow.py +0 -73
- package/build/lib/feffery_antd_components/AntdSegmented.py +0 -90
- package/build/lib/feffery_antd_components/AntdSegmentedColoring.py +0 -88
- package/build/lib/feffery_antd_components/AntdSelect.py +0 -150
- package/build/lib/feffery_antd_components/AntdSider.py +0 -69
- package/build/lib/feffery_antd_components/AntdSkeleton.py +0 -87
- package/build/lib/feffery_antd_components/AntdSkeletonAvatar.py +0 -53
- package/build/lib/feffery_antd_components/AntdSkeletonButton.py +0 -55
- package/build/lib/feffery_antd_components/AntdSkeletonImage.py +0 -47
- package/build/lib/feffery_antd_components/AntdSkeletonInput.py +0 -51
- package/build/lib/feffery_antd_components/AntdSlider.py +0 -96
- package/build/lib/feffery_antd_components/AntdSpace.py +0 -63
- package/build/lib/feffery_antd_components/AntdSpin.py +0 -71
- package/build/lib/feffery_antd_components/AntdSpoiler.py +0 -67
- package/build/lib/feffery_antd_components/AntdStatistic.py +0 -63
- package/build/lib/feffery_antd_components/AntdSteps.py +0 -80
- package/build/lib/feffery_antd_components/AntdSwitch.py +0 -80
- package/build/lib/feffery_antd_components/AntdTabPane.py +0 -65
- package/build/lib/feffery_antd_components/AntdTable.py +0 -553
- package/build/lib/feffery_antd_components/AntdTabs.py +0 -110
- package/build/lib/feffery_antd_components/AntdTag.py +0 -55
- package/build/lib/feffery_antd_components/AntdText.py +0 -96
- package/build/lib/feffery_antd_components/AntdTimePicker.py +0 -102
- package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +0 -104
- package/build/lib/feffery_antd_components/AntdTimeline.py +0 -72
- package/build/lib/feffery_antd_components/AntdTitle.py +0 -94
- package/build/lib/feffery_antd_components/AntdTooltip.py +0 -77
- package/build/lib/feffery_antd_components/AntdTransfer.py +0 -108
- package/build/lib/feffery_antd_components/AntdTree.py +0 -122
- package/build/lib/feffery_antd_components/AntdTreeSelect.py +0 -131
- package/build/lib/feffery_antd_components/AntdUpload.py +0 -181
- package/build/lib/feffery_antd_components/AntdWatermark.py +0 -75
- package/build/lib/feffery_antd_components/__init__.py +0 -53
- package/build/lib/feffery_antd_components/_imports_.py +0 -195
- package/build/lib/feffery_antd_components/alias.py +0 -193
- package/build/lib/feffery_antd_components/feffery_antd_components.min.js +0 -1
- package/build/lib/feffery_antd_components/metadata.json +0 -25987
- package/build/lib/feffery_antd_components/package-info.json +0 -92
- 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
package/DESCRIPTION
CHANGED
package/NAMESPACE
CHANGED
|
@@ -37,6 +37,7 @@ export('feffery'AntdInputNumber)
|
|
|
37
37
|
export('feffery'AntdMentions)
|
|
38
38
|
export('feffery'AntdRadioGroup)
|
|
39
39
|
export('feffery'AntdRate)
|
|
40
|
+
export('feffery'AntdSegmentedColoring)
|
|
40
41
|
export('feffery'AntdSelect)
|
|
41
42
|
export('feffery'AntdSlider)
|
|
42
43
|
export('feffery'AntdSwitch)
|
|
@@ -94,5 +95,4 @@ export('feffery'AntdAnchor)
|
|
|
94
95
|
export('feffery'AntdBackTop)
|
|
95
96
|
export('feffery'AntdConfigProvider)
|
|
96
97
|
export('feffery'AntdCopyText)
|
|
97
|
-
export('feffery'AntdSegmentedColoring)
|
|
98
98
|
export('feffery'AntdWatermark)
|
package/Project.toml
CHANGED
|
@@ -13,6 +13,10 @@ Keyword arguments:
|
|
|
13
13
|
|
|
14
14
|
- allowClear (boolean; default True)
|
|
15
15
|
|
|
16
|
+
- batchPropsNames (list of strings; optional)
|
|
17
|
+
|
|
18
|
+
- batchPropsValues (dict; optional)
|
|
19
|
+
|
|
16
20
|
- bordered (boolean; default True)
|
|
17
21
|
|
|
18
22
|
- changeOnSelect (boolean; default False)
|
|
@@ -91,10 +95,10 @@ Keyword arguments:
|
|
|
91
95
|
_namespace = 'feffery_antd_components'
|
|
92
96
|
_type = 'AntdCascader'
|
|
93
97
|
@_explicitize_args
|
|
94
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, optionsMode=Component.UNDEFINED, options=Component.REQUIRED, disabled=Component.UNDEFINED, changeOnSelect=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, maxTagCount=Component.UNDEFINED, multiple=Component.UNDEFINED, expandTrigger=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, showCheckedStrategy=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
95
|
-
self._prop_names = ['id', 'allowClear', 'bordered', 'changeOnSelect', 'className', 'defaultValue', 'disabled', 'expandTrigger', 'key', 'loading_state', 'locale', 'maxTagCount', 'multiple', 'options', 'optionsMode', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showCheckedStrategy', 'size', 'status', 'style', 'value']
|
|
98
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, optionsMode=Component.UNDEFINED, options=Component.REQUIRED, disabled=Component.UNDEFINED, changeOnSelect=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, maxTagCount=Component.UNDEFINED, multiple=Component.UNDEFINED, expandTrigger=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, showCheckedStrategy=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):
|
|
99
|
+
self._prop_names = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'changeOnSelect', 'className', 'defaultValue', 'disabled', 'expandTrigger', 'key', 'loading_state', 'locale', 'maxTagCount', 'multiple', 'options', 'optionsMode', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showCheckedStrategy', 'size', 'status', 'style', 'value']
|
|
96
100
|
self._valid_wildcard_attributes = []
|
|
97
|
-
self.available_properties = ['id', 'allowClear', 'bordered', 'changeOnSelect', 'className', 'defaultValue', 'disabled', 'expandTrigger', 'key', 'loading_state', 'locale', 'maxTagCount', 'multiple', 'options', 'optionsMode', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showCheckedStrategy', 'size', 'status', 'style', 'value']
|
|
101
|
+
self.available_properties = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'changeOnSelect', 'className', 'defaultValue', 'disabled', 'expandTrigger', 'key', 'loading_state', 'locale', 'maxTagCount', 'multiple', 'options', 'optionsMode', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showCheckedStrategy', 'size', 'status', 'style', 'value']
|
|
98
102
|
self.available_wildcard_properties = []
|
|
99
103
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
100
104
|
_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
|
- checked (boolean; default False)
|
|
15
19
|
|
|
16
20
|
- className (string | dict; optional)
|
|
@@ -63,10 +67,10 @@ Keyword arguments:
|
|
|
63
67
|
_namespace = 'feffery_antd_components'
|
|
64
68
|
_type = 'AntdCheckbox'
|
|
65
69
|
@_explicitize_args
|
|
66
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, label=Component.UNDEFINED, checked=Component.UNDEFINED, indeterminate=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
67
|
-
self._prop_names = ['id', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
|
|
70
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, label=Component.UNDEFINED, checked=Component.UNDEFINED, indeterminate=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):
|
|
71
|
+
self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
|
|
68
72
|
self._valid_wildcard_attributes = []
|
|
69
|
-
self.available_properties = ['id', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
|
|
73
|
+
self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
|
|
70
74
|
self.available_wildcard_properties = []
|
|
71
75
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
72
76
|
_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
|
- disabled (boolean; default False)
|
|
@@ -69,10 +73,10 @@ Keyword arguments:
|
|
|
69
73
|
_namespace = 'feffery_antd_components'
|
|
70
74
|
_type = 'AntdCheckboxGroup'
|
|
71
75
|
@_explicitize_args
|
|
72
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, options=Component.UNDEFINED, value=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
73
|
-
self._prop_names = ['id', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style', 'value']
|
|
76
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, options=Component.UNDEFINED, value=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', 'batchPropsNames', 'batchPropsValues', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style', 'value']
|
|
74
78
|
self._valid_wildcard_attributes = []
|
|
75
|
-
self.available_properties = ['id', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style', 'value']
|
|
79
|
+
self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style', 'value']
|
|
76
80
|
self.available_wildcard_properties = []
|
|
77
81
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
78
82
|
_locals = locals()
|
|
@@ -21,6 +21,10 @@ Keyword arguments:
|
|
|
21
21
|
|
|
22
22
|
- avatarProps (dict; optional)
|
|
23
23
|
|
|
24
|
+
- batchPropsNames (list of strings; optional)
|
|
25
|
+
|
|
26
|
+
- batchPropsValues (dict; optional)
|
|
27
|
+
|
|
24
28
|
- className (string | dict; optional)
|
|
25
29
|
|
|
26
30
|
- commentContent (a list of or a singular dash component, string or number; optional)
|
|
@@ -76,10 +80,10 @@ Keyword arguments:
|
|
|
76
80
|
_namespace = 'feffery_antd_components'
|
|
77
81
|
_type = 'AntdComment'
|
|
78
82
|
@_explicitize_args
|
|
79
|
-
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, commentId=Component.UNDEFINED, authorName=Component.UNDEFINED, authorNameHref=Component.UNDEFINED, publishTime=Component.REQUIRED, fromNow=Component.UNDEFINED, showLikeDislike=Component.UNDEFINED, showReply=Component.UNDEFINED, showDelete=Component.UNDEFINED, replyClicks=Component.UNDEFINED, deleteClicks=Component.UNDEFINED, commentContent=Component.UNDEFINED, likesCount=Component.UNDEFINED, dislikesCount=Component.UNDEFINED, action=Component.UNDEFINED, defaultAction=Component.UNDEFINED, avatarProps=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
80
|
-
self._prop_names = ['children', 'id', 'action', 'authorName', 'authorNameHref', 'avatarProps', 'className', 'commentContent', 'commentId', 'defaultAction', 'deleteClicks', 'dislikesCount', 'fromNow', 'likesCount', 'loading_state', 'locale', 'popupContainer', 'publishTime', 'replyClicks', 'showDelete', 'showLikeDislike', 'showReply', 'style']
|
|
83
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, commentId=Component.UNDEFINED, authorName=Component.UNDEFINED, authorNameHref=Component.UNDEFINED, publishTime=Component.REQUIRED, fromNow=Component.UNDEFINED, showLikeDislike=Component.UNDEFINED, showReply=Component.UNDEFINED, showDelete=Component.UNDEFINED, replyClicks=Component.UNDEFINED, deleteClicks=Component.UNDEFINED, commentContent=Component.UNDEFINED, likesCount=Component.UNDEFINED, dislikesCount=Component.UNDEFINED, action=Component.UNDEFINED, defaultAction=Component.UNDEFINED, avatarProps=Component.UNDEFINED, popupContainer=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
84
|
+
self._prop_names = ['children', 'id', 'action', 'authorName', 'authorNameHref', 'avatarProps', 'batchPropsNames', 'batchPropsValues', 'className', 'commentContent', 'commentId', 'defaultAction', 'deleteClicks', 'dislikesCount', 'fromNow', 'likesCount', 'loading_state', 'locale', 'popupContainer', 'publishTime', 'replyClicks', 'showDelete', 'showLikeDislike', 'showReply', 'style']
|
|
81
85
|
self._valid_wildcard_attributes = []
|
|
82
|
-
self.available_properties = ['children', 'id', 'action', 'authorName', 'authorNameHref', 'avatarProps', 'className', 'commentContent', 'commentId', 'defaultAction', 'deleteClicks', 'dislikesCount', 'fromNow', 'likesCount', 'loading_state', 'locale', 'popupContainer', 'publishTime', 'replyClicks', 'showDelete', 'showLikeDislike', 'showReply', 'style']
|
|
86
|
+
self.available_properties = ['children', 'id', 'action', 'authorName', 'authorNameHref', 'avatarProps', 'batchPropsNames', 'batchPropsValues', 'className', 'commentContent', 'commentId', 'defaultAction', 'deleteClicks', 'dislikesCount', 'fromNow', 'likesCount', 'loading_state', 'locale', 'popupContainer', 'publishTime', 'replyClicks', 'showDelete', 'showLikeDislike', 'showReply', 'style']
|
|
83
87
|
self.available_wildcard_properties = []
|
|
84
88
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
85
89
|
_locals = locals()
|
|
@@ -13,6 +13,10 @@ Keyword arguments:
|
|
|
13
13
|
|
|
14
14
|
- allowClear (boolean; default True)
|
|
15
15
|
|
|
16
|
+
- batchPropsNames (list of strings; optional)
|
|
17
|
+
|
|
18
|
+
- batchPropsValues (dict; optional)
|
|
19
|
+
|
|
16
20
|
- bordered (boolean; default True)
|
|
17
21
|
|
|
18
22
|
- className (string | dict; optional)
|
|
@@ -109,10 +113,10 @@ Keyword arguments:
|
|
|
109
113
|
_namespace = 'feffery_antd_components'
|
|
110
114
|
_type = 'AntdDatePicker'
|
|
111
115
|
@_explicitize_args
|
|
112
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, showToday=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
113
|
-
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'showToday', 'size', 'status', 'style', 'value']
|
|
116
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, showToday=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):
|
|
117
|
+
self._prop_names = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'showToday', 'size', 'status', 'style', 'value']
|
|
114
118
|
self._valid_wildcard_attributes = []
|
|
115
|
-
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'showToday', 'size', 'status', 'style', 'value']
|
|
119
|
+
self.available_properties = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'showToday', 'size', 'status', 'style', 'value']
|
|
116
120
|
self.available_wildcard_properties = []
|
|
117
121
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
118
122
|
_locals = locals()
|
|
@@ -13,6 +13,10 @@ Keyword arguments:
|
|
|
13
13
|
|
|
14
14
|
- allowClear (boolean; default True)
|
|
15
15
|
|
|
16
|
+
- batchPropsNames (list of strings; optional)
|
|
17
|
+
|
|
18
|
+
- batchPropsValues (dict; optional)
|
|
19
|
+
|
|
16
20
|
- bordered (boolean; default True)
|
|
17
21
|
|
|
18
22
|
- className (string | dict; optional)
|
|
@@ -109,10 +113,10 @@ Keyword arguments:
|
|
|
109
113
|
_namespace = 'feffery_antd_components'
|
|
110
114
|
_type = 'AntdDateRangePicker'
|
|
111
115
|
@_explicitize_args
|
|
112
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, open=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
113
|
-
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
116
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, open=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=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):
|
|
117
|
+
self._prop_names = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
114
118
|
self._valid_wildcard_attributes = []
|
|
115
|
-
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
119
|
+
self.available_properties = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
116
120
|
self.available_wildcard_properties = []
|
|
117
121
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
118
122
|
_locals = locals()
|
|
@@ -15,6 +15,10 @@ Keyword arguments:
|
|
|
15
15
|
|
|
16
16
|
- autoAdjustOverflow (boolean; default True)
|
|
17
17
|
|
|
18
|
+
- batchPropsNames (list of strings; optional)
|
|
19
|
+
|
|
20
|
+
- batchPropsValues (dict; optional)
|
|
21
|
+
|
|
18
22
|
- buttonMode (boolean; default False)
|
|
19
23
|
|
|
20
24
|
- buttonProps (dict; optional)
|
|
@@ -100,10 +104,10 @@ Keyword arguments:
|
|
|
100
104
|
_namespace = 'feffery_antd_components'
|
|
101
105
|
_type = 'AntdDropdown'
|
|
102
106
|
@_explicitize_args
|
|
103
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, title=Component.UNDEFINED, buttonMode=Component.UNDEFINED, buttonProps=Component.UNDEFINED, freePosition=Component.UNDEFINED, freePositionStyle=Component.UNDEFINED, freePositionClassName=Component.UNDEFINED, clickedKey=Component.UNDEFINED, nClicks=Component.UNDEFINED, menuItems=Component.UNDEFINED, arrow=Component.UNDEFINED, disabled=Component.UNDEFINED, overlayClassName=Component.UNDEFINED, overlayStyle=Component.UNDEFINED, placement=Component.UNDEFINED, trigger=Component.UNDEFINED, autoAdjustOverflow=Component.UNDEFINED, visible=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
104
|
-
self._prop_names = ['id', 'arrow', 'autoAdjustOverflow', 'buttonMode', 'buttonProps', 'className', 'clickedKey', 'disabled', 'freePosition', 'freePositionClassName', 'freePositionStyle', 'key', 'loading_state', 'menuItems', 'nClicks', 'overlayClassName', 'overlayStyle', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'visible']
|
|
107
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, title=Component.UNDEFINED, buttonMode=Component.UNDEFINED, buttonProps=Component.UNDEFINED, freePosition=Component.UNDEFINED, freePositionStyle=Component.UNDEFINED, freePositionClassName=Component.UNDEFINED, clickedKey=Component.UNDEFINED, nClicks=Component.UNDEFINED, menuItems=Component.UNDEFINED, arrow=Component.UNDEFINED, disabled=Component.UNDEFINED, overlayClassName=Component.UNDEFINED, overlayStyle=Component.UNDEFINED, placement=Component.UNDEFINED, trigger=Component.UNDEFINED, autoAdjustOverflow=Component.UNDEFINED, visible=Component.UNDEFINED, popupContainer=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
108
|
+
self._prop_names = ['id', 'arrow', 'autoAdjustOverflow', 'batchPropsNames', 'batchPropsValues', 'buttonMode', 'buttonProps', 'className', 'clickedKey', 'disabled', 'freePosition', 'freePositionClassName', 'freePositionStyle', 'key', 'loading_state', 'menuItems', 'nClicks', 'overlayClassName', 'overlayStyle', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'visible']
|
|
105
109
|
self._valid_wildcard_attributes = []
|
|
106
|
-
self.available_properties = ['id', 'arrow', 'autoAdjustOverflow', 'buttonMode', 'buttonProps', 'className', 'clickedKey', 'disabled', 'freePosition', 'freePositionClassName', 'freePositionStyle', 'key', 'loading_state', 'menuItems', 'nClicks', 'overlayClassName', 'overlayStyle', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'visible']
|
|
110
|
+
self.available_properties = ['id', 'arrow', 'autoAdjustOverflow', 'batchPropsNames', 'batchPropsValues', 'buttonMode', 'buttonProps', 'className', 'clickedKey', 'disabled', 'freePosition', 'freePositionClassName', 'freePositionStyle', 'key', 'loading_state', 'menuItems', 'nClicks', 'overlayClassName', 'overlayStyle', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'visible']
|
|
107
111
|
self.available_wildcard_properties = []
|
|
108
112
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
109
113
|
_locals = locals()
|
|
@@ -27,10 +27,14 @@ Keyword arguments:
|
|
|
27
27
|
|
|
28
28
|
`labelCol` is a dict with keys:
|
|
29
29
|
|
|
30
|
+
- flex (string | number; optional)
|
|
31
|
+
|
|
30
32
|
- offset (number; optional)
|
|
31
33
|
|
|
32
34
|
- span (number; optional)
|
|
33
35
|
|
|
36
|
+
- labelWrap (boolean; default False)
|
|
37
|
+
|
|
34
38
|
- layout (a value equal to: 'horizontal', 'vertical', 'inline'; default 'horizontal')
|
|
35
39
|
|
|
36
40
|
- loading_state (dict; optional)
|
|
@@ -52,6 +56,8 @@ Keyword arguments:
|
|
|
52
56
|
|
|
53
57
|
`wrapperCol` is a dict with keys:
|
|
54
58
|
|
|
59
|
+
- flex (string | number; optional)
|
|
60
|
+
|
|
55
61
|
- offset (number; optional)
|
|
56
62
|
|
|
57
63
|
- span (number; optional)"""
|
|
@@ -60,10 +66,10 @@ Keyword arguments:
|
|
|
60
66
|
_namespace = 'feffery_antd_components'
|
|
61
67
|
_type = 'AntdForm'
|
|
62
68
|
@_explicitize_args
|
|
63
|
-
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, layout=Component.UNDEFINED, labelCol=Component.UNDEFINED, wrapperCol=Component.UNDEFINED, colon=Component.UNDEFINED, labelAlign=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
64
|
-
self._prop_names = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'layout', 'loading_state', 'style', 'wrapperCol']
|
|
69
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, layout=Component.UNDEFINED, labelCol=Component.UNDEFINED, wrapperCol=Component.UNDEFINED, colon=Component.UNDEFINED, labelAlign=Component.UNDEFINED, labelWrap=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
70
|
+
self._prop_names = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'labelWrap', 'layout', 'loading_state', 'style', 'wrapperCol']
|
|
65
71
|
self._valid_wildcard_attributes = []
|
|
66
|
-
self.available_properties = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'layout', 'loading_state', 'style', 'wrapperCol']
|
|
72
|
+
self.available_properties = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'labelWrap', 'layout', 'loading_state', 'style', 'wrapperCol']
|
|
67
73
|
self.available_wildcard_properties = []
|
|
68
74
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
69
75
|
_locals = locals()
|
|
@@ -17,7 +17,7 @@ Keyword arguments:
|
|
|
17
17
|
|
|
18
18
|
- className (string | dict; optional)
|
|
19
19
|
|
|
20
|
-
- colon (boolean;
|
|
20
|
+
- colon (boolean; optional)
|
|
21
21
|
|
|
22
22
|
- extra (a list of or a singular dash component, string or number; optional)
|
|
23
23
|
|
|
@@ -35,6 +35,8 @@ Keyword arguments:
|
|
|
35
35
|
|
|
36
36
|
`labelCol` is a dict with keys:
|
|
37
37
|
|
|
38
|
+
- flex (string | number; optional)
|
|
39
|
+
|
|
38
40
|
- offset (number; optional)
|
|
39
41
|
|
|
40
42
|
- span (number; optional)
|
|
@@ -64,6 +66,8 @@ Keyword arguments:
|
|
|
64
66
|
|
|
65
67
|
`wrapperCol` is a dict with keys:
|
|
66
68
|
|
|
69
|
+
- flex (string | number; optional)
|
|
70
|
+
|
|
67
71
|
- offset (number; optional)
|
|
68
72
|
|
|
69
73
|
- span (number; optional)"""
|
|
@@ -27,6 +27,10 @@ Keyword arguments:
|
|
|
27
27
|
|
|
28
28
|
- minRows (number; optional)
|
|
29
29
|
|
|
30
|
+
- batchPropsNames (list of strings; optional)
|
|
31
|
+
|
|
32
|
+
- batchPropsValues (dict; optional)
|
|
33
|
+
|
|
30
34
|
- bordered (boolean; default True)
|
|
31
35
|
|
|
32
36
|
- className (string | dict; optional)
|
|
@@ -111,10 +115,10 @@ Keyword arguments:
|
|
|
111
115
|
_namespace = 'feffery_antd_components'
|
|
112
116
|
_type = 'AntdInput'
|
|
113
117
|
@_explicitize_args
|
|
114
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, mode=Component.UNDEFINED, autoComplete=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, md5Value=Component.UNDEFINED, debounceValue=Component.UNDEFINED, passwordUseMd5=Component.UNDEFINED, debounceWait=Component.UNDEFINED, addonBefore=Component.UNDEFINED, addonAfter=Component.UNDEFINED, prefix=Component.UNDEFINED, suffix=Component.UNDEFINED, maxLength=Component.UNDEFINED, showCount=Component.UNDEFINED, countFormat=Component.UNDEFINED, autoSize=Component.UNDEFINED, nSubmit=Component.UNDEFINED, nClicksSearch=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, emptyAsNone=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
115
|
-
self._prop_names = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'autoComplete', 'autoSize', 'bordered', 'className', 'countFormat', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'suffix', 'value']
|
|
118
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, mode=Component.UNDEFINED, autoComplete=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, md5Value=Component.UNDEFINED, debounceValue=Component.UNDEFINED, passwordUseMd5=Component.UNDEFINED, debounceWait=Component.UNDEFINED, addonBefore=Component.UNDEFINED, addonAfter=Component.UNDEFINED, prefix=Component.UNDEFINED, suffix=Component.UNDEFINED, maxLength=Component.UNDEFINED, showCount=Component.UNDEFINED, countFormat=Component.UNDEFINED, autoSize=Component.UNDEFINED, nSubmit=Component.UNDEFINED, nClicksSearch=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, emptyAsNone=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
119
|
+
self._prop_names = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'autoComplete', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'countFormat', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'suffix', 'value']
|
|
116
120
|
self._valid_wildcard_attributes = []
|
|
117
|
-
self.available_properties = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'autoComplete', 'autoSize', 'bordered', 'className', 'countFormat', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'suffix', 'value']
|
|
121
|
+
self.available_properties = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'autoComplete', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'countFormat', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'suffix', 'value']
|
|
118
122
|
self.available_wildcard_properties = []
|
|
119
123
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
120
124
|
_locals = locals()
|
|
@@ -15,6 +15,10 @@ Keyword arguments:
|
|
|
15
15
|
|
|
16
16
|
- addonBefore (a list of or a singular dash component, string or number; optional)
|
|
17
17
|
|
|
18
|
+
- batchPropsNames (list of strings; optional)
|
|
19
|
+
|
|
20
|
+
- batchPropsValues (dict; optional)
|
|
21
|
+
|
|
18
22
|
- bordered (boolean; default True)
|
|
19
23
|
|
|
20
24
|
- className (string | dict; optional)
|
|
@@ -95,10 +99,10 @@ Keyword arguments:
|
|
|
95
99
|
_namespace = 'feffery_antd_components'
|
|
96
100
|
_type = 'AntdInputNumber'
|
|
97
101
|
@_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']
|
|
102
|
+
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, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
103
|
+
self._prop_names = ['id', 'addonAfter', 'addonBefore', '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
104
|
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']
|
|
105
|
+
self.available_properties = ['id', 'addonAfter', 'addonBefore', '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
106
|
self.available_wildcard_properties = []
|
|
103
107
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
104
108
|
_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)
|
|
@@ -68,10 +72,10 @@ Keyword arguments:
|
|
|
68
72
|
_namespace = 'feffery_antd_components'
|
|
69
73
|
_type = 'AntdMentions'
|
|
70
74
|
@_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, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
72
|
-
self._prop_names = ['id', 'autoSize', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'readOnly', 'selectedOptions', 'status', 'style', 'value']
|
|
75
|
+
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, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
76
|
+
self._prop_names = ['id', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'readOnly', 'selectedOptions', 'status', 'style', 'value']
|
|
73
77
|
self._valid_wildcard_attributes = []
|
|
74
|
-
self.available_properties = ['id', 'autoSize', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'readOnly', 'selectedOptions', 'status', 'style', 'value']
|
|
78
|
+
self.available_properties = ['id', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'readOnly', 'selectedOptions', 'status', 'style', 'value']
|
|
75
79
|
self.available_wildcard_properties = []
|
|
76
80
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
77
81
|
_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()
|
|
@@ -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()
|
|
@@ -17,6 +17,10 @@ Keyword arguments:
|
|
|
17
17
|
|
|
18
18
|
- autoSpin (boolean; default False)
|
|
19
19
|
|
|
20
|
+
- batchPropsNames (list of strings; optional)
|
|
21
|
+
|
|
22
|
+
- batchPropsValues (dict; optional)
|
|
23
|
+
|
|
20
24
|
- bordered (boolean; default True)
|
|
21
25
|
|
|
22
26
|
- className (string | dict; optional)
|
|
@@ -137,10 +141,10 @@ Keyword arguments:
|
|
|
137
141
|
_namespace = 'feffery_antd_components'
|
|
138
142
|
_type = 'AntdSelect'
|
|
139
143
|
@_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']
|
|
144
|
+
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, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
145
|
+
self._prop_names = ['id', 'allowClear', 'autoClearSearchValue', '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
146
|
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']
|
|
147
|
+
self.available_properties = ['id', 'allowClear', 'autoClearSearchValue', '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
148
|
self.available_wildcard_properties = []
|
|
145
149
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
146
150
|
_locals = locals()
|