vxe-pc-ui 4.15.12 → 4.15.13
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 -5
- package/dist/style.css +1 -1
- package/dist/style.min.css +1 -1
- package/es/icon/style.css +1 -1
- package/es/list/src/list.js +3 -3
- 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/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +5 -5
- package/lib/index.umd.min.js +1 -1
- package/lib/list/src/list.js +3 -3
- package/lib/list/src/list.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/package.json +1 -1
- package/packages/list/src/list.ts +3 -3
- package/types/components/list.d.ts +24 -24
- /package/es/icon/{iconfont.1782655724330.ttf → iconfont.1782658269305.ttf} +0 -0
- /package/es/icon/{iconfont.1782655724330.woff → iconfont.1782658269305.woff} +0 -0
- /package/es/icon/{iconfont.1782655724330.woff2 → iconfont.1782658269305.woff2} +0 -0
- /package/es/{iconfont.1782655724330.ttf → iconfont.1782658269305.ttf} +0 -0
- /package/es/{iconfont.1782655724330.woff → iconfont.1782658269305.woff} +0 -0
- /package/es/{iconfont.1782655724330.woff2 → iconfont.1782658269305.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1782655724330.ttf → iconfont.1782658269305.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1782655724330.woff → iconfont.1782658269305.woff} +0 -0
- /package/lib/icon/style/{iconfont.1782655724330.woff2 → iconfont.1782658269305.woff2} +0 -0
- /package/lib/{iconfont.1782655724330.ttf → iconfont.1782658269305.ttf} +0 -0
- /package/lib/{iconfont.1782655724330.woff → iconfont.1782658269305.woff} +0 -0
- /package/lib/{iconfont.1782655724330.woff2 → iconfont.1782658269305.woff2} +0 -0
package/dist/all.esm.js
CHANGED
|
@@ -81,7 +81,7 @@ 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.13"}`;
|
|
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}` : '';
|
|
@@ -95,7 +95,7 @@ function createComponentLog(name) {
|
|
|
95
95
|
const warnLog$b = log.create('warn', uiVersion);
|
|
96
96
|
log.create('error', uiVersion);
|
|
97
97
|
|
|
98
|
-
const version = "4.15.
|
|
98
|
+
const version = "4.15.13";
|
|
99
99
|
VxeUI.uiVersion = version;
|
|
100
100
|
VxeUI.dynamicApp = dynamicApp;
|
|
101
101
|
function config(options) {
|
|
@@ -8177,7 +8177,7 @@ var VxeListComponent = defineVxeComponent({
|
|
|
8177
8177
|
headerSlot
|
|
8178
8178
|
? h('div', {
|
|
8179
8179
|
class: 'vxe-list--header-content'
|
|
8180
|
-
}, headerSlot({
|
|
8180
|
+
}, headerSlot({ items: rowList, $list: $xeList }))
|
|
8181
8181
|
: renderEmptyElement($xeList)
|
|
8182
8182
|
])
|
|
8183
8183
|
: renderEmptyElement($xeList),
|
|
@@ -8205,13 +8205,13 @@ var VxeListComponent = defineVxeComponent({
|
|
|
8205
8205
|
style: {
|
|
8206
8206
|
marginTop: topSpaceHeight ? `${topSpaceHeight}px` : ''
|
|
8207
8207
|
}
|
|
8208
|
-
}, defaultSlot ? defaultSlot({
|
|
8208
|
+
}, defaultSlot ? defaultSlot({ items: rowList, $list: $xeList }) : rowList.map((row, i) => renderRow(row, i)))
|
|
8209
8209
|
]),
|
|
8210
8210
|
footerSlot
|
|
8211
8211
|
? h('div', {
|
|
8212
8212
|
ref: refFooterElem,
|
|
8213
8213
|
class: 'vxe-list--footer-wrapper'
|
|
8214
|
-
}, footerSlot({
|
|
8214
|
+
}, footerSlot({ items: rowList, $list: $xeList }))
|
|
8215
8215
|
: renderEmptyElement($xeList),
|
|
8216
8216
|
/**
|
|
8217
8217
|
* 拖拽提示
|