feffery_antd_components 0.3.0-a1 → 0.3.0-a2

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 (121) hide show
  1. package/DESCRIPTION +1 -1
  2. package/Project.toml +1 -1
  3. package/build/lib/feffery_antd_components/AntdAccordion.py +85 -0
  4. package/build/lib/feffery_antd_components/AntdAffix.py +55 -0
  5. package/build/lib/feffery_antd_components/AntdAlert.py +63 -0
  6. package/build/lib/feffery_antd_components/AntdAnchor.py +63 -0
  7. package/build/lib/feffery_antd_components/AntdAvatar.py +86 -0
  8. package/build/lib/feffery_antd_components/AntdAvatarGroup.py +74 -0
  9. package/build/lib/feffery_antd_components/AntdBackTop.py +55 -0
  10. package/build/lib/feffery_antd_components/AntdBadge.py +93 -0
  11. package/build/lib/feffery_antd_components/AntdBreadcrumb.py +87 -0
  12. package/build/lib/feffery_antd_components/AntdButton.py +119 -0
  13. package/build/lib/feffery_antd_components/AntdCalendar.py +76 -0
  14. package/build/lib/feffery_antd_components/AntdCard.py +94 -0
  15. package/build/lib/feffery_antd_components/AntdCardGrid.py +53 -0
  16. package/build/lib/feffery_antd_components/AntdCardMeta.py +53 -0
  17. package/build/lib/feffery_antd_components/AntdCarousel.py +63 -0
  18. package/build/lib/feffery_antd_components/AntdCascader.py +118 -0
  19. package/build/lib/feffery_antd_components/AntdCenter.py +53 -0
  20. package/build/lib/feffery_antd_components/AntdCheckCard.py +82 -0
  21. package/build/lib/feffery_antd_components/AntdCheckCardGroup.py +84 -0
  22. package/build/lib/feffery_antd_components/AntdCheckbox.py +82 -0
  23. package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +86 -0
  24. package/build/lib/feffery_antd_components/AntdCol.py +147 -0
  25. package/build/lib/feffery_antd_components/AntdCollapse.py +82 -0
  26. package/build/lib/feffery_antd_components/AntdColorPicker.py +100 -0
  27. package/build/lib/feffery_antd_components/AntdComment.py +98 -0
  28. package/build/lib/feffery_antd_components/AntdCompact.py +55 -0
  29. package/build/lib/feffery_antd_components/AntdConfigProvider.py +80 -0
  30. package/build/lib/feffery_antd_components/AntdContent.py +51 -0
  31. package/build/lib/feffery_antd_components/AntdCopyText.py +55 -0
  32. package/build/lib/feffery_antd_components/AntdCountdown.py +63 -0
  33. package/build/lib/feffery_antd_components/AntdCustomSkeleton.py +61 -0
  34. package/build/lib/feffery_antd_components/AntdDatePicker.py +153 -0
  35. package/build/lib/feffery_antd_components/AntdDateRangePicker.py +153 -0
  36. package/build/lib/feffery_antd_components/AntdDescriptionItem.py +59 -0
  37. package/build/lib/feffery_antd_components/AntdDescriptions.py +95 -0
  38. package/build/lib/feffery_antd_components/AntdDivider.py +85 -0
  39. package/build/lib/feffery_antd_components/AntdDraggerUpload.py +207 -0
  40. package/build/lib/feffery_antd_components/AntdDrawer.py +91 -0
  41. package/build/lib/feffery_antd_components/AntdDropdown.py +126 -0
  42. package/build/lib/feffery_antd_components/AntdEmpty.py +57 -0
  43. package/build/lib/feffery_antd_components/AntdFlex.py +69 -0
  44. package/build/lib/feffery_antd_components/AntdFloatButton.py +71 -0
  45. package/build/lib/feffery_antd_components/AntdFloatButtonGroup.py +71 -0
  46. package/build/lib/feffery_antd_components/AntdFooter.py +51 -0
  47. package/build/lib/feffery_antd_components/AntdForm.py +79 -0
  48. package/build/lib/feffery_antd_components/AntdFormItem.py +89 -0
  49. package/build/lib/feffery_antd_components/AntdHeader.py +51 -0
  50. package/build/lib/feffery_antd_components/AntdIcon.py +62 -0
  51. package/build/lib/feffery_antd_components/AntdImage.py +63 -0
  52. package/build/lib/feffery_antd_components/AntdInput.py +168 -0
  53. package/build/lib/feffery_antd_components/AntdInputNumber.py +114 -0
  54. package/build/lib/feffery_antd_components/AntdLayout.py +51 -0
  55. package/build/lib/feffery_antd_components/AntdMentions.py +91 -0
  56. package/build/lib/feffery_antd_components/AntdMenu.py +90 -0
  57. package/build/lib/feffery_antd_components/AntdMessage.py +61 -0
  58. package/build/lib/feffery_antd_components/AntdModal.py +133 -0
  59. package/build/lib/feffery_antd_components/AntdNotification.py +63 -0
  60. package/build/lib/feffery_antd_components/AntdPageHeader.py +63 -0
  61. package/build/lib/feffery_antd_components/AntdPagination.py +104 -0
  62. package/build/lib/feffery_antd_components/AntdParagraph.py +99 -0
  63. package/build/lib/feffery_antd_components/AntdPictureUpload.py +213 -0
  64. package/build/lib/feffery_antd_components/AntdPopconfirm.py +117 -0
  65. package/build/lib/feffery_antd_components/AntdPopover.py +81 -0
  66. package/build/lib/feffery_antd_components/AntdPopupCard.py +69 -0
  67. package/build/lib/feffery_antd_components/AntdProgress.py +105 -0
  68. package/build/lib/feffery_antd_components/AntdQRCode.py +88 -0
  69. package/build/lib/feffery_antd_components/AntdRadioGroup.py +96 -0
  70. package/build/lib/feffery_antd_components/AntdRate.py +84 -0
  71. package/build/lib/feffery_antd_components/AntdResult.py +55 -0
  72. package/build/lib/feffery_antd_components/AntdRibbon.py +55 -0
  73. package/build/lib/feffery_antd_components/AntdRow.py +73 -0
  74. package/build/lib/feffery_antd_components/AntdSegmented.py +94 -0
  75. package/build/lib/feffery_antd_components/AntdSegmentedColoring.py +92 -0
  76. package/build/lib/feffery_antd_components/AntdSelect.py +159 -0
  77. package/build/lib/feffery_antd_components/AntdSider.py +69 -0
  78. package/build/lib/feffery_antd_components/AntdSkeleton.py +87 -0
  79. package/build/lib/feffery_antd_components/AntdSkeletonAvatar.py +53 -0
  80. package/build/lib/feffery_antd_components/AntdSkeletonButton.py +55 -0
  81. package/build/lib/feffery_antd_components/AntdSkeletonImage.py +47 -0
  82. package/build/lib/feffery_antd_components/AntdSkeletonInput.py +51 -0
  83. package/build/lib/feffery_antd_components/AntdSlider.py +122 -0
  84. package/build/lib/feffery_antd_components/AntdSpace.py +79 -0
  85. package/build/lib/feffery_antd_components/AntdSpin.py +71 -0
  86. package/build/lib/feffery_antd_components/AntdSpoiler.py +67 -0
  87. package/build/lib/feffery_antd_components/AntdStatistic.py +63 -0
  88. package/build/lib/feffery_antd_components/AntdSteps.py +81 -0
  89. package/build/lib/feffery_antd_components/AntdSwitch.py +86 -0
  90. package/build/lib/feffery_antd_components/AntdTabPane.py +65 -0
  91. package/build/lib/feffery_antd_components/AntdTable.py +562 -0
  92. package/build/lib/feffery_antd_components/AntdTabs.py +141 -0
  93. package/build/lib/feffery_antd_components/AntdTag.py +55 -0
  94. package/build/lib/feffery_antd_components/AntdText.py +96 -0
  95. package/build/lib/feffery_antd_components/AntdTimePicker.py +115 -0
  96. package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +115 -0
  97. package/build/lib/feffery_antd_components/AntdTimeline.py +72 -0
  98. package/build/lib/feffery_antd_components/AntdTitle.py +94 -0
  99. package/build/lib/feffery_antd_components/AntdTooltip.py +77 -0
  100. package/build/lib/feffery_antd_components/AntdTour.py +154 -0
  101. package/build/lib/feffery_antd_components/AntdTransfer.py +112 -0
  102. package/build/lib/feffery_antd_components/AntdTree.py +152 -0
  103. package/build/lib/feffery_antd_components/AntdTreeSelect.py +138 -0
  104. package/build/lib/feffery_antd_components/AntdUpload.py +201 -0
  105. package/build/lib/feffery_antd_components/AntdWatermark.py +75 -0
  106. package/build/lib/feffery_antd_components/__init__.py +85 -0
  107. package/build/lib/feffery_antd_components/_imports_.py +209 -0
  108. package/build/lib/feffery_antd_components/alias.py +195 -0
  109. package/build/lib/feffery_antd_components/async-antd_table.js +53 -0
  110. package/build/lib/feffery_antd_components/async-data_display.js +20 -0
  111. package/build/lib/feffery_antd_components/async-data_entry.js +87 -0
  112. package/build/lib/feffery_antd_components/async-upload.js +17 -0
  113. package/build/lib/feffery_antd_components/feffery_antd_components.min.js +153 -0
  114. package/build/lib/feffery_antd_components/metadata.json +29311 -0
  115. package/build/lib/feffery_antd_components/package-info.json +93 -0
  116. package/build/lib/feffery_antd_components/utils.py +211 -0
  117. package/feffery_antd_components/feffery_antd_components.min.js +4 -4
  118. package/feffery_antd_components/package-info.json +1 -1
  119. package/package.json +1 -1
  120. package/src/lib/components/navigation/AntdDropdown.react.js +49 -54
  121. package/usage.py +9 -3
