feffery_antd_components 0.2.10-rc9 → 0.2.10

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