feffery_antd_components 0.2.10-rc10 → 0.2.10-rc12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (211) hide show
  1. package/DESCRIPTION +1 -1
  2. package/NAMESPACE +1 -1
  3. package/Project.toml +1 -1
  4. package/feffery_antd_components/AntdCascader.py +7 -3
  5. package/feffery_antd_components/AntdCheckbox.py +7 -3
  6. package/feffery_antd_components/AntdCheckboxGroup.py +7 -3
  7. package/feffery_antd_components/AntdComment.py +7 -3
  8. package/feffery_antd_components/AntdDatePicker.py +7 -3
  9. package/feffery_antd_components/AntdDateRangePicker.py +7 -3
  10. package/feffery_antd_components/AntdDropdown.py +7 -3
  11. package/feffery_antd_components/AntdForm.py +9 -3
  12. package/feffery_antd_components/AntdFormItem.py +5 -1
  13. package/feffery_antd_components/AntdInput.py +7 -3
  14. package/feffery_antd_components/AntdInputNumber.py +7 -3
  15. package/feffery_antd_components/AntdMentions.py +7 -3
  16. package/feffery_antd_components/AntdPagination.py +9 -3
  17. package/feffery_antd_components/AntdRadioGroup.py +7 -3
  18. package/feffery_antd_components/AntdRate.py +7 -3
  19. package/feffery_antd_components/AntdSegmented.py +7 -3
  20. package/feffery_antd_components/AntdSegmentedColoring.py +7 -3
  21. package/feffery_antd_components/AntdSelect.py +7 -3
  22. package/feffery_antd_components/AntdSlider.py +7 -3
  23. package/feffery_antd_components/AntdSwitch.py +7 -3
  24. package/feffery_antd_components/AntdTable.py +7 -3
  25. package/feffery_antd_components/AntdTabs.py +7 -3
  26. package/feffery_antd_components/AntdTimePicker.py +7 -3
  27. package/feffery_antd_components/AntdTimeRangePicker.py +7 -3
  28. package/feffery_antd_components/AntdTransfer.py +7 -3
  29. package/feffery_antd_components/AntdTree.py +21 -3
  30. package/feffery_antd_components/AntdTreeSelect.py +7 -3
  31. package/feffery_antd_components/__init__.py +18 -2
  32. package/feffery_antd_components/_imports_.py +2 -2
  33. package/feffery_antd_components/async-antd_table.js +1 -0
  34. package/feffery_antd_components/async-antd_upload.js +1 -0
  35. package/feffery_antd_components/feffery_antd_components.min.js +1 -1
  36. package/feffery_antd_components/metadata.json +1085 -447
  37. package/feffery_antd_components/package-info.json +1 -1
  38. package/package.json +1 -1
  39. package/src/jl/'feffery'_antdcascader.jl +3 -1
  40. package/src/jl/'feffery'_antdcheckbox.jl +3 -1
  41. package/src/jl/'feffery'_antdcheckboxgroup.jl +3 -1
  42. package/src/jl/'feffery'_antdcomment.jl +3 -1
  43. package/src/jl/'feffery'_antddatepicker.jl +3 -1
  44. package/src/jl/'feffery'_antddaterangepicker.jl +3 -1
  45. package/src/jl/'feffery'_antddropdown.jl +3 -1
  46. package/src/jl/'feffery'_antdform.jl +6 -3
  47. package/src/jl/'feffery'_antdformitem.jl +4 -2
  48. package/src/jl/'feffery'_antdinput.jl +3 -1
  49. package/src/jl/'feffery'_antdinputnumber.jl +3 -1
  50. package/src/jl/'feffery'_antdmentions.jl +3 -1
  51. package/src/jl/'feffery'_antdpagination.jl +4 -1
  52. package/src/jl/'feffery'_antdradiogroup.jl +3 -1
  53. package/src/jl/'feffery'_antdrate.jl +3 -1
  54. package/src/jl/'feffery'_antdsegmented.jl +3 -1
  55. package/src/jl/'feffery'_antdsegmentedcoloring.jl +3 -1
  56. package/src/jl/'feffery'_antdselect.jl +3 -1
  57. package/src/jl/'feffery'_antdslider.jl +3 -1
  58. package/src/jl/'feffery'_antdswitch.jl +3 -1
  59. package/src/jl/'feffery'_antdtable.jl +5 -3
  60. package/src/jl/'feffery'_antdtabs.jl +3 -1
  61. package/src/jl/'feffery'_antdtimepicker.jl +3 -1
  62. package/src/jl/'feffery'_antdtimerangepicker.jl +3 -1
  63. package/src/jl/'feffery'_antdtransfer.jl +3 -1
  64. package/src/jl/'feffery'_antdtree.jl +10 -1
  65. package/src/jl/'feffery'_antdtreeselect.jl +3 -1
  66. package/src/lib/components/dataDisplay/AntdComment.react.js +23 -2
  67. package/src/lib/components/dataDisplay/AntdSegmented.react.js +23 -2
  68. package/src/lib/components/dataDisplay/AntdTable.react.js +21 -1864
  69. package/src/lib/components/dataDisplay/AntdTree.react.js +147 -11
  70. package/src/lib/components/dataDisplay/tabs/AntdTabs.react.js +17 -0
  71. package/src/lib/components/dataEntry/AntdCascader.react.js +23 -2
  72. package/src/lib/components/dataEntry/AntdCheckbox.react.js +23 -2
  73. package/src/lib/components/dataEntry/AntdCheckboxGroup.react.js +23 -2
  74. package/src/lib/components/dataEntry/AntdDatePicker.react.js +23 -2
  75. package/src/lib/components/dataEntry/AntdDateRangePicker.react.js +23 -2
  76. package/src/lib/components/dataEntry/AntdInput.react.js +24 -3
  77. package/src/lib/components/dataEntry/AntdInputNumber.react.js +23 -2
  78. package/src/lib/components/dataEntry/AntdMentions.react.js +25 -4
  79. package/src/lib/components/dataEntry/AntdRadioGroup.react.js +23 -2
  80. package/src/lib/components/dataEntry/AntdRate.react.js +23 -2
  81. package/src/lib/components/{other → dataEntry}/AntdSegmentedColoring.react.js +23 -2
  82. package/src/lib/components/dataEntry/AntdSelect.react.js +24 -3
  83. package/src/lib/components/dataEntry/AntdSlider.react.js +23 -2
  84. package/src/lib/components/dataEntry/AntdSwitch.react.js +23 -2
  85. package/src/lib/components/dataEntry/AntdTimePicker.react.js +23 -2
  86. package/src/lib/components/dataEntry/AntdTimeRangePicker.react.js +23 -2
  87. package/src/lib/components/dataEntry/AntdTransfer.react.js +23 -2
  88. package/src/lib/components/dataEntry/AntdTreeSelect.react.js +24 -3
  89. package/src/lib/components/dataEntry/form/AntdForm.react.js +20 -1
  90. package/src/lib/components/dataEntry/form/AntdFormItem.react.js +12 -1
  91. package/src/lib/components/dataEntry/upload/AntdDraggerUpload.react.js +9 -392
  92. package/src/lib/components/dataEntry/upload/AntdPictureUpload.react.js +9 -428
  93. package/src/lib/components/dataEntry/upload/AntdUpload.react.js +9 -379
  94. package/src/lib/components/navigation/AntdDropdown.react.js +23 -2
  95. package/src/lib/components/navigation/AntdPagination.react.js +32 -3
  96. package/src/lib/components/styles.css +4 -0
  97. package/src/lib/fragments/AntdTable.react.js +1880 -0
  98. package/src/lib/fragments/upload/AntdDraggerUpload.react.js +402 -0
  99. package/src/lib/fragments/upload/AntdPictureUpload.react.js +439 -0
  100. package/src/lib/fragments/upload/AntdUpload.react.js +639 -0
  101. package/src/lib/index.js +1 -1
  102. package/usage.py +72 -40
  103. package/webpack.config.js +15 -2
  104. package/build/lib/feffery_antd_components/AntdAccordion.py +0 -85
  105. package/build/lib/feffery_antd_components/AntdAccordionItem.py +0 -64
  106. package/build/lib/feffery_antd_components/AntdAffix.py +0 -55
  107. package/build/lib/feffery_antd_components/AntdAlert.py +0 -63
  108. package/build/lib/feffery_antd_components/AntdAnchor.py +0 -63
  109. package/build/lib/feffery_antd_components/AntdAvatar.py +0 -82
  110. package/build/lib/feffery_antd_components/AntdAvatarGroup.py +0 -74
  111. package/build/lib/feffery_antd_components/AntdBackTop.py +0 -55
  112. package/build/lib/feffery_antd_components/AntdBadge.py +0 -71
  113. package/build/lib/feffery_antd_components/AntdBreadcrumb.py +0 -87
  114. package/build/lib/feffery_antd_components/AntdButton.py +0 -97
  115. package/build/lib/feffery_antd_components/AntdCalendar.py +0 -76
  116. package/build/lib/feffery_antd_components/AntdCard.py +0 -89
  117. package/build/lib/feffery_antd_components/AntdCardGrid.py +0 -53
  118. package/build/lib/feffery_antd_components/AntdCarousel.py +0 -63
  119. package/build/lib/feffery_antd_components/AntdCascader.py +0 -109
  120. package/build/lib/feffery_antd_components/AntdCenter.py +0 -53
  121. package/build/lib/feffery_antd_components/AntdCheckCard.py +0 -82
  122. package/build/lib/feffery_antd_components/AntdCheckCardGroup.py +0 -84
  123. package/build/lib/feffery_antd_components/AntdCheckbox.py +0 -76
  124. package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +0 -82
  125. package/build/lib/feffery_antd_components/AntdCol.py +0 -147
  126. package/build/lib/feffery_antd_components/AntdCollapse.py +0 -82
  127. package/build/lib/feffery_antd_components/AntdComment.py +0 -94
  128. package/build/lib/feffery_antd_components/AntdCompact.py +0 -55
  129. package/build/lib/feffery_antd_components/AntdConfigProvider.py +0 -53
  130. package/build/lib/feffery_antd_components/AntdContent.py +0 -51
  131. package/build/lib/feffery_antd_components/AntdCopyText.py +0 -55
  132. package/build/lib/feffery_antd_components/AntdCountdown.py +0 -63
  133. package/build/lib/feffery_antd_components/AntdCustomSkeleton.py +0 -61
  134. package/build/lib/feffery_antd_components/AntdDatePicker.py +0 -118
  135. package/build/lib/feffery_antd_components/AntdDateRangePicker.py +0 -120
  136. package/build/lib/feffery_antd_components/AntdDescriptionItem.py +0 -59
  137. package/build/lib/feffery_antd_components/AntdDescriptions.py +0 -95
  138. package/build/lib/feffery_antd_components/AntdDivider.py +0 -85
  139. package/build/lib/feffery_antd_components/AntdDraggerUpload.py +0 -187
  140. package/build/lib/feffery_antd_components/AntdDrawer.py +0 -91
  141. package/build/lib/feffery_antd_components/AntdDropdown.py +0 -113
  142. package/build/lib/feffery_antd_components/AntdEmpty.py +0 -57
  143. package/build/lib/feffery_antd_components/AntdFooter.py +0 -51
  144. package/build/lib/feffery_antd_components/AntdForm.py +0 -73
  145. package/build/lib/feffery_antd_components/AntdFormItem.py +0 -85
  146. package/build/lib/feffery_antd_components/AntdHeader.py +0 -51
  147. package/build/lib/feffery_antd_components/AntdIcon.py +0 -62
  148. package/build/lib/feffery_antd_components/AntdImage.py +0 -63
  149. package/build/lib/feffery_antd_components/AntdInput.py +0 -124
  150. package/build/lib/feffery_antd_components/AntdInputNumber.py +0 -108
  151. package/build/lib/feffery_antd_components/AntdLayout.py +0 -51
  152. package/build/lib/feffery_antd_components/AntdMentions.py +0 -86
  153. package/build/lib/feffery_antd_components/AntdMenu.py +0 -86
  154. package/build/lib/feffery_antd_components/AntdMessage.py +0 -61
  155. package/build/lib/feffery_antd_components/AntdModal.py +0 -133
  156. package/build/lib/feffery_antd_components/AntdNotification.py +0 -63
  157. package/build/lib/feffery_antd_components/AntdPageHeader.py +0 -63
  158. package/build/lib/feffery_antd_components/AntdPagination.py +0 -98
  159. package/build/lib/feffery_antd_components/AntdParagraph.py +0 -99
  160. package/build/lib/feffery_antd_components/AntdPasteImage.py +0 -53
  161. package/build/lib/feffery_antd_components/AntdPictureUpload.py +0 -195
  162. package/build/lib/feffery_antd_components/AntdPopconfirm.py +0 -117
  163. package/build/lib/feffery_antd_components/AntdPopover.py +0 -81
  164. package/build/lib/feffery_antd_components/AntdPopupCard.py +0 -69
  165. package/build/lib/feffery_antd_components/AntdProgress.py +0 -105
  166. package/build/lib/feffery_antd_components/AntdRadioGroup.py +0 -92
  167. package/build/lib/feffery_antd_components/AntdRate.py +0 -80
  168. package/build/lib/feffery_antd_components/AntdResult.py +0 -55
  169. package/build/lib/feffery_antd_components/AntdRibbon.py +0 -55
  170. package/build/lib/feffery_antd_components/AntdRow.py +0 -73
  171. package/build/lib/feffery_antd_components/AntdSegmented.py +0 -90
  172. package/build/lib/feffery_antd_components/AntdSegmentedColoring.py +0 -88
  173. package/build/lib/feffery_antd_components/AntdSelect.py +0 -150
  174. package/build/lib/feffery_antd_components/AntdSider.py +0 -69
  175. package/build/lib/feffery_antd_components/AntdSkeleton.py +0 -87
  176. package/build/lib/feffery_antd_components/AntdSkeletonAvatar.py +0 -53
  177. package/build/lib/feffery_antd_components/AntdSkeletonButton.py +0 -55
  178. package/build/lib/feffery_antd_components/AntdSkeletonImage.py +0 -47
  179. package/build/lib/feffery_antd_components/AntdSkeletonInput.py +0 -51
  180. package/build/lib/feffery_antd_components/AntdSlider.py +0 -96
  181. package/build/lib/feffery_antd_components/AntdSpace.py +0 -63
  182. package/build/lib/feffery_antd_components/AntdSpin.py +0 -71
  183. package/build/lib/feffery_antd_components/AntdSpoiler.py +0 -67
  184. package/build/lib/feffery_antd_components/AntdStatistic.py +0 -63
  185. package/build/lib/feffery_antd_components/AntdSteps.py +0 -80
  186. package/build/lib/feffery_antd_components/AntdSwitch.py +0 -80
  187. package/build/lib/feffery_antd_components/AntdTabPane.py +0 -65
  188. package/build/lib/feffery_antd_components/AntdTable.py +0 -553
  189. package/build/lib/feffery_antd_components/AntdTabs.py +0 -110
  190. package/build/lib/feffery_antd_components/AntdTag.py +0 -55
  191. package/build/lib/feffery_antd_components/AntdText.py +0 -96
  192. package/build/lib/feffery_antd_components/AntdTimePicker.py +0 -102
  193. package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +0 -104
  194. package/build/lib/feffery_antd_components/AntdTimeline.py +0 -72
  195. package/build/lib/feffery_antd_components/AntdTitle.py +0 -94
  196. package/build/lib/feffery_antd_components/AntdTooltip.py +0 -77
  197. package/build/lib/feffery_antd_components/AntdTransfer.py +0 -108
  198. package/build/lib/feffery_antd_components/AntdTree.py +0 -122
  199. package/build/lib/feffery_antd_components/AntdTreeSelect.py +0 -131
  200. package/build/lib/feffery_antd_components/AntdUpload.py +0 -181
  201. package/build/lib/feffery_antd_components/AntdWatermark.py +0 -75
  202. package/build/lib/feffery_antd_components/__init__.py +0 -53
  203. package/build/lib/feffery_antd_components/_imports_.py +0 -195
  204. package/build/lib/feffery_antd_components/alias.py +0 -193
  205. package/build/lib/feffery_antd_components/feffery_antd_components.min.js +0 -1
  206. package/build/lib/feffery_antd_components/metadata.json +0 -25987
  207. package/build/lib/feffery_antd_components/package-info.json +0 -92
  208. package/feffery_antd_components/AntdAccordionItem.py +0 -64
  209. package/feffery_antd_components/AntdPasteImage.py +0 -53
  210. package/src/demo/App.js +0 -32
  211. package/src/demo/index.js +0 -5
