vxe-pc-ui 4.16.11 → 4.16.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 +6 -3
- package/dist/style.css +1 -1
- package/dist/style.min.css +1 -1
- package/es/icon/style.css +1 -1
- package/es/menu/src/menu.js +4 -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 +1 -1
- package/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +6 -3
- package/lib/index.umd.min.js +1 -1
- package/lib/menu/src/menu.js +4 -1
- package/lib/menu/src/menu.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/menu/src/menu.ts +4 -1
- package/types/components/menu.d.ts +6 -0
- package/types/components/table.d.ts +1 -0
- /package/es/icon/{iconfont.1784122303243.ttf → iconfont.1784184151002.ttf} +0 -0
- /package/es/icon/{iconfont.1784122303243.woff → iconfont.1784184151002.woff} +0 -0
- /package/es/icon/{iconfont.1784122303243.woff2 → iconfont.1784184151002.woff2} +0 -0
- /package/es/{iconfont.1784122303243.ttf → iconfont.1784184151002.ttf} +0 -0
- /package/es/{iconfont.1784122303243.woff → iconfont.1784184151002.woff} +0 -0
- /package/es/{iconfont.1784122303243.woff2 → iconfont.1784184151002.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1784122303243.ttf → iconfont.1784184151002.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1784122303243.woff → iconfont.1784184151002.woff} +0 -0
- /package/lib/icon/style/{iconfont.1784122303243.woff2 → iconfont.1784184151002.woff2} +0 -0
- /package/lib/{iconfont.1784122303243.ttf → iconfont.1784184151002.ttf} +0 -0
- /package/lib/{iconfont.1784122303243.woff → iconfont.1784184151002.woff} +0 -0
- /package/lib/{iconfont.1784122303243.woff2 → iconfont.1784184151002.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.16.
|
|
84
|
+
const uiVersion = `ui v${"4.16.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$h = log.create('warn', uiVersion);
|
|
96
96
|
log.create('error', uiVersion);
|
|
97
97
|
|
|
98
|
-
const version = "4.16.
|
|
98
|
+
const version = "4.16.13";
|
|
99
99
|
VxeUI.uiVersion = version;
|
|
100
100
|
VxeUI.dynamicApp = dynamicApp;
|
|
101
101
|
function config(options) {
|
|
@@ -28535,7 +28535,7 @@ var VxeMenuComponent = defineVxeComponent({
|
|
|
28535
28535
|
});
|
|
28536
28536
|
const computeLinkUrlField = computed(() => {
|
|
28537
28537
|
const propsOpts = computePropsOpts.value;
|
|
28538
|
-
return propsOpts.linkUrl || '
|
|
28538
|
+
return propsOpts.linkUrl || 'linkUrl';
|
|
28539
28539
|
});
|
|
28540
28540
|
const computeRouterLinkField = computed(() => {
|
|
28541
28541
|
const propsOpts = computePropsOpts.value;
|
|
@@ -29126,6 +29126,9 @@ var VxeMenuComponent = defineVxeComponent({
|
|
|
29126
29126
|
}
|
|
29127
29127
|
globalEvents.on($xeMenu, 'resize', updateCollapseStyle);
|
|
29128
29128
|
updateCollapseStyle();
|
|
29129
|
+
nextTick(() => {
|
|
29130
|
+
$xeMenu.scrollToActiveMenu();
|
|
29131
|
+
});
|
|
29129
29132
|
});
|
|
29130
29133
|
onBeforeUnmount(() => {
|
|
29131
29134
|
globalEvents.off($xeMenu, 'resize');
|