vxe-table 4.18.10 → 4.18.12
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 +1 -1
- package/es/index.min.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/table/module/custom/hook.js +69 -6
- package/es/table/module/custom/panel.js +19 -14
- package/es/table/module/keyboard/hook.js +1 -2
- package/es/table/src/body.js +3 -2
- package/es/table/src/header.js +3 -1
- package/es/table/src/table.js +85 -40
- package/es/table/src/util.js +7 -3
- package/es/table/style.css +14 -0
- package/es/table/style.min.css +1 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +14 -0
- package/es/vxe-table/style.min.css +1 -1
- package/helper/vetur/attributes.json +1 -1
- package/helper/vetur/tags.json +1 -1
- package/lib/index.css +1 -1
- package/lib/index.min.css +1 -1
- package/lib/index.umd.js +141 -59
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/module/custom/hook.js +76 -6
- package/lib/table/module/custom/hook.min.js +1 -1
- package/lib/table/module/custom/panel.js +21 -13
- package/lib/table/module/custom/panel.min.js +1 -1
- package/lib/table/module/keyboard/hook.js +1 -3
- package/lib/table/module/keyboard/hook.min.js +1 -1
- package/lib/table/src/body.js +4 -2
- package/lib/table/src/body.min.js +1 -1
- package/lib/table/src/header.js +7 -5
- package/lib/table/src/header.min.js +1 -1
- package/lib/table/src/table.js +23 -25
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/src/util.js +7 -3
- package/lib/table/src/util.min.js +1 -1
- package/lib/table/style/style.css +14 -0
- package/lib/table/style/style.min.css +1 -1
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/vxe-table/style/style.css +14 -0
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +1 -1
- package/packages/table/module/custom/hook.ts +70 -7
- package/packages/table/module/custom/panel.ts +20 -15
- package/packages/table/module/keyboard/hook.ts +1 -2
- package/packages/table/src/body.ts +3 -2
- package/packages/table/src/header.ts +3 -1
- package/packages/table/src/table.ts +88 -41
- package/packages/table/src/util.ts +9 -3
- package/styles/components/table-module/custom.scss +14 -0
- /package/es/{iconfont.1774663263220.ttf → iconfont.1776048383631.ttf} +0 -0
- /package/es/{iconfont.1774663263220.woff → iconfont.1776048383631.woff} +0 -0
- /package/es/{iconfont.1774663263220.woff2 → iconfont.1776048383631.woff2} +0 -0
- /package/lib/{iconfont.1774663263220.ttf → iconfont.1776048383631.ttf} +0 -0
- /package/lib/{iconfont.1774663263220.woff → iconfont.1776048383631.woff} +0 -0
- /package/lib/{iconfont.1774663263220.woff2 → iconfont.1776048383631.woff2} +0 -0
package/es/ui/index.js
CHANGED
package/es/ui/src/log.js
CHANGED
package/es/vxe-table/style.css
CHANGED
|
@@ -791,6 +791,7 @@
|
|
|
791
791
|
text-align: left;
|
|
792
792
|
background-color: var(--vxe-ui-layout-background-color);
|
|
793
793
|
z-index: 19;
|
|
794
|
+
color: var(--vxe-ui-font-color);
|
|
794
795
|
border: 1px solid var(--vxe-ui-table-border-color);
|
|
795
796
|
border-radius: var(--vxe-ui-border-radius);
|
|
796
797
|
box-shadow: var(--vxe-ui-base-popup-box-shadow);
|
|
@@ -1299,6 +1300,19 @@
|
|
|
1299
1300
|
width: 200px;
|
|
1300
1301
|
}
|
|
1301
1302
|
|
|
1303
|
+
.vxe-table-custom-wrapper {
|
|
1304
|
+
font-size: var(--vxe-ui-font-size-default);
|
|
1305
|
+
}
|
|
1306
|
+
.vxe-table-custom-wrapper.size--medium {
|
|
1307
|
+
font-size: var(--vxe-ui-font-size-medium);
|
|
1308
|
+
}
|
|
1309
|
+
.vxe-table-custom-wrapper.size--small {
|
|
1310
|
+
font-size: var(--vxe-ui-font-size-small);
|
|
1311
|
+
}
|
|
1312
|
+
.vxe-table-custom-wrapper.size--mini {
|
|
1313
|
+
font-size: var(--vxe-ui-font-size-mini);
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1302
1316
|
.vxe-table-export--panel-column > ul {
|
|
1303
1317
|
list-style-type: none;
|
|
1304
1318
|
overflow: auto;
|