feffery_antd_components 0.2.10-rc8 → 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 +3 -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/AntdCenter.py +53 -0
- 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 +11 -5
- 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 +37 -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 +6 -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 +2001 -794
- package/feffery_antd_components/package-info.json +1 -2
- package/feffery_antd_components/utils.py +211 -0
- package/package.json +1 -2
- 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'_antdcenter.jl +34 -0
- 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 +7 -4
- 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 +17 -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 -1900
- 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 +75 -304
- 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/layout/AntdCenter.react.js +98 -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 +8 -6
- package/usage.py +6 -11
- 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
package/DESCRIPTION
CHANGED
package/NAMESPACE
CHANGED
|
@@ -4,7 +4,6 @@ export('feffery'AntdAccordion)
|
|
|
4
4
|
export('feffery'AntdAvatar)
|
|
5
5
|
export('feffery'AntdAvatarGroup)
|
|
6
6
|
export('feffery'AntdBadge)
|
|
7
|
-
export('feffery'AntdCalendar)
|
|
8
7
|
export('feffery'AntdCarousel)
|
|
9
8
|
export('feffery'AntdCollapse)
|
|
10
9
|
export('feffery'AntdComment)
|
|
@@ -27,6 +26,7 @@ export('feffery'AntdDescriptionItem)
|
|
|
27
26
|
export('feffery'AntdDescriptions)
|
|
28
27
|
export('feffery'AntdTabPane)
|
|
29
28
|
export('feffery'AntdTabs)
|
|
29
|
+
export('feffery'AntdCalendar)
|
|
30
30
|
export('feffery'AntdCascader)
|
|
31
31
|
export('feffery'AntdCheckbox)
|
|
32
32
|
export('feffery'AntdCheckboxGroup)
|
|
@@ -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)
|
|
@@ -72,6 +73,7 @@ export('feffery'AntdIcon)
|
|
|
72
73
|
export('feffery'AntdParagraph)
|
|
73
74
|
export('feffery'AntdText)
|
|
74
75
|
export('feffery'AntdTitle)
|
|
76
|
+
export('feffery'AntdCenter)
|
|
75
77
|
export('feffery'AntdCompact)
|
|
76
78
|
export('feffery'AntdContent)
|
|
77
79
|
export('feffery'AntdDivider)
|
|
@@ -93,5 +95,4 @@ export('feffery'AntdAnchor)
|
|
|
93
95
|
export('feffery'AntdBackTop)
|
|
94
96
|
export('feffery'AntdConfigProvider)
|
|
95
97
|
export('feffery'AntdCopyText)
|
|
96
|
-
export('feffery'AntdSegmentedColoring)
|
|
97
98
|
export('feffery'AntdWatermark)
|
package/Project.toml
CHANGED
package/README-en_US.md
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
[](https://github.com/CNFeffery/feffery-antd-components/blob/master/LICENSE)
|
|
8
8
|
[](https://pypi.org/project/feffery-antd-components/)
|
|
9
|
-
[](https://pepy.tech/project/feffery-antd-components)
|
|
10
|
-
[](https://pepy.tech/project/feffery-antd-components)
|
|
9
|
+
[](https://pepy.tech/project/feffery-antd-components)
|
|
10
|
+
[](https://pepy.tech/project/feffery-antd-components)
|
|
11
11
|
[](http://isitmaintained.com/project/CNFeffery/feffery-antd-components "Average time to resolve an issue")
|
|
12
12
|
[](http://isitmaintained.com/project/CNFeffery/feffery-antd-components "Percentage of issues still open")
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
[简体中文](./README.md) | English
|
|
17
17
|
|
|
18
|
-
Subproject of `feffery-components` projects, third-party components library of `Plotly Dash`, based on the [Antd](https://github.com/ant-design/ant-design), brings many common and powerful components into `Dash`🥳, latest stable version: `0.2.
|
|
18
|
+
Subproject of `feffery-components` projects, third-party components library of `Plotly Dash`, based on the [Antd](https://github.com/ant-design/ant-design), brings many common and powerful components into `Dash`🥳, latest stable version: `0.2.10`
|
|
19
19
|
|
|
20
20
|
## 1 Install
|
|
21
21
|
|
package/README.md
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
[](https://github.com/CNFeffery/feffery-antd-components/blob/master/LICENSE)
|
|
8
8
|
[](https://pypi.org/project/feffery-antd-components/)
|
|
9
|
-
[](https://pepy.tech/project/feffery-antd-components)
|
|
10
|
-
[](https://pepy.tech/project/feffery-antd-components)
|
|
9
|
+
[](https://pepy.tech/project/feffery-antd-components)
|
|
10
|
+
[](https://pepy.tech/project/feffery-antd-components)
|
|
11
11
|
[](http://isitmaintained.com/project/CNFeffery/feffery-antd-components "Average time to resolve an issue")
|
|
12
12
|
[](http://isitmaintained.com/project/CNFeffery/feffery-antd-components "Percentage of issues still open")
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
简体中文 | [English](./README-en_US.md)
|
|
17
17
|
|
|
18
|
-
`feffery-components`计划子项目,`Plotly Dash`第三方组件库,基于`Antd`,将超多具有丰富功能的通用网页常用交互组件引入`Dash`的生态中 🥳,最新稳定版本:`0.2.
|
|
18
|
+
`feffery-components`计划子项目,`Plotly Dash`第三方组件库,基于`Antd`,将超多具有丰富功能的通用网页常用交互组件引入`Dash`的生态中 🥳,最新稳定版本:`0.2.10`
|
|
19
19
|
|
|
20
20
|
## 1 最新版本安装方式
|
|
21
21
|
|
|
@@ -33,6 +33,9 @@ Keyword arguments:
|
|
|
33
33
|
- disabled (boolean; default False):
|
|
34
34
|
当前按钮是否呈现禁用状态 默认:False.
|
|
35
35
|
|
|
36
|
+
- ghost (boolean; default False):
|
|
37
|
+
幽灵属性,使当前按钮背景透明 默认:False.
|
|
38
|
+
|
|
36
39
|
- href (string; optional):
|
|
37
40
|
当前按钮点击跳转链接地址.
|
|
38
41
|
|
|
@@ -84,10 +87,10 @@ Keyword arguments:
|
|
|
84
87
|
_namespace = 'feffery_antd_components'
|
|
85
88
|
_type = 'AntdButton'
|
|
86
89
|
@_explicitize_args
|
|
87
|
-
def __init__(self, children=None, id=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, key=Component.UNDEFINED, loadingChildren=Component.UNDEFINED, type=Component.UNDEFINED, href=Component.UNDEFINED, target=Component.UNDEFINED, block=Component.UNDEFINED, danger=Component.UNDEFINED, disabled=Component.UNDEFINED, shape=Component.UNDEFINED, size=Component.UNDEFINED, nClicks=Component.UNDEFINED, debounceWait=Component.UNDEFINED, icon=Component.UNDEFINED, loading=Component.UNDEFINED, autoSpin=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
88
|
-
self._prop_names = ['children', 'id', 'autoSpin', 'block', 'className', 'danger', 'debounceWait', 'disabled', 'href', 'icon', 'key', 'loading', 'loadingChildren', 'loading_state', 'nClicks', 'shape', 'size', 'style', 'target', 'type']
|
|
90
|
+
def __init__(self, children=None, id=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, key=Component.UNDEFINED, loadingChildren=Component.UNDEFINED, type=Component.UNDEFINED, href=Component.UNDEFINED, target=Component.UNDEFINED, block=Component.UNDEFINED, danger=Component.UNDEFINED, disabled=Component.UNDEFINED, ghost=Component.UNDEFINED, shape=Component.UNDEFINED, size=Component.UNDEFINED, nClicks=Component.UNDEFINED, debounceWait=Component.UNDEFINED, icon=Component.UNDEFINED, loading=Component.UNDEFINED, autoSpin=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
91
|
+
self._prop_names = ['children', 'id', 'autoSpin', 'block', 'className', 'danger', 'debounceWait', 'disabled', 'ghost', 'href', 'icon', 'key', 'loading', 'loadingChildren', 'loading_state', 'nClicks', 'shape', 'size', 'style', 'target', 'type']
|
|
89
92
|
self._valid_wildcard_attributes = []
|
|
90
|
-
self.available_properties = ['children', 'id', 'autoSpin', 'block', 'className', 'danger', 'debounceWait', 'disabled', 'href', 'icon', 'key', 'loading', 'loadingChildren', 'loading_state', 'nClicks', 'shape', 'size', 'style', 'target', 'type']
|
|
93
|
+
self.available_properties = ['children', 'id', 'autoSpin', 'block', 'className', 'danger', 'debounceWait', 'disabled', 'ghost', 'href', 'icon', 'key', 'loading', 'loadingChildren', 'loading_state', 'nClicks', 'shape', 'size', 'style', 'target', 'type']
|
|
91
94
|
self.available_wildcard_properties = []
|
|
92
95
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
93
96
|
_locals = locals()
|
|
@@ -13,6 +13,12 @@ Keyword arguments:
|
|
|
13
13
|
|
|
14
14
|
- allowClear (boolean; default True)
|
|
15
15
|
|
|
16
|
+
- autoFocus (boolean; default False)
|
|
17
|
+
|
|
18
|
+
- batchPropsNames (list of strings; optional)
|
|
19
|
+
|
|
20
|
+
- batchPropsValues (dict; optional)
|
|
21
|
+
|
|
16
22
|
- bordered (boolean; default True)
|
|
17
23
|
|
|
18
24
|
- changeOnSelect (boolean; default False)
|
|
@@ -91,10 +97,10 @@ Keyword arguments:
|
|
|
91
97
|
_namespace = 'feffery_antd_components'
|
|
92
98
|
_type = 'AntdCascader'
|
|
93
99
|
@_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']
|
|
100
|
+
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, autoFocus=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):
|
|
101
|
+
self._prop_names = ['id', 'allowClear', 'autoFocus', '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
102
|
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']
|
|
103
|
+
self.available_properties = ['id', 'allowClear', 'autoFocus', '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
104
|
self.available_wildcard_properties = []
|
|
99
105
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
100
106
|
_locals = locals()
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdCenter(Component):
|
|
7
|
+
"""An AntdCenter component.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Keyword arguments:
|
|
11
|
+
|
|
12
|
+
- children (a list of or a singular dash component, string or number; optional):
|
|
13
|
+
The content of the tab - will only be displayed if this tab is
|
|
14
|
+
selected.
|
|
15
|
+
|
|
16
|
+
- id (string; optional)
|
|
17
|
+
|
|
18
|
+
- className (string | dict; optional)
|
|
19
|
+
|
|
20
|
+
- inline (boolean; default False)
|
|
21
|
+
|
|
22
|
+
- key (string; optional)
|
|
23
|
+
|
|
24
|
+
- loading_state (dict; optional)
|
|
25
|
+
|
|
26
|
+
`loading_state` is a dict with keys:
|
|
27
|
+
|
|
28
|
+
- component_name (string; optional):
|
|
29
|
+
Holds the name of the component that is loading.
|
|
30
|
+
|
|
31
|
+
- is_loading (boolean; optional):
|
|
32
|
+
Determines if the component is loading or not.
|
|
33
|
+
|
|
34
|
+
- prop_name (string; optional):
|
|
35
|
+
Holds which property is loading.
|
|
36
|
+
|
|
37
|
+
- style (dict; optional)"""
|
|
38
|
+
_children_props = []
|
|
39
|
+
_base_nodes = ['children']
|
|
40
|
+
_namespace = 'feffery_antd_components'
|
|
41
|
+
_type = 'AntdCenter'
|
|
42
|
+
@_explicitize_args
|
|
43
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, inline=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
44
|
+
self._prop_names = ['children', 'id', 'className', 'inline', 'key', 'loading_state', 'style']
|
|
45
|
+
self._valid_wildcard_attributes = []
|
|
46
|
+
self.available_properties = ['children', 'id', 'className', 'inline', 'key', 'loading_state', 'style']
|
|
47
|
+
self.available_wildcard_properties = []
|
|
48
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
49
|
+
_locals = locals()
|
|
50
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
51
|
+
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
52
|
+
|
|
53
|
+
super(AntdCenter, self).__init__(children=children, **args)
|
|
@@ -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; default False)
|
|
15
21
|
|
|
16
22
|
- className (string | dict; optional)
|
|
@@ -63,10 +69,10 @@ Keyword arguments:
|
|
|
63
69
|
_namespace = 'feffery_antd_components'
|
|
64
70
|
_type = 'AntdCheckbox'
|
|
65
71
|
@_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']
|
|
72
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, label=Component.UNDEFINED, autoFocus=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):
|
|
73
|
+
self._prop_names = ['id', 'autoFocus', 'batchPropsNames', 'batchPropsValues', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
|
|
68
74
|
self._valid_wildcard_attributes = []
|
|
69
|
-
self.available_properties = ['id', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
|
|
75
|
+
self.available_properties = ['id', 'autoFocus', 'batchPropsNames', 'batchPropsValues', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
|
|
70
76
|
self.available_wildcard_properties = []
|
|
71
77
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
72
78
|
_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,12 @@ Keyword arguments:
|
|
|
13
13
|
|
|
14
14
|
- allowClear (boolean; default True)
|
|
15
15
|
|
|
16
|
+
- autoFocus (boolean; default False)
|
|
17
|
+
|
|
18
|
+
- batchPropsNames (list of strings; optional)
|
|
19
|
+
|
|
20
|
+
- batchPropsValues (dict; optional)
|
|
21
|
+
|
|
16
22
|
- bordered (boolean; default True)
|
|
17
23
|
|
|
18
24
|
- className (string | dict; optional)
|
|
@@ -33,6 +39,8 @@ Keyword arguments:
|
|
|
33
39
|
|
|
34
40
|
- value (number | string | list of numbers | list of strings; optional)
|
|
35
41
|
|
|
42
|
+
- extraFooter (a list of or a singular dash component, string or number; optional)
|
|
43
|
+
|
|
36
44
|
- firstDayOfWeek (number; optional)
|
|
37
45
|
|
|
38
46
|
- format (string; optional)
|
|
@@ -93,6 +101,8 @@ Keyword arguments:
|
|
|
93
101
|
|
|
94
102
|
- format (string; optional)
|
|
95
103
|
|
|
104
|
+
- showToday (boolean; default True)
|
|
105
|
+
|
|
96
106
|
- size (a value equal to: 'small', 'middle', 'large'; default 'middle')
|
|
97
107
|
|
|
98
108
|
- status (a value equal to: 'error', 'warning'; optional)
|
|
@@ -100,15 +110,15 @@ Keyword arguments:
|
|
|
100
110
|
- style (dict; optional)
|
|
101
111
|
|
|
102
112
|
- value (string; optional)"""
|
|
103
|
-
_children_props = []
|
|
104
|
-
_base_nodes = ['children']
|
|
113
|
+
_children_props = ['extraFooter']
|
|
114
|
+
_base_nodes = ['extraFooter', 'children']
|
|
105
115
|
_namespace = 'feffery_antd_components'
|
|
106
116
|
_type = 'AntdDatePicker'
|
|
107
117
|
@_explicitize_args
|
|
108
|
-
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, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
109
|
-
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
118
|
+
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, autoFocus=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):
|
|
119
|
+
self._prop_names = ['id', 'allowClear', 'autoFocus', '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']
|
|
110
120
|
self._valid_wildcard_attributes = []
|
|
111
|
-
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
121
|
+
self.available_properties = ['id', 'allowClear', 'autoFocus', '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']
|
|
112
122
|
self.available_wildcard_properties = []
|
|
113
123
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
114
124
|
_locals = locals()
|
|
@@ -13,6 +13,12 @@ Keyword arguments:
|
|
|
13
13
|
|
|
14
14
|
- allowClear (boolean; default True)
|
|
15
15
|
|
|
16
|
+
- autoFocus (boolean; default False)
|
|
17
|
+
|
|
18
|
+
- batchPropsNames (list of strings; optional)
|
|
19
|
+
|
|
20
|
+
- batchPropsValues (dict; optional)
|
|
21
|
+
|
|
16
22
|
- bordered (boolean; default True)
|
|
17
23
|
|
|
18
24
|
- className (string | dict; optional)
|
|
@@ -33,6 +39,8 @@ Keyword arguments:
|
|
|
33
39
|
|
|
34
40
|
- value (number | string | list of numbers | list of strings; optional)
|
|
35
41
|
|
|
42
|
+
- extraFooter (a list of or a singular dash component, string or number; optional)
|
|
43
|
+
|
|
36
44
|
- firstDayOfWeek (number; optional)
|
|
37
45
|
|
|
38
46
|
- format (string; optional)
|
|
@@ -102,15 +110,15 @@ Keyword arguments:
|
|
|
102
110
|
- style (dict; optional)
|
|
103
111
|
|
|
104
112
|
- value (list of strings; optional)"""
|
|
105
|
-
_children_props = []
|
|
106
|
-
_base_nodes = ['children']
|
|
113
|
+
_children_props = ['extraFooter']
|
|
114
|
+
_base_nodes = ['extraFooter', 'children']
|
|
107
115
|
_namespace = 'feffery_antd_components'
|
|
108
116
|
_type = 'AntdDateRangePicker'
|
|
109
117
|
@_explicitize_args
|
|
110
|
-
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, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
111
|
-
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
118
|
+
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, autoFocus=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):
|
|
119
|
+
self._prop_names = ['id', 'allowClear', 'autoFocus', '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']
|
|
112
120
|
self._valid_wildcard_attributes = []
|
|
113
|
-
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
121
|
+
self.available_properties = ['id', 'allowClear', 'autoFocus', '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
122
|
self.available_wildcard_properties = []
|
|
115
123
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
116
124
|
_locals = locals()
|
|
@@ -13,6 +13,8 @@ Keyword arguments:
|
|
|
13
13
|
|
|
14
14
|
- apiUrl (string; optional)
|
|
15
15
|
|
|
16
|
+
- apiUrlExtraParams (dict; optional)
|
|
17
|
+
|
|
16
18
|
- className (string | dict; optional)
|
|
17
19
|
|
|
18
20
|
- confirmBeforeDelete (boolean; default False)
|
|
@@ -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
|
- draggerClassName (string | dict; optional)
|
|
43
49
|
|
|
44
50
|
- draggerStyle (dict; optional)
|
|
@@ -69,7 +75,11 @@ Keyword arguments:
|
|
|
69
75
|
|
|
70
76
|
- taskId (string; optional)
|
|
71
77
|
|
|
72
|
-
- taskStatus (string; optional)
|
|
78
|
+
- taskStatus (string; optional)
|
|
79
|
+
|
|
80
|
+
- uploadResponse (boolean | number | string | dict | list; optional)
|
|
81
|
+
|
|
82
|
+
- url (string; optional) | list of dicts with keys:
|
|
73
83
|
|
|
74
84
|
- completeTimestamp (number; optional)
|
|
75
85
|
|
|
@@ -81,6 +91,10 @@ Keyword arguments:
|
|
|
81
91
|
|
|
82
92
|
- taskStatus (string; optional)
|
|
83
93
|
|
|
94
|
+
- uploadResponse (boolean | number | string | dict | list; optional)
|
|
95
|
+
|
|
96
|
+
- url (string; optional)
|
|
97
|
+
|
|
84
98
|
- listUploadTaskRecord (dict; optional)
|
|
85
99
|
|
|
86
100
|
`listUploadTaskRecord` is a dict with keys:
|
|
@@ -97,6 +111,8 @@ Keyword arguments:
|
|
|
97
111
|
|
|
98
112
|
- uid (string; optional)
|
|
99
113
|
|
|
114
|
+
- uploadResponse (boolean | number | string | dict | list; optional)
|
|
115
|
+
|
|
100
116
|
- url (string; optional) | list of dicts with keys:
|
|
101
117
|
|
|
102
118
|
- completeTimestamp (number; optional)
|
|
@@ -111,6 +127,8 @@ Keyword arguments:
|
|
|
111
127
|
|
|
112
128
|
- uid (string; optional)
|
|
113
129
|
|
|
130
|
+
- uploadResponse (boolean | number | string | dict | list; optional)
|
|
131
|
+
|
|
114
132
|
- url (string; optional)
|
|
115
133
|
|
|
116
134
|
- loading_state (dict; optional)
|
|
@@ -168,16 +186,18 @@ Keyword arguments:
|
|
|
168
186
|
|
|
169
187
|
- text (a list of or a singular dash component, string or number; optional)
|
|
170
188
|
|
|
171
|
-
- uploadId (string; optional)
|
|
189
|
+
- uploadId (string; optional)
|
|
190
|
+
|
|
191
|
+
- withCredentials (boolean; default False)"""
|
|
172
192
|
_children_props = ['text', 'hint']
|
|
173
193
|
_base_nodes = ['text', 'hint', 'children']
|
|
174
194
|
_namespace = 'feffery_antd_components'
|
|
175
195
|
_type = 'AntdDraggerUpload'
|
|
176
196
|
@_explicitize_args
|
|
177
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, draggerClassName=Component.UNDEFINED, draggerStyle=Component.UNDEFINED, locale=Component.UNDEFINED, apiUrl=Component.UNDEFINED, headers=Component.UNDEFINED, downloadUrl=Component.UNDEFINED, text=Component.UNDEFINED, hint=Component.UNDEFINED, fileListMaxLength=Component.UNDEFINED, fileTypes=Component.UNDEFINED, uploadId=Component.UNDEFINED, fileMaxSize=Component.UNDEFINED, multiple=Component.UNDEFINED, directory=Component.UNDEFINED, failedTooltipInfo=Component.UNDEFINED, showUploadList=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):
|
|
178
|
-
self._prop_names = ['id', 'apiUrl', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'draggerClassName', 'draggerStyle', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'hint', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'text', 'uploadId']
|
|
197
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, draggerClassName=Component.UNDEFINED, draggerStyle=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, text=Component.UNDEFINED, hint=Component.UNDEFINED, fileListMaxLength=Component.UNDEFINED, fileTypes=Component.UNDEFINED, uploadId=Component.UNDEFINED, fileMaxSize=Component.UNDEFINED, multiple=Component.UNDEFINED, directory=Component.UNDEFINED, failedTooltipInfo=Component.UNDEFINED, showUploadList=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):
|
|
198
|
+
self._prop_names = ['id', 'apiUrl', 'apiUrlExtraParams', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'downloadUrlExtraParams', 'downloadUrlFromBackend', 'draggerClassName', 'draggerStyle', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'hint', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'text', 'uploadId', 'withCredentials']
|
|
179
199
|
self._valid_wildcard_attributes = []
|
|
180
|
-
self.available_properties = ['id', 'apiUrl', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'draggerClassName', 'draggerStyle', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'hint', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'text', 'uploadId']
|
|
200
|
+
self.available_properties = ['id', 'apiUrl', 'apiUrlExtraParams', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'downloadUrlExtraParams', 'downloadUrlFromBackend', 'draggerClassName', 'draggerStyle', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'hint', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'text', 'uploadId', 'withCredentials']
|
|
181
201
|
self.available_wildcard_properties = []
|
|
182
202
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
183
203
|
_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)"""
|