package/DESCRIPTION CHANGED
@@ -1,6 +1,6 @@
1
1
  Package: fefferyAntdComponents
2
2
  Title: Best implementation of Antd components in Plotly Dash.
3
- Version: 0.2.10-rc10
3
+ Version: 0.2.10-rc12
4
4
  Description: Best implementation of Antd components in Plotly Dash.
5
5
  Depends: R (>= 3.0.2)
6
6
  Imports:
package/NAMESPACE CHANGED
@@ -37,6 +37,7 @@ export('feffery'AntdInputNumber)
37
37
  export('feffery'AntdMentions)
38
38
  export('feffery'AntdRadioGroup)
39
39
  export('feffery'AntdRate)
40
+ export('feffery'AntdSegmentedColoring)
40
41
  export('feffery'AntdSelect)
41
42
  export('feffery'AntdSlider)
42
43
  export('feffery'AntdSwitch)
@@ -94,5 +95,4 @@ export('feffery'AntdAnchor)
94
95
  export('feffery'AntdBackTop)
95
96
  export('feffery'AntdConfigProvider)
96
97
  export('feffery'AntdCopyText)
97
- export('feffery'AntdSegmentedColoring)
98
98
  export('feffery'AntdWatermark)
package/Project.toml CHANGED
@@ -2,7 +2,7 @@
2
2
  name = "FefferyAntdComponents"
