vxe-pc-ui 4.18.8 → 4.18.9
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 +4 -4
- package/dist/style.css +1 -1
- package/dist/style.min.css +1 -1
- package/es/date-picker/src/date-picker.js +2 -2
- 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 +1 -1
- package/lib/date-picker/src/date-picker.js +2 -2
- package/lib/date-picker/src/date-picker.min.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 +4 -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 +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/package.json +1 -1
- package/packages/date-picker/src/date-picker.ts +2 -2
- package/types/ui/global-config.d.ts +9 -4
- /package/es/icon/{iconfont.1788953836807.ttf → iconfont.1788956895944.ttf} +0 -0
- /package/es/icon/{iconfont.1788953836807.woff → iconfont.1788956895944.woff} +0 -0
- /package/es/icon/{iconfont.1788953836807.woff2 → iconfont.1788956895944.woff2} +0 -0
- /package/es/{iconfont.1788953836807.ttf → iconfont.1788956895944.ttf} +0 -0
- /package/es/{iconfont.1788953836807.woff → iconfont.1788956895944.woff} +0 -0
- /package/es/{iconfont.1788953836807.woff2 → iconfont.1788956895944.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1788953836807.ttf → iconfont.1788956895944.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1788953836807.woff → iconfont.1788956895944.woff} +0 -0
- /package/lib/icon/style/{iconfont.1788953836807.woff2 → iconfont.1788956895944.woff2} +0 -0
- /package/lib/{iconfont.1788953836807.ttf → iconfont.1788956895944.ttf} +0 -0
- /package/lib/{iconfont.1788953836807.woff → iconfont.1788956895944.woff} +0 -0
- /package/lib/{iconfont.1788953836807.woff2 → iconfont.1788956895944.woff2} +0 -0
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.9"}`;
|
|
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.9";
|
|
119
119
|
VxeUI.uiVersion = version;
|
|
120
120
|
VxeUI.dynamicApp = dynamicApp;
|
|
121
121
|
function config(options) {
|
|
@@ -22060,10 +22060,10 @@ var VxeDatePickerComponent = defineVxeComponent({
|
|
|
22060
22060
|
const { type, multiple, maskedConfig } = props;
|
|
22061
22061
|
if (isEnableConf(maskedConfig)) {
|
|
22062
22062
|
if (multiple) {
|
|
22063
|
-
errLog$f('vxe.error.notSupportProp', ['multiple', '
|
|
22063
|
+
errLog$f('vxe.error.notSupportProp', ['multiple', 'masked-config.enabled=true', 'masked-config.enabled=false']);
|
|
22064
22064
|
}
|
|
22065
22065
|
if (!maskedTypes.includes(type)) {
|
|
22066
|
-
warnLog$c('vxe.error.notSupportProp', ['
|
|
22066
|
+
warnLog$c('vxe.error.notSupportProp', ['masked-config.enabled=true', `type=${type}`, `type=${maskedTypes.join('|')}`]);
|
|
22067
22067
|
}
|
|
22068
22068
|
}
|
|
22069
22069
|
});
|