feffery_antd_components 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/DESCRIPTION +1 -1
  2. package/Project.toml +1 -1
  3. package/build/lib/feffery_antd_components/AntdAffix.py +54 -0
  4. package/build/lib/feffery_antd_components/AntdAlert.py +58 -0
  5. package/build/lib/feffery_antd_components/AntdAnchor.py +54 -0
  6. package/build/lib/feffery_antd_components/AntdAvatar.py +79 -0
  7. package/build/lib/feffery_antd_components/AntdBackTop.py +52 -0
  8. package/build/lib/feffery_antd_components/AntdBadge.py +70 -0
  9. package/build/lib/feffery_antd_components/AntdBreadcrumb.py +74 -0
  10. package/build/lib/feffery_antd_components/AntdButton.py +66 -0
  11. package/build/lib/feffery_antd_components/AntdCalendar.py +75 -0
  12. package/build/lib/feffery_antd_components/AntdCard.py +86 -0
  13. package/build/lib/feffery_antd_components/AntdCardGrid.py +52 -0
  14. package/build/lib/feffery_antd_components/AntdCarousel.py +56 -0
  15. package/build/lib/feffery_antd_components/AntdCascader.py +91 -0
  16. package/build/lib/feffery_antd_components/AntdCheckbox.py +71 -0
  17. package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +79 -0
  18. package/build/lib/feffery_antd_components/AntdCol.py +146 -0
  19. package/build/lib/feffery_antd_components/AntdCollapse.py +79 -0
  20. package/build/lib/feffery_antd_components/AntdComment.py +88 -0
  21. package/build/lib/feffery_antd_components/AntdContent.py +50 -0
  22. package/build/lib/feffery_antd_components/AntdCountdown.py +72 -0
  23. package/build/lib/feffery_antd_components/AntdDatePicker.py +93 -0
  24. package/build/lib/feffery_antd_components/AntdDateRangePicker.py +89 -0
  25. package/build/lib/feffery_antd_components/AntdDescriptionItem.py +58 -0
  26. package/build/lib/feffery_antd_components/AntdDescriptions.py +76 -0
  27. package/build/lib/feffery_antd_components/AntdDivider.py +62 -0
  28. package/build/lib/feffery_antd_components/AntdDraggerUpload.py +82 -0
  29. package/build/lib/feffery_antd_components/AntdDrawer.py +72 -0
  30. package/build/lib/feffery_antd_components/AntdDropdown.py +84 -0
  31. package/build/lib/feffery_antd_components/AntdEmpty.py +54 -0
  32. package/build/lib/feffery_antd_components/AntdFooter.py +50 -0
  33. package/build/lib/feffery_antd_components/AntdForm.py +72 -0
  34. package/build/lib/feffery_antd_components/AntdFormItem.py +84 -0
  35. package/build/lib/feffery_antd_components/AntdHeader.py +50 -0
  36. package/build/lib/feffery_antd_components/AntdIcon.py +48 -0
  37. package/build/lib/feffery_antd_components/AntdImage.py +62 -0
  38. package/build/lib/feffery_antd_components/AntdInput.py +99 -0
  39. package/build/lib/feffery_antd_components/AntdInputNumber.py +99 -0
  40. package/build/lib/feffery_antd_components/AntdLayout.py +50 -0
  41. package/build/lib/feffery_antd_components/AntdMentions.py +74 -0
  42. package/build/lib/feffery_antd_components/AntdMenu.py +81 -0
  43. package/build/lib/feffery_antd_components/AntdMessage.py +54 -0
  44. package/build/lib/feffery_antd_components/AntdModal.py +88 -0
  45. package/build/lib/feffery_antd_components/AntdNotification.py +60 -0
  46. package/build/lib/feffery_antd_components/AntdPageHeader.py +62 -0
  47. package/build/lib/feffery_antd_components/AntdPagination.py +95 -0
  48. package/build/lib/feffery_antd_components/AntdParagraph.py +70 -0
  49. package/build/lib/feffery_antd_components/AntdPopconfirm.py +80 -0
  50. package/build/lib/feffery_antd_components/AntdPopover.py +74 -0
  51. package/build/lib/feffery_antd_components/AntdProgress.py +88 -0
  52. package/build/lib/feffery_antd_components/AntdRadio.py +54 -0
  53. package/build/lib/feffery_antd_components/AntdRadioGroup.py +89 -0
  54. package/build/lib/feffery_antd_components/AntdRate.py +60 -0
  55. package/build/lib/feffery_antd_components/AntdResult.py +52 -0
  56. package/build/lib/feffery_antd_components/AntdRibbon.py +54 -0
  57. package/build/lib/feffery_antd_components/AntdRow.py +72 -0
  58. package/build/lib/feffery_antd_components/AntdSelect.py +117 -0
  59. package/build/lib/feffery_antd_components/AntdSider.py +68 -0
  60. package/build/lib/feffery_antd_components/AntdSkeleton.py +86 -0
  61. package/build/lib/feffery_antd_components/AntdSlider.py +68 -0
  62. package/build/lib/feffery_antd_components/AntdSpace.py +60 -0
  63. package/build/lib/feffery_antd_components/AntdSpin.py +68 -0
  64. package/build/lib/feffery_antd_components/AntdStatistic.py +74 -0
  65. package/build/lib/feffery_antd_components/AntdSteps.py +72 -0
  66. package/build/lib/feffery_antd_components/AntdSwitch.py +75 -0
  67. package/build/lib/feffery_antd_components/AntdTabPane.py +66 -0
  68. package/build/lib/feffery_antd_components/AntdTable.py +240 -0
  69. package/build/lib/feffery_antd_components/AntdTabs.py +81 -0
  70. package/build/lib/feffery_antd_components/AntdTag.py +54 -0
  71. package/build/lib/feffery_antd_components/AntdTestLink.py +58 -0
  72. package/build/lib/feffery_antd_components/AntdText.py +72 -0
  73. package/build/lib/feffery_antd_components/AntdTimePicker.py +93 -0
  74. package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +93 -0
  75. package/build/lib/feffery_antd_components/AntdTimeline.py +68 -0
  76. package/build/lib/feffery_antd_components/AntdTitle.py +74 -0
  77. package/build/lib/feffery_antd_components/AntdTooltip.py +64 -0
  78. package/build/lib/feffery_antd_components/AntdTransfer.py +99 -0
  79. package/build/lib/feffery_antd_components/AntdTree.py +107 -0
  80. package/build/lib/feffery_antd_components/AntdTreeSelect.py +103 -0
  81. package/build/lib/feffery_antd_components/AntdTypography.py +50 -0
  82. package/build/lib/feffery_antd_components/AntdUpload.py +80 -0
  83. package/build/lib/feffery_antd_components/Link.py +58 -0
  84. package/build/lib/feffery_antd_components/__init__.py +53 -0
  85. package/build/lib/feffery_antd_components/_imports_.py +157 -0
  86. package/build/lib/feffery_antd_components/feffery_antd_components.min.js +344 -0
  87. package/build/lib/feffery_antd_components/metadata.json +14959 -0
  88. package/build/lib/feffery_antd_components/package-info.json +77 -0
  89. package/feffery_antd_components/AntdTable.py +10 -0
  90. package/feffery_antd_components/feffery_antd_components.min.js +1 -1
  91. package/feffery_antd_components/metadata.json +62 -0
  92. package/feffery_antd_components/package-info.json +1 -1
  93. package/package.json +1 -1
  94. package/src/FefferyAntdComponents.jl +3 -3
  95. package/src/jl/'feffery'_antdtable.jl +7 -1
  96. package/src/lib/components/AntdTable.react.js +20 -1
  97. package/usage.py +2 -1
