vxe-pc-ui 4.18.1 → 4.18.2
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/README.md +5 -0
- package/dist/all.esm.js +2 -2
- package/dist/style.css +1 -1
- package/dist/style.min.css +1 -1
- package/es/icon/{iconfont.1788592140906.ttf → iconfont.1788693917694.ttf} +0 -0
- package/es/icon/iconfont.1788693917694.woff +0 -0
- package/es/icon/iconfont.1788693917694.woff2 +0 -0
- package/es/icon/style.css +13 -1
- package/es/icon/style.min.css +1 -1
- package/{lib/icon/style/iconfont.1788592140906.ttf → es/iconfont.1788693917694.ttf} +0 -0
- package/es/iconfont.1788693917694.woff +0 -0
- package/es/iconfont.1788693917694.woff2 +0 -0
- 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 +1 -1
- package/es/vxe-icon/style.css +13 -1
- package/es/vxe-icon/style.min.css +1 -1
- package/lib/{iconfont.1788592140906.ttf → icon/style/iconfont.1788693917694.ttf} +0 -0
- package/lib/icon/style/iconfont.1788693917694.woff +0 -0
- package/lib/icon/style/iconfont.1788693917694.woff2 +0 -0
- package/lib/icon/style/style.css +13 -1
- package/lib/icon/style/style.min.css +13 -1
- package/{es/iconfont.1788592140906.ttf → lib/iconfont.1788693917694.ttf} +0 -0
- package/lib/iconfont.1788693917694.woff +0 -0
- package/lib/iconfont.1788693917694.woff2 +0 -0
- package/lib/index.umd.js +2 -2
- 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 +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/vxe-icon/style/style.css +13 -1
- package/lib/vxe-icon/style/style.min.css +1 -1
- package/package.json +1 -1
- package/styles/components/icon.scss +13 -1
- package/styles/icon/iconfont.ttf +0 -0
- package/styles/icon/iconfont.woff +0 -0
- package/styles/icon/iconfont.woff2 +0 -0
- package/types/components/icon.d.ts +1 -1
- package/types/components/table.d.ts +11 -8
- package/es/icon/iconfont.1788592140906.woff +0 -0
- package/es/icon/iconfont.1788592140906.woff2 +0 -0
- package/es/iconfont.1788592140906.woff +0 -0
- package/es/iconfont.1788592140906.woff2 +0 -0
- package/lib/icon/style/iconfont.1788592140906.woff +0 -0
- package/lib/icon/style/iconfont.1788592140906.woff2 +0 -0
- package/lib/iconfont.1788592140906.woff +0 -0
- package/lib/iconfont.1788592140906.woff2 +0 -0
package/README.md
CHANGED
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
* 面向现代浏览器,高效的简洁 API 设计
|
|
22
22
|
* 按需加载
|
|
23
23
|
|
|
24
|
+
* 分支说明
|
|
25
|
+
* v3 分支和 v4 分支功能与 API 保持同步更新
|
|
26
|
+
* v3 分支对应 vue 2.6~2.7 版本,为长期维护版本
|
|
27
|
+
* v4 分支对应 vue 3.x 版本,为长期维护版本
|
|
28
|
+
|
|
24
29
|
* 版本说明
|
|
25
30
|
* **V4**
|
|
26
31
|
* [x] v4.7 基于 xe-utils@4.0+,拆分 [vxe-design](https://github.com/x-extends/vxe-design) 可视化组件和基础组件库
|
package/dist/all.esm.js
CHANGED
|
@@ -101,7 +101,7 @@ function checkDynamic() {
|
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
const { log } = VxeUI;
|
|
104
|
-
const uiVersion = `ui v${"4.18.
|
|
104
|
+
const uiVersion = `ui v${"4.18.2"}`;
|
|
105
105
|
function createComponentLog(name) {
|
|
106
106
|
const tableVersion = VxeUI.tableVersion ? `table v${VxeUI.tableVersion}` : '';
|
|
107
107
|
const ganttVersion = VxeUI.ganttVersion ? `gantt v${VxeUI.ganttVersion}` : '';
|
|
@@ -115,7 +115,7 @@ function createComponentLog(name) {
|
|
|
115
115
|
const warnLog$i = log.create('warn', uiVersion);
|
|
116
116
|
log.create('error', uiVersion);
|
|
117
117
|
|
|
118
|
-
const version = "4.18.
|
|
118
|
+
const version = "4.18.2";
|
|
119
119
|
VxeUI.uiVersion = version;
|
|
120
120
|
VxeUI.dynamicApp = dynamicApp;
|
|
121
121
|
function config(options) {
|