feffery_antd_components 0.1.4 → 0.1.5

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 (97) hide show
  1. package/DESCRIPTION +1 -1
  2. package/Project.toml +1 -1
  3. package/build/lib/feffery_antd_components/AntdAffix.py +54 -0
  4. package/build/lib/feffery_antd_components/AntdAlert.py +58 -0
  5. package/build/lib/feffery_antd_components/AntdAnchor.py +54 -0
  6. package/build/lib/feffery_antd_components/AntdAvatar.py +79 -0
  7. package/build/lib/feffery_antd_components/AntdBackTop.py +52 -0
  8. package/build/lib/feffery_antd_components/AntdBadge.py +70 -0
  9. package/build/lib/feffery_antd_components/AntdBreadcrumb.py +74 -0
  10. package/build/lib/feffery_antd_components/AntdButton.py +66 -0
  11. package/build/lib/feffery_antd_components/AntdCalendar.py +75 -0
  12. package/build/lib/feffery_antd_components/AntdCard.py +86 -0
  13. package/build/lib/feffery_antd_components/AntdCardGrid.py +52 -0
  14. package/build/lib/feffery_antd_components/AntdCarousel.py +56 -0
  15. package/build/lib/feffery_antd_components/AntdCascader.py +91 -0
  16. package/build/lib/feffery_antd_components/AntdCheckbox.py +71 -0
  17. package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +79 -0
  18. package/build/lib/feffery_antd_components/AntdCol.py +146 -0
  19. package/build/lib/feffery_antd_components/AntdCollapse.py +79 -0
  20. package/build/lib/feffery_antd_components/AntdComment.py +88 -0
  21. package/build/lib/feffery_antd_components/AntdContent.py +50 -0
  22. package/build/lib/feffery_antd_components/AntdCountdown.py +72 -0
  23. package/build/lib/feffery_antd_components/AntdDatePicker.py +93 -0
  24. package/build/lib/feffery_antd_components/AntdDateRangePicker.py +89 -0
  25. package/build/lib/feffery_antd_components/AntdDescriptionItem.py +58 -0
  26. package/build/lib/feffery_antd_components/AntdDescriptions.py +76 -0
  27. package/build/lib/feffery_antd_components/AntdDivider.py +62 -0
  28. package/build/lib/feffery_antd_components/AntdDraggerUpload.py +82 -0
  29. package/build/lib/feffery_antd_components/AntdDrawer.py +72 -0
  30. package/build/lib/feffery_antd_components/AntdDropdown.py +84 -0
  31. package/build/lib/feffery_antd_components/AntdEmpty.py +54 -0
  32. package/build/lib/feffery_antd_components/AntdFooter.py +50 -0
  33. package/build/lib/feffery_antd_components/AntdForm.py +72 -0
  34. package/build/lib/feffery_antd_components/AntdFormItem.py +84 -0
  35. package/build/lib/feffery_antd_components/AntdHeader.py +50 -0
  36. package/build/lib/feffery_antd_components/AntdIcon.py +48 -0
  37. package/build/lib/feffery_antd_components/AntdImage.py +62 -0
  38. package/build/lib/feffery_antd_components/AntdInput.py +99 -0
  39. package/build/lib/feffery_antd_components/AntdInputNumber.py +99 -0
  40. package/build/lib/feffery_antd_components/AntdLayout.py +50 -0
  41. package/build/lib/feffery_antd_components/AntdMentions.py +74 -0
  42. package/build/lib/feffery_antd_components/AntdMenu.py +81 -0
  43. package/build/lib/feffery_antd_components/AntdMessage.py +54 -0
  44. package/build/lib/feffery_antd_components/AntdModal.py +88 -0
  45. package/build/lib/feffery_antd_components/AntdNotification.py +60 -0
  46. package/build/lib/feffery_antd_components/AntdPageHeader.py +62 -0
  47. package/build/lib/feffery_antd_components/AntdPagination.py +95 -0
  48. package/build/lib/feffery_antd_components/AntdParagraph.py +70 -0
  49. package/build/lib/feffery_antd_components/AntdPopconfirm.py +80 -0
  50. package/build/lib/feffery_antd_components/AntdPopover.py +74 -0
  51. package/build/lib/feffery_antd_components/AntdProgress.py +88 -0
  52. package/build/lib/feffery_antd_components/AntdRadio.py +54 -0
  53. package/build/lib/feffery_antd_components/AntdRadioGroup.py +89 -0
  54. package/build/lib/feffery_antd_components/AntdRate.py +60 -0
  55. package/build/lib/feffery_antd_components/AntdResult.py +52 -0
  56. package/build/lib/feffery_antd_components/AntdRibbon.py +54 -0
  57. package/build/lib/feffery_antd_components/AntdRow.py +72 -0
  58. package/build/lib/feffery_antd_components/AntdSelect.py +117 -0
  59. package/build/lib/feffery_antd_components/AntdSider.py +68 -0
  60. package/build/lib/feffery_antd_components/AntdSkeleton.py +86 -0
  61. package/build/lib/feffery_antd_components/AntdSlider.py +68 -0
  62. package/build/lib/feffery_antd_components/AntdSpace.py +60 -0
  63. package/build/lib/feffery_antd_components/AntdSpin.py +68 -0
  64. package/build/lib/feffery_antd_components/AntdStatistic.py +74 -0
  65. package/build/lib/feffery_antd_components/AntdSteps.py +72 -0
  66. package/build/lib/feffery_antd_components/AntdSwitch.py +75 -0
  67. package/build/lib/feffery_antd_components/AntdTabPane.py +66 -0
  68. package/build/lib/feffery_antd_components/AntdTable.py +240 -0
  69. package/build/lib/feffery_antd_components/AntdTabs.py +81 -0
  70. package/build/lib/feffery_antd_components/AntdTag.py +54 -0
  71. package/build/lib/feffery_antd_components/AntdTestLink.py +58 -0
  72. package/build/lib/feffery_antd_components/AntdText.py +72 -0
  73. package/build/lib/feffery_antd_components/AntdTimePicker.py +93 -0
  74. package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +93 -0
  75. package/build/lib/feffery_antd_components/AntdTimeline.py +68 -0
  76. package/build/lib/feffery_antd_components/AntdTitle.py +74 -0
  77. package/build/lib/feffery_antd_components/AntdTooltip.py +64 -0
  78. package/build/lib/feffery_antd_components/AntdTransfer.py +99 -0
  79. package/build/lib/feffery_antd_components/AntdTree.py +107 -0
  80. package/build/lib/feffery_antd_components/AntdTreeSelect.py +103 -0
  81. package/build/lib/feffery_antd_components/AntdTypography.py +50 -0
  82. package/build/lib/feffery_antd_components/AntdUpload.py +80 -0
  83. package/build/lib/feffery_antd_components/Link.py +58 -0
  84. package/build/lib/feffery_antd_components/__init__.py +53 -0
  85. package/build/lib/feffery_antd_components/_imports_.py +157 -0
  86. package/build/lib/feffery_antd_components/feffery_antd_components.min.js +344 -0
  87. package/build/lib/feffery_antd_components/metadata.json +14959 -0
  88. package/build/lib/feffery_antd_components/package-info.json +77 -0
  89. package/feffery_antd_components/AntdTable.py +10 -0
  90. package/feffery_antd_components/feffery_antd_components.min.js +1 -1
  91. package/feffery_antd_components/metadata.json +62 -0
  92. package/feffery_antd_components/package-info.json +1 -1
  93. package/package.json +1 -1
  94. package/src/FefferyAntdComponents.jl +3 -3
  95. package/src/jl/'feffery'_antdtable.jl +7 -1
  96. package/src/lib/components/AntdTable.react.js +20 -1
  97. package/usage.py +2 -1