@@ -0,0 +1,99 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdParagraph(Component):
7
+ """An AntdParagraph component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (a list of or a singular dash component, string or number; optional):
13
+ The content of the paragraph.
14
+
15
+ - id (string; optional):
16
+ Component id.
17
+
18
+ - className (string | dict; optional):
19
+ CSS class name.
20
+
21
+ - code (boolean; optional):
22
+ Sets whether to render the content in code mode.
23
+
24
+ - copyable (boolean; optional):
25
+ Sets whether the content can be quickly copied.
26
+
27
+ - disabled (boolean; optional):
28
+ Sets whether the content is disabled.
29
+
30
+ - ellipsis (dict; default False)
31
+
32
+ `ellipsis` is a boolean | dict with keys:
33
+
34
+ - expandable (boolean; optional)
35
+
36
+ - rows (number; optional)
37
+
38
+ - suffix (string; optional)
39
+
40
+ - symbol (a list of or a singular dash component, string or number; optional)
41
+
42
+ - italic (boolean; optional):
43
+ Sets whether the content should be italic.
44
+
45
+ - key (string; optional):
46
+ A unique identifier key used for refreshing assistance.
47
+
48
+ - loading_state (dict; optional)
49
+
50
+ `loading_state` is a dict with keys:
51
+
52
+ - component_name (string; optional):
53
+ Holds the name of the component that is loading.
54
+
55
+ - is_loading (boolean; optional):
56
+ Determines if the component is loading or not.
57
+
58
+ - prop_name (string; optional):
59
+ Holds which property is loading.
60
+
61
+ - locale (a value equal to: 'zh-cn', 'en-us'; default 'zh-cn'):
62
+ Sets the language environment. Possible options are 'zh-cn' and
63
+ 'en-us'.
64
+
65
+ - mark (boolean; optional):
66
+ Sets whether to add mark style.
67
+
68
+ - strikethrough (boolean; optional):
69
+ Sets whether to render the content with strikethrough mode.
70
+
71
+ - strong (boolean; optional):
72
+ Sets whether the content should be bold.
73
+
74
+ - style (dict; optional):
75
+ Custom CSS styles.
76
+
77
+ - type (a value equal to: 'secondary', 'success', 'warning', 'danger'; optional):
78
+ Sets the text status type for rendering. Possible options are
79
+ 'secondary', 'success', 'warning', and 'danger'. Default is no
80
+ status.
81
+
82
+ - underline (boolean; optional):
83
+ Sets whether to add underline."""
84
+ _children_props = ['ellipsis.symbol']
85
+ _base_nodes = ['children']
86
+ _namespace = 'feffery_antd_components'
87
+ _type = 'AntdParagraph'
88
+ @_explicitize_args
89
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, code=Component.UNDEFINED, copyable=Component.UNDEFINED, strikethrough=Component.UNDEFINED, disabled=Component.UNDEFINED, mark=Component.UNDEFINED, strong=Component.UNDEFINED, italic=Component.UNDEFINED, underline=Component.UNDEFINED, type=Component.UNDEFINED, ellipsis=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
90
+ self._prop_names = ['children', 'id', 'className', 'code', 'copyable', 'disabled', 'ellipsis', 'italic', 'key', 'loading_state', 'locale', 'mark', 'strikethrough', 'strong', 'style', 'type', 'underline']
91
+ self._valid_wildcard_attributes = []
92
+ self.available_properties = ['children', 'id', 'className', 'code', 'copyable', 'disabled', 'ellipsis', 'italic', 'key', 'loading_state', 'locale', 'mark', 'strikethrough', 'strong', 'style', 'type', 'underline']
93
+ self.available_wildcard_properties = []
94
+ _explicit_args = kwargs.pop('_explicit_args')
95
+ _locals = locals()
96
+ _locals.update(kwargs) # For wildcard attrs and excess named props
97
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
98
+
99
+ super(AntdParagraph, self).__init__(children=children, **args)
@@ -0,0 +1,213 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdPictureUpload(Component):
7
+ """An AntdPictureUpload component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - apiUrl (string; optional)
15
+
16
+ - apiUrlExtraParams (dict; optional)
17
+
18
+ - buttonContent (a list of or a singular dash component, string or number; optional)
19
+
20
+ - className (string | dict; optional)
21
+
22
+ - confirmBeforeDelete (boolean; default False)
23
+
24
+ - defaultFileList (list of dicts; optional)
25
+
26
+ `defaultFileList` is a list of dicts with keys:
27
+
28
+ - fileSize (number; optional)
29
+
30
+ - name (string; optional)
31
+
32
+ - status (a value equal to: 'done', 'error', 'removed'; optional)
33
+
34
+ - taskId (string; optional)
35
+
36
+ - uid (boolean | number | string | dict | list; optional)
37
+
38
+ - url (string; optional)
39
+
40
+ - disabled (boolean; default False)
41
+
42
+ - downloadUrl (string; optional)
43
+
44
+ - downloadUrlExtraParams (dict; optional)
45
+
46
+ - downloadUrlFromBackend (boolean; default False)
47
+
48
+ - editConfig (dict; optional)
49
+
50
+ `editConfig` is a dict with keys:
51
+
52
+ - aspect (number; optional)
53
+
54
+ - grid (boolean; optional)
55
+
56
+ - maxZoom (number; optional)
57
+
58
+ - minZoom (number; optional)
59
+
60
+ - modalCancel (string; optional)
61
+
62
+ - modalOk (string; optional)
63
+
64
+ - modalTitle (string; optional)
65
+
66
+ - modalWidth (number; optional)
67
+
68
+ - quality (number; optional)
69
+
70
+ - rotate (boolean; optional)
71
+
72
+ - shape (a value equal to: 'rect', 'round'; optional)
73
+
74
+ - zoom (boolean; optional)
75
+
76
+ - editable (boolean; default False)
77
+
78
+ - failedTooltipInfo (string; optional)
79
+
80
+ - fileListMaxLength (number; optional)
81
+
82
+ - fileMaxSize (number; default 10)
83
+
84
+ - fileTypes (list of strings; default ['tiff', 'bmp', 'gif', 'png', 'jpeg', 'jpg', 'webp', 'ico', 'tif'])
85
+
86
+ - headers (dict; optional)
87
+
88
+ - key (string; optional)
89
+
90
+ - lastUploadTaskRecord (dict; optional)
91
+
92
+ `lastUploadTaskRecord` is a dict with keys:
93
+
94
+ - completeTimestamp (number; optional)
95
+
96
+ - fileName (string; optional)
97
+
98
+ - fileSize (number; optional)
99
+
100
+ - taskId (string; optional)
101
+
102
+ - taskStatus (string; optional)
103
+
104
+ - uploadResponse (boolean | number | string | dict | list; optional)
105
+
106
+ - url (string; optional) | list of dicts with keys:
107
+
108
+ - completeTimestamp (number; optional)
109
+
110
+ - fileName (string; optional)
111
+
112
+ - fileSize (number; optional)
113
+
114
+ - taskId (string; optional)
115
+
116
+ - taskStatus (string; optional)
117
+
118
+ - uploadResponse (boolean | number | string | dict | list; optional)
119
+
120
+ - url (string; optional)
121
+
122
+ - listUploadTaskRecord (list of dicts; optional)
123
+
124
+ `listUploadTaskRecord` is a list of dicts with keys:
125
+
126
+ - completeTimestamp (number; optional)
127
+
128
+ - fileName (string; optional)
129
+
130
+ - fileSize (number; optional)
131
+
132
+ - taskId (string; optional)
133
+
134
+ - taskStatus (string; optional)
135
+
136
+ - uid (string; optional)
137
+
138
+ - uploadResponse (boolean | number | string | dict | list; optional)
139
+
140
+ - url (string; optional)
141
+
142
+ - loading_state (dict; optional)
143
+
144
+ `loading_state` is a dict with keys:
145
+
146
+ - component_name (string; optional):
147
+ Holds the name of the component that is loading.
148
+
149
+ - is_loading (boolean; optional):
150
+ Determines if the component is loading or not.
151
+
152
+ - prop_name (string; optional):
153
+ Holds which property is loading.
154
+
155
+ - locale (a value equal to: 'zh-cn', 'en-us'; default 'zh-cn')
156
+
157
+ - progressProps (dict; optional)
158
+
159
+ `progressProps` is a dict with keys:
160
+
161
+ - format (dict; optional)
162
+
163
+ `format` is a dict with keys:
164
+
165
+ - prefix (string; optional)
166
+
167
+ - suffix (string; optional)
168
+
169
+ - strokeColor (dict; optional)
170
+
171
+ `strokeColor` is a string
172
+
173
+ Or dict with keys:
174
+
175
+ - from (string; optional)
176
+
177
+ - to (string; optional)
178
+
179
+ - strokeWidth (number; optional)
180
+
181
+ - showErrorMessage (boolean; default True)
182
+
183
+ - showPercent (boolean; default False)
184
+
185
+ - showPreviewIcon (boolean; default True)
186
+
187
+ - showRemoveIcon (boolean; default True)
188
+
189
+ - showSuccessMessage (boolean; default True)
190
+
191
+ - status (a value equal to: 'error', 'warning'; optional)
192
+
193
+ - style (dict; optional)
194
+
195
+ - uploadId (string; optional)
196
+
197
+ - withCredentials (boolean; default False)"""
198
+ _children_props = ['buttonContent']
199
+ _base_nodes = ['buttonContent', 'children']
200
+ _namespace = 'feffery_antd_components'
201
+ _type = 'AntdPictureUpload'
202
+ @_explicitize_args
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']
205
+ self._valid_wildcard_attributes = []
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']
207
+ self.available_wildcard_properties = []
208
+ _explicit_args = kwargs.pop('_explicit_args')
209
+ _locals = locals()
210
+ _locals.update(kwargs) # For wildcard attrs and excess named props
211
+ args = {k: _locals[k] for k in _explicit_args}
212
+
213
+ super(AntdPictureUpload, self).__init__(**args)
@@ -0,0 +1,117 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdPopconfirm(Component):
7
+ """An AntdPopconfirm component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (a list of or a singular dash component, string or number; optional):
13
+ The content of the tab - will only be displayed if this tab is
14
+ selected.
15
+
16
+ - id (string; optional)
17
+
18
+ - arrowPointAtCenter (boolean; default False)
19
+
20
+ - cancelButtonProps (dict; optional)
21
+
22
+ `cancelButtonProps` is a dict with keys:
23
+
24
+ - danger (boolean; optional)
25
+
26
+ - disabled (boolean; optional)
27
+
28
+ - shape (a value equal to: 'circle', 'round'; optional)
29
+
30
+ - size (a value equal to: 'small', 'middle', 'large'; optional)
31
+
32
+ - type (a value equal to: 'primary', 'ghost', 'dashed', 'link', 'text', 'default'; optional)
33
+
34
+ - cancelCounts (number; default 0)
35
+
36
+ - cancelText (a list of or a singular dash component, string or number; optional)
37
+
38
+ - className (string | dict; optional)
39
+
40
+ - confirmCounts (number; default 0)
41
+
42
+ - disabled (boolean; default False)
43
+
44
+ - key (string; optional)
45
+
46
+ - loading_state (dict; optional)
47
+
48
+ `loading_state` is a dict with keys:
49
+
50
+ - component_name (string; optional):
51
+ Holds the name of the component that is loading.
52
+
53
+ - is_loading (boolean; optional):
54
+ Determines if the component is loading or not.
55
+
56
+ - prop_name (string; optional):
57
+ Holds which property is loading.
58
+
59
+ - locale (a value equal to: 'zh-cn', 'en-us'; default 'zh-cn')
60
+
61
+ - mouseEnterDelay (number; default 0.1)
62
+
63
+ - mouseLeaveDelay (number; default 0.1)
64
+
65
+ - okButtonProps (dict; optional)
66
+
67
+ `okButtonProps` is a dict with keys:
68
+
69
+ - danger (boolean; optional)
70
+
71
+ - disabled (boolean; optional)
72
+
73
+ - shape (a value equal to: 'circle', 'round'; optional)
74
+
75
+ - size (a value equal to: 'small', 'middle', 'large'; optional)
76
+
77
+ - type (a value equal to: 'primary', 'ghost', 'dashed', 'link', 'text', 'default'; optional)
78
+
79
+ - okText (a list of or a singular dash component, string or number; optional)
80
+
81
+ - open (boolean; default False)
82
+
83
+ - overlayClassName (string | dict; optional)
84
+
85
+ - overlayInnerStyle (dict; optional)
86
+
87
+ - overlayStyle (dict; optional)
88
+
89
+ - permanent (boolean; default False)
90
+
91
+ - placement (a value equal to: 'top', 'left', 'right', 'bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight', 'leftTop', 'leftBottom', 'rightTop', 'rightBottom'; default 'top')
92
+
93
+ - popupContainer (a value equal to: 'parent', 'body'; default 'body')
94
+
95
+ - style (dict; optional)
96
+
97
+ - title (a list of or a singular dash component, string or number; optional)
98
+
99
+ - trigger (a value equal to: 'hover', 'focus', 'click' | list of a value equal to: 'hover', 'focus', 'click's; default 'hover')
100
+
101
+ - zIndex (number; optional)"""
102
+ _children_props = ['title', 'okText', 'cancelText']
103
+ _base_nodes = ['title', 'okText', 'cancelText', 'children']
104
+ _namespace = 'feffery_antd_components'
105
+ _type = 'AntdPopconfirm'
106
+ @_explicitize_args
107
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, title=Component.UNDEFINED, disabled=Component.UNDEFINED, placement=Component.UNDEFINED, mouseEnterDelay=Component.UNDEFINED, mouseLeaveDelay=Component.UNDEFINED, overlayClassName=Component.UNDEFINED, overlayStyle=Component.UNDEFINED, overlayInnerStyle=Component.UNDEFINED, okText=Component.UNDEFINED, okButtonProps=Component.UNDEFINED, cancelText=Component.UNDEFINED, cancelButtonProps=Component.UNDEFINED, confirmCounts=Component.UNDEFINED, cancelCounts=Component.UNDEFINED, trigger=Component.UNDEFINED, zIndex=Component.UNDEFINED, arrowPointAtCenter=Component.UNDEFINED, open=Component.UNDEFINED, permanent=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
108
+ self._prop_names = ['children', 'id', 'arrowPointAtCenter', 'cancelButtonProps', 'cancelCounts', 'cancelText', 'className', 'confirmCounts', 'disabled', 'key', 'loading_state', 'locale', 'mouseEnterDelay', 'mouseLeaveDelay', 'okButtonProps', 'okText', 'open', 'overlayClassName', 'overlayInnerStyle', 'overlayStyle', 'permanent', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'zIndex']
109
+ self._valid_wildcard_attributes = []
110
+ self.available_properties = ['children', 'id', 'arrowPointAtCenter', 'cancelButtonProps', 'cancelCounts', 'cancelText', 'className', 'confirmCounts', 'disabled', 'key', 'loading_state', 'locale', 'mouseEnterDelay', 'mouseLeaveDelay', 'okButtonProps', 'okText', 'open', 'overlayClassName', 'overlayInnerStyle', 'overlayStyle', 'permanent', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'zIndex']
111
+ self.available_wildcard_properties = []
112
+ _explicit_args = kwargs.pop('_explicit_args')
113
+ _locals = locals()
114
+ _locals.update(kwargs) # For wildcard attrs and excess named props
115
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
116
+
117
+ super(AntdPopconfirm, self).__init__(children=children, **args)
@@ -0,0 +1,81 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdPopover(Component):
7
+ """An AntdPopover component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (a list of or a singular dash component, string or number; optional):
13
+ The content of the tab - will only be displayed if this tab is
14
+ selected.
15
+
16
+ - id (string; optional)
17
+
18
+ - arrowPointAtCenter (boolean; default False)
19
+
20
+ - className (string | dict; optional)
21
+
22
+ - color (string; optional)
23
+
24
+ - content (a list of or a singular dash component, string or number; optional)
25
+
26
+ - key (string; optional)
27
+
28
+ - loading_state (dict; optional)
29
+
30
+ `loading_state` is a dict with keys:
31
+
32
+ - component_name (string; optional):
33
+ Holds the name of the component that is loading.
34
+
35
+ - is_loading (boolean; optional):
36
+ Determines if the component is loading or not.
37
+
38
+ - prop_name (string; optional):
39
+ Holds which property is loading.
40
+
41
+ - mouseEnterDelay (number; default 0.1)
42
+
43
+ - mouseLeaveDelay (number; default 0.1)
44
+
45
+ - open (boolean; default False)
46
+
47
+ - overlayClassName (string | dict; optional)
48
+
49
+ - overlayInnerStyle (dict; optional)
50
+
51
+ - overlayStyle (dict; optional)
52
+
53
+ - permanent (boolean; default False)
54
+
55
+ - placement (a value equal to: 'top', 'left', 'right', 'bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight', 'leftTop', 'leftBottom', 'rightTop', 'rightBottom'; default 'top')
56
+
57
+ - popupContainer (a value equal to: 'parent', 'body'; default 'body')
58
+
59
+ - style (dict; optional)
60
+
61
+ - title (a list of or a singular dash component, string or number; optional)
62
+
63
+ - trigger (a value equal to: 'hover', 'focus', 'click' | list of a value equal to: 'hover', 'focus', 'click's; default 'hover')
64
+
65
+ - zIndex (number; optional)"""
66
+ _children_props = ['title', 'content']
67
+ _base_nodes = ['title', 'content', 'children']
68
+ _namespace = 'feffery_antd_components'
69
+ _type = 'AntdPopover'
70
+ @_explicitize_args
71
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, title=Component.UNDEFINED, content=Component.UNDEFINED, placement=Component.UNDEFINED, color=Component.UNDEFINED, mouseEnterDelay=Component.UNDEFINED, mouseLeaveDelay=Component.UNDEFINED, overlayClassName=Component.UNDEFINED, overlayStyle=Component.UNDEFINED, overlayInnerStyle=Component.UNDEFINED, trigger=Component.UNDEFINED, zIndex=Component.UNDEFINED, arrowPointAtCenter=Component.UNDEFINED, open=Component.UNDEFINED, permanent=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
72
+ self._prop_names = ['children', 'id', 'arrowPointAtCenter', 'className', 'color', 'content', 'key', 'loading_state', 'mouseEnterDelay', 'mouseLeaveDelay', 'open', 'overlayClassName', 'overlayInnerStyle', 'overlayStyle', 'permanent', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'zIndex']
73
+ self._valid_wildcard_attributes = []
74
+ self.available_properties = ['children', 'id', 'arrowPointAtCenter', 'className', 'color', 'content', 'key', 'loading_state', 'mouseEnterDelay', 'mouseLeaveDelay', 'open', 'overlayClassName', 'overlayInnerStyle', 'overlayStyle', 'permanent', 'placement', 'popupContainer', 'style', 'title', 'trigger', 'zIndex']
75
+ self.available_wildcard_properties = []
76
+ _explicit_args = kwargs.pop('_explicit_args')
77
+ _locals = locals()
78
+ _locals.update(kwargs) # For wildcard attrs and excess named props
79
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
80
+
81
+ super(AntdPopover, self).__init__(children=children, **args)
@@ -0,0 +1,69 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdPopupCard(Component):
7
+ """An AntdPopupCard component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (a list of or a singular dash component, string or number; optional)
13
+
14
+ - id (string; optional)
15
+
16
+ - bodyStyle (dict; optional)
17
+
18
+ - className (string | dict; optional)
19
+
20
+ - closable (boolean; default True)
21
+
22
+ - closeIconType (a value equal to: 'default', 'outlined', 'two-tone'; default 'default')
23
+
24
+ - dragClassName (string | dict; optional)
25
+
26
+ - draggable (boolean; default False)
27
+
28
+ - key (string; optional)
29
+
30
+ - loading_state (dict; optional)
31
+
32
+ `loading_state` is a dict with keys:
33
+
34
+ - component_name (string; optional):
35
+ Holds the name of the component that is loading.
36
+
37
+ - is_loading (boolean; optional):
38
+ Determines if the component is loading or not.
39
+
40
+ - prop_name (string; optional):
41
+ Holds which property is loading.
42
+
43
+ - style (dict; optional)
44
+
45
+ - title (a list of or a singular dash component, string or number; optional)
46
+
47
+ - transitionType (a value equal to: 'none', 'fade', 'zoom', 'zoom-big', 'zoom-big-fast', 'slide-up', 'slide-down', 'slide-left', 'slide-right', 'move-up', 'move-down', 'move-left', 'move-right'; default 'fade')
48
+
49
+ - visible (boolean; default True)
50
+
51
+ - width (number | string; optional)
52
+
53
+ - zIndex (number; default 1000)"""
54
+ _children_props = ['title']
55
+ _base_nodes = ['title', 'children']
56
+ _namespace = 'feffery_antd_components'
57
+ _type = 'AntdPopupCard'
58
+ @_explicitize_args
59
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, title=Component.UNDEFINED, visible=Component.UNDEFINED, width=Component.UNDEFINED, transitionType=Component.UNDEFINED, closable=Component.UNDEFINED, closeIconType=Component.UNDEFINED, draggable=Component.UNDEFINED, dragClassName=Component.UNDEFINED, zIndex=Component.UNDEFINED, bodyStyle=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
60
+ self._prop_names = ['children', 'id', 'bodyStyle', 'className', 'closable', 'closeIconType', 'dragClassName', 'draggable', 'key', 'loading_state', 'style', 'title', 'transitionType', 'visible', 'width', 'zIndex']
61
+ self._valid_wildcard_attributes = []
62
+ self.available_properties = ['children', 'id', 'bodyStyle', 'className', 'closable', 'closeIconType', 'dragClassName', 'draggable', 'key', 'loading_state', 'style', 'title', 'transitionType', 'visible', 'width', 'zIndex']
63
+ self.available_wildcard_properties = []
64
+ _explicit_args = kwargs.pop('_explicit_args')
65
+ _locals = locals()
66
+ _locals.update(kwargs) # For wildcard attrs and excess named props
67
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
68
+
69
+ super(AntdPopupCard, self).__init__(children=children, **args)
@@ -0,0 +1,105 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdProgress(Component):
7
+ """An AntdProgress component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - className (string | dict; optional)
15
+
16
+ - format (dict; optional)
17
+
18
+ `format` is a dict with keys:
19
+
20
+ - content (a list of or a singular dash component, string or number; optional)
21
+
22
+ - prefix (string; optional)
23
+
24
+ - suffix (string; optional)
25
+
26
+ - gapDegree (number; optional)
27
+
28
+ - gapPosition (a value equal to: 'top', 'bottom', 'left', 'right'; default 'bottom')
29
+
30
+ - key (string; optional)
31
+
32
+ - loading_state (dict; optional)
33
+
34
+ `loading_state` is a dict with keys:
35
+
36
+ - component_name (string; optional):
37
+ Holds the name of the component that is loading.
38
+
39
+ - is_loading (boolean; optional):
40
+ Determines if the component is loading or not.
41
+
42
+ - prop_name (string; optional):
43
+ Holds which property is loading.
44
+
45
+ - percent (number; default 0)
46
+
47
+ - showInfo (boolean; default True)
48
+
49
+ - size (a value equal to: 'default', 'small'; default 'default')
50
+
51
+ - status (a value equal to: 'success', 'exception', 'normal', 'active'; optional)
52
+
53
+ - steps (number; optional)
54
+
55
+ - strokeColor (dict; optional)
56
+
57
+ `strokeColor` is a string | dict with keys:
58
+
59
+ - from (string; optional)
60
+
61
+ - to (string; optional)
62
+
63
+ - strokeLinecap (a value equal to: 'round', 'butt', 'square'; optional)
64
+
65
+ - strokeWidth (number; optional)
66
+
67
+ - style (dict; optional)
68
+
69
+ - success (dict; optional)
70
+
71
+ `success` is a dict with keys:
72
+
73
+ - percent (number; optional)
74
+
75
+ - strokeColor (dict; optional)
76
+
77
+ `strokeColor` is a string
78
+
79
+ Or dict with keys:
80
+
81
+ - from (string; optional)
82
+
83
+ - to (string; optional)
84
+
85
+ - trailColor (string; optional)
86
+
87
+ - type (a value equal to: 'line', 'circle', 'dashboard'; default 'line')
88
+
89
+ - width (number; default 132)"""
90
+ _children_props = ['format.content']
91
+ _base_nodes = ['children']
92
+ _namespace = 'feffery_antd_components'
93
+ _type = 'AntdProgress'
94
+ @_explicitize_args
95
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, type=Component.UNDEFINED, size=Component.UNDEFINED, percent=Component.UNDEFINED, success=Component.UNDEFINED, format=Component.UNDEFINED, status=Component.UNDEFINED, showInfo=Component.UNDEFINED, strokeColor=Component.UNDEFINED, strokeLinecap=Component.UNDEFINED, strokeWidth=Component.UNDEFINED, trailColor=Component.UNDEFINED, width=Component.UNDEFINED, gapDegree=Component.UNDEFINED, gapPosition=Component.UNDEFINED, steps=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
96
+ self._prop_names = ['id', 'className', 'format', 'gapDegree', 'gapPosition', 'key', 'loading_state', 'percent', 'showInfo', 'size', 'status', 'steps', 'strokeColor', 'strokeLinecap', 'strokeWidth', 'style', 'success', 'trailColor', 'type', 'width']
97
+ self._valid_wildcard_attributes = []
98
+ self.available_properties = ['id', 'className', 'format', 'gapDegree', 'gapPosition', 'key', 'loading_state', 'percent', 'showInfo', 'size', 'status', 'steps', 'strokeColor', 'strokeLinecap', 'strokeWidth', 'style', 'success', 'trailColor', 'type', 'width']
99
+ self.available_wildcard_properties = []
100
+ _explicit_args = kwargs.pop('_explicit_args')
101
+ _locals = locals()
102
+ _locals.update(kwargs) # For wildcard attrs and excess named props
103
+ args = {k: _locals[k] for k in _explicit_args}
104
+
105
+ super(AntdProgress, self).__init__(**args)