feffery_antd_components 0.3.0-a1 → 0.3.0-a2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/DESCRIPTION +1 -1
  2. package/Project.toml +1 -1
  3. package/build/lib/feffery_antd_components/AntdAccordion.py +85 -0
  4. package/build/lib/feffery_antd_components/AntdAffix.py +55 -0
  5. package/build/lib/feffery_antd_components/AntdAlert.py +63 -0
  6. package/build/lib/feffery_antd_components/AntdAnchor.py +63 -0
  7. package/build/lib/feffery_antd_components/AntdAvatar.py +86 -0
  8. package/build/lib/feffery_antd_components/AntdAvatarGroup.py +74 -0
  9. package/build/lib/feffery_antd_components/AntdBackTop.py +55 -0
  10. package/build/lib/feffery_antd_components/AntdBadge.py +93 -0
  11. package/build/lib/feffery_antd_components/AntdBreadcrumb.py +87 -0
  12. package/build/lib/feffery_antd_components/AntdButton.py +119 -0
  13. package/build/lib/feffery_antd_components/AntdCalendar.py +76 -0
  14. package/build/lib/feffery_antd_components/AntdCard.py +94 -0
  15. package/build/lib/feffery_antd_components/AntdCardGrid.py +53 -0
  16. package/build/lib/feffery_antd_components/AntdCardMeta.py +53 -0
  17. package/build/lib/feffery_antd_components/AntdCarousel.py +63 -0
  18. package/build/lib/feffery_antd_components/AntdCascader.py +118 -0
  19. package/build/lib/feffery_antd_components/AntdCenter.py +53 -0
  20. package/build/lib/feffery_antd_components/AntdCheckCard.py +82 -0
  21. package/build/lib/feffery_antd_components/AntdCheckCardGroup.py +84 -0
  22. package/build/lib/feffery_antd_components/AntdCheckbox.py +82 -0
  23. package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +86 -0
  24. package/build/lib/feffery_antd_components/AntdCol.py +147 -0
  25. package/build/lib/feffery_antd_components/AntdCollapse.py +82 -0
  26. package/build/lib/feffery_antd_components/AntdColorPicker.py +100 -0
  27. package/build/lib/feffery_antd_components/AntdComment.py +98 -0
  28. package/build/lib/feffery_antd_components/AntdCompact.py +55 -0
  29. package/build/lib/feffery_antd_components/AntdConfigProvider.py +80 -0
  30. package/build/lib/feffery_antd_components/AntdContent.py +51 -0
  31. package/build/lib/feffery_antd_components/AntdCopyText.py +55 -0
  32. package/build/lib/feffery_antd_components/AntdCountdown.py +63 -0
  33. package/build/lib/feffery_antd_components/AntdCustomSkeleton.py +61 -0
  34. package/build/lib/feffery_antd_components/AntdDatePicker.py +153 -0
  35. package/build/lib/feffery_antd_components/AntdDateRangePicker.py +153 -0
  36. package/build/lib/feffery_antd_components/AntdDescriptionItem.py +59 -0
  37. package/build/lib/feffery_antd_components/AntdDescriptions.py +95 -0
  38. package/build/lib/feffery_antd_components/AntdDivider.py +85 -0
  39. package/build/lib/feffery_antd_components/AntdDraggerUpload.py +207 -0
  40. package/build/lib/feffery_antd_components/AntdDrawer.py +91 -0
  41. package/build/lib/feffery_antd_components/AntdDropdown.py +126 -0
  42. package/build/lib/feffery_antd_components/AntdEmpty.py +57 -0
  43. package/build/lib/feffery_antd_components/AntdFlex.py +69 -0
  44. package/build/lib/feffery_antd_components/AntdFloatButton.py +71 -0
  45. package/build/lib/feffery_antd_components/AntdFloatButtonGroup.py +71 -0
  46. package/build/lib/feffery_antd_components/AntdFooter.py +51 -0
  47. package/build/lib/feffery_antd_components/AntdForm.py +79 -0
  48. package/build/lib/feffery_antd_components/AntdFormItem.py +89 -0
  49. package/build/lib/feffery_antd_components/AntdHeader.py +51 -0
  50. package/build/lib/feffery_antd_components/AntdIcon.py +62 -0
  51. package/build/lib/feffery_antd_components/AntdImage.py +63 -0
  52. package/build/lib/feffery_antd_components/AntdInput.py +168 -0
  53. package/build/lib/feffery_antd_components/AntdInputNumber.py +114 -0
  54. package/build/lib/feffery_antd_components/AntdLayout.py +51 -0
  55. package/build/lib/feffery_antd_components/AntdMentions.py +91 -0
  56. package/build/lib/feffery_antd_components/AntdMenu.py +90 -0
  57. package/build/lib/feffery_antd_components/AntdMessage.py +61 -0
  58. package/build/lib/feffery_antd_components/AntdModal.py +133 -0
  59. package/build/lib/feffery_antd_components/AntdNotification.py +63 -0
  60. package/build/lib/feffery_antd_components/AntdPageHeader.py +63 -0
  61. package/build/lib/feffery_antd_components/AntdPagination.py +104 -0
  62. package/build/lib/feffery_antd_components/AntdParagraph.py +99 -0
  63. package/build/lib/feffery_antd_components/AntdPictureUpload.py +213 -0
  64. package/build/lib/feffery_antd_components/AntdPopconfirm.py +117 -0
  65. package/build/lib/feffery_antd_components/AntdPopover.py +81 -0
  66. package/build/lib/feffery_antd_components/AntdPopupCard.py +69 -0
  67. package/build/lib/feffery_antd_components/AntdProgress.py +105 -0
  68. package/build/lib/feffery_antd_components/AntdQRCode.py +88 -0
  69. package/build/lib/feffery_antd_components/AntdRadioGroup.py +96 -0
  70. package/build/lib/feffery_antd_components/AntdRate.py +84 -0
  71. package/build/lib/feffery_antd_components/AntdResult.py +55 -0
  72. package/build/lib/feffery_antd_components/AntdRibbon.py +55 -0
  73. package/build/lib/feffery_antd_components/AntdRow.py +73 -0
  74. package/build/lib/feffery_antd_components/AntdSegmented.py +94 -0
  75. package/build/lib/feffery_antd_components/AntdSegmentedColoring.py +92 -0
  76. package/build/lib/feffery_antd_components/AntdSelect.py +159 -0
  77. package/build/lib/feffery_antd_components/AntdSider.py +69 -0
  78. package/build/lib/feffery_antd_components/AntdSkeleton.py +87 -0
  79. package/build/lib/feffery_antd_components/AntdSkeletonAvatar.py +53 -0
  80. package/build/lib/feffery_antd_components/AntdSkeletonButton.py +55 -0
  81. package/build/lib/feffery_antd_components/AntdSkeletonImage.py +47 -0
  82. package/build/lib/feffery_antd_components/AntdSkeletonInput.py +51 -0
  83. package/build/lib/feffery_antd_components/AntdSlider.py +122 -0
  84. package/build/lib/feffery_antd_components/AntdSpace.py +79 -0
  85. package/build/lib/feffery_antd_components/AntdSpin.py +71 -0
  86. package/build/lib/feffery_antd_components/AntdSpoiler.py +67 -0
  87. package/build/lib/feffery_antd_components/AntdStatistic.py +63 -0
  88. package/build/lib/feffery_antd_components/AntdSteps.py +81 -0
  89. package/build/lib/feffery_antd_components/AntdSwitch.py +86 -0
  90. package/build/lib/feffery_antd_components/AntdTabPane.py +65 -0
  91. package/build/lib/feffery_antd_components/AntdTable.py +562 -0
  92. package/build/lib/feffery_antd_components/AntdTabs.py +141 -0
  93. package/build/lib/feffery_antd_components/AntdTag.py +55 -0
  94. package/build/lib/feffery_antd_components/AntdText.py +96 -0
  95. package/build/lib/feffery_antd_components/AntdTimePicker.py +115 -0
  96. package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +115 -0
  97. package/build/lib/feffery_antd_components/AntdTimeline.py +72 -0
  98. package/build/lib/feffery_antd_components/AntdTitle.py +94 -0
  99. package/build/lib/feffery_antd_components/AntdTooltip.py +77 -0
  100. package/build/lib/feffery_antd_components/AntdTour.py +154 -0
  101. package/build/lib/feffery_antd_components/AntdTransfer.py +112 -0
  102. package/build/lib/feffery_antd_components/AntdTree.py +152 -0
  103. package/build/lib/feffery_antd_components/AntdTreeSelect.py +138 -0
  104. package/build/lib/feffery_antd_components/AntdUpload.py +201 -0
  105. package/build/lib/feffery_antd_components/AntdWatermark.py +75 -0
  106. package/build/lib/feffery_antd_components/__init__.py +85 -0
  107. package/build/lib/feffery_antd_components/_imports_.py +209 -0
  108. package/build/lib/feffery_antd_components/alias.py +195 -0
  109. package/build/lib/feffery_antd_components/async-antd_table.js +53 -0
  110. package/build/lib/feffery_antd_components/async-data_display.js +20 -0
  111. package/build/lib/feffery_antd_components/async-data_entry.js +87 -0
  112. package/build/lib/feffery_antd_components/async-upload.js +17 -0
  113. package/build/lib/feffery_antd_components/feffery_antd_components.min.js +153 -0
  114. package/build/lib/feffery_antd_components/metadata.json +29311 -0
  115. package/build/lib/feffery_antd_components/package-info.json +93 -0
  116. package/build/lib/feffery_antd_components/utils.py +211 -0
  117. package/feffery_antd_components/feffery_antd_components.min.js +4 -4
  118. package/feffery_antd_components/package-info.json +1 -1
  119. package/package.json +1 -1
  120. package/src/lib/components/navigation/AntdDropdown.react.js +49 -54
  121. package/usage.py +9 -3
