vxe-pc-ui 4.16.28 → 4.17.0
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 +18 -2
- package/dist/style.css +1 -1
- package/dist/style.min.css +1 -1
- package/es/icon/style.css +1 -1
- package/es/splitter/src/splitter-panel.js +16 -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/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +18 -2
- package/lib/index.umd.min.js +1 -1
- package/lib/splitter/src/splitter-panel.js +16 -0
- package/lib/splitter/src/splitter-panel.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 +2 -2
- package/packages/splitter/src/splitter-panel.ts +18 -0
- package/types/components/splitter-panel.d.ts +25 -0
- package/types/components/splitter.d.ts +8 -0
- package/types/components/table-plugins/extend-cell-area.d.ts +2 -2
- /package/es/icon/{iconfont.1786584289686.ttf → iconfont.1786782471977.ttf} +0 -0
- /package/es/icon/{iconfont.1786584289686.woff → iconfont.1786782471977.woff} +0 -0
- /package/es/icon/{iconfont.1786584289686.woff2 → iconfont.1786782471977.woff2} +0 -0
- /package/es/{iconfont.1786584289686.ttf → iconfont.1786782471977.ttf} +0 -0
- /package/es/{iconfont.1786584289686.woff → iconfont.1786782471977.woff} +0 -0
- /package/es/{iconfont.1786584289686.woff2 → iconfont.1786782471977.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1786584289686.ttf → iconfont.1786782471977.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1786584289686.woff → iconfont.1786782471977.woff} +0 -0
- /package/lib/icon/style/{iconfont.1786584289686.woff2 → iconfont.1786782471977.woff2} +0 -0
- /package/lib/{iconfont.1786584289686.ttf → iconfont.1786782471977.ttf} +0 -0
- /package/lib/{iconfont.1786584289686.woff → iconfont.1786782471977.woff} +0 -0
- /package/lib/{iconfont.1786584289686.woff2 → iconfont.1786782471977.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.
|
|
84
|
+
const uiVersion = `ui v${"4.17.0"}`;
|
|
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.
|
|
98
|
+
const version = "4.17.0";
|
|
99
99
|
VxeUI.uiVersion = version;
|
|
100
100
|
VxeUI.dynamicApp = dynamicApp;
|
|
101
101
|
function config(options) {
|
|
@@ -37366,6 +37366,14 @@ var VxeSplitPaneComponent = defineVxeComponent({
|
|
|
37366
37366
|
type: [Number, String],
|
|
37367
37367
|
default: () => null
|
|
37368
37368
|
},
|
|
37369
|
+
maxWidth: {
|
|
37370
|
+
type: [Number, String],
|
|
37371
|
+
default: () => null
|
|
37372
|
+
},
|
|
37373
|
+
maxHeight: {
|
|
37374
|
+
type: [Number, String],
|
|
37375
|
+
default: () => null
|
|
37376
|
+
},
|
|
37369
37377
|
// 已废弃
|
|
37370
37378
|
showAction: Boolean
|
|
37371
37379
|
},
|
|
@@ -37382,6 +37390,8 @@ var VxeSplitPaneComponent = defineVxeComponent({
|
|
|
37382
37390
|
height: props.height,
|
|
37383
37391
|
minWidth: props.minWidth,
|
|
37384
37392
|
minHeight: props.minHeight,
|
|
37393
|
+
maxWidth: props.maxWidth,
|
|
37394
|
+
maxHeight: props.maxHeight,
|
|
37385
37395
|
showAction: props.showAction,
|
|
37386
37396
|
isExpand: true,
|
|
37387
37397
|
renderWidth: 0,
|
|
@@ -37435,6 +37445,12 @@ var VxeSplitPaneComponent = defineVxeComponent({
|
|
|
37435
37445
|
watch(() => props.minHeight, (val) => {
|
|
37436
37446
|
paneConfig.minHeight = val;
|
|
37437
37447
|
});
|
|
37448
|
+
watch(() => props.maxWidth, (val) => {
|
|
37449
|
+
paneConfig.maxWidth = val;
|
|
37450
|
+
});
|
|
37451
|
+
watch(() => props.maxHeight, (val) => {
|
|
37452
|
+
paneConfig.maxHeight = val;
|
|
37453
|
+
});
|
|
37438
37454
|
watch(() => props.showAction, (val) => {
|
|
37439
37455
|
paneConfig.showAction = val;
|
|
37440
37456
|
});
|