vxe-table 3.19.29 → 3.19.30
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/src/table.js +4 -0
- package/es/table/style.css +212 -47
- 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 +212 -47
- package/es/vxe-table/style.min.css +1 -1
- package/lib/index.css +1 -1
- package/lib/index.min.css +1 -1
- package/lib/index.umd.js +6 -2
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/src/table.js +4 -0
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/style/style.css +212 -47
- 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 +212 -47
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +1 -1
- package/packages/table/src/methods.ts +1 -2
- package/packages/table/src/table.ts +4 -0
- package/styles/components/table.scss +326 -129
- /package/es/{iconfont.1765538900604.ttf → iconfont.1765844135646.ttf} +0 -0
- /package/es/{iconfont.1765538900604.woff → iconfont.1765844135646.woff} +0 -0
- /package/es/{iconfont.1765538900604.woff2 → iconfont.1765844135646.woff2} +0 -0
- /package/lib/{iconfont.1765538900604.ttf → iconfont.1765844135646.ttf} +0 -0
- /package/lib/{iconfont.1765538900604.woff → iconfont.1765844135646.woff} +0 -0
- /package/lib/{iconfont.1765538900604.woff2 → iconfont.1765844135646.woff2} +0 -0
package/lib/index.umd.js
CHANGED
|
@@ -2005,7 +2005,7 @@ function getClass(property, params) {
|
|
|
2005
2005
|
;// CONCATENATED MODULE: ./packages/ui/index.ts
|
|
2006
2006
|
|
|
2007
2007
|
|
|
2008
|
-
const version = "3.19.
|
|
2008
|
+
const version = "3.19.30";
|
|
2009
2009
|
core_.VxeUI.version = version;
|
|
2010
2010
|
core_.VxeUI.tableVersion = version;
|
|
2011
2011
|
core_.VxeUI.setConfig({
|
|
@@ -2715,7 +2715,7 @@ function isNodeElement(elem) {
|
|
|
2715
2715
|
const {
|
|
2716
2716
|
log: log_log
|
|
2717
2717
|
} = core_.VxeUI;
|
|
2718
|
-
const log_version = `table v${"3.19.
|
|
2718
|
+
const log_version = `table v${"3.19.30"}`;
|
|
2719
2719
|
const warnLog = log_log.create('warn', log_version);
|
|
2720
2720
|
const errLog = log_log.create('error', log_version);
|
|
2721
2721
|
;// CONCATENATED MODULE: ./packages/table/src/columnInfo.ts
|
|
@@ -19468,7 +19468,9 @@ function renderBody(h, $xeTable) {
|
|
|
19468
19468
|
'checkbox--range': checkboxOpts.range,
|
|
19469
19469
|
'col--drag-cell': columnOpts.drag && columnDragOpts.trigger === 'cell',
|
|
19470
19470
|
'is--header': showHeader,
|
|
19471
|
+
'not--header': !showHeader,
|
|
19471
19472
|
'is--footer': showFooter,
|
|
19473
|
+
'not--footer': !showFooter,
|
|
19472
19474
|
'is--group': isGroup,
|
|
19473
19475
|
'is-row-group': isRowGroupStatus,
|
|
19474
19476
|
'is--tree-line': treeConfig && (treeOpts.showLine || treeOpts.line),
|
|
@@ -19480,7 +19482,9 @@ function renderBody(h, $xeTable) {
|
|
|
19480
19482
|
'is--loading': currLoading,
|
|
19481
19483
|
'is--empty': !currLoading && !tableData.length,
|
|
19482
19484
|
'is--scroll-y': overflowY,
|
|
19485
|
+
'not--scroll-y': !overflowY,
|
|
19483
19486
|
'is--scroll-x': overflowX,
|
|
19487
|
+
'not--scroll-x': !overflowX,
|
|
19484
19488
|
'is--virtual-x': scrollXLoad,
|
|
19485
19489
|
'is--virtual-y': scrollYLoad
|
|
19486
19490
|
}],
|