3
3
  uuid = "1b08a953-4be3-4667-9a23-baf51bd2b26e"
4
4
  authors = ["CNFeffery <fefferypzy@gmail.com>"]
5
- version = "0.2.10-rc10"
5
+ version = "0.2.10-rc12"
6
6
 
7
7
  [deps]
8
8
  Dash = "1b08a953-4be3-4667-9a23-3db579824955"
@@ -13,6 +13,10 @@ Keyword arguments:
13
13
 
14
14
  - allowClear (boolean; default True)
15
15
 
16
+ - batchPropsNames (list of strings; optional)
17
+
18
+ - batchPropsValues (dict; optional)
19
+
16
20
  - bordered (boolean; default True)
17
21
 
18
22
  - changeOnSelect (boolean; default False)
@@ -91,10 +95,10 @@ Keyword arguments:
91
95
  _namespace = 'feffery_antd_components'
92
96
  _type = 'AntdCascader'
93
97
  @_explicitize_args
94
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, optionsMode=Component.UNDEFINED, options=Component.REQUIRED, disabled=Component.UNDEFINED, changeOnSelect=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, maxTagCount=Component.UNDEFINED, multiple=Component.UNDEFINED, expandTrigger=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, showCheckedStrategy=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
95
- self._prop_names = ['id', 'allowClear', 'bordered', 'changeOnSelect', 'className', 'defaultValue', 'disabled', 'expandTrigger', 'key', 'loading_state', 'locale', 'maxTagCount', 'multiple', 'options', 'optionsMode', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showCheckedStrategy', 'size', 'status', 'style', 'value']
98
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, optionsMode=Component.UNDEFINED, options=Component.REQUIRED, disabled=Component.UNDEFINED, changeOnSelect=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, maxTagCount=Component.UNDEFINED, multiple=Component.UNDEFINED, expandTrigger=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, showCheckedStrategy=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
99
+ self._prop_names = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'changeOnSelect', 'className', 'defaultValue', 'disabled', 'expandTrigger', 'key', 'loading_state', 'locale', 'maxTagCount', 'multiple', 'options', 'optionsMode', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showCheckedStrategy', 'size', 'status', 'style', 'value']
96
100
  self._valid_wildcard_attributes = []
97
- self.available_properties = ['id', 'allowClear', 'bordered', 'changeOnSelect', 'className', 'defaultValue', 'disabled', 'expandTrigger', 'key', 'loading_state', 'locale', 'maxTagCount', 'multiple', 'options', 'optionsMode', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showCheckedStrategy', 'size', 'status', 'style', 'value']
101
+ self.available_properties = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'changeOnSelect', 'className', 'defaultValue', 'disabled', 'expandTrigger', 'key', 'loading_state', 'locale', 'maxTagCount', 'multiple', 'options', 'optionsMode', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showCheckedStrategy', 'size', 'status', 'style', 'value']
98
102
  self.available_wildcard_properties = []
99
103
  _explicit_args = kwargs.pop('_explicit_args')
100
104
  _locals = locals()
@@ -11,6 +11,10 @@ Keyword arguments:
11
11
 
12
12
  - id (string; optional)
13
13
 
14
+ - batchPropsNames (list of strings; optional)
15
+
16
+ - batchPropsValues (dict; optional)
17
+
14
18
  - checked (boolean; default False)
15
19
 
16
20
  - className (string | dict; optional)
@@ -63,10 +67,10 @@ Keyword arguments:
63
67
  _namespace = 'feffery_antd_components'
64
68
  _type = 'AntdCheckbox'
65
69
  @_explicitize_args
66
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, label=Component.UNDEFINED, checked=Component.UNDEFINED, indeterminate=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
67
- self._prop_names = ['id', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
70
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, label=Component.UNDEFINED, checked=Component.UNDEFINED, indeterminate=Component.UNDEFINED, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
71
+ self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
68
72
  self._valid_wildcard_attributes = []
69
- self.available_properties = ['id', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
73
+ self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'checked', 'className', 'disabled', 'indeterminate', 'key', 'label', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style']
70
74
  self.available_wildcard_properties = []
71
75
  _explicit_args = kwargs.pop('_explicit_args')
72
76
  _locals = locals()
@@ -11,6 +11,10 @@ Keyword arguments:
11
11
 
12
12
  - id (string; optional)
13
13
 
14
+ - batchPropsNames (list of strings; optional)
15
+
16
+ - batchPropsValues (dict; optional)
17
+
14
18
  - className (string | dict; optional)
15
19
 
16
20
  - disabled (boolean; default False)
@@ -69,10 +73,10 @@ Keyword arguments:
69
73
  _namespace = 'feffery_antd_components'
70
74
  _type = 'AntdCheckboxGroup'
71
75
  @_explicitize_args
72
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, options=Component.UNDEFINED, value=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
73
- self._prop_names = ['id', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style', 'value']
76
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, options=Component.UNDEFINED, value=Component.UNDEFINED, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
77
+ self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style', 'value']
74
78
  self._valid_wildcard_attributes = []
75
- self.available_properties = ['id', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style', 'value']
79
+ self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'className', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'style', 'value']
76
80
  self.available_wildcard_properties = []
77
81
  _explicit_args = kwargs.pop('_explicit_args')
78
82
  _locals = locals()
@@ -21,6 +21,10 @@ Keyword arguments:
21
21
 
22
22
  - avatarProps (dict; optional)
23
23
 
24
+ - batchPropsNames (list of strings; optional)
25
+
26
+ - batchPropsValues (dict; optional)
27
+
24
28
  - className (string | dict; optional)
25
29
 
26
30
  - commentContent (a list of or a singular dash component, string or number; optional)
@@ -76,10 +80,10 @@ Keyword arguments:
76
80
  _namespace = 'feffery_antd_components'
77
81
  _type = 'AntdComment'
78
82
  @_explicitize_args
79
- def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, commentId=Component.UNDEFINED, authorName=Component.UNDEFINED, authorNameHref=Component.UNDEFINED, publishTime=Component.REQUIRED, fromNow=Component.UNDEFINED, showLikeDislike=Component.UNDEFINED, showReply=Component.UNDEFINED, showDelete=Component.UNDEFINED, replyClicks=Component.UNDEFINED, deleteClicks=Component.UNDEFINED, commentContent=Component.UNDEFINED, likesCount=Component.UNDEFINED, dislikesCount=Component.UNDEFINED, action=Component.UNDEFINED, defaultAction=Component.UNDEFINED, avatarProps=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
80
- self._prop_names = ['children', 'id', 'action', 'authorName', 'authorNameHref', 'avatarProps', 'className', 'commentContent', 'commentId', 'defaultAction', 'deleteClicks', 'dislikesCount', 'fromNow', 'likesCount', 'loading_state', 'locale', 'popupContainer', 'publishTime', 'replyClicks', 'showDelete', 'showLikeDislike', 'showReply', 'style']
83
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, commentId=Component.UNDEFINED, authorName=Component.UNDEFINED, authorNameHref=Component.UNDEFINED, publishTime=Component.REQUIRED, fromNow=Component.UNDEFINED, showLikeDislike=Component.UNDEFINED, showReply=Component.UNDEFINED, showDelete=Component.UNDEFINED, replyClicks=Component.UNDEFINED, deleteClicks=Component.UNDEFINED, commentContent=Component.UNDEFINED, likesCount=Component.UNDEFINED, dislikesCount=Component.UNDEFINED, action=Component.UNDEFINED, defaultAction=Component.UNDEFINED, avatarProps=Component.UNDEFINED, popupContainer=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
84
+ self._prop_names = ['children', 'id', 'action', 'authorName', 'authorNameHref', 'avatarProps', 'batchPropsNames', 'batchPropsValues', 'className', 'commentContent', 'commentId', 'defaultAction', 'deleteClicks', 'dislikesCount', 'fromNow', 'likesCount', 'loading_state', 'locale', 'popupContainer', 'publishTime', 'replyClicks', 'showDelete', 'showLikeDislike', 'showReply', 'style']
81
85
  self._valid_wildcard_attributes = []
82
- self.available_properties = ['children', 'id', 'action', 'authorName', 'authorNameHref', 'avatarProps', 'className', 'commentContent', 'commentId', 'defaultAction', 'deleteClicks', 'dislikesCount', 'fromNow', 'likesCount', 'loading_state', 'locale', 'popupContainer', 'publishTime', 'replyClicks', 'showDelete', 'showLikeDislike', 'showReply', 'style']
86
+ self.available_properties = ['children', 'id', 'action', 'authorName', 'authorNameHref', 'avatarProps', 'batchPropsNames', 'batchPropsValues', 'className', 'commentContent', 'commentId', 'defaultAction', 'deleteClicks', 'dislikesCount', 'fromNow', 'likesCount', 'loading_state', 'locale', 'popupContainer', 'publishTime', 'replyClicks', 'showDelete', 'showLikeDislike', 'showReply', 'style']
83
87
  self.available_wildcard_properties = []
84
88
  _explicit_args = kwargs.pop('_explicit_args')
85
89
  _locals = locals()
@@ -13,6 +13,10 @@ Keyword arguments:
13
13
 
14
14
  - allowClear (boolean; default True)
15
15
 
16
+ - batchPropsNames (list of strings; optional)
17
+
18
+ - batchPropsValues (dict; optional)
19
+
16
20
  - bordered (boolean; default True)
17
21
 
18
22
  - className (string | dict; optional)
@@ -109,10 +113,10 @@ Keyword arguments:
109
113
  _namespace = 'feffery_antd_components'
110
114
  _type = 'AntdDatePicker'
111
115
  @_explicitize_args
112
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, showToday=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
113
- self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'showToday', 'size', 'status', 'style', 'value']
116
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, showToday=Component.UNDEFINED, popupContainer=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
117
+ self._prop_names = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'showToday', 'size', 'status', 'style', 'value']
114
118
  self._valid_wildcard_attributes = []
115
- self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'showToday', 'size', 'status', 'style', 'value']
119
+ self.available_properties = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'showToday', 'size', 'status', 'style', 'value']
116
120
  self.available_wildcard_properties = []
117
121
  _explicit_args = kwargs.pop('_explicit_args')
118
122
  _locals = locals()
@@ -13,6 +13,10 @@ Keyword arguments:
13
13
 
14
14
  - allowClear (boolean; default True)
15
15
 
16
+ - batchPropsNames (list of strings; optional)
17
+
18
+ - batchPropsValues (dict; optional)
19
+
16
20
  - bordered (boolean; default True)
17
21
 
18
22
  - className (string | dict; optional)
@@ -109,10 +113,10 @@ Keyword arguments:
109
113
  _namespace = 'feffery_antd_components'
110
114
  _type = 'AntdDateRangePicker'
111
115
  @_explicitize_args
112
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, open=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
113
- self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
116
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, open=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, popupContainer=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
117
+ self._prop_names = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
114
118
  self._valid_wildcard_attributes = []
115
- self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
119
+ self.available_properties = ['id', 'allowClear', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
116
120
  self.available_wildcard_properties = []
117
121
  _explicit_args = kwargs.pop('_explicit_args')
118
122
  _locals = locals()
@@ -15,6 +15,10 @@ Keyword arguments:
15
15
 
16
16
  - autoAdjustOverflow (boolean; default True)
17
17
 
18
+ - batchPropsNames (list of strings; optional)
19
+
20
+ - batchPropsValues (dict; optional)
21
+
18
22
  - buttonMode (boolean; default False)
19
23
 
20
24
  - buttonProps (dict; optional)
@@ -100,10 +104,10 @@ Keyword arguments:
100
104
  _namespace = 'feffery_antd_components'
101
105
  _type = 'AntdDropdown'
102
106
  @_explicitize_args
103
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, title=Component.UNDEFINED, buttonMode=Component.UNDEFINED, buttonProps=Component.UNDEFINED, freePosition=Component.UNDEFINED, freePositionStyle=Component.UNDEFINED, freePositionClassName=Component.UNDEFINED, clickedKey=Component.UNDEFINED, nClicks=Component.UNDEFINED, menuItems=Component.UNDEFINED, arrow=Component.UNDEFINED, disabled=Component.UNDEFINED, overlayClassName=Component.UNDEFINED, overlayStyle=Component.UNDEFINED, placement=Component.UNDEFINED, trigger=Component.UNDEFINED, autoAdjustOverflow=Component.UNDEFINED, visible=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
104
- self._prop_names = ['id', 'arrow', 'autoAdjustOverflow', 'buttonMode', 'buttonProps', 'className', 'clickedKey', 'disabled', 'freePosition', 'freePositionClassName', 'freePositionStyle', 'key', 'loading_state', 'menuItems', 'nClicks', 'overlayClassName', 'overlayStyle', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'visible']
107
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, title=Component.UNDEFINED, buttonMode=Component.UNDEFINED, buttonProps=Component.UNDEFINED, freePosition=Component.UNDEFINED, freePositionStyle=Component.UNDEFINED, freePositionClassName=Component.UNDEFINED, clickedKey=Component.UNDEFINED, nClicks=Component.UNDEFINED, menuItems=Component.UNDEFINED, arrow=Component.UNDEFINED, disabled=Component.UNDEFINED, overlayClassName=Component.UNDEFINED, overlayStyle=Component.UNDEFINED, placement=Component.UNDEFINED, trigger=Component.UNDEFINED, autoAdjustOverflow=Component.UNDEFINED, visible=Component.UNDEFINED, popupContainer=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
108
+ self._prop_names = ['id', 'arrow', 'autoAdjustOverflow', 'batchPropsNames', 'batchPropsValues', 'buttonMode', 'buttonProps', 'className', 'clickedKey', 'disabled', 'freePosition', 'freePositionClassName', 'freePositionStyle', 'key', 'loading_state', 'menuItems', 'nClicks', 'overlayClassName', 'overlayStyle', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'visible']
105
109
  self._valid_wildcard_attributes = []
106
- self.available_properties = ['id', 'arrow', 'autoAdjustOverflow', 'buttonMode', 'buttonProps', 'className', 'clickedKey', 'disabled', 'freePosition', 'freePositionClassName', 'freePositionStyle', 'key', 'loading_state', 'menuItems', 'nClicks', 'overlayClassName', 'overlayStyle', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'visible']
110
+ self.available_properties = ['id', 'arrow', 'autoAdjustOverflow', 'batchPropsNames', 'batchPropsValues', 'buttonMode', 'buttonProps', 'className', 'clickedKey', 'disabled', 'freePosition', 'freePositionClassName', 'freePositionStyle', 'key', 'loading_state', 'menuItems', 'nClicks', 'overlayClassName', 'overlayStyle', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'visible']
107
111
  self.available_wildcard_properties = []
108
112
  _explicit_args = kwargs.pop('_explicit_args')
109
113
  _locals = locals()
@@ -27,10 +27,14 @@ Keyword arguments:
27
27
 
28
28
  `labelCol` is a dict with keys:
29
29
 
30
+ - flex (string | number; optional)
31
+
30
32
  - offset (number; optional)
31
33
 
32
34
  - span (number; optional)
33
35
 
36
+ - labelWrap (boolean; default False)
37
+
34
38
  - layout (a value equal to: 'horizontal', 'vertical', 'inline'; default 'horizontal')
35
39
 
36
40
  - loading_state (dict; optional)
@@ -52,6 +56,8 @@ Keyword arguments:
52
56
 
53
57
  `wrapperCol` is a dict with keys:
54
58
 
59
+ - flex (string | number; optional)
60
+
55
61
  - offset (number; optional)
56
62
 
57
63
  - span (number; optional)"""
@@ -60,10 +66,10 @@ Keyword arguments:
60
66
  _namespace = 'feffery_antd_components'
61
67
  _type = 'AntdForm'
62
68
  @_explicitize_args
63
- def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, layout=Component.UNDEFINED, labelCol=Component.UNDEFINED, wrapperCol=Component.UNDEFINED, colon=Component.UNDEFINED, labelAlign=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
64
- self._prop_names = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'layout', 'loading_state', 'style', 'wrapperCol']
69
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, layout=Component.UNDEFINED, labelCol=Component.UNDEFINED, wrapperCol=Component.UNDEFINED, colon=Component.UNDEFINED, labelAlign=Component.UNDEFINED, labelWrap=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
70
+ self._prop_names = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'labelWrap', 'layout', 'loading_state', 'style', 'wrapperCol']
65
71
  self._valid_wildcard_attributes = []
66
- self.available_properties = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'layout', 'loading_state', 'style', 'wrapperCol']
72
+ self.available_properties = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'labelWrap', 'layout', 'loading_state', 'style', 'wrapperCol']
67
73
  self.available_wildcard_properties = []
68
74
  _explicit_args = kwargs.pop('_explicit_args')
69
75
  _locals = locals()
@@ -17,7 +17,7 @@ Keyword arguments:
17
17
 
18
18
  - className (string | dict; optional)
19
19
 
20
- - colon (boolean; default True)
20
+ - colon (boolean; optional)
21
21
 
22
22
  - extra (a list of or a singular dash component, string or number; optional)
23
23
 
@@ -35,6 +35,8 @@ Keyword arguments:
35
35
 
36
36
  `labelCol` is a dict with keys:
37
37
 
38
+ - flex (string | number; optional)
39
+
38
40
  - offset (number; optional)
39
41
 
40
42
  - span (number; optional)
@@ -64,6 +66,8 @@ Keyword arguments:
64
66
 
65
67
  `wrapperCol` is a dict with keys:
66
68
 
69
+ - flex (string | number; optional)
70
+
67
71
  - offset (number; optional)
68
72
 
69
73
  - span (number; optional)"""
@@ -27,6 +27,10 @@ Keyword arguments:
27
27
 
28
28
  - minRows (number; optional)
29
29
 
30
+ - batchPropsNames (list of strings; optional)
31
+
32
+ - batchPropsValues (dict; optional)
33
+
30
34
  - bordered (boolean; default True)
31
35
 
32
36
  - className (string | dict; optional)
@@ -111,10 +115,10 @@ Keyword arguments:
111
115
  _namespace = 'feffery_antd_components'
112
116
  _type = 'AntdInput'
113
117
  @_explicitize_args
114
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, mode=Component.UNDEFINED, autoComplete=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, md5Value=Component.UNDEFINED, debounceValue=Component.UNDEFINED, passwordUseMd5=Component.UNDEFINED, debounceWait=Component.UNDEFINED, addonBefore=Component.UNDEFINED, addonAfter=Component.UNDEFINED, prefix=Component.UNDEFINED, suffix=Component.UNDEFINED, maxLength=Component.UNDEFINED, showCount=Component.UNDEFINED, countFormat=Component.UNDEFINED, autoSize=Component.UNDEFINED, nSubmit=Component.UNDEFINED, nClicksSearch=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, emptyAsNone=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
115
- self._prop_names = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'autoComplete', 'autoSize', 'bordered', 'className', 'countFormat', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'suffix', 'value']
118
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, mode=Component.UNDEFINED, autoComplete=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, md5Value=Component.UNDEFINED, debounceValue=Component.UNDEFINED, passwordUseMd5=Component.UNDEFINED, debounceWait=Component.UNDEFINED, addonBefore=Component.UNDEFINED, addonAfter=Component.UNDEFINED, prefix=Component.UNDEFINED, suffix=Component.UNDEFINED, maxLength=Component.UNDEFINED, showCount=Component.UNDEFINED, countFormat=Component.UNDEFINED, autoSize=Component.UNDEFINED, nSubmit=Component.UNDEFINED, nClicksSearch=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, emptyAsNone=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
119
+ self._prop_names = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'autoComplete', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'countFormat', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'suffix', 'value']
116
120
  self._valid_wildcard_attributes = []
