@hw-component/table 1.9.82 → 1.9.83
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.
|
@@ -112,9 +112,11 @@ var TagsComponent = function TagsComponent(props) {
|
|
|
112
112
|
}));
|
|
113
113
|
}), !moreLen ? null : jsx(Popover, {
|
|
114
114
|
content: popoverContentRender ? popoverContentRender(jsx(TagsComponent, _objectSpread(_objectSpread({}, childProps), {}, {
|
|
115
|
-
maxLen: null
|
|
115
|
+
maxLen: null,
|
|
116
|
+
extra: null
|
|
116
117
|
}))) : jsx(TagsComponent, _objectSpread(_objectSpread({}, childProps), {}, {
|
|
117
|
-
maxLen: null
|
|
118
|
+
maxLen: null,
|
|
119
|
+
extra: null
|
|
118
120
|
})),
|
|
119
121
|
children: jsxs(Tag, {
|
|
120
122
|
children: ["...\u7B49", data.length, "\u4E2A"]
|
|
@@ -115,9 +115,11 @@ var TagsComponent = function TagsComponent(props) {
|
|
|
115
115
|
}));
|
|
116
116
|
}), !moreLen ? null : jsxRuntime.jsx(antd.Popover, {
|
|
117
117
|
content: popoverContentRender ? popoverContentRender(jsxRuntime.jsx(TagsComponent, _objectSpread(_objectSpread({}, childProps), {}, {
|
|
118
|
-
maxLen: null
|
|
118
|
+
maxLen: null,
|
|
119
|
+
extra: null
|
|
119
120
|
}))) : jsxRuntime.jsx(TagsComponent, _objectSpread(_objectSpread({}, childProps), {}, {
|
|
120
|
-
maxLen: null
|
|
121
|
+
maxLen: null,
|
|
122
|
+
extra: null
|
|
121
123
|
})),
|
|
122
124
|
children: jsxRuntime.jsxs(antd.Tag, {
|
|
123
125
|
children: ["...\u7B49", data.length, "\u4E2A"]
|
package/package.json
CHANGED
|
@@ -120,10 +120,10 @@ const TagsComponent = (props: IProps) => {
|
|
|
120
120
|
content={
|
|
121
121
|
popoverContentRender ? (
|
|
122
122
|
popoverContentRender(
|
|
123
|
-
<TagsComponent {...childProps} maxLen={null} />
|
|
123
|
+
<TagsComponent {...childProps} maxLen={null} extra={null}/>
|
|
124
124
|
)
|
|
125
125
|
) : (
|
|
126
|
-
<TagsComponent {...childProps} maxLen={null} />
|
|
126
|
+
<TagsComponent {...childProps} maxLen={null} extra={null}/>
|
|
127
127
|
)
|
|
128
128
|
}
|
|
129
129
|
>
|