@ccs-ui/rc-pro 2.3.1 → 2.3.2
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/es/pro-table/table.d.ts +2 -1
- package/es/pro-table/table.js +1 -1
- package/package.json +1 -1
package/es/pro-table/table.d.ts
CHANGED
|
@@ -38,7 +38,8 @@ export type CcsTableProps<T> = Omit<TableProps<T>, 'columns' | 'title'> & {
|
|
|
38
38
|
className?: string;
|
|
39
39
|
/** style */
|
|
40
40
|
style?: CSSProperties;
|
|
41
|
-
|
|
41
|
+
/** 隐藏操作工具栏:刷新,列设置,密度设置,全屏 */
|
|
42
|
+
hideOperation?: boolean;
|
|
42
43
|
/** 列配置 */
|
|
43
44
|
columns?: TableColumns<T>;
|
|
44
45
|
/** table title */
|
package/es/pro-table/table.js
CHANGED
|
@@ -553,7 +553,7 @@ var InternalProTable = function InternalProTable(props) {
|
|
|
553
553
|
formInitValues: formInitValues,
|
|
554
554
|
formItemLabelWidth: props.formItemLabelWidth,
|
|
555
555
|
onSearch: _onSearch,
|
|
556
|
-
tableOperation: (table === null || table === void 0 ? void 0 : table.
|
|
556
|
+
tableOperation: (table === null || table === void 0 ? void 0 : table.hideOperation) !== true ? /*#__PURE__*/_jsx(TableOperation, {
|
|
557
557
|
onChangeRowSize: function onChangeRowSize(e) {
|
|
558
558
|
return setTableRowSize(e);
|
|
559
559
|
},
|