@yeepay/table-ruleset 2.0.0-beta.5 → 2.0.0-beta.6
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/dist/index.js +1 -1
- package/dist/styles/table-ruleset.less +19 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2795,7 +2795,7 @@ const el = /* @__PURE__ */ function() {
|
|
|
2795
2795
|
componentMeta: Xn
|
|
2796
2796
|
}, nl = [
|
|
2797
2797
|
tl
|
|
2798
|
-
], rl = "@yeepay/table-ruleset", al = "2.0.0-beta.
|
|
2798
|
+
], rl = "@yeepay/table-ruleset", al = "2.0.0-beta.6", Bt = {
|
|
2799
2799
|
name: rl,
|
|
2800
2800
|
version: al
|
|
2801
2801
|
}, cl = {
|
|
@@ -180,6 +180,25 @@
|
|
|
180
180
|
vertical-align: @value;
|
|
181
181
|
}
|
|
182
182
|
});
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
/* -------------------------------- 列可伸缩样式 ------------------------------- */
|
|
186
|
+
.ant-table-thead > tr > th {
|
|
187
|
+
position: relative;
|
|
188
|
+
.ant-table-column-resizer {
|
|
189
|
+
position: absolute;
|
|
190
|
+
right: -5px;
|
|
191
|
+
top: 0;
|
|
192
|
+
bottom: 0;
|
|
193
|
+
width: 10px;
|
|
194
|
+
cursor: col-resize;
|
|
195
|
+
z-index: 1;
|
|
196
|
+
user-select: none;
|
|
197
|
+
}
|
|
198
|
+
&:hover .ant-table-column-resizer {
|
|
199
|
+
background-color: rgba(0, 0, 0, 0.06);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
183
202
|
}
|
|
184
203
|
|
|
185
204
|
.yee-table-oper-dropdown {
|