@@ -0,0 +1,89 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdFormItem(Component):
7
+ """An AntdFormItem 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 | dict; optional)
19
+
20
+ - colon (boolean; optional)
21
+
22
+ - extra (a list of or a singular dash component, string or number; optional)
23
+
24
+ - help (a list of or a singular dash component, string or number; optional)
25
+
26
+ - hidden (boolean; default False)
27
+
28
+ - key (string; optional)
29
+
30
+ - label (a list of or a singular dash component, string or number; optional)
31
+
32
+ - labelAlign (a value equal to: 'left', 'right'; optional)
33
+
34
+ - labelCol (dict; optional)
35
+
36
+ `labelCol` is a dict with keys:
37
+
38
+ - flex (string | number; optional)
39
+
40
+ - offset (number; optional)
41
+
42
+ - span (number; 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
+ - required (boolean; default False)
58
+
59
+ - style (dict; optional)
60
+
61
+ - tooltip (a list of or a singular dash component, string or number; optional)
62
+
63
+ - validateStatus (a value equal to: 'success', 'warning', 'error', 'validating'; optional)
64
+
65
+ - wrapperCol (dict; optional)
66
+
67
+ `wrapperCol` is a dict with keys:
68
+
69
+ - flex (string | number; optional)
70
+
71
+ - offset (number; optional)
72
+
73
+ - span (number; optional)"""
74
+ _children_props = ['label', 'tooltip', 'extra', 'help']
75
+ _base_nodes = ['label', 'tooltip', 'extra', 'help', 'children']
76
+ _namespace = 'feffery_antd_components'
77
+ _type = 'AntdFormItem'
78
+ @_explicitize_args
79
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, required=Component.UNDEFINED, labelCol=Component.UNDEFINED, colon=Component.UNDEFINED, wrapperCol=Component.UNDEFINED, label=Component.UNDEFINED, labelAlign=Component.UNDEFINED, tooltip=Component.UNDEFINED, extra=Component.UNDEFINED, validateStatus=Component.UNDEFINED, help=Component.UNDEFINED, hidden=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
80
+ self._prop_names = ['children', 'id', 'className', 'colon', 'extra', 'help', 'hidden', 'key', 'label', 'labelAlign', 'labelCol', 'loading_state', 'required', 'style', 'tooltip', 'validateStatus', 'wrapperCol']
81
+ self._valid_wildcard_attributes = []
82
+ self.available_properties = ['children', 'id', 'className', 'colon', 'extra', 'help', 'hidden', 'key', 'label', 'labelAlign', 'labelCol', 'loading_state', 'required', 'style', 'tooltip', 'validateStatus', 'wrapperCol']
83
+ self.available_wildcard_properties = []
84
+ _explicit_args = kwargs.pop('_explicit_args')
85
+ _locals = locals()
86
+ _locals.update(kwargs) # For wildcard attrs and excess named props
87
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
88
+
89
+ super(AntdFormItem, self).__init__(children=children, **args)
@@ -0,0 +1,51 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdHeader(Component):
7
+ """An AntdHeader 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 | dict; 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
+ _children_props = []
37
+ _base_nodes = ['children']
38
+ _namespace = 'feffery_antd_components'
39
+ _type = 'AntdHeader'
40
+ @_explicitize_args
41
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
42
+ self._prop_names = ['children', 'id', 'className', 'key', 'loading_state', 'style']
43
+ self._valid_wildcard_attributes = []
44
+ self.available_properties = ['children', 'id', 'className', 'key', 'loading_state', 'style']
45
+ self.available_wildcard_properties = []
46
+ _explicit_args = kwargs.pop('_explicit_args')
47
+ _locals = locals()
48
+ _locals.update(kwargs) # For wildcard attrs and excess named props
49
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
50
+
51
+ super(AntdHeader, self).__init__(children=children, **args)
@@ -0,0 +1,62 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdIcon(Component):
7
+ """An AntdIcon component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional):
13
+ Component id.
14
+
15
+ - className (string | dict; optional):
16
+ CSS class name.
17
+
18
+ - debounceWait (number; default 200):
19
+ Configures the debounce wait time (in milliseconds) for value
20
+ change updates, default is 0.
21
+
22
+ - icon (string; optional):
23
+ Specifies the icon type.
24
+
25
+ - key (string; optional):
26
+ A unique identifier key used for refreshing assistance.
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
+ - nClicks (number; default 0):
42
+ Records the number of times the button has been clicked since
43
+ rendering, default is 0.
44
+
45
+ - style (dict; optional):
46
+ Custom CSS styles."""
47
+ _children_props = []
48
+ _base_nodes = ['children']
49
+ _namespace = 'feffery_antd_components'
50
+ _type = 'AntdIcon'
51
+ @_explicitize_args
52
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, icon=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, nClicks=Component.UNDEFINED, debounceWait=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
53
+ self._prop_names = ['id', 'className', 'debounceWait', 'icon', 'key', 'loading_state', 'nClicks', 'style']
54
+ self._valid_wildcard_attributes = []
55
+ self.available_properties = ['id', 'className', 'debounceWait', 'icon', 'key', 'loading_state', 'nClicks', 'style']
56
+ self.available_wildcard_properties = []
57
+ _explicit_args = kwargs.pop('_explicit_args')
58
+ _locals = locals()
59
+ _locals.update(kwargs) # For wildcard attrs and excess named props
60
+ args = {k: _locals[k] for k in _explicit_args}
61
+
62
+ super(AntdIcon, 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 AntdImage(Component):
7
+ """An AntdImage component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - alt (string; optional)
15
+
16
+ - className (string | dict; optional)
17
+
18
+ - fallback (string; default `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMIAAADDCAYAAADQvc6UAAABRWlDQ1BJQ0MgUHJvZmlsZQAAKJFjYGASSSwoyGFhYGDIzSspCnJ3UoiIjFJgf8LAwSDCIMogwMCcmFxc4BgQ4ANUwgCjUcG3awyMIPqyLsis7PPOq3QdDFcvjV3jOD1boQVTPQrgSkktTgbSf4A4LbmgqISBgTEFyFYuLykAsTuAbJEioKOA7DkgdjqEvQHEToKwj4DVhAQ5A9k3gGyB5IxEoBmML4BsnSQk8XQkNtReEOBxcfXxUQg1Mjc0dyHgXNJBSWpFCYh2zi+oLMpMzyhRcASGUqqCZ16yno6CkYGRAQMDKMwhqj/fAIcloxgHQqxAjIHBEugw5sUIsSQpBobtQPdLciLEVJYzMPBHMDBsayhILEqEO4DxG0txmrERhM29nYGBddr//5/DGRjYNRkY/l7////39v///y4Dmn+LgeHANwDrkl1AuO+pmgAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAwqADAAQAAAABAAAAwwAAAAD9b/HnAAAHlklEQVR4Ae3dP3PTWBSGcbGzM6GCKqlIBRV0dHRJFarQ0eUT8LH4BnRU0NHR0UEFVdIlFRV7TzRksomPY8uykTk/zewQfKw/9znv4yvJynLv4uLiV2dBoDiBf4qP3/ARuCRABEFAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghgg0Aj8i0JO4OzsrPv69Wv+hi2qPHr0qNvf39+iI97soRIh4f3z58/u7du3SXX7Xt7Z2enevHmzfQe+oSN2apSAPj09TSrb+XKI/f379+08+A0cNRE2ANkupk+ACNPvkSPcAAEibACyXUyfABGm3yNHuAECRNgAZLuYPgEirKlHu7u7XdyytGwHAd8jjNyng4OD7vnz51dbPT8/7z58+NB9+/bt6jU/TI+AGWHEnrx48eJ/EsSmHzx40L18+fLyzxF3ZVMjEyDCiEDjMYZZS5wiPXnyZFbJaxMhQIQRGzHvWR7XCyOCXsOmiDAi1HmPMMQjDpbpEiDCiL358eNHurW/5SnWdIBbXiDCiA38/Pnzrce2YyZ4//59F3ePLNMl4PbpiL2J0L979+7yDtHDhw8vtzzvdGnEXdvUigSIsCLAWavHp/+qM0BcXMd/q25n1vF57TYBp0a3mUzilePj4+7k5KSLb6gt6ydAhPUzXnoPR0dHl79WGTNCfBnn1uvSCJdegQhLI1vvCk+fPu2ePXt2tZOYEV6/fn31dz+shwAR1sP1cqvLntbEN9MxA9xcYjsxS1jWR4AIa2Ibzx0tc44fYX/16lV6NDFLXH+YL32jwiACRBiEbf5KcXoTIsQSpzXx4N28Ja4BQoK7rgXiydbHjx/P25TaQAJEGAguWy0+2Q8PD6/Ki4R8EVl+bzBOnZY95fq9rj9zAkTI2SxdidBHqG9+skdw43borCXO/ZcJdraPWdv22uIEiLA4q7nvvCug8WTqzQveOH26fodo7g6uFe/a17W3+nFBAkRYENRdb1vkkz1CH9cPsVy/jrhr27PqMYvENYNlHAIesRiBYwRy0V+8iXP8+/fvX11Mr7L7ECueb/r48eMqm7FuI2BGWDEG8cm+7G3NEOfmdcTQw4h9/55lhm7DekRYKQPZF2ArbXTAyu4kDYB2YxUzwg0gi/41ztHnfQG26HbGel/crVrm7tNY+/1btkOEAZ2M05r4FB7r9GbAIdxaZYrHdOsgJ/wCEQY0J74TmOKnbxxT9n3FgGGWWsVdowHtjt9Nnvf7yQM2aZU/TIAIAxrw6dOnAWtZZcoEnBpNuTuObWMEiLAx1HY0ZQJEmHJ3HNvGCBBhY6jtaMoEiJB0Z29vL6ls58vxPcO8/zfrdo5qvKO+d3Fx8Wu8zf1dW4p/cPzLly/dtv9Ts/EbcvGAHhHyfBIhZ6NSiIBTo0LNNtScABFyNiqFCBChULMNNSdAhJyNSiECRCjUbEPNCRAhZ6NSiAARCjXbUHMCRMjZqBQiQIRCzTbUnAARcjYqhQgQoVCzDTUnQIScjUohAkQo1GxDzQkQIWejUogAEQo121BzAkTI2agUIkCEQs021JwAEXI2KoUIEKFQsw01J0CEnI1KIQJEKNRsQ80JECFno1KIABEKNdtQcwJEyNmoFCJAhELNNtScABFyNiqFCBChULMNNSdAhJyNSiECRCjUbEPNCRAhZ6NSiAARCjXbUHMCRMjZqBQiQIRCzTbUnAARcjYqhQgQoVCzDTUnQIScjUohAkQo1GxDzQkQIWejUogAEQo121BzAkTI2agUIkCEQs021JwAEXI2KoUIEKFQsw01J0CEnI1KIQJEKNRsQ80JECFno1KIABEKNdtQcwJEyNmoFCJAhELNNtScABFyNiqFCBChULMNNSdAhJyNSiECRCjUbEPNCRAhZ6NSiAARCjXbUHMCRMjZqBQiQIRCzTbUnAARcjYqhQgQoVCzDTUnQIScjUohAkQo1GxDzQkQIWejUogAEQo121BzAkTI2agUIkCEQs021JwAEXI2KoUIEKFQsw01J0CEnI1KIQJEKNRsQ80JECFno1KIABEKNdtQcwJEyNmoFCJAhELNNtScABFyNiqFCBChULMNNSdAhJyNSiEC/wGgKKC4YMA4TAAAAABJRU5ErkJggg==`)
19
+
20
+ - height (number | 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
+ - locale (a value equal to: 'zh-cn', 'en-us'; default 'zh-cn')
38
+
39
+ - multiImageMode (a value equal to: 'fold', 'unfold'; default 'fold')
40
+
41
+ - preview (boolean; default True)
42
+
43
+ - src (string | list of strings; optional)
44
+
45
+ - style (dict; optional)
46
+
47
+ - width (number | string; optional)"""
48
+ _children_props = []
49
+ _base_nodes = ['children']
50
+ _namespace = 'feffery_antd_components'
51
+ _type = 'AntdImage'
52
+ @_explicitize_args
53
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, alt=Component.UNDEFINED, width=Component.UNDEFINED, height=Component.UNDEFINED, src=Component.UNDEFINED, fallback=Component.UNDEFINED, multiImageMode=Component.UNDEFINED, preview=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
54
+ self._prop_names = ['id', 'alt', 'className', 'fallback', 'height', 'key', 'loading_state', 'locale', 'multiImageMode', 'preview', 'src', 'style', 'width']
55
+ self._valid_wildcard_attributes = []
56
+ self.available_properties = ['id', 'alt', 'className', 'fallback', 'height', 'key', 'loading_state', 'locale', 'multiImageMode', 'preview', 'src', 'style', 'width']
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(AntdImage, self).__init__(**args)
@@ -0,0 +1,168 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdInput(Component):
7
+ """An AntdInput component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - addonAfter (a list of or a singular dash component, string or number; optional)
15
+
16
+ - addonBefore (a list of or a singular dash component, string or number; optional)
17
+
18
+ - allowClear (boolean; default False)
19
+
20
+ - autoComplete (a value equal to: 'off', 'on'; default 'on')
21
+
22
+ - autoSize (dict; default False)
23
+
24
+ `autoSize` is a boolean | dict with keys:
25
+
26
+ - maxRows (number; optional)
27
+
28
+ - minRows (number; optional)
29
+
30
+ - batchPropsNames (list of strings; optional)
31
+
32
+ - batchPropsValues (dict; optional)
33
+
34
+ - bordered (boolean; default True)
35
+
36
+ - className (string | dict; optional)
37
+
38
+ - classNames (dict; optional):
39
+ 细分控制子元素css类.
40
+
41
+ `classNames` is a dict with keys:
42
+
43
+ - count (string; optional):
44
+ 控制文字计数元素css类.
45
+
46
+ - input (string; optional):
47
+ 控制input元素css类.
48
+
49
+ - prefix (string; optional):
50
+ 控制前缀容器css类.
51
+
52
+ - suffix (string; optional):
53
+ 控制后缀容器css类.
54
+
55
+ - textarea (string; optional):
56
+ 控制textarea元素css类.
57
+
58
+ - countFormat (string; optional)
59
+
60
+ - debounceValue (string; optional)
61
+
62
+ - debounceWait (number; default 200)
63
+
64
+ - defaultValue (string; optional)
65
+
66
+ - disabled (boolean; default False)
67
+
68
+ - emptyAsNone (boolean; default False)
69
+
70
+ - key (string; optional)
71
+
72
+ - loading_state (dict; optional)
73
+
74
+ `loading_state` is a dict with keys:
75
+
76
+ - component_name (string; optional):
77
+ Holds the name of the component that is loading.
78
+
79
+ - is_loading (boolean; optional):
80
+ Determines if the component is loading or not.
81
+
82
+ - prop_name (string; optional):
83
+ Holds which property is loading.
84
+
85
+ - maxLength (number; optional)
86
+
87
+ - md5Value (string; optional)
88
+
89
+ - mode (a value equal to: 'default', 'search', 'text-area', 'password'; default 'default')
90
+
91
+ - nClicksSearch (number; default 0)
92
+
93
+ - nSubmit (number; default 0)
94
+
95
+ - passwordUseMd5 (boolean; default False)
96
+
97
+ - persisted_props (list of a value equal to: 'value', 'md5Value's; default ['value', 'md5Value']):
98
+ Properties whose user interactions will persist after refreshing
99
+ the component or the page. Since only `value` is allowed this
100
+ prop can normally be ignored.
101
+
102
+ - persistence (boolean | string | number; optional):
103
+ Used to allow user interactions in this component to be persisted
104
+ when the component - or the page - is refreshed. If `persisted`
105
+ is truthy and hasn't changed from its previous value, a `value`
106
+ that the user has changed while using the app will keep that
107
+ change, as long as the new `value` also matches what was given
108
+ originally. Used in conjunction with `persistence_type`.
109
+
110
+ - persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
111
+ Where persisted user changes will be stored: memory: only kept in
112
+ memory, reset on page refresh. local: window.localStorage, data
113
+ is kept after the browser quit. session: window.sessionStorage,
114
+ data is cleared once the browser quit.
115
+
116
+ - placeholder (string; optional)
117
+
118
+ - prefix (a list of or a singular dash component, string or number; optional)
119
+
120
+ - readOnly (boolean; optional)
121
+
122
+ - showCount (boolean; default False)
123
+
124
+ - size (a value equal to: 'small', 'middle', 'large'; default 'middle')
125
+
126
+ - status (a value equal to: 'error', 'warning'; optional)
127
+
128
+ - style (dict; optional)
129
+
130
+ - styles (dict; optional):
131
+ 细分控制子元素css样式.
132
+
133
+ `styles` is a dict with keys:
134
+
135
+ - count (dict; optional):
136
+ 控制文字计数元素css样式.
137
+
138
+ - input (dict; optional):
139
+ 控制input元素css样式.
140
+
141
+ - prefix (dict; optional):
142
+ 控制前缀容器css样式.
143
+
144
+ - suffix (dict; optional):
145
+ 控制后缀容器css样式.
146
+
147
+ - textarea (dict; optional):
148
+ 控制textarea元素css样式.
149
+
150
+ - suffix (a list of or a singular dash component, string or number; optional)
151
+
152
+ - value (string; optional)"""
153
+ _children_props = ['addonBefore', 'addonAfter', 'prefix', 'suffix']
154
+ _base_nodes = ['addonBefore', 'addonAfter', 'prefix', 'suffix', 'children']
155
+ _namespace = 'feffery_antd_components'
156
+ _type = 'AntdInput'
157
+ @_explicitize_args
158
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, styles=Component.UNDEFINED, classNames=Component.UNDEFINED, key=Component.UNDEFINED, mode=Component.UNDEFINED, autoComplete=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, md5Value=Component.UNDEFINED, debounceValue=Component.UNDEFINED, passwordUseMd5=Component.UNDEFINED, debounceWait=Component.UNDEFINED, addonBefore=Component.UNDEFINED, addonAfter=Component.UNDEFINED, prefix=Component.UNDEFINED, suffix=Component.UNDEFINED, maxLength=Component.UNDEFINED, showCount=Component.UNDEFINED, countFormat=Component.UNDEFINED, autoSize=Component.UNDEFINED, nSubmit=Component.UNDEFINED, nClicksSearch=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, emptyAsNone=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
159
+ self._prop_names = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'autoComplete', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'classNames', 'countFormat', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'styles', 'suffix', 'value']
160
+ self._valid_wildcard_attributes = []
161
+ self.available_properties = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'autoComplete', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'classNames', 'countFormat', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'styles', 'suffix', 'value']
162
+ self.available_wildcard_properties = []
163
+ _explicit_args = kwargs.pop('_explicit_args')
164
+ _locals = locals()
165
+ _locals.update(kwargs) # For wildcard attrs and excess named props
166
+ args = {k: _locals[k] for k in _explicit_args}
167
+
168
+ super(AntdInput, self).__init__(**args)
@@ -0,0 +1,114 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdInputNumber(Component):
7
+ """An AntdInputNumber component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - addonAfter (a list of or a singular dash component, string or number; optional)
15
+
16
+ - addonBefore (a list of or a singular dash component, string or number; optional)
17
+
18
+ - autoFocus (boolean; default False)
19
+
20
+ - batchPropsNames (list of strings; optional)
21
+
22
+ - batchPropsValues (dict; optional)
23
+
24
+ - bordered (boolean; default True)
25
+
26
+ - className (string | dict; optional)
27
+
28
+ - controls (boolean; default True)
29
+
30
+ - debounceValue (number | string; optional)
31
+
32
+ - debounceWait (number; default 200)
33
+
34
+ - defaultValue (number | string; optional)
35
+
36
+ - disabled (boolean; default False)
37
+
38
+ - key (string; optional)
39
+
40
+ - keyboard (boolean; default True)
41
+
42
+ - loading_state (dict; optional)
43
+
44
+ `loading_state` is a dict with keys:
45
+
46
+ - component_name (string; optional):
47
+ Holds the name of the component that is loading.
48
+
49
+ - is_loading (boolean; optional):
50
+ Determines if the component is loading or not.
51
+
52
+ - prop_name (string; optional):
53
+ Holds which property is loading.
54
+
55
+ - max (number | string; optional)
56
+
57
+ - min (number | string; optional)
58
+
59
+ - nSubmit (number; default 0)
60
+
61
+ - persisted_props (list of a value equal to: 'value's; default ['value']):
62
+ Properties whose user interactions will persist after refreshing
63
+ the component or the page. Since only `value` is allowed this
64
+ prop can normally be ignored.
65
+
66
+ - persistence (boolean | string | number; optional):
67
+ Used to allow user interactions in this component to be persisted
68
+ when the component - or the page - is refreshed. If `persisted`
69
+ is truthy and hasn't changed from its previous value, a `value`
70
+ that the user has changed while using the app will keep that
71
+ change, as long as the new `value` also matches what was given
72
+ originally. Used in conjunction with `persistence_type`.
73
+
74
+ - persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
75
+ Where persisted user changes will be stored: memory: only kept in
76
+ memory, reset on page refresh. local: window.localStorage, data
77
+ is kept after the browser quit. session: window.sessionStorage,
78
+ data is cleared once the browser quit.
79
+
80
+ - placeholder (string; optional)
81
+
82
+ - precision (number; optional)
83
+
84
+ - prefix (a list of or a singular dash component, string or number; optional)
85
+
86
+ - readOnly (boolean; optional)
87
+
88
+ - size (a value equal to: 'small', 'middle', 'large'; default 'middle')
89
+
90
+ - status (a value equal to: 'error', 'warning'; optional)
91
+
92
+ - step (number | string; optional)
93
+
94
+ - stringMode (boolean; default False)
95
+
96
+ - style (dict; optional)
97
+
98
+ - value (number | string; optional)"""
99
+ _children_props = ['addonBefore', 'addonAfter', 'prefix']
100
+ _base_nodes = ['addonBefore', 'addonAfter', 'prefix', 'children']
101
+ _namespace = 'feffery_antd_components'
102
+ _type = 'AntdInputNumber'
103
+ @_explicitize_args
104
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, addonBefore=Component.UNDEFINED, addonAfter=Component.UNDEFINED, autoFocus=Component.UNDEFINED, prefix=Component.UNDEFINED, controls=Component.UNDEFINED, keyboard=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, precision=Component.UNDEFINED, stringMode=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, debounceValue=Component.UNDEFINED, debounceWait=Component.UNDEFINED, nSubmit=Component.UNDEFINED, status=Component.UNDEFINED, readOnly=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
105
+ self._prop_names = ['id', 'addonAfter', 'addonBefore', 'autoFocus', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'controls', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'key', 'keyboard', 'loading_state', 'max', 'min', 'nSubmit', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'precision', 'prefix', 'readOnly', 'size', 'status', 'step', 'stringMode', 'style', 'value']
106
+ self._valid_wildcard_attributes = []
107
+ self.available_properties = ['id', 'addonAfter', 'addonBefore', 'autoFocus', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'controls', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'key', 'keyboard', 'loading_state', 'max', 'min', 'nSubmit', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'precision', 'prefix', 'readOnly', 'size', 'status', 'step', 'stringMode', 'style', 'value']
108
+ self.available_wildcard_properties = []
109
+ _explicit_args = kwargs.pop('_explicit_args')
110
+ _locals = locals()
111
+ _locals.update(kwargs) # For wildcard attrs and excess named props
112
+ args = {k: _locals[k] for k in _explicit_args}
113
+
114
+ super(AntdInputNumber, self).__init__(**args)
@@ -0,0 +1,51 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdLayout(Component):
7
+ """An AntdLayout 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 | dict; 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
+ _children_props = []
37
+ _base_nodes = ['children']
38
+ _namespace = 'feffery_antd_components'
39
+ _type = 'AntdLayout'
40
+ @_explicitize_args
41
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
42
+ self._prop_names = ['children', 'id', 'className', 'key', 'loading_state', 'style']
43
+ self._valid_wildcard_attributes = []
44
+ self.available_properties = ['children', 'id', 'className', 'key', 'loading_state', 'style']
45
+ self.available_wildcard_properties = []
46
+ _explicit_args = kwargs.pop('_explicit_args')
47
+ _locals = locals()
48
+ _locals.update(kwargs) # For wildcard attrs and excess named props
49
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
50
+
51
+ super(AntdLayout, self).__init__(children=children, **args)