feffery_antd_components 0.2.10-rc10 → 0.2.10-rc11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DESCRIPTION +1 -1
- package/Project.toml +1 -1
- package/build/lib/feffery_antd_components/AntdDatePicker.py +9 -5
- package/build/lib/feffery_antd_components/AntdDateRangePicker.py +7 -5
- package/build/lib/feffery_antd_components/AntdForm.py +9 -3
- package/build/lib/feffery_antd_components/AntdFormItem.py +5 -1
- package/build/lib/feffery_antd_components/AntdPagination.py +5 -3
- package/build/lib/feffery_antd_components/AntdTable.py +2 -0
- package/build/lib/feffery_antd_components/AntdTabs.py +7 -3
- package/build/lib/feffery_antd_components/AntdTimePicker.py +9 -5
- package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +7 -5
- package/build/lib/feffery_antd_components/AntdTree.py +17 -5
- package/build/lib/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/build/lib/feffery_antd_components/metadata.json +192 -5
- package/build/lib/feffery_antd_components/package-info.json +1 -1
- package/feffery_antd_components/AntdForm.py +9 -3
- package/feffery_antd_components/AntdFormItem.py +5 -1
- package/feffery_antd_components/AntdPagination.py +5 -3
- package/feffery_antd_components/AntdTable.py +2 -0
- package/feffery_antd_components/AntdTabs.py +7 -3
- package/feffery_antd_components/AntdTree.py +21 -3
- package/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/feffery_antd_components/metadata.json +174 -5
- package/feffery_antd_components/package-info.json +1 -1
- package/package.json +1 -1
- package/src/jl/'feffery'_antdform.jl +6 -3
- package/src/jl/'feffery'_antdformitem.jl +4 -2
- package/src/jl/'feffery'_antdpagination.jl +2 -1
- package/src/jl/'feffery'_antdtable.jl +3 -2
- package/src/jl/'feffery'_antdtabs.jl +3 -1
- package/src/jl/'feffery'_antdtree.jl +10 -1
- package/src/lib/components/dataDisplay/AntdTable.react.js +7 -9
- package/src/lib/components/dataDisplay/AntdTree.react.js +149 -11
- package/src/lib/components/dataDisplay/tabs/AntdTabs.react.js +17 -0
- package/src/lib/components/dataEntry/form/AntdForm.react.js +20 -1
- package/src/lib/components/dataEntry/form/AntdFormItem.react.js +12 -1
- package/src/lib/components/navigation/AntdPagination.react.js +9 -1
- package/src/lib/components/styles.css +4 -0
- package/usage.py +38 -38
package/DESCRIPTION
CHANGED
package/Project.toml
CHANGED
|
@@ -33,6 +33,8 @@ Keyword arguments:
|
|
|
33
33
|
|
|
34
34
|
- value (number | string | list of numbers | list of strings; optional)
|
|
35
35
|
|
|
36
|
+
- extraFooter (a list of or a singular dash component, string or number; optional)
|
|
37
|
+
|
|
36
38
|
- firstDayOfWeek (number; optional)
|
|
37
39
|
|
|
38
40
|
- format (string; optional)
|
|
@@ -93,6 +95,8 @@ Keyword arguments:
|
|
|
93
95
|
|
|
94
96
|
- format (string; optional)
|
|
95
97
|
|
|
98
|
+
- showToday (boolean; default True)
|
|
99
|
+
|
|
96
100
|
- size (a value equal to: 'small', 'middle', 'large'; default 'middle')
|
|
97
101
|
|
|
98
102
|
- status (a value equal to: 'error', 'warning'; optional)
|
|
@@ -100,15 +104,15 @@ Keyword arguments:
|
|
|
100
104
|
- style (dict; optional)
|
|
101
105
|
|
|
102
106
|
- value (string; optional)"""
|
|
103
|
-
_children_props = []
|
|
104
|
-
_base_nodes = ['children']
|
|
107
|
+
_children_props = ['extraFooter']
|
|
108
|
+
_base_nodes = ['extraFooter', 'children']
|
|
105
109
|
_namespace = 'feffery_antd_components'
|
|
106
110
|
_type = 'AntdDatePicker'
|
|
107
111
|
@_explicitize_args
|
|
108
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
109
|
-
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
112
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, showToday=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
113
|
+
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'showToday', 'size', 'status', 'style', 'value']
|
|
110
114
|
self._valid_wildcard_attributes = []
|
|
111
|
-
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
115
|
+
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'showToday', 'size', 'status', 'style', 'value']
|
|
112
116
|
self.available_wildcard_properties = []
|
|
113
117
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
114
118
|
_locals = locals()
|
|
@@ -33,6 +33,8 @@ Keyword arguments:
|
|
|
33
33
|
|
|
34
34
|
- value (number | string | list of numbers | list of strings; optional)
|
|
35
35
|
|
|
36
|
+
- extraFooter (a list of or a singular dash component, string or number; optional)
|
|
37
|
+
|
|
36
38
|
- firstDayOfWeek (number; optional)
|
|
37
39
|
|
|
38
40
|
- format (string; optional)
|
|
@@ -102,15 +104,15 @@ Keyword arguments:
|
|
|
102
104
|
- style (dict; optional)
|
|
103
105
|
|
|
104
106
|
- value (list of strings; optional)"""
|
|
105
|
-
_children_props = []
|
|
106
|
-
_base_nodes = ['children']
|
|
107
|
+
_children_props = ['extraFooter']
|
|
108
|
+
_base_nodes = ['extraFooter', 'children']
|
|
107
109
|
_namespace = 'feffery_antd_components'
|
|
108
110
|
_type = 'AntdDateRangePicker'
|
|
109
111
|
@_explicitize_args
|
|
110
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, open=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
111
|
-
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
112
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, picker=Component.UNDEFINED, firstDayOfWeek=Component.UNDEFINED, disabled=Component.UNDEFINED, showTime=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, defaultPickerValue=Component.UNDEFINED, disabledDatesStrategy=Component.UNDEFINED, open=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
113
|
+
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
112
114
|
self._valid_wildcard_attributes = []
|
|
113
|
-
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
115
|
+
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultPickerValue', 'defaultValue', 'disabled', 'disabledDatesStrategy', 'extraFooter', 'firstDayOfWeek', 'format', 'key', 'loading_state', 'locale', 'open', 'persisted_props', 'persistence', 'persistence_type', 'picker', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'showTime', 'size', 'status', 'style', 'value']
|
|
114
116
|
self.available_wildcard_properties = []
|
|
115
117
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
116
118
|
_locals = locals()
|
|
@@ -27,10 +27,14 @@ Keyword arguments:
|
|
|
27
27
|
|
|
28
28
|
`labelCol` is a dict with keys:
|
|
29
29
|
|
|
30
|
+
- flex (string | number; optional)
|
|
31
|
+
|
|
30
32
|
- offset (number; optional)
|
|
31
33
|
|
|
32
34
|
- span (number; optional)
|
|
33
35
|
|
|
36
|
+
- labelWrap (boolean; default False)
|
|
37
|
+
|
|
34
38
|
- layout (a value equal to: 'horizontal', 'vertical', 'inline'; default 'horizontal')
|
|
35
39
|
|
|
36
40
|
- loading_state (dict; optional)
|
|
@@ -52,6 +56,8 @@ Keyword arguments:
|
|
|
52
56
|
|
|
53
57
|
`wrapperCol` is a dict with keys:
|
|
54
58
|
|
|
59
|
+
- flex (string | number; optional)
|
|
60
|
+
|
|
55
61
|
- offset (number; optional)
|
|
56
62
|
|
|
57
63
|
- span (number; optional)"""
|
|
@@ -60,10 +66,10 @@ Keyword arguments:
|
|
|
60
66
|
_namespace = 'feffery_antd_components'
|
|
61
67
|
_type = 'AntdForm'
|
|
62
68
|
@_explicitize_args
|
|
63
|
-
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, layout=Component.UNDEFINED, labelCol=Component.UNDEFINED, wrapperCol=Component.UNDEFINED, colon=Component.UNDEFINED, labelAlign=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
64
|
-
self._prop_names = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'layout', 'loading_state', 'style', 'wrapperCol']
|
|
69
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, layout=Component.UNDEFINED, labelCol=Component.UNDEFINED, wrapperCol=Component.UNDEFINED, colon=Component.UNDEFINED, labelAlign=Component.UNDEFINED, labelWrap=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
70
|
+
self._prop_names = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'labelWrap', 'layout', 'loading_state', 'style', 'wrapperCol']
|
|
65
71
|
self._valid_wildcard_attributes = []
|
|
66
|
-
self.available_properties = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'layout', 'loading_state', 'style', 'wrapperCol']
|
|
72
|
+
self.available_properties = ['children', 'id', 'className', 'colon', 'key', 'labelAlign', 'labelCol', 'labelWrap', 'layout', 'loading_state', 'style', 'wrapperCol']
|
|
67
73
|
self.available_wildcard_properties = []
|
|
68
74
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
69
75
|
_locals = locals()
|
|
@@ -17,7 +17,7 @@ Keyword arguments:
|
|
|
17
17
|
|
|
18
18
|
- className (string | dict; optional)
|
|
19
19
|
|
|
20
|
-
- colon (boolean;
|
|
20
|
+
- colon (boolean; optional)
|
|
21
21
|
|
|
22
22
|
- extra (a list of or a singular dash component, string or number; optional)
|
|
23
23
|
|
|
@@ -35,6 +35,8 @@ Keyword arguments:
|
|
|
35
35
|
|
|
36
36
|
`labelCol` is a dict with keys:
|
|
37
37
|
|
|
38
|
+
- flex (string | number; optional)
|
|
39
|
+
|
|
38
40
|
- offset (number; optional)
|
|
39
41
|
|
|
40
42
|
- span (number; optional)
|
|
@@ -64,6 +66,8 @@ Keyword arguments:
|
|
|
64
66
|
|
|
65
67
|
`wrapperCol` is a dict with keys:
|
|
66
68
|
|
|
69
|
+
- flex (string | number; optional)
|
|
70
|
+
|
|
67
71
|
- offset (number; optional)
|
|
68
72
|
|
|
69
73
|
- span (number; optional)"""
|
|
@@ -63,6 +63,8 @@ Keyword arguments:
|
|
|
63
63
|
is kept after the browser quit. session: window.sessionStorage,
|
|
64
64
|
data is cleared once the browser quit.
|
|
65
65
|
|
|
66
|
+
- showLessItems (boolean; default False)
|
|
67
|
+
|
|
66
68
|
- showQuickJumper (boolean; default False)
|
|
67
69
|
|
|
68
70
|
- showSizeChanger (boolean; default False)
|
|
@@ -85,10 +87,10 @@ Keyword arguments:
|
|
|
85
87
|
_namespace = 'feffery_antd_components'
|
|
86
88
|
_type = 'AntdPagination'
|
|
87
89
|
@_explicitize_args
|
|
88
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, defaultCurrent=Component.UNDEFINED, defaultPageSize=Component.UNDEFINED, current=Component.UNDEFINED, disabled=Component.UNDEFINED, hideOnSinglePage=Component.UNDEFINED, pageSize=Component.UNDEFINED, pageSizeOptions=Component.UNDEFINED, showSizeChanger=Component.UNDEFINED, showQuickJumper=Component.UNDEFINED, showTotalPrefix=Component.UNDEFINED, showTotalSuffix=Component.UNDEFINED, simple=Component.UNDEFINED, size=Component.UNDEFINED, total=Component.UNDEFINED, showTotal=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
89
|
-
self._prop_names = ['id', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
|
|
90
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, defaultCurrent=Component.UNDEFINED, defaultPageSize=Component.UNDEFINED, current=Component.UNDEFINED, disabled=Component.UNDEFINED, hideOnSinglePage=Component.UNDEFINED, pageSize=Component.UNDEFINED, pageSizeOptions=Component.UNDEFINED, showSizeChanger=Component.UNDEFINED, showQuickJumper=Component.UNDEFINED, showTotalPrefix=Component.UNDEFINED, showTotalSuffix=Component.UNDEFINED, simple=Component.UNDEFINED, size=Component.UNDEFINED, total=Component.UNDEFINED, showTotal=Component.UNDEFINED, showLessItems=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
91
|
+
self._prop_names = ['id', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showLessItems', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
|
|
90
92
|
self._valid_wildcard_attributes = []
|
|
91
|
-
self.available_properties = ['id', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
|
|
93
|
+
self.available_properties = ['id', 'className', 'current', 'defaultCurrent', 'defaultPageSize', 'disabled', 'hideOnSinglePage', 'key', 'loading_state', 'locale', 'pageSize', 'pageSizeOptions', 'persisted_props', 'persistence', 'persistence_type', 'showLessItems', 'showQuickJumper', 'showSizeChanger', 'showTotal', 'showTotalPrefix', 'showTotalSuffix', 'simple', 'size', 'style', 'total']
|
|
92
94
|
self.available_wildcard_properties = []
|
|
93
95
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
94
96
|
_locals = locals()
|
|
@@ -411,6 +411,8 @@ Keyword arguments:
|
|
|
411
411
|
|
|
412
412
|
- position (a value equal to: 'topLeft', 'topCenter', 'topRight', 'bottomLeft', 'bottomCenter', 'bottomRight'; optional)
|
|
413
413
|
|
|
414
|
+
- showLessItems (boolean; optional)
|
|
415
|
+
|
|
414
416
|
- showQuickJumper (boolean; optional)
|
|
415
417
|
|
|
416
418
|
- showSizeChanger (boolean; optional)
|
|
@@ -21,6 +21,8 @@ Keyword arguments:
|
|
|
21
21
|
|
|
22
22
|
- defaultActiveKey (string; optional)
|
|
23
23
|
|
|
24
|
+
- destroyInactiveTabPane (boolean; default False)
|
|
25
|
+
|
|
24
26
|
- disabledTabKeys (list of strings; optional)
|
|
25
27
|
|
|
26
28
|
- inkBarAnimated (boolean; default True)
|
|
@@ -87,6 +89,8 @@ Keyword arguments:
|
|
|
87
89
|
|
|
88
90
|
- tabBarRightExtraContent (a list of or a singular dash component, string or number; optional)
|
|
89
91
|
|
|
92
|
+
- tabCount (number; optional)
|
|
93
|
+
|
|
90
94
|
- tabPaneAnimated (boolean; default False)
|
|
91
95
|
|
|
92
96
|
- tabPosition (a value equal to: 'top', 'left', 'right', 'bottom'; default 'top')
|
|
@@ -97,10 +101,10 @@ Keyword arguments:
|
|
|
97
101
|
_namespace = 'feffery_antd_components'
|
|
98
102
|
_type = 'AntdTabs'
|
|
99
103
|
@_explicitize_args
|
|
100
|
-
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, items=Component.UNDEFINED, activeKey=Component.UNDEFINED, defaultActiveKey=Component.UNDEFINED, disabledTabKeys=Component.UNDEFINED, tabPosition=Component.UNDEFINED, size=Component.UNDEFINED, type=Component.UNDEFINED, centered=Component.UNDEFINED, tabBarGutter=Component.UNDEFINED, inkBarAnimated=Component.UNDEFINED, tabPaneAnimated=Component.UNDEFINED, latestDeletePane=Component.UNDEFINED, tabBarLeftExtraContent=Component.UNDEFINED, tabBarRightExtraContent=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
101
|
-
self._prop_names = ['children', 'id', 'activeKey', 'centered', 'className', 'defaultActiveKey', 'disabledTabKeys', 'inkBarAnimated', 'items', 'key', 'latestDeletePane', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'tabBarGutter', 'tabBarLeftExtraContent', 'tabBarRightExtraContent', 'tabPaneAnimated', 'tabPosition', 'type']
|
|
104
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, items=Component.UNDEFINED, activeKey=Component.UNDEFINED, defaultActiveKey=Component.UNDEFINED, disabledTabKeys=Component.UNDEFINED, tabPosition=Component.UNDEFINED, size=Component.UNDEFINED, type=Component.UNDEFINED, centered=Component.UNDEFINED, tabBarGutter=Component.UNDEFINED, inkBarAnimated=Component.UNDEFINED, tabPaneAnimated=Component.UNDEFINED, latestDeletePane=Component.UNDEFINED, tabBarLeftExtraContent=Component.UNDEFINED, tabBarRightExtraContent=Component.UNDEFINED, tabCount=Component.UNDEFINED, destroyInactiveTabPane=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
105
|
+
self._prop_names = ['children', 'id', 'activeKey', 'centered', 'className', 'defaultActiveKey', 'destroyInactiveTabPane', 'disabledTabKeys', 'inkBarAnimated', 'items', 'key', 'latestDeletePane', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'tabBarGutter', 'tabBarLeftExtraContent', 'tabBarRightExtraContent', 'tabCount', 'tabPaneAnimated', 'tabPosition', 'type']
|
|
102
106
|
self._valid_wildcard_attributes = []
|
|
103
|
-
self.available_properties = ['children', 'id', 'activeKey', 'centered', 'className', 'defaultActiveKey', 'disabledTabKeys', 'inkBarAnimated', 'items', 'key', 'latestDeletePane', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'tabBarGutter', 'tabBarLeftExtraContent', 'tabBarRightExtraContent', 'tabPaneAnimated', 'tabPosition', 'type']
|
|
107
|
+
self.available_properties = ['children', 'id', 'activeKey', 'centered', 'className', 'defaultActiveKey', 'destroyInactiveTabPane', 'disabledTabKeys', 'inkBarAnimated', 'items', 'key', 'latestDeletePane', 'loading_state', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'tabBarGutter', 'tabBarLeftExtraContent', 'tabBarRightExtraContent', 'tabCount', 'tabPaneAnimated', 'tabPosition', 'type']
|
|
104
108
|
self.available_wildcard_properties = []
|
|
105
109
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
106
110
|
_locals = locals()
|
|
@@ -21,6 +21,8 @@ Keyword arguments:
|
|
|
21
21
|
|
|
22
22
|
- disabled (boolean; default False)
|
|
23
23
|
|
|
24
|
+
- extraFooter (a list of or a singular dash component, string or number; optional)
|
|
25
|
+
|
|
24
26
|
- format (string; default 'HH:mm:ss')
|
|
25
27
|
|
|
26
28
|
- hourStep (number; default 1)
|
|
@@ -75,6 +77,8 @@ Keyword arguments:
|
|
|
75
77
|
|
|
76
78
|
- secondStep (number; default 1)
|
|
77
79
|
|
|
80
|
+
- showNow (boolean; default True)
|
|
81
|
+
|
|
78
82
|
- size (a value equal to: 'small', 'middle', 'large'; default 'middle')
|
|
79
83
|
|
|
80
84
|
- status (a value equal to: 'error', 'warning'; optional)
|
|
@@ -84,15 +88,15 @@ Keyword arguments:
|
|
|
84
88
|
- use12Hours (boolean; default False)
|
|
85
89
|
|
|
86
90
|
- value (string; optional)"""
|
|
87
|
-
_children_props = []
|
|
88
|
-
_base_nodes = ['children']
|
|
91
|
+
_children_props = ['extraFooter']
|
|
92
|
+
_base_nodes = ['extraFooter', 'children']
|
|
89
93
|
_namespace = 'feffery_antd_components'
|
|
90
94
|
_type = 'AntdTimePicker'
|
|
91
95
|
@_explicitize_args
|
|
92
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, disabled=Component.UNDEFINED, hourStep=Component.UNDEFINED, minuteStep=Component.UNDEFINED, secondStep=Component.UNDEFINED, use12Hours=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
93
|
-
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'format', 'hourStep', 'key', 'loading_state', 'locale', 'minuteStep', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'secondStep', 'size', 'status', 'style', 'use12Hours', 'value']
|
|
96
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, format=Component.UNDEFINED, disabled=Component.UNDEFINED, hourStep=Component.UNDEFINED, minuteStep=Component.UNDEFINED, secondStep=Component.UNDEFINED, use12Hours=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, status=Component.UNDEFINED, allowClear=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, showNow=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
97
|
+
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'extraFooter', 'format', 'hourStep', 'key', 'loading_state', 'locale', 'minuteStep', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'secondStep', 'showNow', 'size', 'status', 'style', 'use12Hours', 'value']
|
|
94
98
|
self._valid_wildcard_attributes = []
|
|
95
|
-
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'format', 'hourStep', 'key', 'loading_state', 'locale', 'minuteStep', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'secondStep', 'size', 'status', 'style', 'use12Hours', 'value']
|
|
99
|
+
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'extraFooter', 'format', 'hourStep', 'key', 'loading_state', 'locale', 'minuteStep', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'secondStep', 'showNow', 'size', 'status', 'style', 'use12Hours', 'value']
|
|
96
100
|
self.available_wildcard_properties = []
|
|
97
101
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
98
102
|
_locals = locals()
|
|
@@ -21,6 +21,8 @@ Keyword arguments:
|
|
|
21
21
|
|
|
22
22
|
- disabled (list of booleans; default [False, False])
|
|
23
23
|
|
|
24
|
+
- extraFooter (a list of or a singular dash component, string or number; optional)
|
|
25
|
+
|
|
24
26
|
- format (string; default 'HH:mm:ss')
|
|
25
27
|
|
|
26
28
|
- hourStep (number; default 1)
|
|
@@ -86,15 +88,15 @@ Keyword arguments:
|
|
|
86
88
|
- use12Hours (boolean; default False)
|
|
87
89
|
|
|
88
90
|
- value (list of strings; optional)"""
|
|
89
|
-
_children_props = []
|
|
90
|
-
_base_nodes = ['children']
|
|
91
|
+
_children_props = ['extraFooter']
|
|
92
|
+
_base_nodes = ['extraFooter', 'children']
|
|
91
93
|
_namespace = 'feffery_antd_components'
|
|
92
94
|
_type = 'AntdTimeRangePicker'
|
|
93
95
|
@_explicitize_args
|
|
94
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, hourStep=Component.UNDEFINED, minuteStep=Component.UNDEFINED, secondStep=Component.UNDEFINED, format=Component.UNDEFINED, use12Hours=Component.UNDEFINED, allowClear=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, disabled=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, bordered=Component.UNDEFINED, size=Component.UNDEFINED, open=Component.UNDEFINED, status=Component.UNDEFINED, readOnly=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
95
|
-
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'format', 'hourStep', 'key', 'loading_state', 'locale', 'minuteStep', 'open', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'secondStep', 'size', 'status', 'style', 'use12Hours', 'value']
|
|
96
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, locale=Component.UNDEFINED, hourStep=Component.UNDEFINED, minuteStep=Component.UNDEFINED, secondStep=Component.UNDEFINED, format=Component.UNDEFINED, use12Hours=Component.UNDEFINED, allowClear=Component.UNDEFINED, placeholder=Component.UNDEFINED, placement=Component.UNDEFINED, disabled=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, bordered=Component.UNDEFINED, size=Component.UNDEFINED, open=Component.UNDEFINED, status=Component.UNDEFINED, readOnly=Component.UNDEFINED, extraFooter=Component.UNDEFINED, popupContainer=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
97
|
+
self._prop_names = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'extraFooter', 'format', 'hourStep', 'key', 'loading_state', 'locale', 'minuteStep', 'open', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'secondStep', 'size', 'status', 'style', 'use12Hours', 'value']
|
|
96
98
|
self._valid_wildcard_attributes = []
|
|
97
|
-
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'format', 'hourStep', 'key', 'loading_state', 'locale', 'minuteStep', 'open', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'secondStep', 'size', 'status', 'style', 'use12Hours', 'value']
|
|
99
|
+
self.available_properties = ['id', 'allowClear', 'bordered', 'className', 'defaultValue', 'disabled', 'extraFooter', 'format', 'hourStep', 'key', 'loading_state', 'locale', 'minuteStep', 'open', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'placement', 'popupContainer', 'readOnly', 'secondStep', 'size', 'status', 'style', 'use12Hours', 'value']
|
|
98
100
|
self.available_wildcard_properties = []
|
|
99
101
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
100
102
|
_locals = locals()
|
|
@@ -11,6 +11,10 @@ Keyword arguments:
|
|
|
11
11
|
|
|
12
12
|
- id (string; optional)
|
|
13
13
|
|
|
14
|
+
- batchPropsNames (list of strings; optional)
|
|
15
|
+
|
|
16
|
+
- batchPropsValues (dict; optional)
|
|
17
|
+
|
|
14
18
|
- checkStrictly (boolean; default False)
|
|
15
19
|
|
|
16
20
|
- checkable (boolean; default False)
|
|
@@ -68,6 +72,14 @@ Keyword arguments:
|
|
|
68
72
|
|
|
69
73
|
- multiple (boolean; default False)
|
|
70
74
|
|
|
75
|
+
- nodeCheckedStyle (dict; optional)
|
|
76
|
+
|
|
77
|
+
- nodeCheckedSuffix (a list of or a singular dash component, string or number; optional)
|
|
78
|
+
|
|
79
|
+
- nodeUncheckedStyle (dict; optional)
|
|
80
|
+
|
|
81
|
+
- nodeUncheckedSuffix (a list of or a singular dash component, string or number; optional)
|
|
82
|
+
|
|
71
83
|
- persisted_props (list of a value equal to: 'selectedKeys', 'checkedKeys', 'expandedKeys', 'halfCheckedKeys's; default ['selectedKeys', 'checkedKeys', 'expandedKeys', 'halfCheckedKeys']):
|
|
72
84
|
Properties whose user interactions will persist after refreshing
|
|
73
85
|
the component or the page. Since only `value` is allowed this
|
|
@@ -104,15 +116,15 @@ Keyword arguments:
|
|
|
104
116
|
- treeData (list; optional)
|
|
105
117
|
|
|
106
118
|
- treeDataMode (a value equal to: 'tree', 'flat'; default 'tree')"""
|
|
107
|
-
_children_props = []
|
|
108
|
-
_base_nodes = ['children']
|
|
119
|
+
_children_props = ['nodeCheckedSuffix', 'nodeUncheckedSuffix']
|
|
120
|
+
_base_nodes = ['nodeCheckedSuffix', 'nodeUncheckedSuffix', 'children']
|
|
109
121
|
_namespace = 'feffery_antd_components'
|
|
110
122
|
_type = 'AntdTree'
|
|
111
123
|
@_explicitize_args
|
|
112
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, treeDataMode=Component.UNDEFINED, treeData=Component.UNDEFINED, showIcon=Component.UNDEFINED, selectable=Component.UNDEFINED, multiple=Component.UNDEFINED, checkable=Component.UNDEFINED, defaultExpandAll=Component.UNDEFINED, expandedKeys=Component.UNDEFINED, defaultExpandedKeys=Component.UNDEFINED, defaultExpandParent=Component.UNDEFINED, selectedKeys=Component.UNDEFINED, defaultSelectedKeys=Component.UNDEFINED, checkedKeys=Component.UNDEFINED, defaultCheckedKeys=Component.UNDEFINED, halfCheckedKeys=Component.UNDEFINED, checkStrictly=Component.UNDEFINED, showLine=Component.UNDEFINED, height=Component.UNDEFINED, draggable=Component.UNDEFINED, dragInSameLevel=Component.UNDEFINED, draggedNodeKey=Component.UNDEFINED, clickedContextMenu=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
113
|
-
self._prop_names = ['id', 'checkStrictly', 'checkable', 'checkedKeys', 'className', 'clickedContextMenu', 'defaultCheckedKeys', 'defaultExpandAll', 'defaultExpandParent', 'defaultExpandedKeys', 'defaultSelectedKeys', 'dragInSameLevel', 'draggable', 'draggedNodeKey', 'expandedKeys', 'halfCheckedKeys', 'height', 'key', 'loading_state', 'multiple', 'persisted_props', 'persistence', 'persistence_type', 'selectable', 'selectedKeys', 'showIcon', 'showLine', 'style', 'treeData', 'treeDataMode']
|
|
124
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, key=Component.UNDEFINED, treeDataMode=Component.UNDEFINED, treeData=Component.UNDEFINED, showIcon=Component.UNDEFINED, selectable=Component.UNDEFINED, multiple=Component.UNDEFINED, checkable=Component.UNDEFINED, defaultExpandAll=Component.UNDEFINED, expandedKeys=Component.UNDEFINED, defaultExpandedKeys=Component.UNDEFINED, defaultExpandParent=Component.UNDEFINED, selectedKeys=Component.UNDEFINED, defaultSelectedKeys=Component.UNDEFINED, checkedKeys=Component.UNDEFINED, defaultCheckedKeys=Component.UNDEFINED, halfCheckedKeys=Component.UNDEFINED, checkStrictly=Component.UNDEFINED, showLine=Component.UNDEFINED, height=Component.UNDEFINED, draggable=Component.UNDEFINED, dragInSameLevel=Component.UNDEFINED, draggedNodeKey=Component.UNDEFINED, clickedContextMenu=Component.UNDEFINED, nodeCheckedSuffix=Component.UNDEFINED, nodeUncheckedSuffix=Component.UNDEFINED, nodeCheckedStyle=Component.UNDEFINED, nodeUncheckedStyle=Component.UNDEFINED, batchPropsNames=Component.UNDEFINED, batchPropsValues=Component.UNDEFINED, loading_state=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
|
|
125
|
+
self._prop_names = ['id', 'batchPropsNames', 'batchPropsValues', 'checkStrictly', 'checkable', 'checkedKeys', 'className', 'clickedContextMenu', 'defaultCheckedKeys', 'defaultExpandAll', 'defaultExpandParent', 'defaultExpandedKeys', 'defaultSelectedKeys', 'dragInSameLevel', 'draggable', 'draggedNodeKey', 'expandedKeys', 'halfCheckedKeys', 'height', 'key', 'loading_state', 'multiple', 'nodeCheckedStyle', 'nodeCheckedSuffix', 'nodeUncheckedStyle', 'nodeUncheckedSuffix', 'persisted_props', 'persistence', 'persistence_type', 'selectable', 'selectedKeys', 'showIcon', 'showLine', 'style', 'treeData', 'treeDataMode']
|
|
114
126
|
self._valid_wildcard_attributes = []
|
|
115
|
-
self.available_properties = ['id', 'checkStrictly', 'checkable', 'checkedKeys', 'className', 'clickedContextMenu', 'defaultCheckedKeys', 'defaultExpandAll', 'defaultExpandParent', 'defaultExpandedKeys', 'defaultSelectedKeys', 'dragInSameLevel', 'draggable', 'draggedNodeKey', 'expandedKeys', 'halfCheckedKeys', 'height', 'key', 'loading_state', 'multiple', 'persisted_props', 'persistence', 'persistence_type', 'selectable', 'selectedKeys', 'showIcon', 'showLine', 'style', 'treeData', 'treeDataMode']
|
|
127
|
+
self.available_properties = ['id', 'batchPropsNames', 'batchPropsValues', 'checkStrictly', 'checkable', 'checkedKeys', 'className', 'clickedContextMenu', 'defaultCheckedKeys', 'defaultExpandAll', 'defaultExpandParent', 'defaultExpandedKeys', 'defaultSelectedKeys', 'dragInSameLevel', 'draggable', 'draggedNodeKey', 'expandedKeys', 'halfCheckedKeys', 'height', 'key', 'loading_state', 'multiple', 'nodeCheckedStyle', 'nodeCheckedSuffix', 'nodeUncheckedStyle', 'nodeUncheckedSuffix', 'persisted_props', 'persistence', 'persistence_type', 'selectable', 'selectedKeys', 'showIcon', 'showLine', 'style', 'treeData', 'treeDataMode']
|
|
116
128
|
self.available_wildcard_properties = []
|
|
117
129
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
118
130
|
_locals = locals()
|