feffery_antd_components 0.2.1 → 0.2.2

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 (33) hide show
  1. package/DESCRIPTION +1 -1
  2. package/Project.toml +1 -1
  3. package/README-en_US.md +1 -1
  4. package/README.md +1 -1
  5. package/build/lib/feffery_antd_components/AntdDraggerUpload.py +5 -3
  6. package/build/lib/feffery_antd_components/AntdPictureUpload.py +5 -3
  7. package/build/lib/feffery_antd_components/AntdSlider.py +5 -3
  8. package/build/lib/feffery_antd_components/AntdTable.py +45 -5
  9. package/build/lib/feffery_antd_components/AntdUpload.py +5 -3
  10. package/build/lib/feffery_antd_components/feffery_antd_components.min.js +1 -1
  11. package/build/lib/feffery_antd_components/metadata.json +247 -0
  12. package/build/lib/feffery_antd_components/package-info.json +1 -1
  13. package/feffery_antd_components/AntdDraggerUpload.py +5 -3
  14. package/feffery_antd_components/AntdPictureUpload.py +5 -3
  15. package/feffery_antd_components/AntdSlider.py +5 -3
  16. package/feffery_antd_components/AntdTable.py +45 -5
  17. package/feffery_antd_components/AntdUpload.py +5 -3
  18. package/feffery_antd_components/feffery_antd_components.min.js +1 -1
  19. package/feffery_antd_components/metadata.json +247 -0
  20. package/feffery_antd_components/package-info.json +1 -1
  21. package/package.json +1 -1
  22. package/setup.py +1 -1
  23. package/src/jl/'feffery'_antddraggerupload.jl +2 -1
  24. package/src/jl/'feffery'_antdpictureupload.jl +2 -1
  25. package/src/jl/'feffery'_antdslider.jl +2 -1
  26. package/src/jl/'feffery'_antdtable.jl +24 -3
  27. package/src/jl/'feffery'_antdupload.jl +2 -1
  28. package/src/lib/components/AntdSlider.react.js +5 -0
  29. package/src/lib/components/AntdTable.react.js +136 -2
  30. package/src/lib/components/upload/AntdDraggerUpload.react.js +5 -0
  31. package/src/lib/components/upload/AntdPictureUpload.react.js +5 -0
  32. package/src/lib/components/upload/AntdUpload.react.js +5 -0
  33. package/usage.py +61 -18
@@ -12196,6 +12196,13 @@
12196
12196
  "required": false,
12197
12197
  "description": ""
12198
12198
  },
12199
+ "railStyle": {
12200
+ "type": {
12201
+ "name": "object"
12202
+ },
12203
+ "required": false,
12204
+ "description": ""
12205
+ },
12199
12206
  "key": {
12200
12207
  "type": {
12201
12208
  "name": "string"
@@ -13825,6 +13832,10 @@
13825
13832
  {
13826
13833
  "value": "'switch'",
13827
13834
  "computed": false
13835
+ },
13836
+ {
13837
+ "value": "'select'",
13838
+ "computed": false
13828
13839
  }
13829
13840
  ],
13830
13841
  "required": false
@@ -14560,6 +14571,173 @@
14560
14571
  "required": false
14561
14572
  }
14562
14573
  }
