vxe-table 4.21.0-beta.4 → 4.21.0-beta.5
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 +6 -2
- package/dist/style.css +1 -1
- package/es/style.css +1 -1
- package/es/table/module/export/export-panel.js +2 -0
- package/es/table/module/export/import-panel.js +2 -0
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +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/table/module/export/export-panel.js +2 -0
- package/lib/table/module/export/export-panel.min.js +1 -1
- package/lib/table/module/export/import-panel.js +2 -0
- 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/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 +2 -0
- package/packages/table/module/export/import-panel.ts +2 -0
- /package/es/{iconfont.1787216126332.ttf → iconfont.1787220437603.ttf} +0 -0
- /package/es/{iconfont.1787216126332.woff → iconfont.1787220437603.woff} +0 -0
- /package/es/{iconfont.1787216126332.woff2 → iconfont.1787220437603.woff2} +0 -0
- /package/lib/{iconfont.1787216126332.ttf → iconfont.1787220437603.ttf} +0 -0
- /package/lib/{iconfont.1787216126332.woff → iconfont.1787220437603.woff} +0 -0
- /package/lib/{iconfont.1787216126332.woff2 → iconfont.1787220437603.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.5";
|
|
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.5"}`;
|
|
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}` : '';
|
|
@@ -7731,7 +7731,9 @@ var TableImportPanelComponent = defineVxeComponent({
|
|
|
7731
7731
|
showFooter: true,
|
|
7732
7732
|
escClosable: true,
|
|
7733
7733
|
maskClosable: true,
|
|
7734
|
+
position: modelOptions.position,
|
|
7734
7735
|
fullscreen: modelOptions.fullscreen,
|
|
7736
|
+
remember: modelOptions.remember,
|
|
7735
7737
|
showMinimize: modelOptions.showMinimize,
|
|
7736
7738
|
showMaximize: getDefaultConfig(modelOptions.showMaximize, true),
|
|
7737
7739
|
resize: getDefaultConfig(modelOptions.resize, true),
|
|
@@ -8095,7 +8097,9 @@ var TableExportPanelComponent = defineVxeComponent({
|
|
|
8095
8097
|
showFooter: true,
|
|
8096
8098
|
escClosable: true,
|
|
8097
8099
|
maskClosable: true,
|
|
8100
|
+
position: modelOptions.position,
|
|
8098
8101
|
fullscreen: modelOptions.fullscreen,
|
|
8102
|
+
remember: modelOptions.remember,
|
|
8099
8103
|
showMinimize: modelOptions.showMinimize,
|
|
8100
8104
|
showMaximize: getDefaultConfig(modelOptions.showMaximize, true),
|
|
8101
8105
|
resize: getDefaultConfig(modelOptions.resize, true),
|