117
- self.available_properties = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'autoComplete', 'autoSize', 'bordered', 'className', 'countFormat', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'suffix', 'value']
121
+ self.available_properties = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'autoComplete', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'countFormat', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'suffix', 'value']
118
122
  self.available_wildcard_properties = []
119
123
  _explicit_args = kwargs.pop('_explicit_args')
120
124
  _locals = locals()
@@ -15,6 +15,10 @@ Keyword arguments:
15
15
 
16
16
  - addonBefore (a list of or a singular dash component, string or number; optional)
17
17
 
18
+ - batchPropsNames (list of strings; optional)
19
+
20
+ - batchPropsValues (dict; optional)
21
+
18
22
  - bordered (boolean; default True)
19
23
 
20
24
  - className (string | dict; optional)
@@ -95,10 +99,10 @@ Keyword arguments:
95
99
  _namespace = 'feffery_antd_components'
96
100
  _type = 'AntdInputNumber'
97
101
  @_explicitize_args
98
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, addonBefore=Component.UNDEFINED, addonAfter=Component.UNDEFINED, prefix=Component.UNDEFINED, controls=Component.UNDEFINED, keyboard=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, precision=Component.UNDEFINED, stringMode=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, debounceValue=Component.UNDEFINED, debounceWait=Component.UNDEFINED, nSubmit=Component.UNDEFINED, status=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
99
- self._prop_names = ['id', 'addonAfter', 'addonBefore', 'bordered', 'className', 'controls', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'key', 'keyboard', 'loading_state', 'max', 'min', 'nSubmit', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'precision', 'prefix', 'readOnly', 'size', 'status', 'step', 'stringMode', 'style', 'value']
102
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, addonBefore=Component.UNDEFINED, addonAfter=Component.UNDEFINED, prefix=Component.UNDEFINED, controls=Component.UNDEFINED, keyboard=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, precision=Component.UNDEFINED, stringMode=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, debounceValue=Component.UNDEFINED, debounceWait=Component.UNDEFINED, nSubmit=Component.UNDEFINED, status=Component.UNDEFINED, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
103
+ self._prop_names = ['id', 'addonAfter', 'addonBefore', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'controls', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'key', 'keyboard', 'loading_state', 'max', 'min', 'nSubmit', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'precision', 'prefix', 'readOnly', 'size', 'status', 'step', 'stringMode', 'style', 'value']
100
104
  self._valid_wildcard_attributes = []
