vxe-table 4.21.0-beta.3 → 4.21.0-beta.4
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/all.esm.js +8 -6
- package/dist/style.css +1 -1
- package/es/style.css +1 -1
- package/es/table/module/export/export-panel.js +3 -2
- package/es/table/module/export/import-panel.js +3 -2
- package/es/ui/index.js +1 -1
- package/es/ui/src/dom.js +9 -1
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +17 -7
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/module/export/export-panel.js +3 -2
- package/lib/table/module/export/export-panel.min.js +1 -1
- package/lib/table/module/export/import-panel.js +3 -2
- package/lib/table/module/export/import-panel.min.js +1 -1
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/dom.js +10 -1
- package/lib/ui/src/dom.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/package.json +2 -2
- package/packages/table/module/export/export-panel.ts +3 -2
- package/packages/table/module/export/import-panel.ts +3 -2
- package/packages/ui/src/dom.ts +10 -1
- /package/es/{iconfont.1787137355353.ttf → iconfont.1787216126332.ttf} +0 -0
- /package/es/{iconfont.1787137355353.woff → iconfont.1787216126332.woff} +0 -0
- /package/es/{iconfont.1787137355353.woff2 → iconfont.1787216126332.woff2} +0 -0
- /package/lib/{iconfont.1787137355353.ttf → iconfont.1787216126332.ttf} +0 -0
- /package/lib/{iconfont.1787137355353.woff → iconfont.1787216126332.woff} +0 -0
- /package/lib/{iconfont.1787137355353.woff2 → iconfont.1787216126332.woff2} +0 -0
package/dist/all.esm.js
CHANGED
|
@@ -47,7 +47,7 @@ function getDefaultConfig(val1, def1) {
|
|
|
47
47
|
return XEUtils.eqNull(val1) ? def1 : val1;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
const version = "4.21.0-beta.
|
|
50
|
+
const version = "4.21.0-beta.4";
|
|
51
51
|
VxeUI.version = version;
|
|
52
52
|
VxeUI.tableVersion = version;
|
|
53
53
|
VxeUI.setConfig({
|
|
@@ -769,7 +769,7 @@ function wheelScrollTopTo(diffNum, cb) {
|
|
|
769
769
|
}
|
|
770
770
|
|
|
771
771
|
const { log } = VxeUI;
|
|
772
|
-
const tableVersion = `table v${"4.21.0-beta.
|
|
772
|
+
const tableVersion = `table v${"4.21.0-beta.4"}`;
|
|
773
773
|
function createComponentLog(name) {
|
|
774
774
|
const uiVersion = VxeUI.uiVersion ? `ui v${VxeUI.uiVersion}` : '';
|
|
775
775
|
const ganttVersion = VxeUI.ganttVersion ? `gantt v${VxeUI.ganttVersion}` : '';
|
|
@@ -7726,11 +7726,12 @@ var TableImportPanelComponent = defineVxeComponent({
|
|
|
7726
7726
|
height: modelOptions.height,
|
|
7727
7727
|
minWidth: modelOptions.minWidth || 360,
|
|
7728
7728
|
minHeight: modelOptions.minHeight || 240,
|
|
7729
|
-
mask: true,
|
|
7730
|
-
lockView: true,
|
|
7729
|
+
mask: getDefaultConfig(modelOptions.mask, true),
|
|
7730
|
+
lockView: getDefaultConfig(modelOptions.lockView, true),
|
|
7731
7731
|
showFooter: true,
|
|
7732
7732
|
escClosable: true,
|
|
7733
7733
|
maskClosable: true,
|
|
7734
|
+
fullscreen: modelOptions.fullscreen,
|
|
7734
7735
|
showMinimize: modelOptions.showMinimize,
|
|
7735
7736
|
showMaximize: getDefaultConfig(modelOptions.showMaximize, true),
|
|
7736
7737
|
resize: getDefaultConfig(modelOptions.resize, true),
|
|
@@ -8089,11 +8090,12 @@ var TableExportPanelComponent = defineVxeComponent({
|
|
|
8089
8090
|
height: modelOptions.height,
|
|
8090
8091
|
minWidth: modelOptions.minWidth || 500,
|
|
8091
8092
|
minHeight: modelOptions.minHeight || 400,
|
|
8092
|
-
mask: true,
|
|
8093
|
-
lockView: true,
|
|
8093
|
+
mask: getDefaultConfig(modelOptions.mask, true),
|
|
8094
|
+
lockView: getDefaultConfig(modelOptions.lockView, true),
|
|
8094
8095
|
showFooter: true,
|
|
8095
8096
|
escClosable: true,
|
|
8096
8097
|
maskClosable: true,
|
|
8098
|
+
fullscreen: modelOptions.fullscreen,
|
|
8097
8099
|
showMinimize: modelOptions.showMinimize,
|
|
8098
8100
|
showMaximize: getDefaultConfig(modelOptions.showMaximize, true),
|
|
8099
8101
|
resize: getDefaultConfig(modelOptions.resize, true),
|