14574
+ },
14575
+ {
14576
+ "name": "exact",
14577
+ "value": {
14578
+ "className": {
14579
+ "name": "string",
14580
+ "required": false
14581
+ },
14582
+ "style": {
14583
+ "name": "object",
14584
+ "required": false
14585
+ },
14586
+ "options": {
14587
+ "name": "arrayOf",
14588
+ "value": {
14589
+ "name": "exact",
14590
+ "value": {
14591
+ "label": {
14592
+ "name": "string",
14593
+ "required": false
14594
+ },
14595
+ "value": {
14596
+ "name": "string",
14597
+ "required": false
14598
+ }
14599
+ }
14600
+ },
14601
+ "required": false
14602
+ },
14603
+ "listHeight": {
14604
+ "name": "number",
14605
+ "required": false
14606
+ },
14607
+ "mode": {
14608
+ "name": "enum",
14609
+ "value": [
14610
+ {
14611
+ "value": "'multiple'",
14612
+ "computed": false
14613
+ },
14614
+ {
14615
+ "value": "'tags'",
14616
+ "computed": false
14617
+ }
14618
+ ],
14619
+ "required": false
14620
+ },
14621
+ "disabled": {
14622
+ "name": "bool",
14623
+ "required": false
14624
+ },
14625
+ "size": {
14626
+ "name": "enum",
14627
+ "value": [
14628
+ {
14629
+ "value": "'small'",
14630
+ "computed": false
14631
+ },
14632
+ {
14633
+ "value": "'middle'",
14634
+ "computed": false
14635
+ },
14636
+ {
14637
+ "value": "'large'",
14638
+ "computed": false
14639
+ }
14640
+ ],
14641
+ "required": false
14642
+ },
14643
+ "bordered": {
14644
+ "name": "bool",
14645
+ "required": false
14646
+ },
14647
+ "placeholder": {
14648
+ "name": "string",
14649
+ "required": false
14650
+ },
14651
+ "placement": {
14652
+ "name": "enum",
14653
+ "value": [
14654
+ {
14655
+ "value": "'bottomLeft'",
14656
+ "computed": false
14657
+ },
14658
+ {
14659
+ "value": "'bottomRight'",
14660
+ "computed": false
14661
+ },
14662
+ {
14663
+ "value": "'topLeft'",
14664
+ "computed": false
14665
+ },
14666
+ {
14667
+ "value": "'topRight'",
14668
+ "computed": false
14669
+ }
14670
+ ],
14671
+ "required": false
14672
+ },
14673
+ "value": {
14674
+ "name": "union",
14675
+ "value": [
14676
+ {
14677
+ "name": "union",
14678
+ "value": [
14679
+ {
14680
+ "name": "string"
14681
+ },
14682
+ {
14683
+ "name": "number"
14684
+ }
14685
+ ]
14686
+ },
14687
+ {
14688
+ "name": "arrayOf",
14689
+ "value": {
14690
+ "name": "union",
14691
+ "value": [
14692
+ {
14693
+ "name": "string"
14694
+ },
14695
+ {
14696
+ "name": "number"
14697
+ }
14698
+ ]
14699
+ }
14700
+ }
14701
+ ],
14702
+ "required": false
14703
+ },
14704
+ "maxTagCount": {
14705
+ "name": "union",
14706
+ "value": [
14707
+ {
14708
+ "name": "number"
14709
+ },
14710
+ {
14711
+ "name": "enum",
14712
+ "value": [
14713
+ {
14714
+ "value": "'responsive'",
14715
+ "computed": false
14716
+ }
14717
+ ]
14718
+ }
14719
+ ],
14720
+ "required": false
14721
+ },
14722
+ "optionFilterProp": {
14723
+ "name": "enum",
14724
+ "value": [
14725
+ {
14726
+ "value": "'value'",
14727
+ "computed": false
14728
+ },
14729
+ {
14730
+ "value": "'label'",
14731
+ "computed": false
14732
+ }
14733
+ ],
14734
+ "required": false
14735
+ },
14736
+ "allowClear": {
14737
+ "name": "bool",
14738
+ "required": false
14739
+ }
14740
+ }
14563
14741
  }
14564
14742
  ]
14565
14743
  }
@@ -15454,6 +15632,54 @@
15454
15632
  "required": false,
15455
15633
  "description": ""
15456
15634
  },