101
- self.available_properties = ['id', 'addonAfter', 'addonBefore', 'bordered', 'className', 'controls', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'key', 'keyboard', 'loading_state', 'max', 'min', 'nSubmit', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'precision', 'prefix', 'readOnly', 'size', 'status', 'step', 'stringMode', 'style', 'value']
105
+ self.available_properties = ['id', 'addonAfter', 'addonBefore', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'controls', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'key', 'keyboard', 'loading_state', 'max', 'min', 'nSubmit', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'precision', 'prefix', 'readOnly', 'size', 'status', 'step', 'stringMode', 'style', 'value']
102
106
  self.available_wildcard_properties = []
103
107
  _explicit_args = kwargs.pop('_explicit_args')
104
108
  _locals = locals()
@@ -19,6 +19,10 @@ Keyword arguments:
19
19
 
20
20
  - minRows (number; optional)
21
21
 
22
+ - batchPropsNames (list of strings; optional)
23
+
24
+ - batchPropsValues (dict; optional)
25
+
22
26
  - className (string | dict; optional)
23
27
 
24
28
  - defaultValue (string; optional)
@@ -68,10 +72,10 @@ Keyword arguments:
68
72
  _namespace = 'feffery_antd_components'
69
73
  _type = 'AntdMentions'
70
74
  @_explicitize_args
