vxe-pc-ui 4.18.7 → 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.
Files changed (48) hide show
  1. package/dist/all.esm.js +4 -4
  2. package/dist/style.css +1 -1
  3. package/dist/style.min.css +1 -1
  4. package/es/date-picker/src/date-picker.js +2 -2
  5. package/es/icon/style.css +1 -1
  6. package/es/style.css +1 -1
  7. package/es/style.min.css +1 -1
  8. package/es/ui/index.js +1 -1
  9. package/es/ui/src/log.js +1 -1
  10. package/lib/date-picker/src/date-picker.js +2 -2
  11. package/lib/date-picker/src/date-picker.min.js +1 -1
  12. package/lib/icon/style/style.css +1 -1
  13. package/lib/icon/style/style.min.css +1 -1
  14. package/lib/index.umd.js +4 -4
  15. package/lib/index.umd.min.js +1 -1
  16. package/lib/style.css +1 -1
  17. package/lib/style.min.css +1 -1
  18. package/lib/ui/index.js +1 -1
  19. package/lib/ui/index.min.js +1 -1
  20. package/lib/ui/src/log.js +1 -1
  21. package/lib/ui/src/log.min.js +1 -1
  22. package/package.json +1 -1
  23. package/packages/date-picker/src/date-picker.ts +2 -2
  24. package/types/components/column.d.ts +15 -15
  25. package/types/components/grid.d.ts +3 -3
  26. package/types/components/table-module/edit.d.ts +12 -12
  27. package/types/components/table-module/filter.d.ts +3 -3
  28. package/types/components/table-module/validator.d.ts +5 -5
  29. package/types/components/table-plugins/extend-cell-area.d.ts +32 -32
  30. package/types/components/table.d.ts +217 -217
  31. package/types/components/toolbar.d.ts +1 -1
  32. package/types/handles/form-design.d.ts +1 -1
  33. package/types/handles/table.d.ts +1 -1
  34. package/types/ui/global-config.d.ts +9 -4
  35. package/types/ui/interceptor.d.ts +5 -5
  36. package/types/ui/renderer.d.ts +12 -12
  37. /package/es/icon/{iconfont.1788921152771.ttf → iconfont.1788956895944.ttf} +0 -0
  38. /package/es/icon/{iconfont.1788921152771.woff → iconfont.1788956895944.woff} +0 -0
  39. /package/es/icon/{iconfont.1788921152771.woff2 → iconfont.1788956895944.woff2} +0 -0
  40. /package/es/{iconfont.1788921152771.ttf → iconfont.1788956895944.ttf} +0 -0
  41. /package/es/{iconfont.1788921152771.woff → iconfont.1788956895944.woff} +0 -0
  42. /package/es/{iconfont.1788921152771.woff2 → iconfont.1788956895944.woff2} +0 -0
  43. /package/lib/icon/style/{iconfont.1788921152771.ttf → iconfont.1788956895944.ttf} +0 -0
  44. /package/lib/icon/style/{iconfont.1788921152771.woff → iconfont.1788956895944.woff} +0 -0
  45. /package/lib/icon/style/{iconfont.1788921152771.woff2 → iconfont.1788956895944.woff2} +0 -0
  46. /package/lib/{iconfont.1788921152771.ttf → iconfont.1788956895944.ttf} +0 -0
  47. /package/lib/{iconfont.1788921152771.woff → iconfont.1788956895944.woff} +0 -0
  48. /package/lib/{iconfont.1788921152771.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.7"}`;
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.7";
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', 'control-config.enabled=true', 'control-config.enabled=false']);
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', ['control-config.enabled=true', `type=${type}`, `type=${maskedTypes.join('|')}`]);
22066
+ warnLog$c('vxe.error.notSupportProp', ['masked-config.enabled=true', `type=${type}`, `type=${maskedTypes.join('|')}`]);
22067
22067
  }
22068
22068
  }
22069
22069
  });