@@ -0,0 +1,72 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdSteps(Component):
7
+ """An AntdSteps component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - allowClick (boolean; default False)
15
+
16
+ - className (string; optional)
17
+
18
+ - current (number; default 0)
19
+
20
+ - direction (a value equal to: 'horizontal', 'vertical'; default 'horizontal')
21
+
22
+ - labelPlacement (a value equal to: 'horizontal', 'vertical'; optional)
23
+
24
+ - loading_state (dict; optional)
25
+
26
+ `loading_state` is a dict with keys:
27
+
28
+ - component_name (string; optional):
29
+ Holds the name of the component that is loading.
30
+
31
+ - is_loading (boolean; optional):
32
+ Determines if the component is loading or not.
33
+
34
+ - prop_name (string; optional):
35
+ Holds which property is loading.
36
+
37
+ - progressDot (boolean; default False)
38
+
39
+ - size (a value equal to: 'default', 'small'; default 'default')
40
+
41
+ - status (a value equal to: 'wait', 'process', 'finish', 'error'; default 'process')
42
+
43
+ - steps (list of dicts; optional)
44
+
45
+ `steps` is a list of dicts with keys:
46
+
47
+ - description (string; optional)
48
+
49
+ - subTitle (string; optional)
50
+
51
+ - title (string; required)
52
+
53
+ - style (dict; optional)
54
+
55
+ - type (a value equal to: 'default', 'navigation'; optional)"""
56
+ @_explicitize_args
57
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, loading_state=Component.UNDEFINED, current=Component.UNDEFINED, direction=Component.UNDEFINED, labelPlacement=Component.UNDEFINED, progressDot=Component.UNDEFINED, size=Component.UNDEFINED, status=Component.UNDEFINED, type=Component.UNDEFINED, allowClick=Component.UNDEFINED, steps=Component.UNDEFINED, **kwargs):
58
+ self._prop_names = ['id', 'allowClick', 'className', 'current', 'direction', 'labelPlacement', 'loading_state', 'progressDot', 'size', 'status', 'steps', 'style', 'type']
59
+ self._type = 'AntdSteps'
60
+ self._namespace = 'feffery_antd_components'
61
+ self._valid_wildcard_attributes = []
62
+ self.available_properties = ['id', 'allowClick', 'className', 'current', 'direction', 'labelPlacement', 'loading_state', 'progressDot', 'size', 'status', 'steps', 'style', 'type']
63
+ self.available_wildcard_properties = []
64
+ _explicit_args = kwargs.pop('_explicit_args')
65
+ _locals = locals()
66
+ _locals.update(kwargs) # For wildcard attrs
67
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
68
+ for k in []:
69
+ if k not in args:
70
+ raise TypeError(
71
+ 'Required argument `' + k + '` was not specified.')
72
+ super(AntdSteps, self).__init__(**args)
@@ -0,0 +1,75 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdSwitch(Component):
7
+ """An AntdSwitch component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - checked (boolean; optional)
15
+
16
+ - checkedChildren (string; optional)
17
+
18
+ - className (string; optional)
19
+
20
+ - disabled (boolean; optional)
21
+
22
+ - loading_state (dict; optional)
23
+
24
+ `loading_state` is a dict with keys:
25
+
26
+ - component_name (string; optional):
27
+ Holds the name of the component that is loading.
28
+
29
+ - is_loading (boolean; optional):
30
+ Determines if the component is loading or not.
31
+
32
+ - prop_name (string; optional):
33
+ Holds which property is loading.
34
+
35
+ - persisted_props (list of a value equal to: 'checked's; default ['checked']):
36
+ Properties whose user interactions will persist after refreshing
37
+ the component or the page. Since only `value` is allowed this
38
+ prop can normally be ignored.
39
+
40
+ - persistence (boolean | string | number; optional):
41
+ Used to allow user interactions in this component to be persisted
42
+ when the component - or the page - is refreshed. If `persisted`
43
+ is truthy and hasn't changed from its previous value, a `value`
44
+ that the user has changed while using the app will keep that
45
+ change, as long as the new `value` also matches what was given
46
+ originally. Used in conjunction with `persistence_type`.
47
+
48
+ - persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
49
+ Where persisted user changes will be stored: memory: only kept in
50
+ memory, reset on page refresh. local: window.localStorage, data
51
+ is kept after the browser quit. session: window.sessionStorage,
52
+ data is cleared once the browser quit.
53
+
54
+ - size (a value equal to: 'default', 'small'; optional)
55
+
56
+ - style (dict; optional)
57
+
58
+ - unCheckedChildren (string; optional)"""
59
+ @_explicitize_args
60
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, disabled=Component.UNDEFINED, checked=Component.UNDEFINED, checkedChildren=Component.UNDEFINED, unCheckedChildren=Component.UNDEFINED, size=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
61
+ self._prop_names = ['id', 'checked', 'checkedChildren', 'className', 'disabled', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'unCheckedChildren']
62
+ self._type = 'AntdSwitch'
63
+ self._namespace = 'feffery_antd_components'
64
+ self._valid_wildcard_attributes = []
65
+ self.available_properties = ['id', 'checked', 'checkedChildren', 'className', 'disabled', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'unCheckedChildren']
66
+ self.available_wildcard_properties = []
67
+ _explicit_args = kwargs.pop('_explicit_args')
68
+ _locals = locals()
69
+ _locals.update(kwargs) # For wildcard attrs
70
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
71
+ for k in []:
72
+ if k not in args:
73
+ raise TypeError(
74
+ 'Required argument `' + k + '` was not specified.')
75
+ super(AntdSwitch, self).__init__(**args)
@@ -0,0 +1,66 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdTabPane(Component):
7
+ """An AntdTabPane component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (a list of or a singular dash component, string or number; optional):
13
+ The content of the tab - will only be displayed if this tab is
14
+ selected.
15
+
16
+ - id (string; optional)
17
+
18
+ - className (string; optional)
19
+
20
+ - closable (boolean; optional)
21
+
22
+ - disabled (boolean; optional)
23
+
24
+ - key (string; optional)
25
+
26
+ - loading_state (dict; optional)
27
+
28
+ `loading_state` is a dict with keys:
29
+
30
+ - component_name (string; optional):
31
+ Holds the name of the component that is loading.
32
+
33
+ - is_loading (boolean; optional):
34
+ Determines if the component is loading or not.
35
+
36
+ - prop_name (string; optional):
37
+ Holds which property is loading.
38
+
39
+ - style (dict; optional)
40
+
41
+ - tab (string; optional)
42
+
43
+ - titleSideInfoPopover (dict; optional)
44
+
45
+ `titleSideInfoPopover` is a dict with keys:
46
+
47
+ - content (string; optional)
48
+
49
+ - title (string; optional)"""
50
+ @_explicitize_args
51
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, tab=Component.UNDEFINED, key=Component.UNDEFINED, disabled=Component.UNDEFINED, closable=Component.UNDEFINED, titleSideInfoPopover=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
52
+ self._prop_names = ['children', 'id', 'className', 'closable', 'disabled', 'key', 'loading_state', 'style', 'tab', 'titleSideInfoPopover']
53
+ self._type = 'AntdTabPane'
54
+ self._namespace = 'feffery_antd_components'
55
+ self._valid_wildcard_attributes = []
56
+ self.available_properties = ['children', 'id', 'className', 'closable', 'disabled', 'key', 'loading_state', 'style', 'tab', 'titleSideInfoPopover']
57
+ self.available_wildcard_properties = []
58
+ _explicit_args = kwargs.pop('_explicit_args')
59
+ _locals = locals()
60
+ _locals.update(kwargs) # For wildcard attrs
61
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
62
+ for k in []:
63
+ if k not in args:
64
+ raise TypeError(
65
+ 'Required argument `' + k + '` was not specified.')
66
+ super(AntdTabPane, self).__init__(children=children, **args)
@@ -0,0 +1,240 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdTable(Component):
7
+ """An AntdTable component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - bordered (boolean; default False)
15
+
16
+ - className (string; optional)
17
+
18
+ - clickedContent (string; optional)
19
+
20
+ - columns (list of dicts; optional)
21
+
22
+ `columns` is a list of dicts with keys:
23
+
24
+ - align (a value equal to: 'left', 'center', 'right'; optional)
25
+
26
+ - dataIndex (string; required)
27
+
28
+ - editable (boolean; optional)
29
+
30
+ - ellipsis (boolean | number | string | dict | list; optional)
31
+
32
+ - fixed (a value equal to: 'left', 'right'; optional)
33
+
34
+ - render (boolean | number | string | dict | list; optional)
35
+
36
+ - renderOptions (dict; optional)
37
+
38
+ `renderOptions` is a dict with keys:
39
+
40
+ - renderButtonPopConfirmProps (dict; optional)
41
+
42
+ `renderButtonPopConfirmProps` is a dict with keys:
43
+
44
+ - cancelText (string; optional)
45
+
46
+ - okText (string; optional)
47
+
48
+ - title (string; required)
49
+
50
+ - renderLinkText (string; optional)
51
+
52
+ - renderType (a value equal to: 'link', 'ellipsis', 'mini-line', 'mini-bar', 'mini-progress', 'mini-ring-progress', 'mini-area', 'tags', 'button', 'copyable', 'status-badge'; optional)
53
+
54
+ - sorter (boolean | number | string | dict | list; optional)
55
+
56
+ - title (string; required)
57
+
58
+ - title_ (string; optional)
59
+
60
+ - width (number | string; optional)
61
+
62
+ - columnsFormatConstraint (dict; optional)
63
+
64
+ `columnsFormatConstraint` is a dict with strings as keys and
65
+ values of type dict with keys:
66
+
67
+ - content (string; optional)
68
+
69
+ - rule (string; optional)
70
+
71
+ - containerId (string; optional)
72
+
73
+ - currentData (list; optional)
74
+
75
+ - data (list of dicts; optional)
76
+
77
+ `data` is a list of dicts with strings as keys and values of type
78
+ string | number | dict with keys:
79
+
80
+ - disabled (boolean; optional)
81
+
82
+ - href (string; optional)
83
+
84
+ - target (string; optional)
85
+
86
+ Or list of numbers | list of dicts with keys:
87
+
88
+ - color (string; optional)
89
+
90
+ - tag (string | number; optional) | dict with keys:
91
+
92
+ - content (string | number; optional)
93
+
94
+ - danger (boolean; optional)
95
+
96
+ - disabled (boolean; optional)
97
+
98
+ - style (dict; optional)
99
+
100
+ - type (a value equal to: 'primary', 'ghost', 'dashed', 'link', 'text', 'default'; optional) | dict with keys:
101
+
102
+ - status (a value equal to: 'success', 'processing', 'default', 'error', 'warning'; optional)
103
+
104
+ - text (string | number; optional)
105
+
106
+ - enableHoverListen (boolean; default False)
107
+
108
+ - filter (dict; optional)
109
+
110
+ - filterOptions (dict; optional)
111
+
112
+ - loading_state (dict; optional)
113
+
114
+ `loading_state` is a dict with keys:
115
+
116
+ - component_name (string; optional):
117
+ Holds the name of the component that is loading.
118
+
119
+ - is_loading (boolean; optional):
120
+ Determines if the component is loading or not.
121
+
122
+ - prop_name (string; optional):
123
+ Holds which property is loading.
124
+
125
+ - locale (a value equal to: 'zh-cn', 'en-us'; default 'zh-cn')
126
+
127
+ - maxHeight (number; optional)
128
+
129
+ - maxWidth (number; optional)
130
+
131
+ - miniChartAnimation (boolean; default False)
132
+
133
+ - miniChartHeight (number; default 30)
134
+
135
+ - mode (a value equal to: 'client-side', 'server-side'; default 'client-side')
136
+
137
+ - nClicksButton (number; default 0)
138
+
139
+ - pagination (dict; optional)
140
+
141
+ `pagination` is a boolean | dict with keys:
142
+
143
+ - current (number; optional)
144
+
145
+ - disabled (boolean; optional)
146
+
147
+ - hideOnSinglePage (boolean; optional)
148
+
149
+ - pageSize (number; optional)
150
+
151
+ - pageSizeOptions (list of numbers; optional)
152
+
153
+ - position (a value equal to: 'topLeft', 'topCenter', 'topRight', 'bottomLeft', 'bottomCenter', 'bottomRight'; optional)
154
+
155
+ - responsive (boolean; optional)
156
+
157
+ - showQuickJumper (boolean; optional)
158
+
159
+ - showSizeChanger (boolean; optional)
160
+
161
+ - showTitle (boolean; optional)
162
+
163
+ - showTotalPrefix (string; optional)
164
+
165
+ - showTotalSuffix (string; optional)
166
+
167
+ - simple (boolean; optional)
168
+
169
+ - size (a value equal to: 'default', 'small'; optional)
170
+
171
+ - total (number; optional)
172
+
173
+ - recentlyButtonClickedRow (dict; optional)
174
+
175
+ - recentlyChangedRow (dict; optional)
176
+
177
+ - recentlyMouseEnterColumn (string; optional)
178
+
179
+ - recentlyMouseEnterRow (string | number; optional)
180
+
181
+ - rowSelectionType (a value equal to: 'checkbox', 'radio'; optional)
182
+
183
+ - rowSelectionWidth (string | number; optional)
184
+
185
+ - selectedRowKeys (list of string | numbers; optional)
186
+
187
+ - selectedRows (list; optional)
188
+
189
+ - size (a value equal to: 'small', 'default', 'large'; default 'default')
190
+
191
+ - sortOptions (dict; default {
192
  sortDataIndexes: []
193
+
194
+ `sortOptions` is a dict with keys:
195
+
196
+ - multiple (boolean; optional)
197
+
198
+ - sortDataIndexes (list of strings; optional)
199
+
200
+ - sorter (dict; optional)
201
+
202
+ `sorter` is a dict with keys:
203
+
204
+ - columns (list of strings; optional)
205
+
206
+ - orders (list of a value equal to: 'ascend', 'descend's; optional)
207
+
208
+ - sticky (boolean; optional)
209
+
210
+ - style (dict; optional)
211
+
212
+ - summaryRowContents (list of dicts; optional)
213
+
214
+ `summaryRowContents` is a list of dicts with keys:
215
+
216
+ - align (a value equal to: 'left', 'center', 'right'; optional)
217
+
218
+ - colSpan (number; optional)
219
+
220
+ - content (string | number; optional)
221
+
222
+ - summaryRowFixed (boolean; default False)
223
+
224
+ - titlePopoverInfo (dict; optional)"""
225
+ @_explicitize_args
226
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, containerId=Component.UNDEFINED, columns=Component.UNDEFINED, miniChartHeight=Component.UNDEFINED, miniChartAnimation=Component.UNDEFINED, size=Component.UNDEFINED, rowSelectionType=Component.UNDEFINED, selectedRowKeys=Component.UNDEFINED, rowSelectionWidth=Component.UNDEFINED, selectedRows=Component.UNDEFINED, sticky=Component.UNDEFINED, enableHoverListen=Component.UNDEFINED, recentlyMouseEnterColumn=Component.UNDEFINED, recentlyMouseEnterRow=Component.UNDEFINED, titlePopoverInfo=Component.UNDEFINED, columnsFormatConstraint=Component.UNDEFINED, data=Component.UNDEFINED, sortOptions=Component.UNDEFINED, filterOptions=Component.UNDEFINED, pagination=Component.UNDEFINED, bordered=Component.UNDEFINED, maxHeight=Component.UNDEFINED, maxWidth=Component.UNDEFINED, currentData=Component.UNDEFINED, recentlyChangedRow=Component.UNDEFINED, recentlyButtonClickedRow=Component.UNDEFINED, nClicksButton=Component.UNDEFINED, clickedContent=Component.UNDEFINED, sorter=Component.UNDEFINED, filter=Component.UNDEFINED, mode=Component.UNDEFINED, summaryRowContents=Component.UNDEFINED, summaryRowFixed=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
227
+ self._prop_names = ['id', 'bordered', 'className', 'clickedContent', 'columns', 'columnsFormatConstraint', 'containerId', 'currentData', 'data', 'enableHoverListen', 'filter', 'filterOptions', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'pagination', 'recentlyButtonClickedRow', 'recentlyChangedRow', 'recentlyMouseEnterColumn', 'recentlyMouseEnterRow', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'titlePopoverInfo']
228
+ self._type = 'AntdTable'
229
+ self._namespace = 'feffery_antd_components'
230
+ self._valid_wildcard_attributes = []
231
+ self.available_properties = ['id', 'bordered', 'className', 'clickedContent', 'columns', 'columnsFormatConstraint', 'containerId', 'currentData', 'data', 'enableHoverListen', 'filter', 'filterOptions', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'pagination', 'recentlyButtonClickedRow', 'recentlyChangedRow', 'recentlyMouseEnterColumn', 'recentlyMouseEnterRow', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'titlePopoverInfo']
232
+ self.available_wildcard_properties = []
233
+ _explicit_args = kwargs.pop('_explicit_args')
234
+ _locals = locals()
235
+ _locals.update(kwargs) # For wildcard attrs
236
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
237
+ for k in []:
238
+ if k not in args:
239
+ raise TypeError(
240
+ 'Required argument `' + k + '` was not specified.')
241
+ super(AntdTable, self).__init__(**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 AntdTabs(Component):
7
+ """An AntdTabs 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
+ - activeKey (string; optional)
19
+
20
+ - className (string; optional)
21
+
22
+ - defaultActiveKey (string; optional)
23
+
24
+ - latestDeletePane (string; optional)
25
+
26
+ - loading_state (dict; optional)
27
+
28
+ `loading_state` is a dict with keys:
29
+
30
+ - component_name (string; optional):
31
+ Holds the name of the component that is loading.
32
+
33
+ - is_loading (boolean; optional):
34
+ Determines if the component is loading or not.
35
+
36
+ - prop_name (string; optional):
37
+ Holds which property is loading.
38
+
39
+ - persisted_props (list of a value equal to: 'activeKey's; default ['activeKey']):
40
+ Properties whose user interactions will persist after refreshing
41
+ the component or the page. Since only `value` is allowed this
42
+ prop can normally be ignored.
43
+
44
+ - persistence (boolean | string | number; optional):
45
+ Used to allow user interactions in this component to be persisted
46
+ when the component - or the page - is refreshed. If `persisted`
47
+ is truthy and hasn't changed from its previous value, a `value`
48
+ that the user has changed while using the app will keep that
49
+ change, as long as the new `value` also matches what was given
50
+ originally. Used in conjunction with `persistence_type`.
51
+
52
+ - persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
53
+ Where persisted user changes will be stored: memory: only kept in
54
+ memory, reset on page refresh. local: window.localStorage, data
55
+ is kept after the browser quit. session: window.sessionStorage,
56
+ data is cleared once the browser quit.
57
+
58
+ - size (a value equal to: 'small', 'default', 'large'; optional)
59
+
60
+ - style (dict; optional)
61
+
62
+ - tabPosition (a value equal to: 'top', 'left', 'right', 'bottom'; optional)
63
+
64
+ - type (a value equal to: 'line', 'card', 'editable-card'; optional)"""
65
+ @_explicitize_args
66
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, defaultActiveKey=Component.UNDEFINED, tabPosition=Component.UNDEFINED, size=Component.UNDEFINED, type=Component.UNDEFINED, activeKey=Component.UNDEFINED, latestDeletePane=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
67
+ self._prop_names = ['children', 'id', 'activeKey', 'className', 'defaultActiveKey', 'latestDeletePane', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'tabPosition', 'type']
68
+ self._type = 'AntdTabs'
69
+ self._namespace = 'feffery_antd_components'
70
+ self._valid_wildcard_attributes = []
71
+ self.available_properties = ['children', 'id', 'activeKey', 'className', 'defaultActiveKey', 'latestDeletePane', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'tabPosition', 'type']
72
+ self.available_wildcard_properties = []
73
+ _explicit_args = kwargs.pop('_explicit_args')
74
+ _locals = locals()
75
+ _locals.update(kwargs) # For wildcard attrs
76
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
77
+ for k in []:
78
+ if k not in args:
79
+ raise TypeError(
80
+ 'Required argument `' + k + '` was not specified.')
81
+ super(AntdTabs, self).__init__(children=children, **args)
@@ -0,0 +1,54 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdTag(Component):
7
+ """An AntdTag component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - className (string; optional)
15
+
16
+ - color (string; optional)
17
+
18
+ - content (string; default '')
19
+
20
+ - href (string; optional)
21
+
22
+ - loading_state (dict; optional)
23
+
24
+ `loading_state` is a dict with keys:
25
+
26
+ - component_name (string; optional):
27
+ Holds the name of the component that is loading.
28
+
29
+ - is_loading (boolean; optional):
30
+ Determines if the component is loading or not.
31
+
32
+ - prop_name (string; optional):
33
+ Holds which property is loading.
34
+
35
+ - style (dict; optional)
36
+
37
+ - target (string; default '_blank')"""
38
+ @_explicitize_args
39
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, content=Component.UNDEFINED, color=Component.UNDEFINED, href=Component.UNDEFINED, target=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
40
+ self._prop_names = ['id', 'className', 'color', 'content', 'href', 'loading_state', 'style', 'target']
41
+ self._type = 'AntdTag'
42
+ self._namespace = 'feffery_antd_components'
43
+ self._valid_wildcard_attributes = []
44
+ self.available_properties = ['id', 'className', 'color', 'content', 'href', 'loading_state', 'style', 'target']
45
+ self.available_wildcard_properties = []
46
+ _explicit_args = kwargs.pop('_explicit_args')
47
+ _locals = locals()
48
+ _locals.update(kwargs) # For wildcard attrs
49
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
50
+ for k in []:
51
+ if k not in args:
52
+ raise TypeError(
53
+ 'Required argument `' + k + '` was not specified.')
54
+ super(AntdTag, self).__init__(**args)
@@ -0,0 +1,58 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdTestLink(Component):
7
+ """An AntdTestLink component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (a list of or a singular dash component, string or number; optional):
13
+ The children of this component.
14
+
15
+ - id (string; optional):
16
+ The ID of this component, used to identify dash components in
17
+ callbacks. The ID needs to be unique across all of the components
18
+ in an app.
19
+
20
+ - className (string; optional):
21
+ Often used with CSS to style elements with common properties.
22
+
23
+ - disabled (boolean; default False):
24
+ If True, clicking on the link does nothing.
25
+
26
+ - download (string; optional)
27
+
28
+ - external_link (boolean; optional):
29
+ If True, the browser will treat this as an external link, forcing
30
+ a page refresh at the new location. If False, this just changes
31
+ the location without triggering a page refresh. Use this if you
32
+ are observing dcc.Location, for instance. Defaults to True for
33
+ absolute URLs and False otherwise.
34
+
35
+ - href (string; optional):
36
+ URL of the resource to link to.
37
+
38
+ - style (dict; optional):
39
+ Defines CSS styles which will override styles previously set.
40
+
41
+ - target (string; optional)"""
42
+ @_explicitize_args
43
+ def __init__(self, children=None, id=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, href=Component.UNDEFINED, disabled=Component.UNDEFINED, external_link=Component.UNDEFINED, preOnClick=Component.UNDEFINED, target=Component.UNDEFINED, download=Component.UNDEFINED, **kwargs):
44
+ self._prop_names = ['children', 'id', 'className', 'disabled', 'download', 'external_link', 'href', 'style', 'target']
45
+ self._type = 'AntdTestLink'
46
+ self._namespace = 'feffery_antd_components'
47
+ self._valid_wildcard_attributes = []
48
+ self.available_properties = ['children', 'id', 'className', 'disabled', 'download', 'external_link', 'href', 'style', 'target']
49
+ self.available_wildcard_properties = []
50
+ _explicit_args = kwargs.pop('_explicit_args')
51
+ _locals = locals()
52
+ _locals.update(kwargs) # For wildcard attrs
53
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
54
+ for k in []:
55
+ if k not in args:
56
+ raise TypeError(
57
+ 'Required argument `' + k + '` was not specified.')
58
+ super(AntdTestLink, self).__init__(children=children, **args)