71
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, autoSize=Component.UNDEFINED, prefix=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, options=Component.REQUIRED, selectedOptions=Component.UNDEFINED, disabled=Component.UNDEFINED, placement=Component.UNDEFINED, status=Component.UNDEFINED, popupContainer=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
72
- self._prop_names = ['id', 'autoSize', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'readOnly', 'selectedOptions', 'status', 'style', 'value']
75
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, autoSize=Component.UNDEFINED, prefix=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, options=Component.REQUIRED, selectedOptions=Component.UNDEFINED, disabled=Component.UNDEFINED, placement=Component.UNDEFINED, status=Component.UNDEFINED, popupContainer=Component.UNDEFINED, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
76
+ self._prop_names = ['id', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'readOnly', 'selectedOptions', 'status', 'style', 'value']
73
77
  self._valid_wildcard_attributes = []
74
- self.available_properties = ['id', 'autoSize', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'readOnly', 'selectedOptions', 'status', 'style', 'value']
78
+ self.available_properties = ['id', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'placement', 'popupContainer', 'prefix', 'readOnly', 'selectedOptions', 'status', 'style', 'value']
75
79
  self.available_wildcard_properties = []
76
80
  _explicit_args = kwargs.pop('_explicit_args')
77
81
  _locals = locals()
@@ -11,6 +11,10 @@ Keyword arguments:
11
11
 
12
12
  - id (string; optional)
13
13
 
14
+ - batchPropsNames (list of strings; optional)
15
+
16
+ - batchPropsValues (dict; optional)
17
+
14
18
  - className (string | dict; optional)
15
19
 
16
20
  - current (number; optional)
