@hw-component/table 1.10.39 → 1.10.40
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.
|
@@ -158,7 +158,9 @@ var TagsComponent = function TagsComponent(props) {
|
|
|
158
158
|
extra: null
|
|
159
159
|
}))) : jsx("div", {
|
|
160
160
|
style: {
|
|
161
|
-
maxWidth: 368
|
|
161
|
+
maxWidth: 368,
|
|
162
|
+
maxHeight: 488,
|
|
163
|
+
overflow: "auto"
|
|
162
164
|
},
|
|
163
165
|
children: jsx(TagsComponent, _objectSpread(_objectSpread({}, childProps), {}, {
|
|
164
166
|
maxLen: null,
|
|
@@ -161,7 +161,9 @@ var TagsComponent = function TagsComponent(props) {
|
|
|
161
161
|
extra: null
|
|
162
162
|
}))) : jsxRuntime.jsx("div", {
|
|
163
163
|
style: {
|
|
164
|
-
maxWidth: 368
|
|
164
|
+
maxWidth: 368,
|
|
165
|
+
maxHeight: 488,
|
|
166
|
+
overflow: "auto"
|
|
165
167
|
},
|
|
166
168
|
children: jsxRuntime.jsx(TagsComponent, _objectSpread(_objectSpread({}, childProps), {}, {
|
|
167
169
|
maxLen: null,
|
package/package.json
CHANGED
|
@@ -149,7 +149,7 @@ const TagsComponent = (props: IProps) => {
|
|
|
149
149
|
<TagsComponent {...childProps} maxLen={null} extra={null} />
|
|
150
150
|
)
|
|
151
151
|
) : (
|
|
152
|
-
<div style={{maxWidth:368}}>
|
|
152
|
+
<div style={{maxWidth:368,maxHeight:488,overflow:"auto"}}>
|
|
153
153
|
<TagsComponent {...childProps} maxLen={null} extra={null} />
|
|
154
154
|
</div>
|
|
155
155
|
)
|