@@ -0,0 +1,72 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdText(Component):
7
+ """An AntdText component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (a list of or a singular dash component, string or number; optional):
13
+ The content of the tab - will only be displayed if this tab is
14
+ selected.
15
+
16
+ - id (string; optional)
17
+
18
+ - className (string; optional)
19
+
20
+ - code (boolean; optional)
21
+
22
+ - copyable (boolean; optional)
23
+
24
+ - disabled (boolean; optional)
25
+
26
+ - italic (boolean; optional)
27
+
28
+ - keyboard (boolean; 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
+ - locale (a value equal to: 'zh-cn', 'en-us'; default 'zh-cn')
44
+
45
+ - mark (boolean; optional)
46
+
47
+ - strikethrough (boolean; optional)
48
+
49
+ - strong (boolean; optional)
50
+
51
+ - style (dict; optional)
52
+
53
+ - type (a value equal to: 'secondary', 'success', 'warning', 'danger'; optional)
54
+
55
+ - underline (boolean; optional)"""
56
+ @_explicitize_args
57
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, code=Component.UNDEFINED, copyable=Component.UNDEFINED, strikethrough=Component.UNDEFINED, disabled=Component.UNDEFINED, mark=Component.UNDEFINED, strong=Component.UNDEFINED, italic=Component.UNDEFINED, underline=Component.UNDEFINED, keyboard=Component.UNDEFINED, type=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
58
+ self._prop_names = ['children', 'id', 'className', 'code', 'copyable', 'disabled', 'italic', 'keyboard', 'loading_state', 'locale', 'mark', 'strikethrough', 'strong', 'style', 'type', 'underline']
59
+ self._type = 'AntdText'
60
+ self._namespace = 'feffery_antd_components'
61
+ self._valid_wildcard_attributes = []
62
+ self.available_properties = ['children', 'id', 'className', 'code', 'copyable', 'disabled', 'italic', 'keyboard', 'loading_state', 'locale', 'mark', 'strikethrough', 'strong', 'style', 'type', 'underline']
63
+ self.available_wildcard_properties = []
64
+ _explicit_args = kwargs.pop('_explicit_args')
65
+ _locals = locals()
66
+ _locals.update(kwargs) # For wildcard attrs
67
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
68
+ for k in []:
69
+ if k not in args:
70
+ raise TypeError(
71
+ 'Required argument `' + k + '` was not specified.')
72
+ super(AntdText, self).__init__(children=children, **args)
@@ -0,0 +1,93 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdTimePicker(Component):
7
+ """An AntdTimePicker component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - allowClear (boolean; optional)
15
+
16
+ - bordered (boolean; optional)
17
+
18
+ - className (string; optional)
19
+
20
+ - defaultValue (string; optional)
21
+
22
+ - disabled (boolean; optional)
23
+
24
+ - format (string; default 'hh:mm:ss')
25
+
26
+ - hourStep (number; optional)
27
+
28
+ - loading_state (dict; optional):
29
+ Object that holds the loading state object coming from
30
+ dash-renderer.
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
+ - locale (a value equal to: 'zh-cn', 'en-us'; default 'zh-cn')
44
+
45
+ - minuteStep (number; optional)
46
+
47
+ - persisted_props (list of a value equal to: 'value's; default ['value']):
48
+ Properties whose user interactions will persist after refreshing
49
+ the component or the page. Since only `value` is allowed this
50
+ prop can normally be ignored.
51
+
52
+ - persistence (boolean | string | number; optional):
53
+ Used to allow user interactions in this component to be persisted
54
+ when the component - or the page - is refreshed. If `persisted`
55
+ is truthy and hasn't changed from its previous value, a `value`
56
+ that the user has changed while using the app will keep that
57
+ change, as long as the new `value` also matches what was given
58
+ originally. Used in conjunction with `persistence_type`.
59
+
60
+ - persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
61
+ Where persisted user changes will be stored: memory: only kept in
62
+ memory, reset on page refresh. local: window.localStorage, data
63
+ is kept after the browser quit. session: window.sessionStorage,
64
+ data is cleared once the browser quit.
65
+
66
+ - placeholder (string; optional)
67
+
68
+ - secondStep (number; optional)
69
+
70
+ - size (a value equal to: 'small', 'middle', 'large'; optional)
71
+
72
+ - style (dict; default {
73
  width: 220
74
+
75
+ - use12Hours (boolean; optional)
76
+
77
+ - value (string; optional)"""
78
+ @_explicitize_args
79
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, disabled=Component.UNDEFINED, hourStep=Component.UNDEFINED, minuteStep=Component.UNDEFINED, secondStep=Component.UNDEFINED, format=Component.UNDEFINED, use12Hours=Component.UNDEFINED, allowClear=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, placeholder=Component.UNDEFINED, bordered=Component.UNDEFINED, size=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
80
+ self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'format', 'hourStep', 'loading_state', 'locale', 'minuteStep', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'secondStep', 'size', 'style', 'use12Hours', 'value']
81
+ self._type = 'AntdTimePicker'
82
+ self._namespace = 'feffery_antd_components'
83
+ self._valid_wildcard_attributes = []
84
+ self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'format', 'hourStep', 'loading_state', 'locale', 'minuteStep', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'secondStep', 'size', 'style', 'use12Hours', 'value']
85
+ self.available_wildcard_properties = []
86
+ _explicit_args = kwargs.pop('_explicit_args')
87
+ _locals = locals()
88
+ _locals.update(kwargs) # For wildcard attrs
89
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
90
+ for k in []:
91
+ if k not in args:
92
+ raise TypeError(
93
+ 'Required argument `' + k + '` was not specified.')
94
+ super(AntdTimePicker, self).__init__(**args)
@@ -0,0 +1,93 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdTimeRangePicker(Component):
7
+ """An AntdTimeRangePicker component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - allowClear (boolean; optional)
15
+
16
+ - bordered (boolean; optional)
17
+
18
+ - className (string; optional)
19
+
20
+ - defaultValue (list of strings; optional)
21
+
22
+ - disabled (list of booleans; optional)
23
+
24
+ - format (string; default 'hh:mm:ss')
25
+
26
+ - hourStep (number; optional)
27
+
28
+ - loading_state (dict; optional):
29
+ Object that holds the loading state object coming from
30
+ dash-renderer.
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
+ - locale (a value equal to: 'zh-cn', 'en-us'; default 'zh-cn')
44
+
45
+ - minuteStep (number; optional)
46
+
47
+ - persisted_props (list of a value equal to: 'value's; default ['value']):
48
+ Properties whose user interactions will persist after refreshing
49
+ the component or the page. Since only `value` is allowed this
50
+ prop can normally be ignored.
51
+
52
+ - persistence (boolean | string | number; optional):
53
+ Used to allow user interactions in this component to be persisted
54
+ when the component - or the page - is refreshed. If `persisted`
55
+ is truthy and hasn't changed from its previous value, a `value`
56
+ that the user has changed while using the app will keep that
57
+ change, as long as the new `value` also matches what was given
58
+ originally. Used in conjunction with `persistence_type`.
59
+
60
+ - persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
61
+ Where persisted user changes will be stored: memory: only kept in
62
+ memory, reset on page refresh. local: window.localStorage, data
63
+ is kept after the browser quit. session: window.sessionStorage,
64
+ data is cleared once the browser quit.
65
+
66
+ - placeholder (list of strings; optional)
67
+
68
+ - secondStep (number; optional)
69
+
70
+ - size (a value equal to: 'small', 'middle', 'large'; optional)
71
+
72
+ - style (dict; default {
73
  width: 220
74
+
75
+ - use12Hours (boolean; optional)
76
+
77
+ - value (list of strings; optional)"""
78
+ @_explicitize_args
79
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, disabled=Component.UNDEFINED, hourStep=Component.UNDEFINED, minuteStep=Component.UNDEFINED, secondStep=Component.UNDEFINED, format=Component.UNDEFINED, use12Hours=Component.UNDEFINED, allowClear=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, bordered=Component.UNDEFINED, size=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
80
+ self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'format', 'hourStep', 'loading_state', 'locale', 'minuteStep', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'secondStep', 'size', 'style', 'use12Hours', 'value']
81
+ self._type = 'AntdTimeRangePicker'
82
+ self._namespace = 'feffery_antd_components'
83
+ self._valid_wildcard_attributes = []
84
+ self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'format', 'hourStep', 'loading_state', 'locale', 'minuteStep', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'secondStep', 'size', 'style', 'use12Hours', 'value']
85
+ self.available_wildcard_properties = []
86
+ _explicit_args = kwargs.pop('_explicit_args')
87
+ _locals = locals()
88
+ _locals.update(kwargs) # For wildcard attrs
89
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
90
+ for k in []:
91
+ if k not in args:
92
+ raise TypeError(
93
+ 'Required argument `' + k + '` was not specified.')
94
+ super(AntdTimeRangePicker, self).__init__(**args)
@@ -0,0 +1,68 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdTimeline(Component):
7
+ """An AntdTimeline 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
+ - color (string; optional)
21
+
22
+ - content (string; optional)
23
+
24
+ - contentStyle (dict; optional)
25
+
26
+ - icon (string; optional)
27
+
28
+ - iconStyle (dict; optional)
29
+
30
+ - label (string; optional)
31
+
32
+ - loading_state (dict; optional)
33
+
34
+ `loading_state` is a dict with keys:
35
+
36
+ - component_name (string; optional):
37
+ Holds the name of the component that is loading.
38
+
39
+ - is_loading (boolean; optional):
40
+ Determines if the component is loading or not.
41
+
42
+ - prop_name (string; optional):
43
+ Holds which property is loading.
44
+
45
+ - mode (a value equal to: 'left', 'alternate', 'right'; default 'left')
46
+
47
+ - pending (string; optional)
48
+
49
+ - reverse (boolean; optional)
50
+
51
+ - style (dict; optional)"""
52
+ @_explicitize_args
53
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, items=Component.UNDEFINED, mode=Component.UNDEFINED, pending=Component.UNDEFINED, reverse=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
54
+ self._prop_names = ['id', 'className', 'items', 'loading_state', 'mode', 'pending', 'reverse', 'style']
55
+ self._type = 'AntdTimeline'
56
+ self._namespace = 'feffery_antd_components'
57
+ self._valid_wildcard_attributes = []
58
+ self.available_properties = ['id', 'className', 'items', 'loading_state', 'mode', 'pending', 'reverse', 'style']
59
+ self.available_wildcard_properties = []
60
+ _explicit_args = kwargs.pop('_explicit_args')
61
+ _locals = locals()
62
+ _locals.update(kwargs) # For wildcard attrs
63
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
64
+ for k in []:
65
+ if k not in args:
66
+ raise TypeError(
67
+ 'Required argument `' + k + '` was not specified.')
68
+ super(AntdTimeline, 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 AntdTitle(Component):
7
+ """An AntdTitle component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (a list of or a singular dash component, string or number; optional):
13
+ The content of the tab - will only be displayed if this tab is
14
+ selected.
15
+
16
+ - id (string; optional)
17
+
18
+ - className (string; optional)
19
+
20
+ - code (boolean; optional)
21
+
22
+ - copyable (boolean; optional)
23
+
24
+ - disabled (boolean; optional)
25
+
26
+ - italic (boolean; optional)
27
+
28
+ - keyboard (boolean; optional)
29
+
30
+ - level (number; optional)
31
+
32
+ - loading_state (dict; optional)
33
+
34
+ `loading_state` is a dict with keys:
35
+
36
+ - component_name (string; optional):
37
+ Holds the name of the component that is loading.
38
+
39
+ - is_loading (boolean; optional):
40
+ Determines if the component is loading or not.
41
+
42
+ - prop_name (string; optional):
43
+ Holds which property is loading.
44
+
45
+ - locale (a value equal to: 'zh-cn', 'en-us'; default 'zh-cn')
46
+
47
+ - mark (boolean; optional)
48
+
49
+ - strikethrough (boolean; optional)
50
+
51
+ - strong (boolean; optional)
52
+
53
+ - style (dict; optional)
54
+
55
+ - type (a value equal to: 'secondary', 'success', 'warning', 'danger'; optional)
56
+
57
+ - underline (boolean; optional)"""
58
+ @_explicitize_args
59
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, level=Component.UNDEFINED, code=Component.UNDEFINED, copyable=Component.UNDEFINED, strikethrough=Component.UNDEFINED, disabled=Component.UNDEFINED, mark=Component.UNDEFINED, strong=Component.UNDEFINED, italic=Component.UNDEFINED, underline=Component.UNDEFINED, keyboard=Component.UNDEFINED, type=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
60
+ self._prop_names = ['children', 'id', 'className', 'code', 'copyable', 'disabled', 'italic', 'keyboard', 'level', 'loading_state', 'locale', 'mark', 'strikethrough', 'strong', 'style', 'type', 'underline']
61
+ self._type = 'AntdTitle'
62
+ self._namespace = 'feffery_antd_components'
63
+ self._valid_wildcard_attributes = []
64
+ self.available_properties = ['children', 'id', 'className', 'code', 'copyable', 'disabled', 'italic', 'keyboard', 'level', 'loading_state', 'locale', 'mark', 'strikethrough', 'strong', 'style', 'type', 'underline']
65
+ self.available_wildcard_properties = []
66
+ _explicit_args = kwargs.pop('_explicit_args')
67
+ _locals = locals()
68
+ _locals.update(kwargs) # For wildcard attrs
69
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
70
+ for k in []:
71
+ if k not in args:
72
+ raise TypeError(
73
+ 'Required argument `' + k + '` was not specified.')
74
+ super(AntdTitle, 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 AntdTooltip(Component):
7
+ """An AntdTooltip 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
+ - 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
+ - mouseEnterDelay (number; optional)
34
+
35
+ - mouseLeaveDelay (number; optional)
36
+
37
+ - overlayInnerStyle (dict; optional)
38
+
39
+ - overlayStyle (dict; optional)
40
+
41
+ - placement (a value equal to: 'top', 'left', 'right', 'bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight', 'leftTop', 'leftBottom', 'rightTop', 'rightBottom'; optional)
42
+
43
+ - style (dict; optional)
44
+
45
+ - title (string; optional)
46
+
47
+ - trigger (a value equal to: 'hover', 'focus', 'click' | list of a value equal to: 'hover', 'focus', 'click's; optional)"""
48
+ @_explicitize_args
49
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, title=Component.UNDEFINED, placement=Component.UNDEFINED, color=Component.UNDEFINED, mouseEnterDelay=Component.UNDEFINED, mouseLeaveDelay=Component.UNDEFINED, overlayStyle=Component.UNDEFINED, overlayInnerStyle=Component.UNDEFINED, trigger=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
50
+ self._prop_names = ['children', 'id', 'className', 'color', 'loading_state', 'mouseEnterDelay', 'mouseLeaveDelay', 'overlayInnerStyle', 'overlayStyle', 'placement', 'style', 'title', 'trigger']
51
+ self._type = 'AntdTooltip'
52
+ self._namespace = 'feffery_antd_components'
53
+ self._valid_wildcard_attributes = []
54
+ self.available_properties = ['children', 'id', 'className', 'color', 'loading_state', 'mouseEnterDelay', 'mouseLeaveDelay', 'overlayInnerStyle', 'overlayStyle', 'placement', 'style', 'title', 'trigger']
55
+ self.available_wildcard_properties = []
56
+ _explicit_args = kwargs.pop('_explicit_args')
57
+ _locals = locals()
58
+ _locals.update(kwargs) # For wildcard attrs
59
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
60
+ for k in []:
61
+ if k not in args:
62
+ raise TypeError(
63
+ 'Required argument `' + k + '` was not specified.')
64
+ super(AntdTooltip, self).__init__(children=children, **args)
@@ -0,0 +1,99 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdTransfer(Component):
7
+ """An AntdTransfer component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - className (string; optional)
15
+
16
+ - dataSource (list of dicts; optional)
17
+
18
+ `dataSource` is a list of dicts with keys:
19
+
20
+ - key (string | number; optional)
21
+
22
+ - title (string; optional)
23
+
24
+ - disabled (boolean; optional)
25
+
26
+ - height (string; optional)
27
+
28
+ - loading_state (dict; optional)
29
+
30
+ `loading_state` is a dict with keys:
31
+
32
+ - component_name (string; optional):
33
+ Holds the name of the component that is loading.
34
+
35
+ - is_loading (boolean; optional):
36
+ Determines if the component is loading or not.
37
+
38
+ - prop_name (string; optional):
39
+ Holds which property is loading.
40
+
41
+ - locale (a value equal to: 'zh-cn', 'en-us'; default 'zh-cn')
42
+
43
+ - moveDirection (string; optional)
44
+
45
+ - moveKeys (list; optional)
46
+
47
+ - operations (list; optional)
48
+
49
+ - pagination (dict; default False)
50
+
51
+ `pagination` is a boolean | dict with keys:
52
+
53
+ - pageSize (number; optional)
54
+
55
+ - persisted_props (list of a value equal to: 'targetKeys's; default ['targetKeys']):
56
+ Properties whose user interactions will persist after refreshing
57
+ the component or the page. Since only `value` is allowed this
58
+ prop can normally be ignored.
59
+
60
+ - persistence (boolean | string | number; optional):
61
+ Used to allow user interactions in this component to be persisted
62
+ when the component - or the page - is refreshed. If `persisted`
63
+ is truthy and hasn't changed from its previous value, a `value`
64
+ that the user has changed while using the app will keep that
65
+ change, as long as the new `value` also matches what was given
66
+ originally. Used in conjunction with `persistence_type`.
67
+
68
+ - persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
69
+ Where persisted user changes will be stored: memory: only kept in
70
+ memory, reset on page refresh. local: window.localStorage, data
71
+ is kept after the browser quit. session: window.sessionStorage,
72
+ data is cleared once the browser quit.
73
+
74
+ - showSearch (boolean; default False)
75
+
76
+ - showSelectAll (boolean; default True)
77
+
78
+ - style (dict; optional)
79
+
80
+ - targetKeys (list; optional)
81
+
82
+ - titles (list; optional)"""
83
+ @_explicitize_args
84
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, dataSource=Component.UNDEFINED, height=Component.UNDEFINED, pagination=Component.UNDEFINED, operations=Component.UNDEFINED, showSearch=Component.UNDEFINED, showSelectAll=Component.UNDEFINED, titles=Component.UNDEFINED, targetKeys=Component.UNDEFINED, moveDirection=Component.UNDEFINED, moveKeys=Component.UNDEFINED, disabled=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
85
+ self._prop_names = ['id', 'className', 'dataSource', 'disabled', 'height', 'loading_state', 'locale', 'moveDirection', 'moveKeys', 'operations', 'pagination', 'persisted_props', 'persistence', 'persistence_type', 'showSearch', 'showSelectAll', 'style', 'targetKeys', 'titles']
86
+ self._type = 'AntdTransfer'
87
+ self._namespace = 'feffery_antd_components'
88
+ self._valid_wildcard_attributes = []
89
+ self.available_properties = ['id', 'className', 'dataSource', 'disabled', 'height', 'loading_state', 'locale', 'moveDirection', 'moveKeys', 'operations', 'pagination', 'persisted_props', 'persistence', 'persistence_type', 'showSearch', 'showSelectAll', 'style', 'targetKeys', 'titles']
90
+ self.available_wildcard_properties = []
91
+ _explicit_args = kwargs.pop('_explicit_args')
92
+ _locals = locals()
93
+ _locals.update(kwargs) # For wildcard attrs
94
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
95
+ for k in []:
96
+ if k not in args:
97
+ raise TypeError(
98
+ 'Required argument `' + k + '` was not specified.')
99
+ super(AntdTransfer, self).__init__(**args)
@@ -0,0 +1,107 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class AntdTree(Component):
7
+ """An AntdTree component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - checkStrictly (boolean; optional)
15
+
16
+ - checkable (boolean; optional)
17
+
18
+ - checkedKeys (list of dicts; optional)
19
+
20
+ `checkedKeys` is a list | dict with keys:
21
+
22
+ - checked (list; optional)
23
+
24
+ - halfChecked (list; optional)
25
+
26
+ - className (string; optional)
27
+
28
+ - defaultCheckedKeys (list of strings; optional)
29
+
30
+ - defaultExpandAll (boolean; optional)
31
+
32
+ - defaultExpandParent (boolean; optional)
33
+
34
+ - defaultExpandedKeys (list of strings; optional)
35
+
36
+ - defaultSelectedKeys (list of strings; optional)
37
+
38
+ - expandedKeys (list of strings; optional)
39
+
40
+ - height (number; optional)
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
+ - multiple (boolean; optional)
56
+
57
+ - persisted_props (list of a value equal to: 'selectedKeys', 'checkedKeys', 'expandedKeys's; default ['selectedKeys', 'checkedKeys', 'expandedKeys']):
58
+ Properties whose user interactions will persist after refreshing
59
+ the component or the page. Since only `value` is allowed this
60
+ prop can normally be ignored.
61
+
62
+ - persistence (boolean | string | number; optional):
63
+ Used to allow user interactions in this component to be persisted
64
+ when the component - or the page - is refreshed. If `persisted`
65
+ is truthy and hasn't changed from its previous value, a `value`
66
+ that the user has changed while using the app will keep that
67
+ change, as long as the new `value` also matches what was given
68
+ originally. Used in conjunction with `persistence_type`.
69
+
70
+ - persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
71
+ Where persisted user changes will be stored: memory: only kept in
72
+ memory, reset on page refresh. local: window.localStorage, data
73
+ is kept after the browser quit. session: window.sessionStorage,
74
+ data is cleared once the browser quit.
75
+
76
+ - selectable (boolean; optional)
77
+
78
+ - selectedKeys (list; optional)
79
+
80
+ - showIcon (boolean; default True)
81
+
82
+ - showLine (dict; default { 'showLeafIcon': False })
83
+
84
+ `showLine` is a boolean | dict with keys:
85
+
86
+ - showLeafIcon (boolean; optional)
87
+
88
+ - style (dict; optional)
89
+
90
+ - treeData (optional)"""
91
+ @_explicitize_args
92
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, treeData=Component.UNDEFINED, showIcon=Component.UNDEFINED, checkable=Component.UNDEFINED, defaultExpandAll=Component.UNDEFINED, defaultExpandedKeys=Component.UNDEFINED, defaultExpandParent=Component.UNDEFINED, checkStrictly=Component.UNDEFINED, defaultCheckedKeys=Component.UNDEFINED, defaultSelectedKeys=Component.UNDEFINED, multiple=Component.UNDEFINED, selectable=Component.UNDEFINED, showLine=Component.UNDEFINED, selectedKeys=Component.UNDEFINED, checkedKeys=Component.UNDEFINED, expandedKeys=Component.UNDEFINED, height=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
93
+ self._prop_names = ['id', 'checkStrictly', 'checkable', 'checkedKeys', 'className', 'defaultCheckedKeys', 'defaultExpandAll', 'defaultExpandParent', 'defaultExpandedKeys', 'defaultSelectedKeys', 'expandedKeys', 'height', 'loading_state', 'multiple', 'persisted_props', 'persistence', 'persistence_type', 'selectable', 'selectedKeys', 'showIcon', 'showLine', 'style', 'treeData']
94
+ self._type = 'AntdTree'
95
+ self._namespace = 'feffery_antd_components'
96
+ self._valid_wildcard_attributes = []
97
+ self.available_properties = ['id', 'checkStrictly', 'checkable', 'checkedKeys', 'className', 'defaultCheckedKeys', 'defaultExpandAll', 'defaultExpandParent', 'defaultExpandedKeys', 'defaultSelectedKeys', 'expandedKeys', 'height', 'loading_state', 'multiple', 'persisted_props', 'persistence', 'persistence_type', 'selectable', 'selectedKeys', 'showIcon', 'showLine', 'style', 'treeData']
98
+ self.available_wildcard_properties = []
99
+ _explicit_args = kwargs.pop('_explicit_args')
100
+ _locals = locals()
101
+ _locals.update(kwargs) # For wildcard attrs
102
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
103
+ for k in []:
104
+ if k not in args:
105
+ raise TypeError(
106
+ 'Required argument `' + k + '` was not specified.')
107
+ super(AntdTree, self).__init__(**args)