@@ -63,6 +67,8 @@ Keyword arguments:
63
67
  is kept after the browser quit. session: window.sessionStorage,
64
68
  data is cleared once the browser quit.
65
69
 
70
+ - showLessItems (boolean; default False)
71
+
66
72
  - showQuickJumper (boolean; default False)
67
73
 
68
74
  - showSizeChanger (boolean; default False)
@@ -85,10 +91,10 @@ Keyword arguments:
85
91
  _namespace = 'feffery_antd_components'
86
92
  _type = 'AntdPagination'
87
93
  @_explicitize_args
88
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, defaultCurrent=Component.UNDEFINED, defaultPageSize=Component.UNDEFINED, current=Component.UNDEFINED, disabled=Component.UNDEFINED, hideOnSinglePage=Component.UNDEFINED, pageSize=Component.UNDEFINED, pageSizeOptions=Component.UNDEFINED, showSizeChanger=Component.UNDEFINED, showQuickJumper=Component.UNDEFINED, showTotalPrefix=Component.UNDEFINED, showTotalSuffix=Component.UNDEFINED, simple=Component.UNDEFINED, size=Component.UNDEFINED, total=Component.UNDEFINED, showTotal=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
89
- self._prop_names = ['id', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
94
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, defaultCurrent=Component.UNDEFINED, defaultPageSize=Component.UNDEFINED, current=Component.UNDEFINED, disabled=Component.UNDEFINED, hideOnSinglePage=Component.UNDEFINED, pageSize=Component.UNDEFINED, pageSizeOptions=Component.UNDEFINED, showSizeChanger=Component.UNDEFINED, showQuickJumper=Component.UNDEFINED, showTotalPrefix=Component.UNDEFINED, showTotalSuffix=Component.UNDEFINED, simple=Component.UNDEFINED, size=Component.UNDEFINED, total=Component.UNDEFINED, showTotal=Component.UNDEFINED, showLessItems=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
95
+ self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showLessItems', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
90
96
  self._valid_wildcard_attributes = []
91
- self.available_properties = ['id', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
97
+ self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showLessItems', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
92
98
  self.available_wildcard_properties = []
93
99
  _explicit_args = kwargs.pop('_explicit_args')
94
100
  _locals = locals()
@@ -11,6 +11,10 @@ Keyword arguments:
11
11
 
12
12
  - id (string; optional)
13
13
 
14
+ - batchPropsNames (list of strings; optional)
15
+
16
+ - batchPropsValues (dict; optional)
17
+
14
18
  - buttonStyle (a value equal to: 'outline', 'solid'; default 'outline')
15
19
 
16
20
  - className (string | dict; optional)
@@ -79,10 +83,10 @@ Keyword arguments:
79
83
  _namespace = 'feffery_antd_components'
80
84
  _type = 'AntdRadioGroup'
81
85
  @_explicitize_args
82
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, direction=Component.UNDEFINED, options=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, optionType=Component.UNDEFINED, buttonStyle=Component.UNDEFINED, readOnly=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
83
- self._prop_names = ['id', 'buttonStyle', 'className', 'defaultValue', 'direction', 'disabled', 'key', 'loading_state', 'optionType', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
86
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, direction=Component.UNDEFINED, options=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, optionType=Component.UNDEFINED, buttonStyle=Component.UNDEFINED, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
87
+ self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'buttonStyle', 'className', 'defaultValue', 'direction', 'disabled', 'key', 'loading_state', 'optionType', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
84
88
  self._valid_wildcard_attributes = []
85
- self.available_properties = ['id', 'buttonStyle', 'className', 'defaultValue', 'direction', 'disabled', 'key', 'loading_state', 'optionType', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
89
+ self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'buttonStyle', 'className', 'defaultValue', 'direction', 'disabled', 'key', 'loading_state', 'optionType', 'options', 'persisted_props', 'persistence', 'persistence_type', 'readOnly', 'size', 'style', 'value']
86
90
  self.available_wildcard_properties = []
87
91
  _explicit_args = kwargs.pop('_explicit_args')
88
92
  _locals = locals()
@@ -15,6 +15,10 @@ Keyword arguments:
15
15
 
16
16
  - allowHalf (boolean; default False)
17
17
 
18
+ - batchPropsNames (list of strings; optional)
19
+
20
+ - batchPropsValues (dict; optional)
21
+
18
22
  - className (string | dict; optional)
19
23
 
20
24
  - count (number; default 5)
@@ -67,10 +71,10 @@ Keyword arguments:
67
71
  _namespace = 'feffery_antd_components'
68
72
  _type = 'AntdRate'
69
73
  @_explicitize_args
70
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, allowClear=Component.UNDEFINED, allowHalf=Component.UNDEFINED, count=Component.UNDEFINED, tooltips=Component.UNDEFINED, disabled=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
71
- self._prop_names = ['id', 'allowClear', 'allowHalf', 'className', 'count', 'defaultValue', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'style', 'tooltips', 'value']
74
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, allowClear=Component.UNDEFINED, allowHalf=Component.UNDEFINED, count=Component.UNDEFINED, tooltips=Component.UNDEFINED, disabled=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
75
+ self._prop_names = ['id', 'allowClear', 'allowHalf', 'batchPropsNames', 'batchPropsValues', 'className', 'count', 'defaultValue', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'style', 'tooltips', 'value']
72
76
  self._valid_wildcard_attributes = []
73
- self.available_properties = ['id', 'allowClear', 'allowHalf', 'className', 'count', 'defaultValue', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'style', 'tooltips', 'value']
77
+ self.available_properties = ['id', 'allowClear', 'allowHalf', 'batchPropsNames', 'batchPropsValues', 'className', 'count', 'defaultValue', 'disabled', 'key', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'style', 'tooltips', 'value']
74
78
  self.available_wildcard_properties = []
75
79
  _explicit_args = kwargs.pop('_explicit_args')
76
80
  _locals = locals()
@@ -11,6 +11,10 @@ Keyword arguments:
11
11
 
12
12
  - id (string; optional)
13
13
 
14
+ - batchPropsNames (list of strings; optional)
15
+
16
+ - batchPropsValues (dict; optional)
17
+
14
18
  - block (boolean; default False)
15
19
 
16
20
  - className (string | dict; optional)
@@ -77,10 +81,10 @@ Keyword arguments:
77
81
  _namespace = 'feffery_antd_components'
78
82
  _type = 'AntdSegmented'
79
83
  @_explicitize_args
80
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, options=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, block=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
81
- self._prop_names = ['id', 'block', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
84
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, options=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, block=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
85
+ self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'block', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
82
86
  self._valid_wildcard_attributes = []
83
- self.available_properties = ['id', 'block', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
87
+ self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'block', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'options', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'value']
84
88
  self.available_wildcard_properties = []
85
89
  _explicit_args = kwargs.pop('_explicit_args')
86
90
  _locals = locals()
@@ -11,6 +11,10 @@ Keyword arguments:
11
11
 
12
12
  - id (string; optional)
13
13
 
14
+ - batchPropsNames (list of strings; optional)
15
+
16
+ - batchPropsValues (dict; optional)
17
+
14
18
  - bordered (boolean; default True)
15
19
 
16
20
  - breakpoints (list of numbers; required)
@@ -70,10 +74,10 @@ Keyword arguments:
70
74
  _namespace = 'feffery_antd_components'
71
75
  _type = 'AntdSegmentedColoring'
72
76
  @_explicitize_args
73
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, breakpoints=Component.REQUIRED, colors=Component.REQUIRED, controls=Component.UNDEFINED, keyboard=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, precision=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, readOnly=Component.UNDEFINED, pureLegend=Component.UNDEFINED, inputNumberStyle=Component.UNDEFINED, colorBlockStyle=Component.UNDEFINED, colorBlockPosition=Component.UNDEFINED, pureLegendLabelStyle=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
74
- self._prop_names = ['id', 'bordered', 'breakpoints', 'className', 'colorBlockPosition', 'colorBlockStyle', 'colors', 'controls', 'disabled', 'inputNumberStyle', 'key', 'keyboard', 'loading_state', 'max', 'min', 'placeholder', 'precision', 'pureLegend', 'pureLegendLabelStyle', 'readOnly', 'size', 'step', 'style']
77
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, breakpoints=Component.REQUIRED, colors=Component.REQUIRED, controls=Component.UNDEFINED, keyboard=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, precision=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, readOnly=Component.UNDEFINED, pureLegend=Component.UNDEFINED, inputNumberStyle=Component.UNDEFINED, colorBlockStyle=Component.UNDEFINED, colorBlockPosition=Component.UNDEFINED, pureLegendLabelStyle=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
78
+ self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'bordered', 'breakpoints', 'className', 'colorBlockPosition', 'colorBlockStyle', 'colors', 'controls', 'disabled', 'inputNumberStyle', 'key', 'keyboard', 'loading_state', 'max', 'min', 'placeholder', 'precision', 'pureLegend', 'pureLegendLabelStyle', 'readOnly', 'size', 'step', 'style']
75
79
  self._valid_wildcard_attributes = []
76
- self.available_properties = ['id', 'bordered', 'breakpoints', 'className', 'colorBlockPosition', 'colorBlockStyle', 'colors', 'controls', 'disabled', 'inputNumberStyle', 'key', 'keyboard', 'loading_state', 'max', 'min', 'placeholder', 'precision', 'pureLegend', 'pureLegendLabelStyle', 'readOnly', 'size', 'step', 'style']
80
+ self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'bordered', 'breakpoints', 'className', 'colorBlockPosition', 'colorBlockStyle', 'colors', 'controls', 'disabled', 'inputNumberStyle', 'key', 'keyboard', 'loading_state', 'max', 'min', 'placeholder', 'precision', 'pureLegend', 'pureLegendLabelStyle', 'readOnly', 'size', 'step', 'style']
77
81
  self.available_wildcard_properties = []
78
82
  _explicit_args = kwargs.pop('_explicit_args')
79
83
  _locals = locals()
@@ -17,6 +17,10 @@ Keyword arguments:
17
17
 
18
18
  - autoSpin (boolean; default False)
19
19
 
20
+ - batchPropsNames (list of strings; optional)
21
+
22
+ - batchPropsValues (dict; optional)
23
+
20
24
  - bordered (boolean; default True)
21
25
 
22
26
  - className (string | dict; optional)
@@ -137,10 +141,10 @@ Keyword arguments:
137
141
  _namespace = 'feffery_antd_components'
138
142
  _type = 'AntdSelect'
139
143
  @_explicitize_args
140
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, options=Component.UNDEFINED, listHeight=Component.UNDEFINED, colorsMode=Component.UNDEFINED, colorsNameWidth=Component.UNDEFINED, mode=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, maxTagCount=Component.UNDEFINED, status=Component.UNDEFINED, optionFilterProp=Component.UNDEFINED, searchValue=Component.UNDEFINED, optionFilterMode=Component.UNDEFINED, debounceSearchValue=Component.UNDEFINED, debounceWait=Component.UNDEFINED, autoSpin=Component.UNDEFINED, autoClearSearchValue=Component.UNDEFINED, emptyContent=Component.UNDEFINED, loadingEmptyContent=Component.UNDEFINED, dropdownBefore=Component.UNDEFINED, dropdownAfter=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
141
- self._prop_names = ['id', 'allowClear', 'autoClearSearchValue', 'autoSpin', 'bordered', 'className', 'colorsMode', 'colorsNameWidth', 'debounceSearchValue', 'debounceWait', 'defaultValue', 'disabled', 'dropdownAfter', 'dropdownBefore', 'emptyContent', 'key', 'listHeight', 'loadingEmptyContent', 'loading_state', 'locale', 'maxTagCount', 'mode', 'optionFilterMode', 'optionFilterProp', 'options', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'searchValue', 'size', 'status', 'style', 'value']
144
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, options=Component.UNDEFINED, listHeight=Component.UNDEFINED, colorsMode=Component.UNDEFINED, colorsNameWidth=Component.UNDEFINED, mode=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, maxTagCount=Component.UNDEFINED, status=Component.UNDEFINED, optionFilterProp=Component.UNDEFINED, searchValue=Component.UNDEFINED, optionFilterMode=Component.UNDEFINED, debounceSearchValue=Component.UNDEFINED, debounceWait=Component.UNDEFINED, autoSpin=Component.UNDEFINED, autoClearSearchValue=Component.UNDEFINED, emptyContent=Component.UNDEFINED, loadingEmptyContent=Component.UNDEFINED, dropdownBefore=Component.UNDEFINED, dropdownAfter=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
145
+ self._prop_names = ['id', 'allowClear', 'autoClearSearchValue', 'autoSpin', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'colorsMode', 'colorsNameWidth', 'debounceSearchValue', 'debounceWait', 'defaultValue', 'disabled', 'dropdownAfter', 'dropdownBefore', 'emptyContent', 'key', 'listHeight', 'loadingEmptyContent', 'loading_state', 'locale', 'maxTagCount', 'mode', 'optionFilterMode', 'optionFilterProp', 'options', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'searchValue', 'size', 'status', 'style', 'value']
142
146
  self._valid_wildcard_attributes = []
143
- self.available_properties = ['id', 'allowClear', 'autoClearSearchValue', 'autoSpin', 'bordered', 'className', 'colorsMode', 'colorsNameWidth', 'debounceSearchValue', 'debounceWait', 'defaultValue', 'disabled', 'dropdownAfter', 'dropdownBefore', 'emptyContent', 'key', 'listHeight', 'loadingEmptyContent', 'loading_state', 'locale', 'maxTagCount', 'mode', 'optionFilterMode', 'optionFilterProp', 'options', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'searchValue', 'size', 'status', 'style', 'value']
147
+ self.available_properties = ['id', 'allowClear', 'autoClearSearchValue', 'autoSpin', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'colorsMode', 'colorsNameWidth', 'debounceSearchValue', 'debounceWait', 'defaultValue', 'disabled', 'dropdownAfter', 'dropdownBefore', 'emptyContent', 'key', 'listHeight', 'loadingEmptyContent', 'loading_state', 'locale', 'maxTagCount', 'mode', 'optionFilterMode', 'optionFilterProp', 'options', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'searchValue', 'size', 'status', 'style', 'value']
144
148
  self.available_wildcard_properties = []
145
149
  _explicit_args = kwargs.pop('_explicit_args')
146
150
  _locals = locals()