vxe-pc-ui 4.15.9 → 4.15.10
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 +5 -4
- package/dist/style.css +1 -1
- package/dist/style.min.css +1 -1
- package/es/icon/style.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +4 -3
- package/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +5 -4
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/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 +4 -3
- package/lib/ui/src/log.min.js +1 -1
- package/package.json +1 -1
- package/packages/ui/src/log.ts +3 -2
- package/types/components/table.d.ts +13 -0
- /package/es/icon/{iconfont.1782144837167.ttf → iconfont.1782286923385.ttf} +0 -0
- /package/es/icon/{iconfont.1782144837167.woff → iconfont.1782286923385.woff} +0 -0
- /package/es/icon/{iconfont.1782144837167.woff2 → iconfont.1782286923385.woff2} +0 -0
- /package/es/{iconfont.1782144837167.ttf → iconfont.1782286923385.ttf} +0 -0
- /package/es/{iconfont.1782144837167.woff → iconfont.1782286923385.woff} +0 -0
- /package/es/{iconfont.1782144837167.woff2 → iconfont.1782286923385.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1782144837167.ttf → iconfont.1782286923385.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1782144837167.woff → iconfont.1782286923385.woff} +0 -0
- /package/lib/icon/style/{iconfont.1782144837167.woff2 → iconfont.1782286923385.woff2} +0 -0
- /package/lib/{iconfont.1782144837167.ttf → iconfont.1782286923385.ttf} +0 -0
- /package/lib/{iconfont.1782144837167.woff → iconfont.1782286923385.woff} +0 -0
- /package/lib/{iconfont.1782144837167.woff2 → iconfont.1782286923385.woff2} +0 -0
package/dist/all.esm.js
CHANGED
|
@@ -81,20 +81,21 @@ function checkDynamic() {
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
const { log } = VxeUI;
|
|
84
|
-
const uiVersion = `ui v${"4.15.
|
|
84
|
+
const uiVersion = `ui v${"4.15.10"}`;
|
|
85
85
|
function createComponentLog(name) {
|
|
86
86
|
const tableVersion = VxeUI.tableVersion ? `table v${VxeUI.tableVersion}` : '';
|
|
87
87
|
const ganttVersion = VxeUI.ganttVersion ? `gantt v${VxeUI.ganttVersion}` : '';
|
|
88
88
|
const designVersion = VxeUI.designVersion ? `design v${VxeUI.designVersion}` : '';
|
|
89
|
+
const versionInfo = [uiVersion, tableVersion, ganttVersion, designVersion].join(' ');
|
|
89
90
|
return {
|
|
90
|
-
warnLog: log.create('warn',
|
|
91
|
-
errLog: log.create('error',
|
|
91
|
+
warnLog: log.create('warn', versionInfo + '] [' + name),
|
|
92
|
+
errLog: log.create('error', versionInfo + '] [' + name)
|
|
92
93
|
};
|
|
93
94
|
}
|
|
94
95
|
const warnLog$b = log.create('warn', uiVersion);
|
|
95
96
|
log.create('error', uiVersion);
|
|
96
97
|
|
|
97
|
-
const version = "4.15.
|
|
98
|
+
const version = "4.15.10";
|
|
98
99
|
VxeUI.uiVersion = version;
|
|
99
100
|
VxeUI.dynamicApp = dynamicApp;
|
|
100
101
|
function config(options) {
|