@hw-component/table 1.10.33 → 1.10.36
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/index.css
CHANGED
|
@@ -117,9 +117,7 @@ var TagsComponent = function TagsComponent(props) {
|
|
|
117
117
|
return jsx(Tooltip, _objectSpread(_objectSpread({}, _tooltipProps), {}, {
|
|
118
118
|
children: jsx(Tag, _objectSpread(_objectSpread({
|
|
119
119
|
className: tagClassName,
|
|
120
|
-
style:
|
|
121
|
-
maxWidth: "100%"
|
|
122
|
-
}, tagStyle)
|
|
120
|
+
style: tagStyle
|
|
123
121
|
}, tagProps), {}, {
|
|
124
122
|
onClose: function onClose(e) {
|
|
125
123
|
e.preventDefault();
|
|
@@ -144,9 +142,8 @@ var TagsComponent = function TagsComponent(props) {
|
|
|
144
142
|
});
|
|
145
143
|
return jsx(Tooltip, _objectSpread(_objectSpread({}, tooltipProps), {}, {
|
|
146
144
|
children: jsx(Tag, _objectSpread(_objectSpread({
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
}, tagStyle)
|
|
145
|
+
className: "tagClassName",
|
|
146
|
+
style: tagStyle
|
|
150
147
|
}, cuTagProps), {}, {
|
|
151
148
|
onClose: function onClose(e) {
|
|
152
149
|
e.preventDefault();
|
package/lib/index.css
CHANGED
|
@@ -120,9 +120,7 @@ var TagsComponent = function TagsComponent(props) {
|
|
|
120
120
|
return jsxRuntime.jsx(antd.Tooltip, _objectSpread(_objectSpread({}, _tooltipProps), {}, {
|
|
121
121
|
children: jsxRuntime.jsx(antd.Tag, _objectSpread(_objectSpread({
|
|
122
122
|
className: tagClassName,
|
|
123
|
-
style:
|
|
124
|
-
maxWidth: "100%"
|
|
125
|
-
}, tagStyle)
|
|
123
|
+
style: tagStyle
|
|
126
124
|
}, tagProps), {}, {
|
|
127
125
|
onClose: function onClose(e) {
|
|
128
126
|
e.preventDefault();
|
|
@@ -147,9 +145,8 @@ var TagsComponent = function TagsComponent(props) {
|
|
|
147
145
|
});
|
|
148
146
|
return jsxRuntime.jsx(antd.Tooltip, _objectSpread(_objectSpread({}, tooltipProps), {}, {
|
|
149
147
|
children: jsxRuntime.jsx(antd.Tag, _objectSpread(_objectSpread({
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
}, tagStyle)
|
|
148
|
+
className: "tagClassName",
|
|
149
|
+
style: tagStyle
|
|
153
150
|
}, cuTagProps), {}, {
|
|
154
151
|
onClose: function onClose(e) {
|
|
155
152
|
e.preventDefault();
|
package/package.json
CHANGED
|
@@ -101,10 +101,7 @@ const TagsComponent = (props: IProps) => {
|
|
|
101
101
|
<Tag
|
|
102
102
|
key={indexKey}
|
|
103
103
|
className={tagClassName}
|
|
104
|
-
style={
|
|
105
|
-
maxWidth:"100%",
|
|
106
|
-
...tagStyle
|
|
107
|
-
}}
|
|
104
|
+
style={tagStyle}
|
|
108
105
|
{...tagProps}
|
|
109
106
|
onClose={(e) => {
|
|
110
107
|
e.preventDefault();
|
|
@@ -131,10 +128,8 @@ const TagsComponent = (props: IProps) => {
|
|
|
131
128
|
<Tooltip {...tooltipProps}>
|
|
132
129
|
<Tag
|
|
133
130
|
key={cuKey}
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
...tagStyle
|
|
137
|
-
}}
|
|
131
|
+
className="tagClassName"
|
|
132
|
+
style={tagStyle}
|
|
138
133
|
{...cuTagProps}
|
|
139
134
|
onClose={(e) => {
|
|
140
135
|
e.preventDefault();
|