@hw-component/table 1.6.6 → 1.6.7

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.
@@ -108,6 +108,9 @@ var textRender = function textRender(config, itemData) {
108
108
  return jsxs(Paragraph, {
109
109
  type: type,
110
110
  ellipsis: ellipsis,
111
+ style: {
112
+ marginBottom: 0
113
+ },
111
114
  children: [addonBefore, tableVal, addonAfter]
112
115
  });
113
116
  };
@@ -111,6 +111,9 @@ var textRender = function textRender(config, itemData) {
111
111
  return jsxRuntime.jsxs(Paragraph, {
112
112
  type: type,
113
113
  ellipsis: ellipsis,
114
+ style: {
115
+ marginBottom: 0
116
+ },
114
117
  children: [addonBefore, tableVal, addonAfter]
115
118
  });
116
119
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hw-component/table",
3
- "version": "1.6.6",
3
+ "version": "1.6.7",
4
4
  "description": "基于antd二次开发table组件",
5
5
  "keywords": [
6
6
  "table"
@@ -87,7 +87,7 @@ const textRender = (config: ConfigItemModal, itemData: any) => {
87
87
  const { addonBefore, addonAfter, type, ellipsis } = valueTypeProps;
88
88
  const tableVal = getTableVal(config, itemData);
89
89
  return (
90
- <Paragraph type={type} ellipsis={ellipsis}>
90
+ <Paragraph type={type} ellipsis={ellipsis} style={{marginBottom:0}}>
91
91
  {addonBefore}
92
92
  {tableVal}
93
93
  {addonAfter}