feffery_antd_components 0.2.0-rc15 → 0.2.0-rc16
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/NAMESPACE +1 -0
- package/Project.toml +1 -1
- package/build/lib/feffery_antd_components/AntdAccordion.py +85 -0
- package/build/lib/feffery_antd_components/AntdAccordionItem.py +64 -0
- package/build/lib/feffery_antd_components/AntdAffix.py +55 -0
- package/build/lib/feffery_antd_components/AntdAlert.py +61 -0
- package/build/lib/feffery_antd_components/AntdAnchor.py +61 -0
- package/build/lib/feffery_antd_components/AntdAvatar.py +80 -0
- package/build/lib/feffery_antd_components/AntdBackTop.py +53 -0
- package/build/lib/feffery_antd_components/AntdBadge.py +71 -0
- package/build/lib/feffery_antd_components/AntdBreadcrumb.py +75 -0
- package/build/lib/feffery_antd_components/AntdButton.py +77 -0
- package/build/lib/feffery_antd_components/AntdCalendar.py +76 -0
- package/build/lib/feffery_antd_components/AntdCard.py +87 -0
- package/build/lib/feffery_antd_components/AntdCardGrid.py +53 -0
- package/build/lib/feffery_antd_components/AntdCarousel.py +57 -0
- package/build/lib/feffery_antd_components/AntdCascader.py +107 -0
- package/build/lib/feffery_antd_components/AntdCheckCard.py +61 -0
- package/build/lib/feffery_antd_components/AntdCheckCardGroup.py +61 -0
- package/build/lib/feffery_antd_components/AntdCheckbox.py +72 -0
- package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +80 -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 +94 -0
- package/build/lib/feffery_antd_components/AntdConfigProvider.py +51 -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 +73 -0
- package/build/lib/feffery_antd_components/AntdCustomSkeleton.py +61 -0
- package/build/lib/feffery_antd_components/AntdDatePicker.py +106 -0
- package/build/lib/feffery_antd_components/AntdDateRangePicker.py +106 -0
- package/build/lib/feffery_antd_components/AntdDescriptionItem.py +59 -0
- package/build/lib/feffery_antd_components/AntdDescriptions.py +77 -0
- package/build/lib/feffery_antd_components/AntdDivider.py +65 -0
- package/build/lib/feffery_antd_components/AntdDraggerUpload.py +137 -0
- package/build/lib/feffery_antd_components/AntdDrawer.py +75 -0
- package/build/lib/feffery_antd_components/AntdDropdown.py +99 -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 +73 -0
- package/build/lib/feffery_antd_components/AntdFormItem.py +85 -0
- package/build/lib/feffery_antd_components/AntdHeader.py +51 -0
- package/build/lib/feffery_antd_components/AntdIcon.py +53 -0
- package/build/lib/feffery_antd_components/AntdImage.py +63 -0
- package/build/lib/feffery_antd_components/AntdInput.py +120 -0
- package/build/lib/feffery_antd_components/AntdInputNumber.py +110 -0
- package/build/lib/feffery_antd_components/AntdLayout.py +51 -0
- package/build/lib/feffery_antd_components/AntdMentions.py +79 -0
- package/build/lib/feffery_antd_components/AntdMenu.py +84 -0
- package/build/lib/feffery_antd_components/AntdMessage.py +57 -0
- package/build/lib/feffery_antd_components/AntdModal.py +113 -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 +96 -0
- package/build/lib/feffery_antd_components/AntdParagraph.py +71 -0
- package/build/lib/feffery_antd_components/AntdPasteImage.py +53 -0
- package/build/lib/feffery_antd_components/AntdPictureUpload.py +145 -0
- package/build/lib/feffery_antd_components/AntdPopconfirm.py +83 -0
- package/build/lib/feffery_antd_components/AntdPopover.py +79 -0
- package/build/lib/feffery_antd_components/AntdPopupCard.py +69 -0
- package/build/lib/feffery_antd_components/AntdProgress.py +89 -0
- package/build/lib/feffery_antd_components/AntdRadioGroup.py +90 -0
- package/build/lib/feffery_antd_components/AntdRate.py +61 -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 +88 -0
- package/build/lib/feffery_antd_components/AntdSegmentedColoring.py +88 -0
- package/build/lib/feffery_antd_components/AntdSelect.py +140 -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 +51 -0
- package/build/lib/feffery_antd_components/AntdSkeletonButton.py +53 -0
- package/build/lib/feffery_antd_components/AntdSkeletonImage.py +45 -0
- package/build/lib/feffery_antd_components/AntdSkeletonInput.py +49 -0
- package/build/lib/feffery_antd_components/AntdSlider.py +73 -0
- package/build/lib/feffery_antd_components/AntdSpace.py +61 -0
- package/build/lib/feffery_antd_components/AntdSpin.py +69 -0
- package/build/lib/feffery_antd_components/AntdStatistic.py +75 -0
- package/build/lib/feffery_antd_components/AntdSteps.py +73 -0
- package/build/lib/feffery_antd_components/AntdSwitch.py +78 -0
- package/build/lib/feffery_antd_components/AntdTabPane.py +65 -0
- package/build/lib/feffery_antd_components/AntdTable.py +402 -0
- package/build/lib/feffery_antd_components/AntdTabs.py +110 -0
- package/build/lib/feffery_antd_components/AntdTag.py +55 -0
- package/build/lib/feffery_antd_components/AntdText.py +73 -0
- package/build/lib/feffery_antd_components/AntdTimePicker.py +98 -0
- package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +98 -0
- package/build/lib/feffery_antd_components/AntdTimeline.py +74 -0
- package/build/lib/feffery_antd_components/AntdTitle.py +75 -0
- package/build/lib/feffery_antd_components/AntdTooltip.py +69 -0
- package/build/lib/feffery_antd_components/AntdTransfer.py +100 -0
- package/build/lib/feffery_antd_components/AntdTree.py +108 -0
- package/build/lib/feffery_antd_components/AntdTreeSelect.py +121 -0
- package/build/lib/feffery_antd_components/AntdUpload.py +131 -0
- package/build/lib/feffery_antd_components/AntdWatermark.py +65 -0
- package/build/lib/feffery_antd_components/__init__.py +53 -0
- package/build/lib/feffery_antd_components/_imports_.py +189 -0
- package/build/lib/feffery_antd_components/feffery_antd_components.min.js +1 -0
- package/build/lib/feffery_antd_components/metadata.json +21087 -0
- package/build/lib/feffery_antd_components/package-info.json +89 -0
- package/feffery_antd_components/AntdModal.py +5 -3
- package/feffery_antd_components/AntdSpoiler.py +65 -0
- package/feffery_antd_components/AntdTree.py +5 -3
- package/feffery_antd_components/_imports_.py +2 -0
- package/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/feffery_antd_components/metadata.json +251 -0
- package/feffery_antd_components/package-info.json +2 -2
- package/package.json +2 -2
- package/src/FefferyAntdComponents.jl +4 -3
- package/src/jl/'feffery'_antdmodal.jl +2 -1
- package/src/jl/'feffery'_antdspoiler.jl +41 -0
- package/src/jl/'feffery'_antdtree.jl +2 -1
- package/src/lib/components/AntdDatePicker.react.js +0 -1
- package/src/lib/components/AntdDateRangePicker.react.js +0 -1
- package/src/lib/components/AntdModal.react.js +13 -1
- package/src/lib/components/AntdSpoiler.react.js +136 -0
- package/src/lib/components/AntdTree.react.js +5 -1
- package/src/lib/components/locales.react.js +14 -1
- package/src/lib/components/styles.css +1 -1
- package/src/lib/components/typography/AntdParagraph.react.js +2 -2
- package/src/lib/index.js +3 -1
- package/usage.py +33 -100
package/DESCRIPTION
CHANGED
package/NAMESPACE
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; optional)
|
|
21
|
+
|
|
22
|
+
- className (string; optional)
|
|
23
|
+
|
|
24
|
+
- collapsible (a value equal to: 'header', 'disabled'; optional)
|
|
25
|
+
|
|
26
|
+
- defaultActiveKey (string | list of strings | number | list of numbers; optional)
|
|
27
|
+
|
|
28
|
+
- expandIconPosition (a value equal to: 'left', 'right'; optional)
|
|
29
|
+
|
|
30
|
+
- ghost (boolean; optional)
|
|
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; optional)
|
|
39
|
+
|
|
40
|
+
- collapsible (a value equal to: 'header', 'disabled'; 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,64 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class AntdAccordionItem(Component):
|
|
7
|
+
"""An AntdAccordionItem 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; optional)
|
|
17
|
+
|
|
18
|
+
- collapsible (a value equal to: 'header', 'disabled'; optional)
|
|
19
|
+
|
|
20
|
+
- extra (a list of or a singular dash component, string or number; optional)
|
|
21
|
+
|
|
22
|
+
- forceRender (boolean; optional)
|
|
23
|
+
|
|
24
|
+
- key (string | number; required)
|
|
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
|
+
- showArrow (boolean; optional)
|
|
40
|
+
|
|
41
|
+
- style (dict; optional)
|
|
42
|
+
|
|
43
|
+
- title (a list of or a singular dash component, string or number; optional)"""
|
|
44
|
+
_children_props = ['title', 'extra']
|
|
45
|
+
_base_nodes = ['title', 'extra', 'children']
|
|
46
|
+
_namespace = 'feffery_antd_components'
|
|
47
|
+
_type = 'AntdAccordionItem'
|
|
48
|
+
@_explicitize_args
|
|
49
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.REQUIRED, collapsible=Component.UNDEFINED, title=Component.UNDEFINED, extra=Component.UNDEFINED, showArrow=Component.UNDEFINED, forceRender=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
50
|
+
self._prop_names = ['children', 'id', 'className', 'collapsible', 'extra', 'forceRender', 'key', 'loading_state', 'showArrow', 'style', 'title']
|
|
51
|
+
self._valid_wildcard_attributes = []
|
|
52
|
+
self.available_properties = ['children', 'id', 'className', 'collapsible', 'extra', 'forceRender', 'key', 'loading_state', 'showArrow', 'style', 'title']
|
|
53
|
+
self.available_wildcard_properties = []
|
|
54
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
55
|
+
_locals = locals()
|
|
56
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
57
|
+
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
58
|
+
|
|
59
|
+
for k in ['key']:
|
|
60
|
+
if k not in args:
|
|
61
|
+
raise TypeError(
|
|
62
|
+
'Required argument `' + k + '` was not specified.')
|
|
63
|
+
|
|
64
|
+
super(AntdAccordionItem, 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; 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; optional)
|
|
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,61 @@
|
|
|
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
|
+
- className (string | dict; optional)
|
|
17
|
+
|
|
18
|
+
- closable (boolean; default False)
|
|
19
|
+
|
|
20
|
+
- description (a list of or a singular dash component, string or number; optional)
|
|
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
|
+
- message (a list of or a singular dash component, string or number; optional)
|
|
38
|
+
|
|
39
|
+
- messageRenderMode (a value equal to: 'default', 'loop-text', 'marquee'; default 'default')
|
|
40
|
+
|
|
41
|
+
- showIcon (boolean; optional)
|
|
42
|
+
|
|
43
|
+
- style (dict; optional)
|
|
44
|
+
|
|
45
|
+
- type (a value equal to: 'success', 'info', 'warning', 'error'; optional)"""
|
|
46
|
+
_children_props = ['description', 'message', 'action']
|
|
47
|
+
_base_nodes = ['description', 'message', 'action', 'children']
|
|
48
|
+
_namespace = 'feffery_antd_components'
|
|
49
|
+
_type = 'AntdAlert'
|
|
50
|
+
@_explicitize_args
|
|
51
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, description=Component.UNDEFINED, message=Component.UNDEFINED, type=Component.UNDEFINED, showIcon=Component.UNDEFINED, closable=Component.UNDEFINED, messageRenderMode=Component.UNDEFINED, action=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
52
|
+
self._prop_names = ['id', 'action', 'className', 'closable', 'description', 'key', 'loading_state', 'message', 'messageRenderMode', 'showIcon', 'style', 'type']
|
|
53
|
+
self._valid_wildcard_attributes = []
|
|
54
|
+
self.available_properties = ['id', 'action', 'className', 'closable', 'description', 'key', 'loading_state', 'message', 'messageRenderMode', 'showIcon', 'style', 'type']
|
|
55
|
+
self.available_wildcard_properties = []
|
|
56
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
57
|
+
_locals = locals()
|
|
58
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
59
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
60
|
+
|
|
61
|
+
super(AntdAlert, self).__init__(**args)
|
|
@@ -0,0 +1,61 @@
|
|
|
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; optional)
|
|
15
|
+
|
|
16
|
+
- align (a value equal to: 'left', 'right'; default 'right')
|
|
17
|
+
|
|
18
|
+
- bounds (number; optional)
|
|
19
|
+
|
|
20
|
+
- className (string | dict; optional)
|
|
21
|
+
|
|
22
|
+
- containerId (string; optional)
|
|
23
|
+
|
|
24
|
+
- key (string; optional)
|
|
25
|
+
|
|
26
|
+
- linkDict (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
|
+
- offsetTop (number; optional)
|
|
42
|
+
|
|
43
|
+
- style (dict; optional)
|
|
44
|
+
|
|
45
|
+
- targetOffset (number; optional)"""
|
|
46
|
+
_children_props = []
|
|
47
|
+
_base_nodes = ['children']
|
|
48
|
+
_namespace = 'feffery_antd_components'
|
|
49
|
+
_type = 'AntdAnchor'
|
|
50
|
+
@_explicitize_args
|
|
51
|
+
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, loading_state=Component.UNDEFINED, **kwargs):
|
|
52
|
+
self._prop_names = ['id', 'affix', 'align', 'bounds', 'className', 'containerId', 'key', 'linkDict', 'loading_state', 'offsetTop', 'style', 'targetOffset']
|
|
53
|
+
self._valid_wildcard_attributes = []
|
|
54
|
+
self.available_properties = ['id', 'affix', 'align', 'bounds', 'className', 'containerId', 'key', 'linkDict', 'loading_state', 'offsetTop', 'style', 'targetOffset']
|
|
55
|
+
self.available_wildcard_properties = []
|
|
56
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
57
|
+
_locals = locals()
|
|
58
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
59
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
60
|
+
|
|
61
|
+
super(AntdAnchor, self).__init__(**args)
|
|
@@ -0,0 +1,80 @@
|
|
|
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; optional)
|
|
19
|
+
|
|
20
|
+
- icon (string; optional)
|
|
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
|
+
- mode (a value equal to: 'text', 'icon', 'image'; default 'icon')
|
|
38
|
+
|
|
39
|
+
- shape (a value equal to: 'circle', 'square'; optional)
|
|
40
|
+
|
|
41
|
+
- size (dict; optional)
|
|
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
|
+
- src (string; optional)
|
|
59
|
+
|
|
60
|
+
- srcSet (string; optional)
|
|
61
|
+
|
|
62
|
+
- style (dict; optional)
|
|
63
|
+
|
|
64
|
+
- text (string; optional)"""
|
|
65
|
+
_children_props = []
|
|
66
|
+
_base_nodes = ['children']
|
|
67
|
+
_namespace = 'feffery_antd_components'
|
|
68
|
+
_type = 'AntdAvatar'
|
|
69
|
+
@_explicitize_args
|
|
70
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, gap=Component.UNDEFINED, mode=Component.UNDEFINED, text=Component.UNDEFINED, icon=Component.UNDEFINED, alt=Component.UNDEFINED, src=Component.UNDEFINED, srcSet=Component.UNDEFINED, size=Component.UNDEFINED, shape=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
71
|
+
self._prop_names = ['id', 'alt', 'className', 'gap', 'icon', 'key', 'loading_state', 'mode', 'shape', 'size', 'src', 'srcSet', 'style', 'text']
|
|
72
|
+
self._valid_wildcard_attributes = []
|
|
73
|
+
self.available_properties = ['id', 'alt', 'className', 'gap', 'icon', 'key', 'loading_state', 'mode', 'shape', 'size', 'src', 'srcSet', 'style', 'text']
|
|
74
|
+
self.available_wildcard_properties = []
|
|
75
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
76
|
+
_locals = locals()
|
|
77
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
78
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
79
|
+
|
|
80
|
+
super(AntdAvatar, self).__init__(**args)
|
|
@@ -0,0 +1,53 @@
|
|
|
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
|
+
- duration (number; optional)
|
|
19
|
+
|
|
20
|
+
- key (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
|
+
- visibilityHeight (number; optional)"""
|
|
38
|
+
_children_props = []
|
|
39
|
+
_base_nodes = ['children']
|
|
40
|
+
_namespace = 'feffery_antd_components'
|
|
41
|
+
_type = 'AntdBackTop'
|
|
42
|
+
@_explicitize_args
|
|
43
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, duration=Component.UNDEFINED, visibilityHeight=Component.UNDEFINED, containerId=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
44
|
+
self._prop_names = ['id', 'className', 'containerId', 'duration', 'key', 'loading_state', 'style', 'visibilityHeight']
|
|
45
|
+
self._valid_wildcard_attributes = []
|
|
46
|
+
self.available_properties = ['id', 'className', 'containerId', 'duration', 'key', 'loading_state', 'style', 'visibilityHeight']
|
|
47
|
+
self.available_wildcard_properties = []
|
|
48
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
49
|
+
_locals = locals()
|
|
50
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
51
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
52
|
+
|
|
53
|
+
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; optional)
|
|
17
|
+
|
|
18
|
+
- color (string; optional)
|
|
19
|
+
|
|
20
|
+
- count (number; optional)
|
|
21
|
+
|
|
22
|
+
- dot (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
|
+
- nClicks (number; default 0)
|
|
40
|
+
|
|
41
|
+
- offset (list of numbers; optional)
|
|
42
|
+
|
|
43
|
+
- overflowCount (number; optional)
|
|
44
|
+
|
|
45
|
+
- showZero (boolean; optional)
|
|
46
|
+
|
|
47
|
+
- size (a value equal to: 'default', 'small'; optional)
|
|
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, offset=Component.UNDEFINED, overflowCount=Component.UNDEFINED, showZero=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,75 @@
|
|
|
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; optional)
|
|
15
|
+
|
|
16
|
+
- items (list of dicts; optional)
|
|
17
|
+
|
|
18
|
+
`items` is a list of dicts with keys:
|
|
19
|
+
|
|
20
|
+
- href (string; optional)
|
|
21
|
+
|
|
22
|
+
- icon (string; optional)
|
|
23
|
+
|
|
24
|
+
- menuItems (list of dicts; optional)
|
|
25
|
+
|
|
26
|
+
`menuItems` is a list of dicts with keys:
|
|
27
|
+
|
|
28
|
+
- disabled (boolean; optional)
|
|
29
|
+
|
|
30
|
+
- href (string; optional)
|
|
31
|
+
|
|
32
|
+
- icon (string; optional)
|
|
33
|
+
|
|
34
|
+
- target (string; optional)
|
|
35
|
+
|
|
36
|
+
- title (string; optional)
|
|
37
|
+
|
|
38
|
+
- target (string; optional)
|
|
39
|
+
|
|
40
|
+
- title (string; optional)
|
|
41
|
+
|
|
42
|
+
- key (string; optional)
|
|
43
|
+
|
|
44
|
+
- loading_state (dict; optional)
|
|
45
|
+
|
|
46
|
+
`loading_state` is a dict with keys:
|
|
47
|
+
|
|
48
|
+
- component_name (string; optional):
|
|
49
|
+
Holds the name of the component that is loading.
|
|
50
|
+
|
|
51
|
+
- is_loading (boolean; optional):
|
|
52
|
+
Determines if the component is loading or not.
|
|
53
|
+
|
|
54
|
+
- prop_name (string; optional):
|
|
55
|
+
Holds which property is loading.
|
|
56
|
+
|
|
57
|
+
- separator (string; optional)
|
|
58
|
+
|
|
59
|
+
- style (dict; optional)"""
|
|
60
|
+
_children_props = []
|
|
61
|
+
_base_nodes = ['children']
|
|
62
|
+
_namespace = 'feffery_antd_components'
|
|
63
|
+
_type = 'AntdBreadcrumb'
|
|
64
|
+
@_explicitize_args
|
|
65
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, items=Component.UNDEFINED, separator=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
66
|
+
self._prop_names = ['id', 'className', 'items', 'key', 'loading_state', 'separator', 'style']
|
|
67
|
+
self._valid_wildcard_attributes = []
|
|
68
|
+
self.available_properties = ['id', 'className', 'items', 'key', 'loading_state', 'separator', 'style']
|
|
69
|
+
self.available_wildcard_properties = []
|
|
70
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
71
|
+
_locals = locals()
|
|
72
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
73
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
74
|
+
|
|
75
|
+
super(AntdBreadcrumb, self).__init__(**args)
|