feffery_antd_components 0.2.10-rc0 → 0.2.10-rc10
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 +60 -59
- package/Project.toml +1 -1
- package/README-en_US.md +2 -2
- package/README.md +2 -2
- package/build/lib/feffery_antd_components/AntdButton.py +24 -37
- package/build/lib/feffery_antd_components/AntdCenter.py +53 -0
- package/build/lib/feffery_antd_components/AntdCheckCard.py +5 -3
- package/build/lib/feffery_antd_components/AntdCheckCardGroup.py +7 -3
- package/build/lib/feffery_antd_components/AntdCheckbox.py +5 -3
- package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +5 -3
- package/build/lib/feffery_antd_components/AntdDescriptions.py +22 -4
- package/build/lib/feffery_antd_components/AntdDrawer.py +11 -5
- package/build/lib/feffery_antd_components/AntdMentions.py +5 -3
- package/build/lib/feffery_antd_components/AntdParagraph.py +16 -4
- package/build/lib/feffery_antd_components/AntdPopconfirm.py +12 -4
- package/build/lib/feffery_antd_components/AntdPopover.py +7 -3
- package/build/lib/feffery_antd_components/AntdProgress.py +19 -3
- package/build/lib/feffery_antd_components/AntdRadioGroup.py +5 -3
- package/build/lib/feffery_antd_components/AntdSlider.py +5 -3
- package/build/lib/feffery_antd_components/AntdSwitch.py +5 -3
- package/build/lib/feffery_antd_components/AntdTable.py +8 -6
- package/build/lib/feffery_antd_components/AntdText.py +9 -3
- package/build/lib/feffery_antd_components/AntdTransfer.py +5 -3
- package/build/lib/feffery_antd_components/AntdTree.py +5 -3
- package/build/lib/feffery_antd_components/_imports_.py +120 -118
- package/build/lib/feffery_antd_components/alias.py +193 -0
- package/build/lib/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/build/lib/feffery_antd_components/metadata.json +15122 -14674
- package/build/lib/feffery_antd_components/package-info.json +3 -4
- package/feffery_antd_components/AntdButton.py +24 -37
- package/feffery_antd_components/AntdCenter.py +53 -0
- package/feffery_antd_components/AntdCheckCard.py +5 -3
- package/feffery_antd_components/AntdCheckCardGroup.py +7 -3
- package/feffery_antd_components/AntdCheckbox.py +5 -3
- package/feffery_antd_components/AntdCheckboxGroup.py +5 -3
- package/feffery_antd_components/AntdDatePicker.py +9 -5
- package/feffery_antd_components/AntdDateRangePicker.py +7 -5
- package/feffery_antd_components/AntdDescriptions.py +22 -4
- package/feffery_antd_components/AntdDrawer.py +11 -5
- package/feffery_antd_components/AntdMentions.py +5 -3
- package/feffery_antd_components/AntdParagraph.py +16 -4
- package/feffery_antd_components/AntdPopconfirm.py +12 -4
- package/feffery_antd_components/AntdPopover.py +7 -3
- package/feffery_antd_components/AntdProgress.py +19 -3
- package/feffery_antd_components/AntdRadioGroup.py +5 -3
- package/feffery_antd_components/AntdSlider.py +5 -3
- package/feffery_antd_components/AntdSwitch.py +5 -3
- package/feffery_antd_components/AntdTable.py +8 -6
- package/feffery_antd_components/AntdText.py +9 -3
- package/feffery_antd_components/AntdTimePicker.py +9 -5
- package/feffery_antd_components/AntdTimeRangePicker.py +7 -5
- package/feffery_antd_components/AntdTransfer.py +5 -3
- package/feffery_antd_components/AntdTree.py +15 -5
- package/feffery_antd_components/_imports_.py +120 -118
- package/feffery_antd_components/alias.py +193 -0
- package/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/feffery_antd_components/metadata.json +16020 -15494
- package/feffery_antd_components/package-info.json +3 -4
- package/package.json +2 -3
- package/src/jl/'feffery'_antdbutton.jl +30 -21
- package/src/jl/'feffery'_antdcenter.jl +34 -0
- package/src/jl/'feffery'_antdcheckbox.jl +2 -1
- package/src/jl/'feffery'_antdcheckboxgroup.jl +2 -1
- package/src/jl/'feffery'_antdcheckcard.jl +2 -1
- package/src/jl/'feffery'_antdcheckcardgroup.jl +3 -1
- package/src/jl/'feffery'_antddatepicker.jl +3 -1
- package/src/jl/'feffery'_antddaterangepicker.jl +2 -1
- package/src/jl/'feffery'_antddescriptions.jl +10 -1
- package/src/jl/'feffery'_antddrawer.jl +4 -1
- package/src/jl/'feffery'_antdmentions.jl +2 -1
- package/src/jl/'feffery'_antdparagraph.jl +7 -1
- package/src/jl/'feffery'_antdpopconfirm.jl +5 -1
- package/src/jl/'feffery'_antdpopover.jl +3 -1
- package/src/jl/'feffery'_antdprogress.jl +8 -1
- package/src/jl/'feffery'_antdradiogroup.jl +2 -1
- package/src/jl/'feffery'_antdslider.jl +2 -1
- package/src/jl/'feffery'_antdswitch.jl +2 -1
- package/src/jl/'feffery'_antdtable.jl +5 -4
- package/src/jl/'feffery'_antdtext.jl +4 -1
- package/src/jl/'feffery'_antdtimepicker.jl +3 -1
- package/src/jl/'feffery'_antdtimerangepicker.jl +2 -1
- package/src/jl/'feffery'_antdtransfer.jl +2 -1
- package/src/jl/'feffery'_antdtree.jl +6 -1
- package/src/lib/components/{AntdAccordion.react.js → dataDisplay/AntdAccordion.react.js} +1 -1
- package/src/lib/components/{AntdAvatar.react.js → dataDisplay/AntdAvatar.react.js} +2 -2
- package/src/lib/components/{AntdAvatarGroup.react.js → dataDisplay/AntdAvatarGroup.react.js} +1 -1
- package/src/lib/components/{AntdBadge.react.js → dataDisplay/AntdBadge.react.js} +1 -1
- package/src/lib/components/{AntdCalendar.react.js → dataDisplay/AntdCalendar.react.js} +3 -3
- package/src/lib/components/{AntdCarousel.react.js → dataDisplay/AntdCarousel.react.js} +1 -1
- package/src/lib/components/{AntdCollapse.react.js → dataDisplay/AntdCollapse.react.js} +2 -2
- package/src/lib/components/{AntdComment.react.js → dataDisplay/AntdComment.react.js} +5 -5
- package/src/lib/components/{AntdCountdown.react.js → dataDisplay/AntdCountdown.react.js} +1 -1
- package/src/lib/components/{AntdEmpty.react.js → dataDisplay/AntdEmpty.react.js} +3 -3
- package/src/lib/components/{AntdImage.react.js → dataDisplay/AntdImage.react.js} +3 -3
- package/src/lib/components/{AntdPopover.react.js → dataDisplay/AntdPopover.react.js} +21 -5
- package/src/lib/components/{AntdRibbon.react.js → dataDisplay/AntdRibbon.react.js} +1 -1
- package/src/lib/components/{AntdSegmented.react.js → dataDisplay/AntdSegmented.react.js} +3 -3
- package/src/lib/components/{AntdSpoiler.react.js → dataDisplay/AntdSpoiler.react.js} +2 -2
- package/src/lib/components/{AntdStatistic.react.js → dataDisplay/AntdStatistic.react.js} +1 -1
- package/src/lib/components/{AntdTable.react.js → dataDisplay/AntdTable.react.js} +93 -54
- package/src/lib/components/{AntdTag.react.js → dataDisplay/AntdTag.react.js} +1 -1
- package/src/lib/components/{AntdTimeline.react.js → dataDisplay/AntdTimeline.react.js} +1 -1
- package/src/lib/components/{AntdTooltip.react.js → dataDisplay/AntdTooltip.react.js} +2 -3
- package/src/lib/components/{AntdTree.react.js → dataDisplay/AntdTree.react.js} +43 -5
- package/src/lib/components/{card → dataDisplay/card}/AntdCard.react.js +2 -2
- package/src/lib/components/{card → dataDisplay/card}/AntdCardGrid.react.js +2 -2
- package/src/lib/components/{descriptions → dataDisplay/descriptions}/AntdDescriptionItem.react.js +2 -3
- package/src/lib/components/{descriptions → dataDisplay/descriptions}/AntdDescriptions.react.js +60 -4
- package/src/lib/components/{tabs → dataDisplay/tabs}/AntdTabPane.react.js +1 -1
- package/src/lib/components/{tabs → dataDisplay/tabs}/AntdTabs.react.js +2 -2
- package/src/lib/components/{AntdCascader.react.js → dataEntry/AntdCascader.react.js} +13 -4
- package/src/lib/components/{AntdCheckbox.react.js → dataEntry/AntdCheckbox.react.js} +11 -4
- package/src/lib/components/{AntdCheckboxGroup.react.js → dataEntry/AntdCheckboxGroup.react.js} +11 -4
- package/src/lib/components/{AntdDatePicker.react.js → dataEntry/AntdDatePicker.react.js} +14 -3
- package/src/lib/components/{AntdDateRangePicker.react.js → dataEntry/AntdDateRangePicker.react.js} +8 -3
- package/src/lib/components/{AntdInput.react.js → dataEntry/AntdInput.react.js} +2 -2
- package/src/lib/components/{AntdInputNumber.react.js → dataEntry/AntdInputNumber.react.js} +2 -2
- package/src/lib/components/{AntdMentions.react.js → dataEntry/AntdMentions.react.js} +11 -4
- package/src/lib/components/{AntdRadioGroup.react.js → dataEntry/AntdRadioGroup.react.js} +10 -3
- package/src/lib/components/{AntdRate.react.js → dataEntry/AntdRate.react.js} +2 -2
- package/src/lib/components/{AntdSelect.react.js → dataEntry/AntdSelect.react.js} +3 -3
- package/src/lib/components/{AntdSlider.react.js → dataEntry/AntdSlider.react.js} +10 -3
- package/src/lib/components/{AntdSwitch.react.js → dataEntry/AntdSwitch.react.js} +10 -3
- package/src/lib/components/{AntdTimePicker.react.js → dataEntry/AntdTimePicker.react.js} +14 -3
- package/src/lib/components/{AntdTimeRangePicker.react.js → dataEntry/AntdTimeRangePicker.react.js} +8 -3
- package/src/lib/components/{AntdTransfer.react.js → dataEntry/AntdTransfer.react.js} +15 -8
- package/src/lib/components/{AntdTreeSelect.react.js → dataEntry/AntdTreeSelect.react.js} +4 -4
- package/src/lib/components/{check-card → dataEntry/check-card}/AntdCheckCard.react.js +13 -4
- package/src/lib/components/{check-card → dataEntry/check-card}/AntdCheckCardGroup.react.js +26 -4
- package/src/lib/components/{form → dataEntry/form}/AntdForm.react.js +1 -1
- package/src/lib/components/{form → dataEntry/form}/AntdFormItem.react.js +5 -3
- package/src/lib/components/{upload → dataEntry/upload}/AntdDraggerUpload.react.js +4 -4
- package/src/lib/components/{upload → dataEntry/upload}/AntdPictureUpload.react.js +3 -3
- package/src/lib/components/{upload → dataEntry/upload}/AntdUpload.react.js +3 -3
- package/src/lib/components/{AntdAlert.react.js → feedback/AntdAlert.react.js} +1 -1
- package/src/lib/components/{AntdDrawer.react.js → feedback/AntdDrawer.react.js} +16 -1
- package/src/lib/components/{AntdMessage.react.js → feedback/AntdMessage.react.js} +2 -2
- package/src/lib/components/{AntdModal.react.js → feedback/AntdModal.react.js} +3 -3
- package/src/lib/components/{AntdNotification.react.js → feedback/AntdNotification.react.js} +1 -1
- package/src/lib/components/{AntdPopconfirm.react.js → feedback/AntdPopconfirm.react.js} +31 -5
- package/src/lib/components/{AntdPopupCard.react.js → feedback/AntdPopupCard.react.js} +1 -1
- package/src/lib/components/{AntdProgress.react.js → feedback/AntdProgress.react.js} +21 -1
- package/src/lib/components/{AntdResult.react.js → feedback/AntdResult.react.js} +1 -1
- package/src/lib/components/{AntdSpin.react.js → feedback/AntdSpin.react.js} +1 -1
- package/src/lib/components/{skeleton → feedback/skeleton}/AntdCustomSkeleton.react.js +1 -1
- package/src/lib/components/{skeleton → feedback/skeleton}/AntdSkeleton.react.js +1 -1
- package/src/lib/components/{skeleton → feedback/skeleton}/AntdSkeletonAvatar.react.js +1 -1
- package/src/lib/components/{skeleton → feedback/skeleton}/AntdSkeletonButton.react.js +1 -1
- package/src/lib/components/{skeleton → feedback/skeleton}/AntdSkeletonImage.react.js +1 -1
- package/src/lib/components/{skeleton → feedback/skeleton}/AntdSkeletonInput.react.js +1 -1
- package/src/lib/components/general/AntdButton.react.js +248 -0
- package/src/lib/components/{AntdIcon.react.js → general/AntdIcon.react.js} +2 -2
- package/src/lib/components/{typography → general/typography}/AntdParagraph.react.js +23 -4
- package/src/lib/components/{typography → general/typography}/AntdText.react.js +17 -4
- package/src/lib/components/{typography → general/typography}/AntdTitle.react.js +4 -4
- package/src/lib/components/icons.react.js +50 -2
- package/src/lib/components/layout/AntdCenter.react.js +98 -0
- package/src/lib/components/{AntdCompact.react.js → layout/AntdCompact.react.js} +2 -3
- package/src/lib/components/{AntdDivider.react.js → layout/AntdDivider.react.js} +1 -1
- package/src/lib/components/{AntdSpace.react.js → layout/AntdSpace.react.js} +2 -3
- package/src/lib/components/{grid → layout/grid}/AntdCol.react.js +2 -3
- package/src/lib/components/{grid → layout/grid}/AntdRow.react.js +2 -3
- package/src/lib/components/{AntdAffix.react.js → navigation/AntdAffix.react.js} +2 -3
- package/src/lib/components/{AntdBreadcrumb.react.js → navigation/AntdBreadcrumb.react.js} +2 -2
- package/src/lib/components/{AntdDropdown.react.js → navigation/AntdDropdown.react.js} +3 -3
- package/src/lib/components/{AntdMenu.react.js → navigation/AntdMenu.react.js} +2 -2
- package/src/lib/components/{AntdPageHeader.react.js → navigation/AntdPageHeader.react.js} +2 -2
- package/src/lib/components/{AntdPagination.react.js → navigation/AntdPagination.react.js} +3 -3
- package/src/lib/components/{AntdSteps.react.js → navigation/AntdSteps.react.js} +1 -1
- package/src/lib/components/{AntdAnchor.react.js → other/AntdAnchor.react.js} +1 -1
- package/src/lib/components/{AntdBackTop.react.js → other/AntdBackTop.react.js} +1 -1
- package/src/lib/components/{AntdConfigProvider.js → other/AntdConfigProvider.js} +1 -1
- package/src/lib/components/{AntdCopyText.react.js → other/AntdCopyText.react.js} +3 -3
- package/src/lib/components/{AntdSegmentedColoring.react.js → other/AntdSegmentedColoring.react.js} +2 -2
- package/src/lib/components/{AntdWatermark.react.js → other/AntdWatermark.react.js} +1 -1
- package/src/lib/hooks/useCss.js +3 -0
- package/src/lib/index.js +104 -96
- package/usage.py +39 -13
- package/webpack.config.js +1 -1
- package/assets/css/all.css +0 -7955
- package/assets/css/all.min.css +0 -9
- package/assets/css/brands.css +0 -1522
- package/assets/css/brands.min.css +0 -6
- package/assets/css/fontawesome.css +0 -6372
- package/assets/css/fontawesome.min.css +0 -9
- package/assets/css/regular.css +0 -19
- package/assets/css/regular.min.css +0 -6
- package/assets/css/solid.css +0 -19
- package/assets/css/solid.min.css +0 -6
- package/assets/css/svg-with-js.css +0 -639
- package/assets/css/svg-with-js.min.css +0 -6
- package/assets/css/v4-font-face.css +0 -26
- package/assets/css/v4-font-face.min.css +0 -6
- package/assets/css/v4-shims.css +0 -2194
- package/assets/css/v4-shims.min.css +0 -6
- package/assets/css/v5-font-face.css +0 -22
- package/assets/css/v5-font-face.min.css +0 -6
- package/assets/webfonts/fa-brands-400.ttf +0 -0
- package/assets/webfonts/fa-brands-400.woff2 +0 -0
- package/assets/webfonts/fa-regular-400.ttf +0 -0
- package/assets/webfonts/fa-regular-400.woff2 +0 -0
- package/assets/webfonts/fa-solid-900.ttf +0 -0
- package/assets/webfonts/fa-solid-900.woff2 +0 -0
- package/assets/webfonts/fa-v4compatibility.ttf +0 -0
- package/assets/webfonts/fa-v4compatibility.woff2 +0 -0
- package/src/lib/components/AntdButton.react.js +0 -250
package/DESCRIPTION
CHANGED
package/NAMESPACE
CHANGED
|
@@ -1,97 +1,98 @@
|
|
|
1
1
|
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
2
|
|
|
3
3
|
export('feffery'AntdAccordion)
|
|
4
|
-
export('feffery'AntdAffix)
|
|
5
|
-
export('feffery'AntdAlert)
|
|
6
|
-
export('feffery'AntdAnchor)
|
|
7
4
|
export('feffery'AntdAvatar)
|
|
8
5
|
export('feffery'AntdAvatarGroup)
|
|
9
|
-
export('feffery'AntdBackTop)
|
|
10
6
|
export('feffery'AntdBadge)
|
|
11
|
-
export('feffery'AntdBreadcrumb)
|
|
12
|
-
export('feffery'AntdButton)
|
|
13
7
|
export('feffery'AntdCalendar)
|
|
14
8
|
export('feffery'AntdCarousel)
|
|
15
|
-
export('feffery'AntdCascader)
|
|
16
|
-
export('feffery'AntdCheckbox)
|
|
17
|
-
export('feffery'AntdCheckboxGroup)
|
|
18
9
|
export('feffery'AntdCollapse)
|
|
19
10
|
export('feffery'AntdComment)
|
|
20
|
-
export('feffery'AntdCompact)
|
|
21
|
-
export('feffery'AntdConfigProvider)
|
|
22
|
-
export('feffery'AntdCopyText)
|
|
23
11
|
export('feffery'AntdCountdown)
|
|
24
|
-
export('feffery'AntdDatePicker)
|
|
25
|
-
export('feffery'AntdDateRangePicker)
|
|
26
|
-
export('feffery'AntdDivider)
|
|
27
|
-
export('feffery'AntdDrawer)
|
|
28
|
-
export('feffery'AntdDropdown)
|
|
29
12
|
export('feffery'AntdEmpty)
|
|
30
|
-
export('feffery'AntdIcon)
|
|
31
13
|
export('feffery'AntdImage)
|
|
32
|
-
export('feffery'AntdInput)
|
|
33
|
-
export('feffery'AntdInputNumber)
|
|
34
|
-
export('feffery'AntdMentions)
|
|
35
|
-
export('feffery'AntdMenu)
|
|
36
|
-
export('feffery'AntdMessage)
|
|
37
|
-
export('feffery'AntdModal)
|
|
38
|
-
export('feffery'AntdNotification)
|
|
39
|
-
export('feffery'AntdPageHeader)
|
|
40
|
-
export('feffery'AntdPagination)
|
|
41
|
-
export('feffery'AntdPopconfirm)
|
|
42
14
|
export('feffery'AntdPopover)
|
|
43
|
-
export('feffery'AntdPopupCard)
|
|
44
|
-
export('feffery'AntdProgress)
|
|
45
|
-
export('feffery'AntdRadioGroup)
|
|
46
|
-
export('feffery'AntdRate)
|
|
47
|
-
export('feffery'AntdResult)
|
|
48
15
|
export('feffery'AntdRibbon)
|
|
49
16
|
export('feffery'AntdSegmented)
|
|
50
|
-
export('feffery'AntdSegmentedColoring)
|
|
51
|
-
export('feffery'AntdSelect)
|
|
52
|
-
export('feffery'AntdSlider)
|
|
53
|
-
export('feffery'AntdSpace)
|
|
54
|
-
export('feffery'AntdSpin)
|
|
55
17
|
export('feffery'AntdSpoiler)
|
|
56
18
|
export('feffery'AntdStatistic)
|
|
57
|
-
export('feffery'AntdSteps)
|
|
58
|
-
export('feffery'AntdSwitch)
|
|
59
19
|
export('feffery'AntdTable)
|
|
60
20
|
export('feffery'AntdTag)
|
|
61
21
|
export('feffery'AntdTimeline)
|
|
62
|
-
export('feffery'AntdTimePicker)
|
|
63
|
-
export('feffery'AntdTimeRangePicker)
|
|
64
22
|
export('feffery'AntdTooltip)
|
|
65
|
-
export('feffery'AntdTransfer)
|
|
66
23
|
export('feffery'AntdTree)
|
|
67
|
-
export('feffery'AntdTreeSelect)
|
|
68
|
-
export('feffery'AntdWatermark)
|
|
69
24
|
export('feffery'AntdCard)
|
|
70
25
|
export('feffery'AntdCardGrid)
|
|
71
|
-
export('feffery'AntdCheckCard)
|
|
72
|
-
export('feffery'AntdCheckCardGroup)
|
|
73
26
|
export('feffery'AntdDescriptionItem)
|
|
74
27
|
export('feffery'AntdDescriptions)
|
|
28
|
+
export('feffery'AntdTabPane)
|
|
29
|
+
export('feffery'AntdTabs)
|
|
30
|
+
export('feffery'AntdCascader)
|
|
31
|
+
export('feffery'AntdCheckbox)
|
|
32
|
+
export('feffery'AntdCheckboxGroup)
|
|
33
|
+
export('feffery'AntdDatePicker)
|
|
34
|
+
export('feffery'AntdDateRangePicker)
|
|
35
|
+
export('feffery'AntdInput)
|
|
36
|
+
export('feffery'AntdInputNumber)
|
|
37
|
+
export('feffery'AntdMentions)
|
|
38
|
+
export('feffery'AntdRadioGroup)
|
|
39
|
+
export('feffery'AntdRate)
|
|
40
|
+
export('feffery'AntdSelect)
|
|
41
|
+
export('feffery'AntdSlider)
|
|
42
|
+
export('feffery'AntdSwitch)
|
|
43
|
+
export('feffery'AntdTimePicker)
|
|
44
|
+
export('feffery'AntdTimeRangePicker)
|
|
45
|
+
export('feffery'AntdTransfer)
|
|
46
|
+
export('feffery'AntdTreeSelect)
|
|
47
|
+
export('feffery'AntdCheckCard)
|
|
48
|
+
export('feffery'AntdCheckCardGroup)
|
|
75
49
|
export('feffery'AntdForm)
|
|
76
50
|
export('feffery'AntdFormItem)
|
|
77
|
-
export('feffery'
|
|
78
|
-
export('feffery'
|
|
79
|
-
export('feffery'
|
|
80
|
-
export('feffery'
|
|
81
|
-
export('feffery'
|
|
82
|
-
export('feffery'
|
|
83
|
-
export('feffery'
|
|
51
|
+
export('feffery'AntdDraggerUpload)
|
|
52
|
+
export('feffery'AntdPictureUpload)
|
|
53
|
+
export('feffery'AntdUpload)
|
|
54
|
+
export('feffery'AntdAlert)
|
|
55
|
+
export('feffery'AntdDrawer)
|
|
56
|
+
export('feffery'AntdMessage)
|
|
57
|
+
export('feffery'AntdModal)
|
|
58
|
+
export('feffery'AntdNotification)
|
|
59
|
+
export('feffery'AntdPopconfirm)
|
|
60
|
+
export('feffery'AntdPopupCard)
|
|
61
|
+
export('feffery'AntdProgress)
|
|
62
|
+
export('feffery'AntdResult)
|
|
63
|
+
export('feffery'AntdSpin)
|
|
84
64
|
export('feffery'AntdCustomSkeleton)
|
|
85
65
|
export('feffery'AntdSkeleton)
|
|
86
66
|
export('feffery'AntdSkeletonAvatar)
|
|
87
67
|
export('feffery'AntdSkeletonButton)
|
|
88
68
|
export('feffery'AntdSkeletonImage)
|
|
89
69
|
export('feffery'AntdSkeletonInput)
|
|
90
|
-
export('feffery'
|
|
91
|
-
export('feffery'
|
|
70
|
+
export('feffery'AntdButton)
|
|
71
|
+
export('feffery'AntdIcon)
|
|
92
72
|
export('feffery'AntdParagraph)
|
|
93
73
|
export('feffery'AntdText)
|
|
94
74
|
export('feffery'AntdTitle)
|
|
95
|
-
export('feffery'
|
|
96
|
-
export('feffery'
|
|
97
|
-
export('feffery'
|
|
75
|
+
export('feffery'AntdCenter)
|
|
76
|
+
export('feffery'AntdCompact)
|
|
77
|
+
export('feffery'AntdContent)
|
|
78
|
+
export('feffery'AntdDivider)
|
|
79
|
+
export('feffery'AntdFooter)
|
|
80
|
+
export('feffery'AntdHeader)
|
|
81
|
+
export('feffery'AntdLayout)
|
|
82
|
+
export('feffery'AntdSider)
|
|
83
|
+
export('feffery'AntdSpace)
|
|
84
|
+
export('feffery'AntdCol)
|
|
85
|
+
export('feffery'AntdRow)
|
|
86
|
+
export('feffery'AntdAffix)
|
|
87
|
+
export('feffery'AntdBreadcrumb)
|
|
88
|
+
export('feffery'AntdDropdown)
|
|
89
|
+
export('feffery'AntdMenu)
|
|
90
|
+
export('feffery'AntdPageHeader)
|
|
91
|
+
export('feffery'AntdPagination)
|
|
92
|
+
export('feffery'AntdSteps)
|
|
93
|
+
export('feffery'AntdAnchor)
|
|
94
|
+
export('feffery'AntdBackTop)
|
|
95
|
+
export('feffery'AntdConfigProvider)
|
|
96
|
+
export('feffery'AntdCopyText)
|
|
97
|
+
export('feffery'AntdSegmentedColoring)
|
|
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
|
|
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
|
|
|
@@ -5,57 +5,48 @@ from dash.development.base_component import Component, _explicitize_args
|
|
|
5
5
|
|
|
6
6
|
class AntdButton(Component):
|
|
7
7
|
"""An AntdButton component.
|
|
8
|
-
|
|
8
|
+
按钮组件AntdButton,api参数参考https://ant.design/components/button-cn/
|
|
9
9
|
|
|
10
10
|
Keyword arguments:
|
|
11
11
|
|
|
12
12
|
- children (a list of or a singular dash component, string or number; optional):
|
|
13
|
-
|
|
13
|
+
当前按钮内嵌元素.
|
|
14
14
|
|
|
15
15
|
- id (string; optional):
|
|
16
|
-
|
|
16
|
+
当前组件唯一id.
|
|
17
17
|
|
|
18
18
|
- autoSpin (boolean; default False):
|
|
19
|
-
|
|
20
|
-
button click, enabling callback operations with a non-clickable
|
|
21
|
-
button effect; default is False.
|
|
19
|
+
当前按钮在每次点击后是否自动进入加载中状态 默认:False.
|
|
22
20
|
|
|
23
21
|
- block (boolean; default False):
|
|
24
|
-
|
|
25
|
-
parent element, default is False.
|
|
22
|
+
当前按钮是否撑满父元素 默认:False.
|
|
26
23
|
|
|
27
24
|
- className (string | dict; optional):
|
|
28
|
-
|
|
25
|
+
当前按钮css类,支持动态css类特性.
|
|
29
26
|
|
|
30
27
|
- danger (boolean; default False):
|
|
31
|
-
|
|
32
|
-
is False.
|
|
28
|
+
当前按钮是否呈现危险状态 默认:False.
|
|
33
29
|
|
|
34
30
|
- debounceWait (number; default 200):
|
|
35
|
-
|
|
36
|
-
nClicks listener update; default is 0.
|
|
31
|
+
当前按钮点击事件监听防抖延时,单位:毫秒 默认:200.
|
|
37
32
|
|
|
38
33
|
- disabled (boolean; default False):
|
|
39
|
-
|
|
40
|
-
default is False.
|
|
34
|
+
当前按钮是否呈现禁用状态 默认:False.
|
|
41
35
|
|
|
42
36
|
- href (string; optional):
|
|
43
|
-
|
|
44
|
-
an <a> tag.
|
|
37
|
+
当前按钮点击跳转链接地址.
|
|
45
38
|
|
|
46
39
|
- icon (a list of or a singular dash component, string or number; optional):
|
|
47
|
-
|
|
48
|
-
of the button.
|
|
40
|
+
当前按钮内嵌元素前缀图标.
|
|
49
41
|
|
|
50
42
|
- key (string; optional):
|
|
51
|
-
|
|
43
|
+
当前组件辅助用唯一id,可通过更新key值实现强制重绘.
|
|
52
44
|
|
|
53
45
|
- loading (boolean; optional):
|
|
54
|
-
|
|
55
|
-
clickable\" effect; default is False.
|
|
46
|
+
当前按钮是否呈现加载中状态 默认:False.
|
|
56
47
|
|
|
57
48
|
- loadingChildren (a list of or a singular dash component, string or number; optional):
|
|
58
|
-
|
|
49
|
+
当前按钮加载状态下内嵌元素.
|
|
59
50
|
|
|
60
51
|
- loading_state (dict; optional)
|
|
61
52
|
|
|
@@ -71,33 +62,29 @@ Keyword arguments:
|
|
|
71
62
|
Holds which property is loading.
|
|
72
63
|
|
|
73
64
|
- nClicks (number; default 0):
|
|
74
|
-
|
|
75
|
-
rendering, default is 0.
|
|
65
|
+
当前按钮累计被点击次数 默认:0.
|
|
76
66
|
|
|
77
|
-
- shape (a value equal to: 'circle', 'round';
|
|
78
|
-
|
|
79
|
-
rectangle; default is not set, i.e., normal rectangle).
|
|
67
|
+
- shape (a value equal to: 'default', 'circle', 'round'; default 'default'):
|
|
68
|
+
当前按钮形状,可选的有'default'、'circle'、'round' 默认:'default'.
|
|
80
69
|
|
|
81
70
|
- size (a value equal to: 'small', 'middle', 'large'; default 'middle'):
|
|
82
|
-
|
|
83
|
-
'middle', and 'large'; default is 'middle'.
|
|
71
|
+
当前按钮尺寸规格,可选的有'small'、'middle'、'large' 默认:'middle'.
|
|
84
72
|
|
|
85
73
|
- style (dict; optional):
|
|
86
|
-
|
|
74
|
+
当前按钮css样式.
|
|
87
75
|
|
|
88
76
|
- target (string; optional):
|
|
89
|
-
|
|
90
|
-
action for the redirection.
|
|
77
|
+
当前按钮点击跳转链接行为类型.
|
|
91
78
|
|
|
92
|
-
- type (a value equal to: 'primary', 'ghost', 'dashed', 'link', 'text'
|
|
93
|
-
|
|
94
|
-
primary
|
|
79
|
+
- type (a value equal to: 'default', 'primary', 'ghost', 'dashed', 'link', 'text'; default 'default'):
|
|
80
|
+
当前按钮类型,可选的有'default'、'primary'、'ghost'、'dashed'、'link'、'text'
|
|
81
|
+
默认:'primary'."""
|
|
95
82
|
_children_props = ['loadingChildren', 'icon']
|
|
96
83
|
_base_nodes = ['loadingChildren', 'icon', 'children']
|
|
97
84
|
_namespace = 'feffery_antd_components'
|
|
98
85
|
_type = 'AntdButton'
|
|
99
86
|
@_explicitize_args
|
|
100
|
-
def __init__(self, children=None, id=Component.UNDEFINED,
|
|
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):
|
|
101
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']
|
|
102
89
|
self._valid_wildcard_attributes = []
|
|
103
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']
|
|
@@ -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)
|
|
@@ -57,6 +57,8 @@ Keyword arguments:
|
|
|
57
57
|
is kept after the browser quit. session: window.sessionStorage,
|
|
58
58
|
data is cleared once the browser quit.
|
|
59
59
|
|
|
60
|
+
- readOnly (boolean; default False)
|
|
61
|
+
|
|
60
62
|
- size (a value equal to: 'small', 'default', 'large'; default 'default')
|
|
61
63
|
|
|
62
64
|
- style (dict; optional)
|
|
@@ -67,10 +69,10 @@ Keyword arguments:
|
|
|
67
69
|
_namespace = 'feffery_antd_components'
|
|
68
70
|
_type = 'AntdCheckCard'
|
|
69
71
|
@_explicitize_args
|
|
70
|
-
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, checked=Component.UNDEFINED, defaultChecked=Component.UNDEFINED, bordered=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, value=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
71
|
-
self._prop_names = ['children', 'id', 'bordered', 'checked', 'className', 'defaultChecked', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
|
|
72
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, checked=Component.UNDEFINED, defaultChecked=Component.UNDEFINED, bordered=Component.UNDEFINED, disabled=Component.UNDEFINED, size=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 = ['children', 'id', 'bordered', 'checked', 'className', 'defaultChecked', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
|
|
72
74
|
self._valid_wildcard_attributes = []
|
|
73
|
-
self.available_properties = ['children', 'id', 'bordered', 'checked', 'className', 'defaultChecked', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
|
|
75
|
+
self.available_properties = ['children', 'id', 'bordered', 'checked', 'className', 'defaultChecked', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
|
|
74
76
|
self.available_wildcard_properties = []
|
|
75
77
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
76
78
|
_locals = locals()
|
|
@@ -13,6 +13,8 @@ Keyword arguments:
|
|
|
13
13
|
|
|
14
14
|
- id (string; optional)
|
|
15
15
|
|
|
16
|
+
- allowNoValue (boolean; default True)
|
|
17
|
+
|
|
16
18
|
- bordered (boolean; default True)
|
|
17
19
|
|
|
18
20
|
- className (string | dict; optional)
|
|
@@ -57,6 +59,8 @@ Keyword arguments:
|
|
|
57
59
|
is kept after the browser quit. session: window.sessionStorage,
|
|
58
60
|
data is cleared once the browser quit.
|
|
59
61
|
|
|
62
|
+
- readOnly (boolean; default False)
|
|
63
|
+
|
|
60
64
|
- size (a value equal to: 'small', 'default', 'large'; default 'default')
|
|
61
65
|
|
|
62
66
|
- style (dict; optional)
|
|
@@ -67,10 +71,10 @@ Keyword arguments:
|
|
|
67
71
|
_namespace = 'feffery_antd_components'
|
|
68
72
|
_type = 'AntdCheckCardGroup'
|
|
69
73
|
@_explicitize_args
|
|
70
|
-
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, multiple=Component.UNDEFINED, bordered=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
71
|
-
self._prop_names = ['children', 'id', 'bordered', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'multiple', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
|
|
74
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, multiple=Component.UNDEFINED, allowNoValue=Component.UNDEFINED, bordered=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
75
|
+
self._prop_names = ['children', 'id', 'allowNoValue', 'bordered', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'multiple', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
|
|
72
76
|
self._valid_wildcard_attributes = []
|
|
73
|
-
self.available_properties = ['children', 'id', 'bordered', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'multiple', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
|
|
77
|
+
self.available_properties = ['children', 'id', 'allowNoValue', 'bordered', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'multiple', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
|
|
74
78
|
self.available_wildcard_properties = []
|
|
75
79
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
76
80
|
_locals = locals()
|
|
@@ -55,16 +55,18 @@ Keyword arguments:
|
|
|
55
55
|
is kept after the browser quit. session: window.sessionStorage,
|
|
56
56
|
data is cleared once the browser quit.
|
|
57
57
|
|
|
58
|
+
- readOnly (boolean; default False)
|
|
59
|
+
|
|
58
60
|
- style (dict; optional)"""
|
|
59
61
|
_children_props = ['label']
|
|
60
62
|
_base_nodes = ['label', 'children']
|
|
61
63
|
_namespace = 'feffery_antd_components'
|
|
62
64
|
_type = 'AntdCheckbox'
|
|
63
65
|
@_explicitize_args
|
|
64
|
-
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, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
65
|
-
self._prop_names = ['id', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'style']
|
|
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']
|
|
66
68
|
self._valid_wildcard_attributes = []
|
|
67
|
-
self.available_properties = ['id', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'style']
|
|
69
|
+
self.available_properties = ['id', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
|
|
68
70
|
self.available_wildcard_properties = []
|
|
69
71
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
70
72
|
_locals = locals()
|
|
@@ -59,6 +59,8 @@ Keyword arguments:
|
|
|
59
59
|
is kept after the browser quit. session: window.sessionStorage,
|
|
60
60
|
data is cleared once the browser quit.
|
|
61
61
|
|
|
62
|
+
- readOnly (boolean; default False)
|
|
63
|
+
|
|
62
64
|
- style (dict; optional)
|
|
63
65
|
|
|
64
66
|
- value (list of string | numbers; optional)"""
|
|
@@ -67,10 +69,10 @@ Keyword arguments:
|
|
|
67
69
|
_namespace = 'feffery_antd_components'
|
|
68
70
|
_type = 'AntdCheckboxGroup'
|
|
69
71
|
@_explicitize_args
|
|
70
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, options=Component.UNDEFINED, value=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
71
|
-
self._prop_names = ['id', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'style', 'value']
|
|
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']
|
|
72
74
|
self._valid_wildcard_attributes = []
|
|
73
|
-
self.available_properties = ['id', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'style', 'value']
|
|
75
|
+
self.available_properties = ['id', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style', 'value']
|
|
74
76
|
self.available_wildcard_properties = []
|
|
75
77
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
76
78
|
_locals = locals()
|
|
@@ -35,6 +35,24 @@ Keyword arguments:
|
|
|
35
35
|
|
|
36
36
|
- contentStyle (dict; optional)
|
|
37
37
|
|
|
38
|
+
- items (list of dicts; optional)
|
|
39
|
+
|
|
40
|
+
`items` is a list of dicts with keys:
|
|
41
|
+
|
|
42
|
+
- children (a list of or a singular dash component, string or number; optional)
|
|
43
|
+
|
|
44
|
+
- className (string; optional)
|
|
45
|
+
|
|
46
|
+
- contentStyle (dict; optional)
|
|
47
|
+
|
|
48
|
+
- label (a list of or a singular dash component, string or number; optional)
|
|
49
|
+
|
|
50
|
+
- labelStyle (dict; optional)
|
|
51
|
+
|
|
52
|
+
- span (number; optional)
|
|
53
|
+
|
|
54
|
+
- style (dict; optional)
|
|
55
|
+
|
|
38
56
|
- key (string; optional)
|
|
39
57
|
|
|
40
58
|
- labelStyle (dict; optional)
|
|
@@ -59,15 +77,15 @@ Keyword arguments:
|
|
|
59
77
|
- style (dict; optional)
|
|
60
78
|
|
|
61
79
|
- title (a list of or a singular dash component, string or number; optional)"""
|
|
62
|
-
_children_props = ['title']
|
|
80
|
+
_children_props = ['items[].label', 'items[].children', 'title']
|
|
63
81
|
_base_nodes = ['title', 'children']
|
|
64
82
|
_namespace = 'feffery_antd_components'
|
|
65
83
|
_type = 'AntdDescriptions'
|
|
66
84
|
@_explicitize_args
|
|
67
|
-
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, title=Component.UNDEFINED, column=Component.UNDEFINED, bordered=Component.UNDEFINED, size=Component.UNDEFINED, layout=Component.UNDEFINED, labelStyle=Component.UNDEFINED, contentStyle=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
68
|
-
self._prop_names = ['children', 'id', 'bordered', 'className', 'column', 'contentStyle', 'key', 'labelStyle', 'layout', 'loading_state', 'size', 'style', 'title']
|
|
85
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, items=Component.UNDEFINED, title=Component.UNDEFINED, column=Component.UNDEFINED, bordered=Component.UNDEFINED, size=Component.UNDEFINED, layout=Component.UNDEFINED, labelStyle=Component.UNDEFINED, contentStyle=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
86
|
+
self._prop_names = ['children', 'id', 'bordered', 'className', 'column', 'contentStyle', 'items', 'key', 'labelStyle', 'layout', 'loading_state', 'size', 'style', 'title']
|
|
69
87
|
self._valid_wildcard_attributes = []
|
|
70
|
-
self.available_properties = ['children', 'id', 'bordered', 'className', 'column', 'contentStyle', 'key', 'labelStyle', 'layout', 'loading_state', 'size', 'style', 'title']
|
|
88
|
+
self.available_properties = ['children', 'id', 'bordered', 'className', 'column', 'contentStyle', 'items', 'key', 'labelStyle', 'layout', 'loading_state', 'size', 'style', 'title']
|
|
71
89
|
self.available_wildcard_properties = []
|
|
72
90
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
73
91
|
_locals = locals()
|
|
@@ -23,12 +23,18 @@ Keyword arguments:
|
|
|
23
23
|
|
|
24
24
|
- containerSelector (string; optional)
|
|
25
25
|
|
|
26
|
+
- contentWrapperStyle (dict; optional)
|
|
27
|
+
|
|
26
28
|
- destroyOnClose (boolean; default False)
|
|
27
29
|
|
|
28
30
|
- drawerStyle (dict; optional)
|
|
29
31
|
|
|
30
32
|
- extra (a list of or a singular dash component, string or number; optional)
|
|
31
33
|
|
|
34
|
+
- footer (a list of or a singular dash component, string or number; optional)
|
|
35
|
+
|
|
36
|
+
- footerStyle (dict; optional)
|
|
37
|
+
|
|
32
38
|
- forceRender (boolean; default False)
|
|
33
39
|
|
|
34
40
|
- headerStyle (dict; optional)
|
|
@@ -67,15 +73,15 @@ Keyword arguments:
|
|
|
67
73
|
- width (number | string; default 256)
|
|
68
74
|
|
|
69
75
|
- zIndex (number; default 1000)"""
|
|
70
|
-
_children_props = ['title', 'extra']
|
|
71
|
-
_base_nodes = ['title', 'extra', 'children']
|
|
76
|
+
_children_props = ['title', 'extra', 'footer']
|
|
77
|
+
_base_nodes = ['title', 'extra', 'footer', 'children']
|
|
72
78
|
_namespace = 'feffery_antd_components'
|
|
73
79
|
_type = 'AntdDrawer'
|
|
74
80
|
@_explicitize_args
|
|
75
|
-
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, drawerStyle=Component.UNDEFINED, bodyStyle=Component.UNDEFINED, headerStyle=Component.UNDEFINED, maskStyle=Component.UNDEFINED, key=Component.UNDEFINED, visible=Component.UNDEFINED, title=Component.UNDEFINED, placement=Component.UNDEFINED, closable=Component.UNDEFINED, forceRender=Component.UNDEFINED, destroyOnClose=Component.UNDEFINED, width=Component.UNDEFINED, height=Component.UNDEFINED, mask=Component.UNDEFINED, maskClosable=Component.UNDEFINED, zIndex=Component.UNDEFINED, extra=Component.UNDEFINED, containerId=Component.UNDEFINED, containerSelector=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
76
|
-
self._prop_names = ['children', 'id', 'bodyStyle', 'className', 'closable', 'containerId', 'containerSelector', 'destroyOnClose', 'drawerStyle', 'extra', 'forceRender', 'headerStyle', 'height', 'key', 'loading_state', 'mask', 'maskClosable', 'maskStyle', 'placement', 'style', 'title', 'visible', 'width', 'zIndex']
|
|
81
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, drawerStyle=Component.UNDEFINED, bodyStyle=Component.UNDEFINED, contentWrapperStyle=Component.UNDEFINED, headerStyle=Component.UNDEFINED, footerStyle=Component.UNDEFINED, maskStyle=Component.UNDEFINED, key=Component.UNDEFINED, visible=Component.UNDEFINED, title=Component.UNDEFINED, placement=Component.UNDEFINED, closable=Component.UNDEFINED, forceRender=Component.UNDEFINED, destroyOnClose=Component.UNDEFINED, width=Component.UNDEFINED, height=Component.UNDEFINED, mask=Component.UNDEFINED, maskClosable=Component.UNDEFINED, zIndex=Component.UNDEFINED, extra=Component.UNDEFINED, footer=Component.UNDEFINED, containerId=Component.UNDEFINED, containerSelector=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
82
|
+
self._prop_names = ['children', 'id', 'bodyStyle', 'className', 'closable', 'containerId', 'containerSelector', 'contentWrapperStyle', 'destroyOnClose', 'drawerStyle', 'extra', 'footer', 'footerStyle', 'forceRender', 'headerStyle', 'height', 'key', 'loading_state', 'mask', 'maskClosable', 'maskStyle', 'placement', 'style', 'title', 'visible', 'width', 'zIndex']
|
|
77
83
|
self._valid_wildcard_attributes = []
|
|
78
|
-
self.available_properties = ['children', 'id', 'bodyStyle', 'className', 'closable', 'containerId', 'containerSelector', 'destroyOnClose', 'drawerStyle', 'extra', 'forceRender', 'headerStyle', 'height', 'key', 'loading_state', 'mask', 'maskClosable', 'maskStyle', 'placement', 'style', 'title', 'visible', 'width', 'zIndex']
|
|
84
|
+
self.available_properties = ['children', 'id', 'bodyStyle', 'className', 'closable', 'containerId', 'containerSelector', 'contentWrapperStyle', 'destroyOnClose', 'drawerStyle', 'extra', 'footer', 'footerStyle', 'forceRender', 'headerStyle', 'height', 'key', 'loading_state', 'mask', 'maskClosable', 'maskStyle', 'placement', 'style', 'title', 'visible', 'width', 'zIndex']
|
|
79
85
|
self.available_wildcard_properties = []
|
|
80
86
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
81
87
|
_locals = locals()
|
|
@@ -54,6 +54,8 @@ Keyword arguments:
|
|
|
54
54
|
|
|
55
55
|
- prefix (string; default '@')
|
|
56
56
|
|
|
57
|
+
- readOnly (boolean; default False)
|
|
58
|
+
|
|
57
59
|
- selectedOptions (list of strings; optional)
|
|
58
60
|
|
|
59
61
|
- status (a value equal to: 'error', 'warning'; optional)
|
|
@@ -66,10 +68,10 @@ Keyword arguments:
|
|
|
66
68
|
_namespace = 'feffery_antd_components'
|
|
67
69
|
_type = 'AntdMentions'
|
|
68
70
|
@_explicitize_args
|
|
69
|
-
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, loading_state=Component.UNDEFINED, **kwargs):
|
|
70
|
-
self._prop_names = ['id', 'autoSize', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'selectedOptions', 'status', 'style', 'value']
|
|
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']
|
|
71
73
|
self._valid_wildcard_attributes = []
|
|
72
|
-
self.available_properties = ['id', 'autoSize', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'selectedOptions', 'status', 'style', 'value']
|
|
74
|
+
self.available_properties = ['id', 'autoSize', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'readOnly', 'selectedOptions', 'status', 'style', 'value']
|
|
73
75
|
self.available_wildcard_properties = []
|
|
74
76
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
75
77
|
_locals = locals()
|