15635
+ "recentlySelectRow": {
15636
+ "type": {
15637
+ "name": "object"
15638
+ },
15639
+ "required": false,
15640
+ "description": ""
15641
+ },
15642
+ "recentlySelectDataIndex": {
15643
+ "type": {
15644
+ "name": "string"
15645
+ },
15646
+ "required": false,
15647
+ "description": ""
15648
+ },
15649
+ "recentlySelectValue": {
15650
+ "type": {
15651
+ "name": "union",
15652
+ "value": [
15653
+ {
15654
+ "name": "union",
15655
+ "value": [
15656
+ {
15657
+ "name": "number"
15658
+ },
15659
+ {
15660
+ "name": "string"
15661
+ }
15662
+ ]
15663
+ },
15664
+ {
15665
+ "name": "arrayOf",
15666
+ "value": {
15667
+ "name": "union",
15668
+ "value": [
15669
+ {
15670
+ "name": "number"
15671
+ },
15672
+ {
15673
+ "name": "string"
15674
+ }
15675
+ ]
15676
+ }
15677
+ }
15678
+ ]
15679
+ },
15680
+ "required": false,
15681
+ "description": ""
15682
+ },
15457
15683
  "hiddenRowKeys": {
15458
15684
  "type": {
15459
15685
  "name": "arrayOf",
@@ -22941,6 +23167,13 @@
22941
23167
  "required": false,
22942
23168
  "description": ""
22943
23169
  },
23170
+ "headers": {
23171
+ "type": {
23172
+ "name": "object"
23173
+ },
23174
+ "required": false,
23175
+ "description": ""
23176
+ },
22944
23177
  "downloadUrl": {
22945
23178
  "type": {
22946
23179
  "name": "string"
@@ -23454,6 +23687,13 @@
23454
23687
  "required": false,
23455
23688
  "description": ""
23456
23689
  },
23690
+ "headers": {
23691
+ "type": {
23692
+ "name": "object"
23693
+ },
23694
+ "required": false,
23695
+ "description": ""
23696
+ },
23457
23697
  "downloadUrl": {
23458
23698
  "type": {
23459
23699
  "name": "string"
@@ -23993,6 +24233,13 @@
23993
24233
  "required": false,
23994
24234
  "description": ""
23995
24235
  },
24236
+ "headers": {
24237
+ "type": {
24238
+ "name": "object"
24239
+ },
24240
+ "required": false,
24241
+ "description": ""
24242
+ },
23996
24243
  "downloadUrl": {
23997
24244
  "type": {
23998
24245
  "name": "string"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feffery_antd_components",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Best implementation of Antd components in Plotly Dash.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -47,6 +47,8 @@ Keyword arguments:
47
47
 
48
48
  - fileTypes (list of strings; optional)
49
49
 
50
+ - headers (dict; optional)
51
+
50
52
  - hint (a list of or a singular dash component, string or number; optional)
51
53
 
52
54
  - key (string; optional)
@@ -168,10 +170,10 @@ Keyword arguments:
168
170
  _namespace = 'feffery_antd_components'
169
171
  _type = 'AntdDraggerUpload'
170
172
  @_explicitize_args
171
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, draggerClassName=Component.UNDEFINED, draggerStyle=Component.UNDEFINED, locale=Component.UNDEFINED, apiUrl=Component.UNDEFINED, downloadUrl=Component.UNDEFINED, text=Component.UNDEFINED, hint=Component.UNDEFINED, fileListMaxLength=Component.UNDEFINED, fileTypes=Component.UNDEFINED, uploadId=Component.UNDEFINED, fileMaxSize=Component.UNDEFINED, multiple=Component.UNDEFINED, directory=Component.UNDEFINED, failedTooltipInfo=Component.UNDEFINED, showUploadList=Component.UNDEFINED, confirmBeforeDelete=Component.UNDEFINED, showPercent=Component.UNDEFINED, progressProps=Component.UNDEFINED, showSuccessMessage=Component.UNDEFINED, showErrorMessage=Component.UNDEFINED, lastUploadTaskRecord=Component.UNDEFINED, listUploadTaskRecord=Component.UNDEFINED, defaultFileList=Component.UNDEFINED, disabled=Component.UNDEFINED, status=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
172
- self._prop_names = ['id', 'apiUrl', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'draggerClassName', 'draggerStyle', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'hint', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'text', 'uploadId']
173
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, draggerClassName=Component.UNDEFINED, draggerStyle=Component.UNDEFINED, locale=Component.UNDEFINED, apiUrl=Component.UNDEFINED, headers=Component.UNDEFINED, downloadUrl=Component.UNDEFINED, text=Component.UNDEFINED, hint=Component.UNDEFINED, fileListMaxLength=Component.UNDEFINED, fileTypes=Component.UNDEFINED, uploadId=Component.UNDEFINED, fileMaxSize=Component.UNDEFINED, multiple=Component.UNDEFINED, directory=Component.UNDEFINED, failedTooltipInfo=Component.UNDEFINED, showUploadList=Component.UNDEFINED, confirmBeforeDelete=Component.UNDEFINED, showPercent=Component.UNDEFINED, progressProps=Component.UNDEFINED, showSuccessMessage=Component.UNDEFINED, showErrorMessage=Component.UNDEFINED, lastUploadTaskRecord=Component.UNDEFINED, listUploadTaskRecord=Component.UNDEFINED, defaultFileList=Component.UNDEFINED, disabled=Component.UNDEFINED, status=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
174
+ self._prop_names = ['id', 'apiUrl', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'draggerClassName', 'draggerStyle', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'hint', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'text', 'uploadId']
173
175
  self._valid_wildcard_attributes = []
174
- self.available_properties = ['id', 'apiUrl', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'draggerClassName', 'draggerStyle', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'hint', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'text', 'uploadId']
176
+ self.available_properties = ['id', 'apiUrl', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'draggerClassName', 'draggerStyle', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'hint', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'text', 'uploadId']
175
177
  self.available_wildcard_properties = []
176
178
  _explicit_args = kwargs.pop('_explicit_args')
177
179
  _locals = locals()
@@ -73,6 +73,8 @@ Keyword arguments:
73
73
 
74
74
  - fileTypes (list of strings; default ['tiff', 'bmp', 'gif', 'png', 'jpeg', 'jpg', 'webp', 'ico', 'tif'])
75
75
 
76
+ - headers (dict; optional)
77
+
76
78
  - key (string; optional)
77
79
 
78
80
  - lastUploadTaskRecord (dict; optional)
@@ -176,10 +178,10 @@ Keyword arguments:
176
178
  _namespace = 'feffery_antd_components'
177
179
  _type = 'AntdPictureUpload'
178
180
  @_explicitize_args
179
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, apiUrl=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):
180
- self._prop_names = ['id', 'apiUrl', 'buttonContent', 'className', 'confirmBeforeDelete', 'defaultFileList', 'disabled', 'downloadUrl', 'editConfig', 'editable', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'progressProps', 'showErrorMessage', 'showPercent', 'showPreviewIcon', 'showRemoveIcon', 'showSuccessMessage', 'status', 'style', 'uploadId']
181
+ 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):
182
+ 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']
181
183
  self._valid_wildcard_attributes = []
182
- self.available_properties = ['id', 'apiUrl', 'buttonContent', 'className', 'confirmBeforeDelete', 'defaultFileList', 'disabled', 'downloadUrl', 'editConfig', 'editable', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'progressProps', 'showErrorMessage', 'showPercent', 'showPreviewIcon', 'showRemoveIcon', 'showSuccessMessage', 'status', 'style', 'uploadId']
184
+ 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']
183
185
  self.available_wildcard_properties = []
184
186
  _explicit_args = kwargs.pop('_explicit_args')
185
187
  _locals = locals()
@@ -59,6 +59,8 @@ Keyword arguments:
59
59
 
60
60
  - popupContainer (a value equal to: 'parent', 'body'; default 'body')
61
61
 
62
+ - railStyle (dict; optional)
63
+
62
64
  - range (boolean; default False)
63
65
 
64
66
  - step (number; default 1)
@@ -79,10 +81,10 @@ Keyword arguments:
79
81
  _namespace = 'feffery_antd_components'
80
82
  _type = 'AntdSlider'
81
83
  @_explicitize_args
82
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=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, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
83
- self._prop_names = ['id', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'range', 'step', 'style', 'tooltipPrefix', 'tooltipSuffix', 'tooltipVisible', 'value', 'vertical']
84
+ 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, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
85
+ self._prop_names = ['id', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'railStyle', 'range', 'step', 'style', 'tooltipPrefix', 'tooltipSuffix', 'tooltipVisible', 'value', 'vertical']
84
86
  self._valid_wildcard_attributes = []
85
- self.available_properties = ['id', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'range', 'step', 'style', 'tooltipPrefix', 'tooltipSuffix', 'tooltipVisible', 'value', 'vertical']
87
+ self.available_properties = ['id', 'className', 'defaultValue', 'disabled', 'key', 'loading_state', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'popupContainer', 'railStyle', 'range', 'step', 'style', 'tooltipPrefix', 'tooltipSuffix', 'tooltipVisible', 'value', 'vertical']
86
88
  self.available_wildcard_properties = []
87
89
  _explicit_args = kwargs.pop('_explicit_args')
88
90
  _locals = locals()
@@ -75,7 +75,7 @@ Keyword arguments:
75
75
 
76
76
  - renderLinkText (string; optional)
77
77
 
78
- - renderType (a value equal to: "link", 'ellipsis', 'copyable', 'ellipsis-copyable', 'tags', 'status-badge', 'image', 'custom-format', 'corner-mark', 'row-merge', 'dropdown', 'dropdown-links', 'image-avatar', "mini-line", 'mini-bar', 'mini-progress', 'mini-ring-progress', 'mini-area', "button", 'checkbox', 'switch'; optional)
78
+ - renderType (a value equal to: "link", 'ellipsis', 'copyable', 'ellipsis-copyable', 'tags', 'status-badge', 'image', 'custom-format', 'corner-mark', 'row-merge', 'dropdown', 'dropdown-links', 'image-avatar', "mini-line", 'mini-bar', 'mini-progress', 'mini-ring-progress', 'mini-area', "button", 'checkbox', 'switch', 'select'; optional)
79
79
 
80
80
  - ringProgressFontSize (number; optional)
81
81
 
@@ -248,7 +248,41 @@ Keyword arguments:
248
248
 
249
249
  - xxl (number; optional)
250
250
 
251
- - src (string; optional)
251
+ - src (string; optional) | dict with keys:
252
+
253
+ - allowClear (boolean; optional)
254
+
255
+ - bordered (boolean; optional)
256
+
257
+ - className (string; optional)
258
+
259
+ - disabled (boolean; optional)
260
+
261
+ - listHeight (number; optional)
262
+
263
+ - maxTagCount (number | a value equal to: 'responsive'; optional)
264
+
265
+ - mode (a value equal to: 'multiple', 'tags'; optional)
266
+
267
+ - optionFilterProp (a value equal to: 'value', 'label'; optional)
268
+
269
+ - options (list of dicts; optional)
270
+
271
+ `options` is a list of dicts with keys:
272
+
273
+ - label (string; optional)
274
+
275
+ - value (string; optional)
276
+
277
+ - placeholder (string; optional)
278
+
279
+ - placement (a value equal to: 'bottomLeft', 'bottomRight', 'topLeft', 'topRight'; optional)
280
+
281
+ - size (a value equal to: 'small', 'middle', 'large'; optional)
282
+
283
+ - style (dict; optional)
284
+
285
+ - value (string | number | list of string | numbers; optional)
252
286
 
253
287
  - defaultExpandedRowKeys (list of strings; optional)
254
288
 
@@ -382,6 +416,12 @@ Keyword arguments:
382
416
 
383
417
  - recentlyMouseEnterRowKey (string | number; optional)
384
418
 
419
+ - recentlySelectDataIndex (string; optional)
420
+
421
+ - recentlySelectRow (dict; optional)
422
+
423
+ - recentlySelectValue (number | string | list of number | strings; optional)
424
+
385
425
  - recentlySwitchDataIndex (string; optional)
386
426
 
387
427
  - recentlySwitchRow (dict; optional)
@@ -451,10 +491,10 @@ Keyword arguments:
451
491
  _namespace = 'feffery_antd_components'
452
492
  _type = 'AntdTable'
453
493
  @_explicitize_args
454
- 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, 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, 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, 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, hiddenRowKeys=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
455
- self._prop_names = ['id', 'bordered', 'cellUpdateOptimize', 'className', 'clickedContent', 'columns', 'columnsFormatConstraint', 'conditionalStyleFuncs', 'containerId', 'currentData', 'customFormatFuncs', 'data', 'defaultExpandedRowKeys', 'emptyContent', 'enableCellClickListenColumns', 'enableHoverListen', 'expandRowByClick', 'expandedRowKeyToContent', 'expandedRowWidth', 'filter', 'filterOptions', 'hiddenRowKeys', 'key', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'nClicksCell', 'nClicksDropdownItem', 'pagination', 'recentlyButtonClickedDataIndex', 'recentlyButtonClickedRow', 'recentlyCellClickColumn', 'recentlyCellClickRecord', 'recentlyChangedRow', 'recentlyCheckedDataIndex', 'recentlyCheckedLabel', 'recentlyCheckedRow', 'recentlyCheckedStatus', 'recentlyClickedDropdownItemTitle', 'recentlyDropdownItemClickedDataIndex', 'recentlyDropdownItemClickedRow', 'recentlyMouseEnterColumnDataIndex', 'recentlyMouseEnterRow', 'recentlyMouseEnterRowKey', 'recentlySwitchDataIndex', 'recentlySwitchRow', 'recentlySwitchStatus', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'titlePopoverInfo']
494
+ 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, 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, 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, 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, loading_state=Component.UNDEFINED, **kwargs):
495
+ self._prop_names = ['id', 'bordered', 'cellUpdateOptimize', 'className', 'clickedContent', 'columns', 'columnsFormatConstraint', 'conditionalStyleFuncs', 'containerId', 'currentData', 'customFormatFuncs', 'data', 'defaultExpandedRowKeys', 'emptyContent', 'enableCellClickListenColumns', 'enableHoverListen', 'expandRowByClick', 'expandedRowKeyToContent', 'expandedRowWidth', 'filter', 'filterOptions', 'hiddenRowKeys', 'key', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'nClicksCell', 'nClicksDropdownItem', 'pagination', 'recentlyButtonClickedDataIndex', 'recentlyButtonClickedRow', 'recentlyCellClickColumn', 'recentlyCellClickRecord', 'recentlyChangedRow', 'recentlyCheckedDataIndex', 'recentlyCheckedLabel', 'recentlyCheckedRow', 'recentlyCheckedStatus', 'recentlyClickedDropdownItemTitle', 'recentlyDropdownItemClickedDataIndex', 'recentlyDropdownItemClickedRow', 'recentlyMouseEnterColumnDataIndex', 'recentlyMouseEnterRow', 'recentlyMouseEnterRowKey', 'recentlySelectDataIndex', 'recentlySelectRow', 'recentlySelectValue', 'recentlySwitchDataIndex', 'recentlySwitchRow', 'recentlySwitchStatus', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'titlePopoverInfo']
456
496
  self._valid_wildcard_attributes = []
457
- self.available_properties = ['id', 'bordered', 'cellUpdateOptimize', 'className', 'clickedContent', 'columns', 'columnsFormatConstraint', 'conditionalStyleFuncs', 'containerId', 'currentData', 'customFormatFuncs', 'data', 'defaultExpandedRowKeys', 'emptyContent', 'enableCellClickListenColumns', 'enableHoverListen', 'expandRowByClick', 'expandedRowKeyToContent', 'expandedRowWidth', 'filter', 'filterOptions', 'hiddenRowKeys', 'key', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'nClicksCell', 'nClicksDropdownItem', 'pagination', 'recentlyButtonClickedDataIndex', 'recentlyButtonClickedRow', 'recentlyCellClickColumn', 'recentlyCellClickRecord', 'recentlyChangedRow', 'recentlyCheckedDataIndex', 'recentlyCheckedLabel', 'recentlyCheckedRow', 'recentlyCheckedStatus', 'recentlyClickedDropdownItemTitle', 'recentlyDropdownItemClickedDataIndex', 'recentlyDropdownItemClickedRow', 'recentlyMouseEnterColumnDataIndex', 'recentlyMouseEnterRow', 'recentlyMouseEnterRowKey', 'recentlySwitchDataIndex', 'recentlySwitchRow', 'recentlySwitchStatus', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'titlePopoverInfo']
497
+ self.available_properties = ['id', 'bordered', 'cellUpdateOptimize', 'className', 'clickedContent', 'columns', 'columnsFormatConstraint', 'conditionalStyleFuncs', 'containerId', 'currentData', 'customFormatFuncs', 'data', 'defaultExpandedRowKeys', 'emptyContent', 'enableCellClickListenColumns', 'enableHoverListen', 'expandRowByClick', 'expandedRowKeyToContent', 'expandedRowWidth', 'filter', 'filterOptions', 'hiddenRowKeys', 'key', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'nClicksCell', 'nClicksDropdownItem', 'pagination', 'recentlyButtonClickedDataIndex', 'recentlyButtonClickedRow', 'recentlyCellClickColumn', 'recentlyCellClickRecord', 'recentlyChangedRow', 'recentlyCheckedDataIndex', 'recentlyCheckedLabel', 'recentlyCheckedRow', 'recentlyCheckedStatus', 'recentlyClickedDropdownItemTitle', 'recentlyDropdownItemClickedDataIndex', 'recentlyDropdownItemClickedRow', 'recentlyMouseEnterColumnDataIndex', 'recentlyMouseEnterRow', 'recentlyMouseEnterRowKey', 'recentlySelectDataIndex', 'recentlySelectRow', 'recentlySelectValue', 'recentlySwitchDataIndex', 'recentlySwitchRow', 'recentlySwitchStatus', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'titlePopoverInfo']
458
498
  self.available_wildcard_properties = []
459
499
  _explicit_args = kwargs.pop('_explicit_args')
460
500
  _locals = locals()
@@ -45,6 +45,8 @@ Keyword arguments:
45
45
 
46
46
  - fileTypes (list of strings; optional)
47
47
 
48
+ - headers (dict; optional)
49
+
48
50
  - key (string; optional)
49
51
 
50
52
  - lastUploadTaskRecord (dict; optional)
@@ -148,10 +150,10 @@ Keyword arguments:
148
150
  _namespace = 'feffery_antd_components'
149
151
  _type = 'AntdUpload'
150
152
  @_explicitize_args
151
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, apiUrl=Component.UNDEFINED, downloadUrl=Component.UNDEFINED, fileListMaxLength=Component.UNDEFINED, fileTypes=Component.UNDEFINED, buttonContent=Component.UNDEFINED, uploadId=Component.UNDEFINED, fileMaxSize=Component.UNDEFINED, multiple=Component.UNDEFINED, directory=Component.UNDEFINED, failedTooltipInfo=Component.UNDEFINED, showUploadList=Component.UNDEFINED, confirmBeforeDelete=Component.UNDEFINED, showPercent=Component.UNDEFINED, progressProps=Component.UNDEFINED, showSuccessMessage=Component.UNDEFINED, showErrorMessage=Component.UNDEFINED, lastUploadTaskRecord=Component.UNDEFINED, listUploadTaskRecord=Component.UNDEFINED, defaultFileList=Component.UNDEFINED, disabled=Component.UNDEFINED, status=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
152
- self._prop_names = ['id', 'apiUrl', 'buttonContent', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'uploadId']
153
+ 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, fileListMaxLength=Component.UNDEFINED, fileTypes=Component.UNDEFINED, buttonContent=Component.UNDEFINED, uploadId=Component.UNDEFINED, fileMaxSize=Component.UNDEFINED, multiple=Component.UNDEFINED, directory=Component.UNDEFINED, failedTooltipInfo=Component.UNDEFINED, showUploadList=Component.UNDEFINED, confirmBeforeDelete=Component.UNDEFINED, showPercent=Component.UNDEFINED, progressProps=Component.UNDEFINED, showSuccessMessage=Component.UNDEFINED, showErrorMessage=Component.UNDEFINED, lastUploadTaskRecord=Component.UNDEFINED, listUploadTaskRecord=Component.UNDEFINED, defaultFileList=Component.UNDEFINED, disabled=Component.UNDEFINED, status=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
154
+ self._prop_names = ['id', 'apiUrl', 'buttonContent', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'uploadId']
153
155
  self._valid_wildcard_attributes = []
154
- self.available_properties = ['id', 'apiUrl', 'buttonContent', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'uploadId']
156
+ self.available_properties = ['id', 'apiUrl', 'buttonContent', 'className', 'confirmBeforeDelete', 'defaultFileList', 'directory', 'disabled', 'downloadUrl', 'failedTooltipInfo', 'fileListMaxLength', 'fileMaxSize', 'fileTypes', 'headers', 'key', 'lastUploadTaskRecord', 'listUploadTaskRecord', 'loading_state', 'locale', 'multiple', 'progressProps', 'showErrorMessage', 'showPercent', 'showSuccessMessage', 'showUploadList', 'status', 'style', 'uploadId']
155
157
  self.available_wildcard_properties = []
156
158
  _explicit_args = kwargs.pop('_explicit_args')
157
159
  _locals = locals()