feffery_antd_components 0.3.0-rc14 → 0.3.0-rc15
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/README-en_US.md +1 -1
- package/README.md +1 -1
- package/feffery_antd_components/AntdDrawer.py +6 -3
- package/feffery_antd_components/AntdInput.py +6 -3
- package/feffery_antd_components/AntdTable.py +6 -3
- package/feffery_antd_components/async-antd_table.js +1 -1
- package/feffery_antd_components/async-data_entry.js +1 -1
- package/feffery_antd_components/feffery_antd_components.min.js +3 -3
- package/feffery_antd_components/metadata.json +29 -0
- package/feffery_antd_components/package-info.json +1 -1
- package/package.json +1 -1
- package/src/jl/'feffery'_antddrawer.jl +3 -1
- package/src/jl/'feffery'_antdinput.jl +2 -1
- package/src/jl/'feffery'_antdtable.jl +3 -1
- package/src/lib/components/dataDisplay/AntdTable.react.js +7 -0
- package/src/lib/components/dataEntry/AntdInput.react.js +5 -0
- package/src/lib/components/feedback/AntdDrawer.react.js +10 -1
- package/src/lib/fragments/AntdTable.react.js +2 -0
- package/src/lib/fragments/dataEntry/AntdInput.react.js +8 -0
- package/src/lib/fragments/dataEntry/AntdSelect.react.js +1 -1
- package/usage.py +6 -12
package/DESCRIPTION
CHANGED
package/Project.toml
CHANGED
package/README-en_US.md
CHANGED
|
@@ -26,7 +26,7 @@ pip install feffery-antd-components -U
|
|
|
26
26
|
## 2 Install the latest preview release version
|
|
27
27
|
|
|
28
28
|
> [!NOTE]
|
|
29
|
-
> The latest preview release version (2024-05-
|
|
29
|
+
> The latest preview release version (2024-05-22): `0.3.0rc14`
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
pip install feffery-antd-components --pre -U
|
package/README.md
CHANGED
|
@@ -71,6 +71,9 @@ Keyword arguments:
|
|
|
71
71
|
- key (string; optional):
|
|
72
72
|
对当前组件的`key`值进行更新,可实现强制重绘当前组件的效果.
|
|
73
73
|
|
|
74
|
+
- loading (boolean; default False):
|
|
75
|
+
是否渲染为加载中状态 默认值:`False`.
|
|
76
|
+
|
|
74
77
|
- loading_state (dict; optional)
|
|
75
78
|
|
|
76
79
|
`loading_state` is a dict with keys:
|
|
@@ -135,10 +138,10 @@ Keyword arguments:
|
|
|
135
138
|
_namespace = 'feffery_antd_components'
|
|
136
139
|
_type = 'AntdDrawer'
|
|
137
140
|
@_explicitize_args
|
|
138
|
-
def __init__(self, children=None, id=Component.UNDEFINED, key=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, classNames=Component.UNDEFINED, styles=Component.UNDEFINED, rootStyle=Component.UNDEFINED, visible=Component.UNDEFINED, title=Component.UNDEFINED, placement=Component.UNDEFINED, closable=Component.UNDEFINED, forceRender=Component.UNDEFINED, destroyOnClose=Component.UNDEFINED, width=Component.UNDEFINED, height=Component.UNDEFINED, mask=Component.UNDEFINED, maskClosable=Component.UNDEFINED, zIndex=Component.UNDEFINED, extra=Component.UNDEFINED, footer=Component.UNDEFINED, containerId=Component.UNDEFINED, containerSelector=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
139
|
-
self._prop_names = ['children', 'id', 'aria-*', 'className', 'classNames', 'closable', 'containerId', 'containerSelector', 'data-*', 'destroyOnClose', 'extra', 'footer', 'forceRender', 'height', 'key', 'loading_state', 'mask', 'maskClosable', 'placement', 'rootStyle', 'style', 'styles', 'title', 'visible', 'width', 'zIndex']
|
|
141
|
+
def __init__(self, children=None, id=Component.UNDEFINED, key=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, classNames=Component.UNDEFINED, styles=Component.UNDEFINED, rootStyle=Component.UNDEFINED, visible=Component.UNDEFINED, title=Component.UNDEFINED, placement=Component.UNDEFINED, closable=Component.UNDEFINED, forceRender=Component.UNDEFINED, destroyOnClose=Component.UNDEFINED, width=Component.UNDEFINED, height=Component.UNDEFINED, mask=Component.UNDEFINED, maskClosable=Component.UNDEFINED, zIndex=Component.UNDEFINED, loading=Component.UNDEFINED, extra=Component.UNDEFINED, footer=Component.UNDEFINED, containerId=Component.UNDEFINED, containerSelector=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
142
|
+
self._prop_names = ['children', 'id', 'aria-*', 'className', 'classNames', 'closable', 'containerId', 'containerSelector', 'data-*', 'destroyOnClose', 'extra', 'footer', 'forceRender', 'height', 'key', 'loading', 'loading_state', 'mask', 'maskClosable', 'placement', 'rootStyle', 'style', 'styles', 'title', 'visible', 'width', 'zIndex']
|
|
140
143
|
self._valid_wildcard_attributes = ['data-', 'aria-']
|
|
141
|
-
self.available_properties = ['children', 'id', 'aria-*', 'className', 'classNames', 'closable', 'containerId', 'containerSelector', 'data-*', 'destroyOnClose', 'extra', 'footer', 'forceRender', 'height', 'key', 'loading_state', 'mask', 'maskClosable', 'placement', 'rootStyle', 'style', 'styles', 'title', 'visible', 'width', 'zIndex']
|
|
144
|
+
self.available_properties = ['children', 'id', 'aria-*', 'className', 'classNames', 'closable', 'containerId', 'containerSelector', 'data-*', 'destroyOnClose', 'extra', 'footer', 'forceRender', 'height', 'key', 'loading', 'loading_state', 'mask', 'maskClosable', 'placement', 'rootStyle', 'style', 'styles', 'title', 'visible', 'width', 'zIndex']
|
|
142
145
|
self.available_wildcard_properties = ['data-', 'aria-']
|
|
143
146
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
144
147
|
_locals = locals()
|
|
@@ -94,6 +94,9 @@ Keyword arguments:
|
|
|
94
94
|
- emptyAsNone (boolean; default False):
|
|
95
95
|
当输入框已输入值为空时,是否强制更新`value`为空值,从而统一空字符串与空值混合的情况 默认值:`False`.
|
|
96
96
|
|
|
97
|
+
- focusing (boolean; optional):
|
|
98
|
+
监听输入框是否聚焦.
|
|
99
|
+
|
|
97
100
|
- key (string; optional):
|
|
98
101
|
对当前组件的`key`值进行更新,可实现强制重绘当前组件的效果.
|
|
99
102
|
|
|
@@ -197,10 +200,10 @@ Keyword arguments:
|
|
|
197
200
|
_namespace = 'feffery_antd_components'
|
|
198
201
|
_type = 'AntdInput'
|
|
199
202
|
@_explicitize_args
|
|
200
|
-
def __init__(self, id=Component.UNDEFINED, key=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, styles=Component.UNDEFINED, classNames=Component.UNDEFINED, name=Component.UNDEFINED, mode=Component.UNDEFINED, autoComplete=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, variant=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, passwordUseMd5=Component.UNDEFINED, md5Value=Component.UNDEFINED, debounceValue=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, autoFocus=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):
|
|
201
|
-
self._prop_names = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'aria-*', 'autoComplete', 'autoFocus', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'classNames', 'countFormat', 'data-*', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'name', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'styles', 'suffix', 'value', 'variant']
|
|
203
|
+
def __init__(self, id=Component.UNDEFINED, key=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, styles=Component.UNDEFINED, classNames=Component.UNDEFINED, name=Component.UNDEFINED, mode=Component.UNDEFINED, autoComplete=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, bordered=Component.UNDEFINED, variant=Component.UNDEFINED, placeholder=Component.UNDEFINED, value=Component.UNDEFINED, defaultValue=Component.UNDEFINED, passwordUseMd5=Component.UNDEFINED, md5Value=Component.UNDEFINED, debounceValue=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, autoFocus=Component.UNDEFINED, focusing=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):
|
|
204
|
+
self._prop_names = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'aria-*', 'autoComplete', 'autoFocus', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'classNames', 'countFormat', 'data-*', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'focusing', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'name', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'styles', 'suffix', 'value', 'variant']
|
|
202
205
|
self._valid_wildcard_attributes = ['data-', 'aria-']
|
|
203
|
-
self.available_properties = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'aria-*', 'autoComplete', 'autoFocus', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'classNames', 'countFormat', 'data-*', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'name', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'styles', 'suffix', 'value', 'variant']
|
|
206
|
+
self.available_properties = ['id', 'addonAfter', 'addonBefore', 'allowClear', 'aria-*', 'autoComplete', 'autoFocus', 'autoSize', 'batchPropsNames', 'batchPropsValues', 'bordered', 'className', 'classNames', 'countFormat', 'data-*', 'debounceValue', 'debounceWait', 'defaultValue', 'disabled', 'emptyAsNone', 'focusing', 'key', 'loading_state', 'maxLength', 'md5Value', 'mode', 'nClicksSearch', 'nSubmit', 'name', 'passwordUseMd5', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'prefix', 'readOnly', 'showCount', 'size', 'status', 'style', 'styles', 'suffix', 'value', 'variant']
|
|
204
207
|
self.available_wildcard_properties = ['data-', 'aria-']
|
|
205
208
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
206
209
|
_locals = locals()
|
|
@@ -782,6 +782,9 @@ Keyword arguments:
|
|
|
782
782
|
- recentlySwitchStatus (boolean; optional):
|
|
783
783
|
针对再渲染模式中的`'switch'`模式,监听最近发生开关切换事件对应的开关状态.
|
|
784
784
|
|
|
785
|
+
- rowHoverable (boolean; default True):
|
|
786
|
+
表格行是否开启鼠标悬停样式效果 默认值:`True`.
|
|
787
|
+
|
|
785
788
|
- rowSelectionCheckStrictly (boolean; optional):
|
|
786
789
|
针对嵌套行,各行与其所嵌套的内部行之间的行选择行为是否互相独立 默认值:`True`.
|
|
787
790
|
|
|
@@ -902,10 +905,10 @@ Keyword arguments:
|
|
|
902
905
|
_namespace = 'feffery_antd_components'
|
|
903
906
|
_type = 'AntdTable'
|
|
904
907
|
@_explicitize_args
|
|
905
|
-
def __init__(self, id=Component.UNDEFINED, key=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, locale=Component.UNDEFINED, containerId=Component.UNDEFINED, columns=Component.UNDEFINED, showHeader=Component.UNDEFINED, tableLayout=Component.UNDEFINED, data=Component.UNDEFINED, bordered=Component.UNDEFINED, maxHeight=Component.UNDEFINED, maxWidth=Component.UNDEFINED, size=Component.UNDEFINED, rowSelectionType=Component.UNDEFINED, selectedRowKeys=Component.UNDEFINED, selectedRows=Component.UNDEFINED, rowSelectionWidth=Component.UNDEFINED, rowSelectionCheckStrictly=Component.UNDEFINED, rowSelectionIgnoreRowKeys=Component.UNDEFINED, selectedRowsSyncWithData=Component.UNDEFINED, sticky=Component.UNDEFINED, enableHoverListen=Component.UNDEFINED, recentlyMouseEnterColumnDataIndex=Component.UNDEFINED, recentlyMouseEnterRowKey=Component.UNDEFINED, recentlyMouseEnterRow=Component.UNDEFINED, titlePopoverInfo=Component.UNDEFINED, columnsFormatConstraint=Component.UNDEFINED, sortOptions=Component.UNDEFINED, filterOptions=Component.UNDEFINED, defaultFilteredValues=Component.UNDEFINED, pagination=Component.UNDEFINED, currentData=Component.UNDEFINED, recentlyChangedRow=Component.UNDEFINED, recentlyChangedColumn=Component.UNDEFINED, sorter=Component.UNDEFINED, filter=Component.UNDEFINED, mode=Component.UNDEFINED, summaryRowContents=Component.UNDEFINED, summaryRowFixed=Component.UNDEFINED, conditionalStyleFuncs=Component.UNDEFINED, expandedRowKeyToContent=Component.UNDEFINED, expandedRowWidth=Component.UNDEFINED, expandRowByClick=Component.UNDEFINED, defaultExpandedRowKeys=Component.UNDEFINED, expandedRowKeys=Component.UNDEFINED, enableCellClickListenColumns=Component.UNDEFINED, recentlyCellClickColumn=Component.UNDEFINED, recentlyCellClickRecord=Component.UNDEFINED, nClicksCell=Component.UNDEFINED, cellClickEvent=Component.UNDEFINED, recentlyCellDoubleClickColumn=Component.UNDEFINED, recentlyCellDoubleClickRecord=Component.UNDEFINED, nDoubleClicksCell=Component.UNDEFINED, cellDoubleClickEvent=Component.UNDEFINED, recentlyContextMenuClickColumn=Component.UNDEFINED, recentlyContextMenuClickRecord=Component.UNDEFINED, nContextMenuClicksCell=Component.UNDEFINED, cellContextMenuClickEvent=Component.UNDEFINED, emptyContent=Component.UNDEFINED, cellUpdateOptimize=Component.UNDEFINED, miniChartHeight=Component.UNDEFINED, miniChartAnimation=Component.UNDEFINED, recentlyButtonClickedRow=Component.UNDEFINED, nClicksButton=Component.UNDEFINED, clickedContent=Component.UNDEFINED, clickedCustom=Component.UNDEFINED, recentlyButtonClickedDataIndex=Component.UNDEFINED, customFormatFuncs=Component.UNDEFINED, recentlyCheckedRow=Component.UNDEFINED, recentlyCheckedLabel=Component.UNDEFINED, recentlyCheckedDataIndex=Component.UNDEFINED, recentlyCheckedStatus=Component.UNDEFINED, recentlySwitchRow=Component.UNDEFINED, recentlySwitchDataIndex=Component.UNDEFINED, recentlySwitchStatus=Component.UNDEFINED, nClicksDropdownItem=Component.UNDEFINED, recentlyClickedDropdownItemTitle=Component.UNDEFINED, recentlyDropdownItemClickedDataIndex=Component.UNDEFINED, recentlyDropdownItemClickedRow=Component.UNDEFINED, recentlySelectRow=Component.UNDEFINED, recentlySelectDataIndex=Component.UNDEFINED, recentlySelectValue=Component.UNDEFINED, hiddenRowKeys=Component.UNDEFINED, dataDeepCompare=Component.UNDEFINED, virtual=Component.UNDEFINED, title=Component.UNDEFINED, footer=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
906
|
-
self._prop_names = ['id', 'aria-*', 'bordered', 'cellClickEvent', 'cellContextMenuClickEvent', 'cellDoubleClickEvent', 'cellUpdateOptimize', 'className', 'clickedContent', 'clickedCustom', 'columns', 'columnsFormatConstraint', 'conditionalStyleFuncs', 'containerId', 'currentData', 'customFormatFuncs', 'data', 'data-*', 'dataDeepCompare', 'defaultExpandedRowKeys', 'defaultFilteredValues', 'emptyContent', 'enableCellClickListenColumns', 'enableHoverListen', 'expandRowByClick', 'expandedRowKeyToContent', 'expandedRowKeys', 'expandedRowWidth', 'filter', 'filterOptions', 'footer', 'hiddenRowKeys', 'key', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'nClicksCell', 'nClicksDropdownItem', 'nContextMenuClicksCell', 'nDoubleClicksCell', 'pagination', 'recentlyButtonClickedDataIndex', 'recentlyButtonClickedRow', 'recentlyCellClickColumn', 'recentlyCellClickRecord', 'recentlyCellDoubleClickColumn', 'recentlyCellDoubleClickRecord', 'recentlyChangedColumn', 'recentlyChangedRow', 'recentlyCheckedDataIndex', 'recentlyCheckedLabel', 'recentlyCheckedRow', 'recentlyCheckedStatus', 'recentlyClickedDropdownItemTitle', 'recentlyContextMenuClickColumn', 'recentlyContextMenuClickRecord', 'recentlyDropdownItemClickedDataIndex', 'recentlyDropdownItemClickedRow', 'recentlyMouseEnterColumnDataIndex', 'recentlyMouseEnterRow', 'recentlyMouseEnterRowKey', 'recentlySelectDataIndex', 'recentlySelectRow', 'recentlySelectValue', 'recentlySwitchDataIndex', 'recentlySwitchRow', 'recentlySwitchStatus', 'rowSelectionCheckStrictly', 'rowSelectionIgnoreRowKeys', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'selectedRowsSyncWithData', 'showHeader', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'tableLayout', 'title', 'titlePopoverInfo', 'virtual']
|
|
908
|
+
def __init__(self, id=Component.UNDEFINED, key=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, locale=Component.UNDEFINED, containerId=Component.UNDEFINED, columns=Component.UNDEFINED, showHeader=Component.UNDEFINED, rowHoverable=Component.UNDEFINED, tableLayout=Component.UNDEFINED, data=Component.UNDEFINED, bordered=Component.UNDEFINED, maxHeight=Component.UNDEFINED, maxWidth=Component.UNDEFINED, size=Component.UNDEFINED, rowSelectionType=Component.UNDEFINED, selectedRowKeys=Component.UNDEFINED, selectedRows=Component.UNDEFINED, rowSelectionWidth=Component.UNDEFINED, rowSelectionCheckStrictly=Component.UNDEFINED, rowSelectionIgnoreRowKeys=Component.UNDEFINED, selectedRowsSyncWithData=Component.UNDEFINED, sticky=Component.UNDEFINED, enableHoverListen=Component.UNDEFINED, recentlyMouseEnterColumnDataIndex=Component.UNDEFINED, recentlyMouseEnterRowKey=Component.UNDEFINED, recentlyMouseEnterRow=Component.UNDEFINED, titlePopoverInfo=Component.UNDEFINED, columnsFormatConstraint=Component.UNDEFINED, sortOptions=Component.UNDEFINED, filterOptions=Component.UNDEFINED, defaultFilteredValues=Component.UNDEFINED, pagination=Component.UNDEFINED, currentData=Component.UNDEFINED, recentlyChangedRow=Component.UNDEFINED, recentlyChangedColumn=Component.UNDEFINED, sorter=Component.UNDEFINED, filter=Component.UNDEFINED, mode=Component.UNDEFINED, summaryRowContents=Component.UNDEFINED, summaryRowFixed=Component.UNDEFINED, conditionalStyleFuncs=Component.UNDEFINED, expandedRowKeyToContent=Component.UNDEFINED, expandedRowWidth=Component.UNDEFINED, expandRowByClick=Component.UNDEFINED, defaultExpandedRowKeys=Component.UNDEFINED, expandedRowKeys=Component.UNDEFINED, enableCellClickListenColumns=Component.UNDEFINED, recentlyCellClickColumn=Component.UNDEFINED, recentlyCellClickRecord=Component.UNDEFINED, nClicksCell=Component.UNDEFINED, cellClickEvent=Component.UNDEFINED, recentlyCellDoubleClickColumn=Component.UNDEFINED, recentlyCellDoubleClickRecord=Component.UNDEFINED, nDoubleClicksCell=Component.UNDEFINED, cellDoubleClickEvent=Component.UNDEFINED, recentlyContextMenuClickColumn=Component.UNDEFINED, recentlyContextMenuClickRecord=Component.UNDEFINED, nContextMenuClicksCell=Component.UNDEFINED, cellContextMenuClickEvent=Component.UNDEFINED, emptyContent=Component.UNDEFINED, cellUpdateOptimize=Component.UNDEFINED, miniChartHeight=Component.UNDEFINED, miniChartAnimation=Component.UNDEFINED, recentlyButtonClickedRow=Component.UNDEFINED, nClicksButton=Component.UNDEFINED, clickedContent=Component.UNDEFINED, clickedCustom=Component.UNDEFINED, recentlyButtonClickedDataIndex=Component.UNDEFINED, customFormatFuncs=Component.UNDEFINED, recentlyCheckedRow=Component.UNDEFINED, recentlyCheckedLabel=Component.UNDEFINED, recentlyCheckedDataIndex=Component.UNDEFINED, recentlyCheckedStatus=Component.UNDEFINED, recentlySwitchRow=Component.UNDEFINED, recentlySwitchDataIndex=Component.UNDEFINED, recentlySwitchStatus=Component.UNDEFINED, nClicksDropdownItem=Component.UNDEFINED, recentlyClickedDropdownItemTitle=Component.UNDEFINED, recentlyDropdownItemClickedDataIndex=Component.UNDEFINED, recentlyDropdownItemClickedRow=Component.UNDEFINED, recentlySelectRow=Component.UNDEFINED, recentlySelectDataIndex=Component.UNDEFINED, recentlySelectValue=Component.UNDEFINED, hiddenRowKeys=Component.UNDEFINED, dataDeepCompare=Component.UNDEFINED, virtual=Component.UNDEFINED, title=Component.UNDEFINED, footer=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
909
|
+
self._prop_names = ['id', 'aria-*', 'bordered', 'cellClickEvent', 'cellContextMenuClickEvent', 'cellDoubleClickEvent', 'cellUpdateOptimize', 'className', 'clickedContent', 'clickedCustom', 'columns', 'columnsFormatConstraint', 'conditionalStyleFuncs', 'containerId', 'currentData', 'customFormatFuncs', 'data', 'data-*', 'dataDeepCompare', 'defaultExpandedRowKeys', 'defaultFilteredValues', 'emptyContent', 'enableCellClickListenColumns', 'enableHoverListen', 'expandRowByClick', 'expandedRowKeyToContent', 'expandedRowKeys', 'expandedRowWidth', 'filter', 'filterOptions', 'footer', 'hiddenRowKeys', 'key', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'nClicksCell', 'nClicksDropdownItem', 'nContextMenuClicksCell', 'nDoubleClicksCell', 'pagination', 'recentlyButtonClickedDataIndex', 'recentlyButtonClickedRow', 'recentlyCellClickColumn', 'recentlyCellClickRecord', 'recentlyCellDoubleClickColumn', 'recentlyCellDoubleClickRecord', 'recentlyChangedColumn', 'recentlyChangedRow', 'recentlyCheckedDataIndex', 'recentlyCheckedLabel', 'recentlyCheckedRow', 'recentlyCheckedStatus', 'recentlyClickedDropdownItemTitle', 'recentlyContextMenuClickColumn', 'recentlyContextMenuClickRecord', 'recentlyDropdownItemClickedDataIndex', 'recentlyDropdownItemClickedRow', 'recentlyMouseEnterColumnDataIndex', 'recentlyMouseEnterRow', 'recentlyMouseEnterRowKey', 'recentlySelectDataIndex', 'recentlySelectRow', 'recentlySelectValue', 'recentlySwitchDataIndex', 'recentlySwitchRow', 'recentlySwitchStatus', 'rowHoverable', 'rowSelectionCheckStrictly', 'rowSelectionIgnoreRowKeys', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'selectedRowsSyncWithData', 'showHeader', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'tableLayout', 'title', 'titlePopoverInfo', 'virtual']
|
|
907
910
|
self._valid_wildcard_attributes = ['data-', 'aria-']
|
|
908
|
-
self.available_properties = ['id', 'aria-*', 'bordered', 'cellClickEvent', 'cellContextMenuClickEvent', 'cellDoubleClickEvent', 'cellUpdateOptimize', 'className', 'clickedContent', 'clickedCustom', 'columns', 'columnsFormatConstraint', 'conditionalStyleFuncs', 'containerId', 'currentData', 'customFormatFuncs', 'data', 'data-*', 'dataDeepCompare', 'defaultExpandedRowKeys', 'defaultFilteredValues', 'emptyContent', 'enableCellClickListenColumns', 'enableHoverListen', 'expandRowByClick', 'expandedRowKeyToContent', 'expandedRowKeys', 'expandedRowWidth', 'filter', 'filterOptions', 'footer', 'hiddenRowKeys', 'key', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'nClicksCell', 'nClicksDropdownItem', 'nContextMenuClicksCell', 'nDoubleClicksCell', 'pagination', 'recentlyButtonClickedDataIndex', 'recentlyButtonClickedRow', 'recentlyCellClickColumn', 'recentlyCellClickRecord', 'recentlyCellDoubleClickColumn', 'recentlyCellDoubleClickRecord', 'recentlyChangedColumn', 'recentlyChangedRow', 'recentlyCheckedDataIndex', 'recentlyCheckedLabel', 'recentlyCheckedRow', 'recentlyCheckedStatus', 'recentlyClickedDropdownItemTitle', 'recentlyContextMenuClickColumn', 'recentlyContextMenuClickRecord', 'recentlyDropdownItemClickedDataIndex', 'recentlyDropdownItemClickedRow', 'recentlyMouseEnterColumnDataIndex', 'recentlyMouseEnterRow', 'recentlyMouseEnterRowKey', 'recentlySelectDataIndex', 'recentlySelectRow', 'recentlySelectValue', 'recentlySwitchDataIndex', 'recentlySwitchRow', 'recentlySwitchStatus', 'rowSelectionCheckStrictly', 'rowSelectionIgnoreRowKeys', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'selectedRowsSyncWithData', 'showHeader', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'tableLayout', 'title', 'titlePopoverInfo', 'virtual']
|
|
911
|
+
self.available_properties = ['id', 'aria-*', 'bordered', 'cellClickEvent', 'cellContextMenuClickEvent', 'cellDoubleClickEvent', 'cellUpdateOptimize', 'className', 'clickedContent', 'clickedCustom', 'columns', 'columnsFormatConstraint', 'conditionalStyleFuncs', 'containerId', 'currentData', 'customFormatFuncs', 'data', 'data-*', 'dataDeepCompare', 'defaultExpandedRowKeys', 'defaultFilteredValues', 'emptyContent', 'enableCellClickListenColumns', 'enableHoverListen', 'expandRowByClick', 'expandedRowKeyToContent', 'expandedRowKeys', 'expandedRowWidth', 'filter', 'filterOptions', 'footer', 'hiddenRowKeys', 'key', 'loading_state', 'locale', 'maxHeight', 'maxWidth', 'miniChartAnimation', 'miniChartHeight', 'mode', 'nClicksButton', 'nClicksCell', 'nClicksDropdownItem', 'nContextMenuClicksCell', 'nDoubleClicksCell', 'pagination', 'recentlyButtonClickedDataIndex', 'recentlyButtonClickedRow', 'recentlyCellClickColumn', 'recentlyCellClickRecord', 'recentlyCellDoubleClickColumn', 'recentlyCellDoubleClickRecord', 'recentlyChangedColumn', 'recentlyChangedRow', 'recentlyCheckedDataIndex', 'recentlyCheckedLabel', 'recentlyCheckedRow', 'recentlyCheckedStatus', 'recentlyClickedDropdownItemTitle', 'recentlyContextMenuClickColumn', 'recentlyContextMenuClickRecord', 'recentlyDropdownItemClickedDataIndex', 'recentlyDropdownItemClickedRow', 'recentlyMouseEnterColumnDataIndex', 'recentlyMouseEnterRow', 'recentlyMouseEnterRowKey', 'recentlySelectDataIndex', 'recentlySelectRow', 'recentlySelectValue', 'recentlySwitchDataIndex', 'recentlySwitchRow', 'recentlySwitchStatus', 'rowHoverable', 'rowSelectionCheckStrictly', 'rowSelectionIgnoreRowKeys', 'rowSelectionType', 'rowSelectionWidth', 'selectedRowKeys', 'selectedRows', 'selectedRowsSyncWithData', 'showHeader', 'size', 'sortOptions', 'sorter', 'sticky', 'style', 'summaryRowContents', 'summaryRowFixed', 'tableLayout', 'title', 'titlePopoverInfo', 'virtual']
|
|
909
912
|
self.available_wildcard_properties = ['data-', 'aria-']
|
|
910
913
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
911
914
|
_locals = locals()
|