feffery_antd_components 0.2.10-rc12 → 0.2.10-rc13
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.
- package/DESCRIPTION +1 -1
- package/Project.toml +1 -1
- package/build/lib/feffery_antd_components/AntdAccordion.py +85 -0
- package/build/lib/feffery_antd_components/AntdAffix.py +55 -0
- package/build/lib/feffery_antd_components/AntdAlert.py +63 -0
- package/build/lib/feffery_antd_components/AntdAnchor.py +63 -0
- package/build/lib/feffery_antd_components/AntdAvatar.py +82 -0
- package/build/lib/feffery_antd_components/AntdAvatarGroup.py +74 -0
- package/build/lib/feffery_antd_components/AntdBackTop.py +55 -0
- package/build/lib/feffery_antd_components/AntdBadge.py +71 -0
- package/build/lib/feffery_antd_components/AntdBreadcrumb.py +87 -0
- package/build/lib/feffery_antd_components/AntdButton.py +97 -0
- package/build/lib/feffery_antd_components/AntdCalendar.py +76 -0
- package/build/lib/feffery_antd_components/AntdCard.py +89 -0
- package/build/lib/feffery_antd_components/AntdCardGrid.py +53 -0
- package/build/lib/feffery_antd_components/AntdCarousel.py +63 -0
- package/build/lib/feffery_antd_components/AntdCascader.py +113 -0
- package/build/lib/feffery_antd_components/AntdCenter.py +53 -0
- package/build/lib/feffery_antd_components/AntdCheckCard.py +82 -0
- package/build/lib/feffery_antd_components/AntdCheckCardGroup.py +84 -0
- package/build/lib/feffery_antd_components/AntdCheckbox.py +80 -0
- package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +86 -0
- package/build/lib/feffery_antd_components/AntdCol.py +147 -0
- package/build/lib/feffery_antd_components/AntdCollapse.py +82 -0
- package/build/lib/feffery_antd_components/AntdComment.py +98 -0
- package/build/lib/feffery_antd_components/AntdCompact.py +55 -0
- package/build/lib/feffery_antd_components/AntdConfigProvider.py +53 -0
- package/build/lib/feffery_antd_components/AntdContent.py +51 -0
- package/build/lib/feffery_antd_components/AntdCopyText.py +55 -0
- package/build/lib/feffery_antd_components/AntdCountdown.py +63 -0
- package/build/lib/feffery_antd_components/AntdCustomSkeleton.py +61 -0
- package/build/lib/feffery_antd_components/AntdDatePicker.py +126 -0
- package/build/lib/feffery_antd_components/AntdDateRangePicker.py +126 -0
- package/build/lib/feffery_antd_components/AntdDescriptionItem.py +59 -0
- package/build/lib/feffery_antd_components/AntdDescriptions.py +95 -0
- package/build/lib/feffery_antd_components/AntdDivider.py +85 -0
- package/build/lib/feffery_antd_components/AntdDraggerUpload.py +187 -0
- package/build/lib/feffery_antd_components/AntdDrawer.py +91 -0
- package/build/lib/feffery_antd_components/AntdDropdown.py +117 -0
- package/build/lib/feffery_antd_components/AntdEmpty.py +57 -0
- package/build/lib/feffery_antd_components/AntdFooter.py +51 -0
- package/build/lib/feffery_antd_components/AntdForm.py +79 -0
- package/build/lib/feffery_antd_components/AntdFormItem.py +89 -0
- package/build/lib/feffery_antd_components/AntdHeader.py +51 -0
- package/build/lib/feffery_antd_components/AntdIcon.py +62 -0
- package/build/lib/feffery_antd_components/AntdImage.py +63 -0
- package/build/lib/feffery_antd_components/AntdInput.py +128 -0
- package/build/lib/feffery_antd_components/AntdInputNumber.py +112 -0
- package/build/lib/feffery_antd_components/AntdLayout.py +51 -0
- package/build/lib/feffery_antd_components/AntdMentions.py +90 -0
- package/build/lib/feffery_antd_components/AntdMenu.py +86 -0
- package/build/lib/feffery_antd_components/AntdMessage.py +61 -0
- package/build/lib/feffery_antd_components/AntdModal.py +133 -0
- package/build/lib/feffery_antd_components/AntdNotification.py +63 -0
- package/build/lib/feffery_antd_components/AntdPageHeader.py +63 -0
- package/build/lib/feffery_antd_components/AntdPagination.py +104 -0
- package/build/lib/feffery_antd_components/AntdParagraph.py +99 -0
- package/build/lib/feffery_antd_components/AntdPictureUpload.py +195 -0
- package/build/lib/feffery_antd_components/AntdPopconfirm.py +117 -0
- package/build/lib/feffery_antd_components/AntdPopover.py +81 -0
- package/build/lib/feffery_antd_components/AntdPopupCard.py +69 -0
- package/build/lib/feffery_antd_components/AntdProgress.py +105 -0
- package/build/lib/feffery_antd_components/AntdRadioGroup.py +96 -0
- package/build/lib/feffery_antd_components/AntdRate.py +84 -0
- package/build/lib/feffery_antd_components/AntdResult.py +55 -0
- package/build/lib/feffery_antd_components/AntdRibbon.py +55 -0
- package/build/lib/feffery_antd_components/AntdRow.py +73 -0
- package/build/lib/feffery_antd_components/AntdSegmented.py +94 -0
- package/build/lib/feffery_antd_components/AntdSegmentedColoring.py +92 -0
- package/build/lib/feffery_antd_components/AntdSelect.py +154 -0
- package/build/lib/feffery_antd_components/AntdSider.py +69 -0
- package/build/lib/feffery_antd_components/AntdSkeleton.py +87 -0
- package/build/lib/feffery_antd_components/AntdSkeletonAvatar.py +53 -0
- package/build/lib/feffery_antd_components/AntdSkeletonButton.py +55 -0
- package/build/lib/feffery_antd_components/AntdSkeletonImage.py +47 -0
- package/build/lib/feffery_antd_components/AntdSkeletonInput.py +51 -0
- package/build/lib/feffery_antd_components/AntdSlider.py +100 -0
- package/build/lib/feffery_antd_components/AntdSpace.py +63 -0
- package/build/lib/feffery_antd_components/AntdSpin.py +71 -0
- package/build/lib/feffery_antd_components/AntdSpoiler.py +67 -0
- package/build/lib/feffery_antd_components/AntdStatistic.py +63 -0
- package/build/lib/feffery_antd_components/AntdSteps.py +80 -0
- package/build/lib/feffery_antd_components/AntdSwitch.py +84 -0
- package/build/lib/feffery_antd_components/AntdTabPane.py +65 -0
- package/build/lib/feffery_antd_components/AntdTable.py +557 -0
- package/build/lib/feffery_antd_components/AntdTabs.py +114 -0
- package/build/lib/feffery_antd_components/AntdTag.py +55 -0
- package/build/lib/feffery_antd_components/AntdText.py +96 -0
- package/build/lib/feffery_antd_components/AntdTimePicker.py +110 -0
- package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +110 -0
- package/build/lib/feffery_antd_components/AntdTimeline.py +72 -0
- package/build/lib/feffery_antd_components/AntdTitle.py +94 -0
- package/build/lib/feffery_antd_components/AntdTooltip.py +77 -0
- package/build/lib/feffery_antd_components/AntdTransfer.py +112 -0
- package/build/lib/feffery_antd_components/AntdTree.py +148 -0
- package/build/lib/feffery_antd_components/AntdTreeSelect.py +135 -0
- package/build/lib/feffery_antd_components/AntdUpload.py +181 -0
- package/build/lib/feffery_antd_components/AntdWatermark.py +75 -0
- package/build/lib/feffery_antd_components/__init__.py +69 -0
- package/build/lib/feffery_antd_components/_imports_.py +195 -0
- package/build/lib/feffery_antd_components/alias.py +193 -0
- package/build/lib/feffery_antd_components/async-antd_table.js +1 -0
- package/build/lib/feffery_antd_components/async-antd_upload.js +1 -0
- package/build/lib/feffery_antd_components/feffery_antd_components.min.js +1 -0
- package/build/lib/feffery_antd_components/metadata.json +26703 -0
- package/build/lib/feffery_antd_components/package-info.json +92 -0
- package/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/feffery_antd_components/package-info.json +1 -1
- package/package.json +1 -1
- package/setup.py +3 -0
- package/usage.py +72 -49
package/DESCRIPTION
CHANGED
package/Project.toml
CHANGED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdAccordion(Component):
|
|
7
|
+
"""An AntdAccordion 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
|
+
- accordion (boolean; default True)
|
|
17
|
+
|
|
18
|
+
- activeKey (string | list of strings | number | list of numbers; optional)
|
|
19
|
+
|
|
20
|
+
- bordered (boolean; default True)
|
|
21
|
+
|
|
22
|
+
- className (string | dict; optional)
|
|
23
|
+
|
|
24
|
+
- collapsible (a value equal to: 'header', 'disabled', 'icon'; optional)
|
|
25
|
+
|
|
26
|
+
- defaultActiveKey (string | list of strings | number | list of numbers; optional)
|
|
27
|
+
|
|
28
|
+
- expandIconPosition (a value equal to: 'left', 'right'; default 'left')
|
|
29
|
+
|
|
30
|
+
- ghost (boolean; default False)
|
|
31
|
+
|
|
32
|
+
- items (list of dicts; optional)
|
|
33
|
+
|
|
34
|
+
`items` is a list of dicts with keys:
|
|
35
|
+
|
|
36
|
+
- children (a list of or a singular dash component, string or number; optional)
|
|
37
|
+
|
|
38
|
+
- className (string | dict; optional)
|
|
39
|
+
|
|
40
|
+
- collapsible (a value equal to: 'header', 'disabled', 'icon'; optional)
|
|
41
|
+
|
|
42
|
+
- extra (a list of or a singular dash component, string or number; optional)
|
|
43
|
+
|
|
44
|
+
- forceRender (boolean; optional)
|
|
45
|
+
|
|
46
|
+
- key (string | number; required)
|
|
47
|
+
|
|
48
|
+
- showArrow (boolean; optional)
|
|
49
|
+
|
|
50
|
+
- style (dict; optional)
|
|
51
|
+
|
|
52
|
+
- title (a list of or a singular dash component, string or number; optional)
|
|
53
|
+
|
|
54
|
+
- key (string; optional)
|
|
55
|
+
|
|
56
|
+
- loading_state (dict; optional)
|
|
57
|
+
|
|
58
|
+
`loading_state` is a dict with keys:
|
|
59
|
+
|
|
60
|
+
- component_name (string; optional):
|
|
61
|
+
Holds the name of the component that is loading.
|
|
62
|
+
|
|
63
|
+
- is_loading (boolean; optional):
|
|
64
|
+
Determines if the component is loading or not.
|
|
65
|
+
|
|
66
|
+
- prop_name (string; optional):
|
|
67
|
+
Holds which property is loading.
|
|
68
|
+
|
|
69
|
+
- style (dict; optional)"""
|
|
70
|
+
_children_props = ['items[].children', 'items[].title', 'items[].extra']
|
|
71
|
+
_base_nodes = ['children']
|
|
72
|
+
_namespace = 'feffery_antd_components'
|
|
73
|
+
_type = 'AntdAccordion'
|
|
74
|
+
@_explicitize_args
|
|
75
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, items=Component.UNDEFINED, accordion=Component.UNDEFINED, activeKey=Component.UNDEFINED, defaultActiveKey=Component.UNDEFINED, bordered=Component.UNDEFINED, collapsible=Component.UNDEFINED, expandIconPosition=Component.UNDEFINED, ghost=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
76
|
+
self._prop_names = ['children', 'id', 'accordion', 'activeKey', 'bordered', 'className', 'collapsible', 'defaultActiveKey', 'expandIconPosition', 'ghost', 'items', 'key', 'loading_state', 'style']
|
|
77
|
+
self._valid_wildcard_attributes = []
|
|
78
|
+
self.available_properties = ['children', 'id', 'accordion', 'activeKey', 'bordered', 'className', 'collapsible', 'defaultActiveKey', 'expandIconPosition', 'ghost', 'items', 'key', 'loading_state', 'style']
|
|
79
|
+
self.available_wildcard_properties = []
|
|
80
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
81
|
+
_locals = locals()
|
|
82
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
83
|
+
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
84
|
+
|
|
85
|
+
super(AntdAccordion, self).__init__(children=children, **args)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdAffix(Component):
|
|
7
|
+
"""An AntdAffix 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
|
+
- className (string | dict; optional)
|
|
17
|
+
|
|
18
|
+
- key (string; optional)
|
|
19
|
+
|
|
20
|
+
- loading_state (dict; optional)
|
|
21
|
+
|
|
22
|
+
`loading_state` is a dict with keys:
|
|
23
|
+
|
|
24
|
+
- component_name (string; optional):
|
|
25
|
+
Holds the name of the component that is loading.
|
|
26
|
+
|
|
27
|
+
- is_loading (boolean; optional):
|
|
28
|
+
Determines if the component is loading or not.
|
|
29
|
+
|
|
30
|
+
- prop_name (string; optional):
|
|
31
|
+
Holds which property is loading.
|
|
32
|
+
|
|
33
|
+
- offsetBottom (number; optional)
|
|
34
|
+
|
|
35
|
+
- offsetTop (number; default 0)
|
|
36
|
+
|
|
37
|
+
- style (dict; optional)
|
|
38
|
+
|
|
39
|
+
- target (string; optional)"""
|
|
40
|
+
_children_props = []
|
|
41
|
+
_base_nodes = ['children']
|
|
42
|
+
_namespace = 'feffery_antd_components'
|
|
43
|
+
_type = 'AntdAffix'
|
|
44
|
+
@_explicitize_args
|
|
45
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, offsetBottom=Component.UNDEFINED, offsetTop=Component.UNDEFINED, target=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
46
|
+
self._prop_names = ['children', 'id', 'className', 'key', 'loading_state', 'offsetBottom', 'offsetTop', 'style', 'target']
|
|
47
|
+
self._valid_wildcard_attributes = []
|
|
48
|
+
self.available_properties = ['children', 'id', 'className', 'key', 'loading_state', 'offsetBottom', 'offsetTop', 'style', 'target']
|
|
49
|
+
self.available_wildcard_properties = []
|
|
50
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
51
|
+
_locals = locals()
|
|
52
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
53
|
+
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
54
|
+
|
|
55
|
+
super(AntdAffix, self).__init__(children=children, **args)
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdAlert(Component):
|
|
7
|
+
"""An AntdAlert component.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Keyword arguments:
|
|
11
|
+
|
|
12
|
+
- id (string; optional)
|
|
13
|
+
|
|
14
|
+
- action (a list of or a singular dash component, string or number; optional)
|
|
15
|
+
|
|
16
|
+
- banner (boolean; default False)
|
|
17
|
+
|
|
18
|
+
- className (string | dict; optional)
|
|
19
|
+
|
|
20
|
+
- closable (boolean; default False)
|
|
21
|
+
|
|
22
|
+
- description (a list of or a singular dash component, string or number; 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
|
+
- message (a list of or a singular dash component, string or number; optional)
|
|
40
|
+
|
|
41
|
+
- messageRenderMode (a value equal to: 'default', 'loop-text', 'marquee'; default 'default')
|
|
42
|
+
|
|
43
|
+
- showIcon (boolean; default False)
|
|
44
|
+
|
|
45
|
+
- style (dict; optional)
|
|
46
|
+
|
|
47
|
+
- type (a value equal to: 'success', 'info', 'warning', 'error'; default 'info')"""
|
|
48
|
+
_children_props = ['message', 'description', 'action']
|
|
49
|
+
_base_nodes = ['message', 'description', 'action', 'children']
|
|
50
|
+
_namespace = 'feffery_antd_components'
|
|
51
|
+
_type = 'AntdAlert'
|
|
52
|
+
@_explicitize_args
|
|
53
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, message=Component.UNDEFINED, description=Component.UNDEFINED, type=Component.UNDEFINED, showIcon=Component.UNDEFINED, closable=Component.UNDEFINED, messageRenderMode=Component.UNDEFINED, action=Component.UNDEFINED, banner=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
54
|
+
self._prop_names = ['id', 'action', 'banner', 'className', 'closable', 'description', 'key', 'loading_state', 'message', 'messageRenderMode', 'showIcon', 'style', 'type']
|
|
55
|
+
self._valid_wildcard_attributes = []
|
|
56
|
+
self.available_properties = ['id', 'action', 'banner', 'className', 'closable', 'description', 'key', 'loading_state', 'message', 'messageRenderMode', 'showIcon', 'style', 'type']
|
|
57
|
+
self.available_wildcard_properties = []
|
|
58
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
59
|
+
_locals = locals()
|
|
60
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
61
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
62
|
+
|
|
63
|
+
super(AntdAlert, self).__init__(**args)
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdAnchor(Component):
|
|
7
|
+
"""An AntdAnchor component.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Keyword arguments:
|
|
11
|
+
|
|
12
|
+
- id (string; optional)
|
|
13
|
+
|
|
14
|
+
- affix (boolean; default True)
|
|
15
|
+
|
|
16
|
+
- align (a value equal to: 'left', 'right'; default 'right')
|
|
17
|
+
|
|
18
|
+
- bounds (number; default 5)
|
|
19
|
+
|
|
20
|
+
- className (string | dict; optional)
|
|
21
|
+
|
|
22
|
+
- clickedLink (dict; optional)
|
|
23
|
+
|
|
24
|
+
- containerId (string; optional)
|
|
25
|
+
|
|
26
|
+
- key (string; optional)
|
|
27
|
+
|
|
28
|
+
- linkDict (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
|
+
- offsetTop (number; optional)
|
|
44
|
+
|
|
45
|
+
- style (dict; optional)
|
|
46
|
+
|
|
47
|
+
- targetOffset (number; optional)"""
|
|
48
|
+
_children_props = []
|
|
49
|
+
_base_nodes = ['children']
|
|
50
|
+
_namespace = 'feffery_antd_components'
|
|
51
|
+
_type = 'AntdAnchor'
|
|
52
|
+
@_explicitize_args
|
|
53
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, linkDict=Component.UNDEFINED, align=Component.UNDEFINED, containerId=Component.UNDEFINED, targetOffset=Component.UNDEFINED, affix=Component.UNDEFINED, bounds=Component.UNDEFINED, offsetTop=Component.UNDEFINED, clickedLink=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
54
|
+
self._prop_names = ['id', 'affix', 'align', 'bounds', 'className', 'clickedLink', 'containerId', 'key', 'linkDict', 'loading_state', 'offsetTop', 'style', 'targetOffset']
|
|
55
|
+
self._valid_wildcard_attributes = []
|
|
56
|
+
self.available_properties = ['id', 'affix', 'align', 'bounds', 'className', 'clickedLink', 'containerId', 'key', 'linkDict', 'loading_state', 'offsetTop', 'style', 'targetOffset']
|
|
57
|
+
self.available_wildcard_properties = []
|
|
58
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
59
|
+
_locals = locals()
|
|
60
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
61
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
62
|
+
|
|
63
|
+
super(AntdAnchor, self).__init__(**args)
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdAvatar(Component):
|
|
7
|
+
"""An AntdAvatar component.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Keyword arguments:
|
|
11
|
+
|
|
12
|
+
- id (string; optional)
|
|
13
|
+
|
|
14
|
+
- alt (string; optional)
|
|
15
|
+
|
|
16
|
+
- className (string | dict; optional)
|
|
17
|
+
|
|
18
|
+
- gap (number; default 4)
|
|
19
|
+
|
|
20
|
+
- icon (string; optional)
|
|
21
|
+
|
|
22
|
+
- iconRenderer (a value equal to: 'AntdIcon', 'fontawesome'; default 'AntdIcon')
|
|
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
|
+
- mode (a value equal to: 'text', 'icon', 'image'; default 'icon')
|
|
40
|
+
|
|
41
|
+
- shape (a value equal to: 'circle', 'square'; default 'circle')
|
|
42
|
+
|
|
43
|
+
- size (dict; default 'default')
|
|
44
|
+
|
|
45
|
+
`size` is a number | a value equal to: 'large', 'small', 'default'
|
|
46
|
+
| dict with keys:
|
|
47
|
+
|
|
48
|
+
- lg (number; optional)
|
|
49
|
+
|
|
50
|
+
- md (number; optional)
|
|
51
|
+
|
|
52
|
+
- sm (number; optional)
|
|
53
|
+
|
|
54
|
+
- xl (number; optional)
|
|
55
|
+
|
|
56
|
+
- xs (number; optional)
|
|
57
|
+
|
|
58
|
+
- xxl (number; optional)
|
|
59
|
+
|
|
60
|
+
- src (string; optional)
|
|
61
|
+
|
|
62
|
+
- srcSet (string; optional)
|
|
63
|
+
|
|
64
|
+
- style (dict; optional)
|
|
65
|
+
|
|
66
|
+
- text (string; optional)"""
|
|
67
|
+
_children_props = []
|
|
68
|
+
_base_nodes = ['children']
|
|
69
|
+
_namespace = 'feffery_antd_components'
|
|
70
|
+
_type = 'AntdAvatar'
|
|
71
|
+
@_explicitize_args
|
|
72
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, mode=Component.UNDEFINED, gap=Component.UNDEFINED, text=Component.UNDEFINED, icon=Component.UNDEFINED, iconRenderer=Component.UNDEFINED, alt=Component.UNDEFINED, src=Component.UNDEFINED, srcSet=Component.UNDEFINED, size=Component.UNDEFINED, shape=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
73
|
+
self._prop_names = ['id', 'alt', 'className', 'gap', 'icon', 'iconRenderer', 'key', 'loading_state', 'mode', 'shape', 'size', 'src', 'srcSet', 'style', 'text']
|
|
74
|
+
self._valid_wildcard_attributes = []
|
|
75
|
+
self.available_properties = ['id', 'alt', 'className', 'gap', 'icon', 'iconRenderer', 'key', 'loading_state', 'mode', 'shape', 'size', 'src', 'srcSet', 'style', 'text']
|
|
76
|
+
self.available_wildcard_properties = []
|
|
77
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
78
|
+
_locals = locals()
|
|
79
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
80
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
81
|
+
|
|
82
|
+
super(AntdAvatar, self).__init__(**args)
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdAvatarGroup(Component):
|
|
7
|
+
"""An AntdAvatarGroup 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
|
+
- className (string | dict; optional)
|
|
17
|
+
|
|
18
|
+
- key (string; optional)
|
|
19
|
+
|
|
20
|
+
- loading_state (dict; optional)
|
|
21
|
+
|
|
22
|
+
`loading_state` is a dict with keys:
|
|
23
|
+
|
|
24
|
+
- component_name (string; optional):
|
|
25
|
+
Holds the name of the component that is loading.
|
|
26
|
+
|
|
27
|
+
- is_loading (boolean; optional):
|
|
28
|
+
Determines if the component is loading or not.
|
|
29
|
+
|
|
30
|
+
- prop_name (string; optional):
|
|
31
|
+
Holds which property is loading.
|
|
32
|
+
|
|
33
|
+
- maxCount (number; optional)
|
|
34
|
+
|
|
35
|
+
- maxPopoverPlacement (a value equal to: 'top', 'bottom'; default 'top')
|
|
36
|
+
|
|
37
|
+
- maxPopoverTrigger (a value equal to: 'hover', 'click'; default 'hover')
|
|
38
|
+
|
|
39
|
+
- maxStyle (dict; optional)
|
|
40
|
+
|
|
41
|
+
- size (dict; default 'default')
|
|
42
|
+
|
|
43
|
+
`size` is a number | a value equal to: 'large', 'small', 'default'
|
|
44
|
+
| dict with keys:
|
|
45
|
+
|
|
46
|
+
- lg (number; optional)
|
|
47
|
+
|
|
48
|
+
- md (number; optional)
|
|
49
|
+
|
|
50
|
+
- sm (number; optional)
|
|
51
|
+
|
|
52
|
+
- xl (number; optional)
|
|
53
|
+
|
|
54
|
+
- xs (number; optional)
|
|
55
|
+
|
|
56
|
+
- xxl (number; optional)
|
|
57
|
+
|
|
58
|
+
- style (dict; optional)"""
|
|
59
|
+
_children_props = []
|
|
60
|
+
_base_nodes = ['children']
|
|
61
|
+
_namespace = 'feffery_antd_components'
|
|
62
|
+
_type = 'AntdAvatarGroup'
|
|
63
|
+
@_explicitize_args
|
|
64
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, maxCount=Component.UNDEFINED, maxPopoverPlacement=Component.UNDEFINED, maxPopoverTrigger=Component.UNDEFINED, maxStyle=Component.UNDEFINED, size=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
65
|
+
self._prop_names = ['children', 'id', 'className', 'key', 'loading_state', 'maxCount', 'maxPopoverPlacement', 'maxPopoverTrigger', 'maxStyle', 'size', 'style']
|
|
66
|
+
self._valid_wildcard_attributes = []
|
|
67
|
+
self.available_properties = ['children', 'id', 'className', 'key', 'loading_state', 'maxCount', 'maxPopoverPlacement', 'maxPopoverTrigger', 'maxStyle', 'size', 'style']
|
|
68
|
+
self.available_wildcard_properties = []
|
|
69
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
70
|
+
_locals = locals()
|
|
71
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
72
|
+
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
73
|
+
|
|
74
|
+
super(AntdAvatarGroup, self).__init__(children=children, **args)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdBackTop(Component):
|
|
7
|
+
"""An AntdBackTop component.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Keyword arguments:
|
|
11
|
+
|
|
12
|
+
- id (string; optional)
|
|
13
|
+
|
|
14
|
+
- className (string | dict; optional)
|
|
15
|
+
|
|
16
|
+
- containerId (string; optional)
|
|
17
|
+
|
|
18
|
+
- containerSelector (string; optional)
|
|
19
|
+
|
|
20
|
+
- duration (number; default 0.45)
|
|
21
|
+
|
|
22
|
+
- key (string; 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
|
+
- style (dict; optional)
|
|
38
|
+
|
|
39
|
+
- visibilityHeight (number; default 400)"""
|
|
40
|
+
_children_props = []
|
|
41
|
+
_base_nodes = ['children']
|
|
42
|
+
_namespace = 'feffery_antd_components'
|
|
43
|
+
_type = 'AntdBackTop'
|
|
44
|
+
@_explicitize_args
|
|
45
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, duration=Component.UNDEFINED, visibilityHeight=Component.UNDEFINED, containerId=Component.UNDEFINED, containerSelector=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
46
|
+
self._prop_names = ['id', 'className', 'containerId', 'containerSelector', 'duration', 'key', 'loading_state', 'style', 'visibilityHeight']
|
|
47
|
+
self._valid_wildcard_attributes = []
|
|
48
|
+
self.available_properties = ['id', 'className', 'containerId', 'containerSelector', 'duration', 'key', 'loading_state', 'style', 'visibilityHeight']
|
|
49
|
+
self.available_wildcard_properties = []
|
|
50
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
51
|
+
_locals = locals()
|
|
52
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
53
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
54
|
+
|
|
55
|
+
super(AntdBackTop, self).__init__(**args)
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdBadge(Component):
|
|
7
|
+
"""An AntdBadge 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
|
+
- className (string | dict; optional)
|
|
17
|
+
|
|
18
|
+
- color (string; optional)
|
|
19
|
+
|
|
20
|
+
- count (number; optional)
|
|
21
|
+
|
|
22
|
+
- dot (boolean; default False)
|
|
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
|
+
- nClicks (number; default 0)
|
|
40
|
+
|
|
41
|
+
- offset (list of numbers; optional)
|
|
42
|
+
|
|
43
|
+
- overflowCount (number; default 99)
|
|
44
|
+
|
|
45
|
+
- showZero (boolean; default False)
|
|
46
|
+
|
|
47
|
+
- size (a value equal to: 'default', 'small'; default 'default')
|
|
48
|
+
|
|
49
|
+
- status (a value equal to: 'success', 'processing', 'default', 'error', 'warning'; optional)
|
|
50
|
+
|
|
51
|
+
- style (dict; optional)
|
|
52
|
+
|
|
53
|
+
- text (string; optional)
|
|
54
|
+
|
|
55
|
+
- title (string; optional)"""
|
|
56
|
+
_children_props = []
|
|
57
|
+
_base_nodes = ['children']
|
|
58
|
+
_namespace = 'feffery_antd_components'
|
|
59
|
+
_type = 'AntdBadge'
|
|
60
|
+
@_explicitize_args
|
|
61
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, color=Component.UNDEFINED, count=Component.UNDEFINED, dot=Component.UNDEFINED, showZero=Component.UNDEFINED, overflowCount=Component.UNDEFINED, offset=Component.UNDEFINED, status=Component.UNDEFINED, text=Component.UNDEFINED, title=Component.UNDEFINED, size=Component.UNDEFINED, nClicks=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
62
|
+
self._prop_names = ['children', 'id', 'className', 'color', 'count', 'dot', 'key', 'loading_state', 'nClicks', 'offset', 'overflowCount', 'showZero', 'size', 'status', 'style', 'text', 'title']
|
|
63
|
+
self._valid_wildcard_attributes = []
|
|
64
|
+
self.available_properties = ['children', 'id', 'className', 'color', 'count', 'dot', 'key', 'loading_state', 'nClicks', 'offset', 'overflowCount', 'showZero', 'size', 'status', 'style', 'text', 'title']
|
|
65
|
+
self.available_wildcard_properties = []
|
|
66
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
67
|
+
_locals = locals()
|
|
68
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
69
|
+
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
70
|
+
|
|
71
|
+
super(AntdBadge, self).__init__(children=children, **args)
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdBreadcrumb(Component):
|
|
7
|
+
"""An AntdBreadcrumb component.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Keyword arguments:
|
|
11
|
+
|
|
12
|
+
- id (string; optional)
|
|
13
|
+
|
|
14
|
+
- className (string | dict; optional)
|
|
15
|
+
|
|
16
|
+
- clickedItem (dict; optional)
|
|
17
|
+
|
|
18
|
+
`clickedItem` is a dict with keys:
|
|
19
|
+
|
|
20
|
+
- itemTitle (string; optional)
|
|
21
|
+
|
|
22
|
+
- timestamp (number; optional)
|
|
23
|
+
|
|
24
|
+
- items (list of dicts; optional)
|
|
25
|
+
|
|
26
|
+
`items` is a list of dicts with keys:
|
|
27
|
+
|
|
28
|
+
- href (string; optional)
|
|
29
|
+
|
|
30
|
+
- icon (string; optional)
|
|
31
|
+
|
|
32
|
+
- iconRenderer (a value equal to: 'AntdIcon', 'fontawesome'; optional)
|
|
33
|
+
|
|
34
|
+
- menuItems (list of dicts; optional)
|
|
35
|
+
|
|
36
|
+
`menuItems` is a list of dicts with keys:
|
|
37
|
+
|
|
38
|
+
- disabled (boolean; optional)
|
|
39
|
+
|
|
40
|
+
- href (string; optional)
|
|
41
|
+
|
|
42
|
+
- icon (string; optional)
|
|
43
|
+
|
|
44
|
+
- iconRenderer (a value equal to: 'AntdIcon', 'fontawesome'; optional)
|
|
45
|
+
|
|
46
|
+
- target (string; optional)
|
|
47
|
+
|
|
48
|
+
- title (string; optional)
|
|
49
|
+
|
|
50
|
+
- target (string; optional)
|
|
51
|
+
|
|
52
|
+
- title (string; optional)
|
|
53
|
+
|
|
54
|
+
- key (string; optional)
|
|
55
|
+
|
|
56
|
+
- loading_state (dict; optional)
|
|
57
|
+
|
|
58
|
+
`loading_state` is a dict with keys:
|
|
59
|
+
|
|
60
|
+
- component_name (string; optional):
|
|
61
|
+
Holds the name of the component that is loading.
|
|
62
|
+
|
|
63
|
+
- is_loading (boolean; optional):
|
|
64
|
+
Determines if the component is loading or not.
|
|
65
|
+
|
|
66
|
+
- prop_name (string; optional):
|
|
67
|
+
Holds which property is loading.
|
|
68
|
+
|
|
69
|
+
- separator (a list of or a singular dash component, string or number; default '/')
|
|
70
|
+
|
|
71
|
+
- style (dict; optional)"""
|
|
72
|
+
_children_props = ['separator']
|
|
73
|
+
_base_nodes = ['separator', 'children']
|
|
74
|
+
_namespace = 'feffery_antd_components'
|
|
75
|
+
_type = 'AntdBreadcrumb'
|
|
76
|
+
@_explicitize_args
|
|
77
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, items=Component.UNDEFINED, separator=Component.UNDEFINED, clickedItem=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
78
|
+
self._prop_names = ['id', 'className', 'clickedItem', 'items', 'key', 'loading_state', 'separator', 'style']
|
|
79
|
+
self._valid_wildcard_attributes = []
|
|
80
|
+
self.available_properties = ['id', 'className', 'clickedItem', 'items', 'key', 'loading_state', 'separator', 'style']
|
|
81
|
+
self.available_wildcard_properties = []
|
|
82
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
83
|
+
_locals = locals()
|
|
84
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
85
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
86
|
+
|
|
87
|
+
super(AntdBreadcrumb, self).__init__(**args)
|