vxe-pc-ui 4.17.19 → 4.17.21

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 (99) hide show
  1. package/dist/all.esm.js +492 -191
  2. package/dist/style.css +1 -1
  3. package/dist/style.min.css +1 -1
  4. package/es/avatar/src/avatar.js +3 -3
  5. package/es/badge/src/badge.js +3 -3
  6. package/es/components.js +31 -1
  7. package/es/empty/src/empty.js +3 -3
  8. package/es/icon/style.css +1 -1
  9. package/es/rate/src/rate.js +3 -3
  10. package/es/result/src/result.js +3 -3
  11. package/es/slider/src/slider.js +191 -71
  12. package/es/slider/style.css +8 -15
  13. package/es/slider/style.min.css +1 -1
  14. package/es/space/index.js +12 -0
  15. package/es/space/src/space.js +143 -0
  16. package/es/space/style.css +37 -0
  17. package/es/space/style.min.css +1 -0
  18. package/es/style.css +1 -1
  19. package/es/style.min.css +1 -1
  20. package/es/ui/index.js +2 -1
  21. package/es/ui/src/dom.js +3 -0
  22. package/es/ui/src/log.js +1 -1
  23. package/es/vxe-slider/style.css +8 -15
  24. package/es/vxe-slider/style.min.css +1 -1
  25. package/es/vxe-space/index.js +3 -0
  26. package/es/vxe-space/style.css +37 -0
  27. package/es/vxe-space/style.min.css +1 -0
  28. package/es/watermark/src/watermark.js +3 -3
  29. package/lib/avatar/src/avatar.js +3 -3
  30. package/lib/badge/src/badge.js +3 -3
  31. package/lib/components.js +41 -2
  32. package/lib/components.min.js +1 -1
  33. package/lib/empty/src/empty.js +3 -3
  34. package/lib/icon/style/style.css +1 -1
  35. package/lib/icon/style/style.min.css +1 -1
  36. package/lib/index.umd.js +432 -99
  37. package/lib/index.umd.min.js +1 -1
  38. package/lib/rate/src/rate.js +3 -3
  39. package/lib/result/src/result.js +3 -3
  40. package/lib/slider/src/slider.js +196 -77
  41. package/lib/slider/src/slider.min.js +1 -1
  42. package/lib/slider/style/style.css +8 -15
  43. package/lib/slider/style/style.min.css +1 -1
  44. package/lib/space/index.js +19 -0
  45. package/lib/space/index.min.js +1 -0
  46. package/lib/space/src/space.js +167 -0
  47. package/lib/space/src/space.min.js +1 -0
  48. package/lib/space/style/index.js +1 -0
  49. package/lib/space/style/style.css +37 -0
  50. package/lib/space/style/style.min.css +1 -0
  51. package/lib/style.css +1 -1
  52. package/lib/style.min.css +1 -1
  53. package/lib/ui/index.js +2 -1
  54. package/lib/ui/index.min.js +1 -1
  55. package/lib/ui/src/dom.js +4 -0
  56. package/lib/ui/src/dom.min.js +1 -1
  57. package/lib/ui/src/log.js +1 -1
  58. package/lib/ui/src/log.min.js +1 -1
  59. package/lib/vxe-slider/style/style.css +8 -15
  60. package/lib/vxe-slider/style/style.min.css +1 -1
  61. package/lib/vxe-space/index.js +21 -0
  62. package/lib/vxe-space/index.min.js +1 -0
  63. package/lib/vxe-space/style/index.js +1 -0
  64. package/lib/vxe-space/style/style.css +37 -0
  65. package/lib/vxe-space/style/style.min.css +1 -0
  66. package/lib/watermark/src/watermark.js +3 -3
  67. package/package.json +4 -3
  68. package/packages/avatar/src/avatar.ts +3 -3
  69. package/packages/badge/src/badge.ts +3 -3
  70. package/packages/components.ts +31 -1
  71. package/packages/empty/src/empty.ts +3 -3
  72. package/packages/rate/src/rate.ts +3 -3
  73. package/packages/result/src/result.ts +3 -3
  74. package/packages/slider/src/slider.ts +194 -73
  75. package/packages/space/index.ts +16 -0
  76. package/packages/space/src/space.ts +167 -0
  77. package/packages/ui/index.ts +1 -0
  78. package/packages/ui/src/dom.ts +4 -0
  79. package/packages/watermark/src/watermark.ts +3 -3
  80. package/styles/all.scss +1 -0
  81. package/styles/components/slider.scss +8 -13
  82. package/styles/components/space.scss +38 -0
  83. package/styles/theme/base.scss +20 -6
  84. package/types/all.d.ts +3 -0
  85. package/types/components/slider.d.ts +13 -0
  86. package/types/components/space.d.ts +112 -0
  87. package/types/ui/global-config.d.ts +2 -0
  88. /package/es/icon/{iconfont.1787739841308.ttf → iconfont.1787994747472.ttf} +0 -0
  89. /package/es/icon/{iconfont.1787739841308.woff → iconfont.1787994747472.woff} +0 -0
  90. /package/es/icon/{iconfont.1787739841308.woff2 → iconfont.1787994747472.woff2} +0 -0
  91. /package/es/{iconfont.1787739841308.ttf → iconfont.1787994747472.ttf} +0 -0
  92. /package/es/{iconfont.1787739841308.woff → iconfont.1787994747472.woff} +0 -0
  93. /package/es/{iconfont.1787739841308.woff2 → iconfont.1787994747472.woff2} +0 -0
  94. /package/lib/icon/style/{iconfont.1787739841308.ttf → iconfont.1787994747472.ttf} +0 -0
  95. /package/lib/icon/style/{iconfont.1787739841308.woff → iconfont.1787994747472.woff} +0 -0
  96. /package/lib/icon/style/{iconfont.1787739841308.woff2 → iconfont.1787994747472.woff2} +0 -0
  97. /package/lib/{iconfont.1787739841308.ttf → iconfont.1787994747472.ttf} +0 -0
  98. /package/lib/{iconfont.1787739841308.woff → iconfont.1787994747472.woff} +0 -0
  99. /package/lib/{iconfont.1787739841308.woff2 → iconfont.1787994747472.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.17.19"}`;
84
+ const uiVersion = `ui v${"4.17.21"}`;
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$i = log.create('warn', uiVersion);
96
96
  log.create('error', uiVersion);
97
97
 
98
- const version = "4.17.19";
98
+ const version = "4.17.21";
99
99
  VxeUI.uiVersion = version;
100
100
  VxeUI.dynamicApp = dynamicApp;
101
101
  function config(options) {
@@ -466,6 +466,7 @@ setConfig$1({
466
466
  max: 100,
467
467
  min: 0
468
468
  },
469
+ space: {},
469
470
  steps: {},
470
471
  switch: {},
471
472
  tabPane: {},
@@ -1852,6 +1853,9 @@ function getTpImg() {
1852
1853
  }
1853
1854
  return tpImgEl;
1854
1855
  }
1856
+ function getPropClass(property, params) {
1857
+ return property ? (XEUtils.isFunction(property) ? property(params) : property) || '' : '';
1858
+ }
1855
1859
  const reClsMap = {};
1856
1860
  function getClsRE(cls) {
1857
1861
  if (!reClsMap[cls]) {
@@ -2514,11 +2518,11 @@ var VxeAvatarComponent = defineVxeComponent({
2514
2518
  const dispatchEvent = (type, params, evnt) => {
2515
2519
  emit(type, createEvent(evnt, { $avatar: $xeAvatar }, params));
2516
2520
  };
2517
- const collapsePaneMethods = {
2521
+ const avatarMethods = {
2518
2522
  dispatchEvent
2519
2523
  };
2520
- const collapsePanePrivateMethods = {};
2521
- Object.assign($xeAvatar, collapsePaneMethods, collapsePanePrivateMethods);
2524
+ const avatarPrivateMethods = {};
2525
+ Object.assign($xeAvatar, avatarMethods, avatarPrivateMethods);
2522
2526
  const renderContent = () => {
2523
2527
  const { icon, content, src } = props;
2524
2528
  if (icon) {
@@ -2633,7 +2637,7 @@ function deModelValue(nodeid) {
2633
2637
  return nodeid ? decodeURIComponent(`${nodeid}`) : nodeid;
2634
2638
  }
2635
2639
 
2636
- function createReactData$m() {
2640
+ function createReactData$n() {
2637
2641
  return {
2638
2642
  target: null,
2639
2643
  isUpdate: false,
@@ -2650,7 +2654,7 @@ function createReactData$m() {
2650
2654
  }
2651
2655
  };
2652
2656
  }
2653
- function createInternalData$l() {
2657
+ function createInternalData$m() {
2654
2658
  return {
2655
2659
  // showDelayTip: undefined
2656
2660
  };
@@ -2747,8 +2751,8 @@ var VxeTooltipComponent = defineVxeComponent({
2747
2751
  const { slots, emit } = context;
2748
2752
  const xID = XEUtils.uniqueId();
2749
2753
  const { computeSize } = useSize(props);
2750
- const reactData = reactive(createReactData$m());
2751
- const internalData = createInternalData$l();
2754
+ const reactData = reactive(createReactData$n());
2755
+ const internalData = createInternalData$m();
2752
2756
  const refElem = ref();
2753
2757
  const contentWrapperfElem = ref();
2754
2758
  const computeWrapperStyle = computed(() => {
@@ -3133,8 +3137,8 @@ var VxeTooltipComponent = defineVxeComponent({
3133
3137
  }
3134
3138
  });
3135
3139
  onUnmounted(() => {
3136
- XEUtils.assign(reactData, createReactData$m());
3137
- XEUtils.assign(internalData, createInternalData$l());
3140
+ XEUtils.assign(reactData, createReactData$n());
3141
+ XEUtils.assign(internalData, createInternalData$m());
3138
3142
  });
3139
3143
  $xeTooltip.renderVN = renderVN;
3140
3144
  return $xeTooltip;
@@ -3901,12 +3905,12 @@ VxeUI.component(VxeButtonComponent);
3901
3905
  const Button = VxeButton;
3902
3906
 
3903
3907
  const { errLog: errLog$j } = createComponentLog('backtop');
3904
- function createInternalData$k() {
3908
+ function createInternalData$l() {
3905
3909
  return {
3906
3910
  targetEl: null
3907
3911
  };
3908
3912
  }
3909
- function createReactData$l() {
3913
+ function createReactData$m() {
3910
3914
  return {
3911
3915
  showBtn: false,
3912
3916
  backtopZindex: 0
@@ -3985,8 +3989,8 @@ var VxeBacktopComponent = defineVxeComponent({
3985
3989
  const xID = XEUtils.uniqueId();
3986
3990
  const refElem = ref();
3987
3991
  const { computeSize } = useSize(props);
3988
- const internalData = createInternalData$k();
3989
- const reactData = reactive(createReactData$l());
3992
+ const internalData = createInternalData$l();
3993
+ const reactData = reactive(createReactData$m());
3990
3994
  const refMaps = {
3991
3995
  refElem
3992
3996
  };
@@ -4160,8 +4164,8 @@ var VxeBacktopComponent = defineVxeComponent({
4160
4164
  });
4161
4165
  onBeforeUnmount(() => {
4162
4166
  removeScrollEvent();
4163
- XEUtils.assign(reactData, createReactData$l());
4164
- XEUtils.assign(internalData, createInternalData$k());
4167
+ XEUtils.assign(reactData, createReactData$m());
4168
+ XEUtils.assign(internalData, createInternalData$l());
4165
4169
  });
4166
4170
  $xeBacktop.renderVN = renderVN;
4167
4171
  return $xeBacktop;
@@ -4217,11 +4221,11 @@ var VxeBadgeComponent = defineVxeComponent({
4217
4221
  const dispatchEvent = (type, params, evnt) => {
4218
4222
  emit(type, createEvent(evnt, { $badge: $xeBadge }, params));
4219
4223
  };
4220
- const collapsePaneMethods = {
4224
+ const badgeMethods = {
4221
4225
  dispatchEvent
4222
4226
  };
4223
- const collapsePanePrivateMethods = {};
4224
- Object.assign($xeBadge, collapsePaneMethods, collapsePanePrivateMethods);
4227
+ const badgePrivateMethods = {};
4228
+ Object.assign($xeBadge, badgeMethods, badgePrivateMethods);
4225
4229
  const renderVN = () => {
4226
4230
  const { dot, content } = props;
4227
4231
  const vSize = computeSize.value;
@@ -6920,7 +6924,7 @@ function getRowIdByField(row, keyField) {
6920
6924
  const rowKey = getRowKeyByField(row, keyField);
6921
6925
  return enModelValue(rowKey);
6922
6926
  }
6923
- function createReactData$k() {
6927
+ function createReactData$l() {
6924
6928
  return {
6925
6929
  scrollYLoad: false,
6926
6930
  bodyHeight: 0,
@@ -6943,7 +6947,7 @@ function createReactData$k() {
6943
6947
  isCrossDragRow: false
6944
6948
  };
6945
6949
  }
6946
- function createInternalData$j() {
6950
+ function createInternalData$k() {
6947
6951
  return {
6948
6952
  resizeObserver: undefined,
6949
6953
  fullData: [],
@@ -7030,8 +7034,8 @@ var VxeListComponent = defineVxeComponent({
7030
7034
  const xID = XEUtils.uniqueId();
7031
7035
  const browseObj = XEUtils.browse();
7032
7036
  const { computeSize } = useSize(props);
7033
- const reactData = reactive(createReactData$k());
7034
- const internalData = createInternalData$j();
7037
+ const reactData = reactive(createReactData$l());
7038
+ const internalData = createInternalData$k();
7035
7039
  const crossListDragRowInfo = getCrossListDragRowInfo();
7036
7040
  const refElem = ref();
7037
7041
  const refHeaderElem = ref();
@@ -8994,8 +8998,8 @@ var VxeListComponent = defineVxeComponent({
8994
8998
  resizeObserver.disconnect();
8995
8999
  }
8996
9000
  globalEvents.off($xeList, 'resize');
8997
- XEUtils.assign(reactData, createReactData$k());
8998
- XEUtils.assign(internalData, createInternalData$j());
9001
+ XEUtils.assign(reactData, createReactData$l());
9002
+ XEUtils.assign(internalData, createInternalData$k());
8999
9003
  });
9000
9004
  $xeList.renderVN = renderVN;
9001
9005
  return $xeList;
@@ -11772,7 +11776,7 @@ const Input = VxeInput;
11772
11776
  function getNodeUniqueId$1() {
11773
11777
  return XEUtils.uniqueId('node_');
11774
11778
  }
11775
- function createReactData$j() {
11779
+ function createReactData$k() {
11776
11780
  return {
11777
11781
  initialized: false,
11778
11782
  searchValue: '',
@@ -11795,7 +11799,7 @@ function createReactData$j() {
11795
11799
  lazyOptFlag: 1
11796
11800
  };
11797
11801
  }
11798
- function createInternalData$i() {
11802
+ function createInternalData$j() {
11799
11803
  return {
11800
11804
  // hpTimeout: undefined,
11801
11805
  listVirtualYOpts: {
@@ -11923,8 +11927,8 @@ var VxeCascaderComponent = defineVxeComponent({
11923
11927
  const refInpSearch = ref();
11924
11928
  const refChunkWrapper = ref();
11925
11929
  const refOptionPanel = ref();
11926
- const reactData = reactive(createReactData$j());
11927
- const internalData = createInternalData$i();
11930
+ const reactData = reactive(createReactData$k());
11931
+ const internalData = createInternalData$j();
11928
11932
  const refMaps = {
11929
11933
  refElem
11930
11934
  };
@@ -13534,8 +13538,8 @@ var VxeCascaderComponent = defineVxeComponent({
13534
13538
  globalEvents.off($xeCascader, 'mousedown');
13535
13539
  globalEvents.off($xeCascader, 'blur');
13536
13540
  globalEvents.off($xeCascader, 'resize');
13537
- XEUtils.assign(reactData, createReactData$j());
13538
- XEUtils.assign(internalData, createInternalData$i());
13541
+ XEUtils.assign(reactData, createReactData$k());
13542
+ XEUtils.assign(internalData, createInternalData$j());
13539
13543
  });
13540
13544
  provide('$xeCascader', $xeCascader);
13541
13545
  $xeCascader.renderVN = renderVN;
@@ -13939,10 +13943,10 @@ dynamicApp.use(VxeCheckboxButton);
13939
13943
  VxeUI.component(VxeCheckboxButtonComponent);
13940
13944
  const CheckboxButton = VxeCheckboxButton;
13941
13945
 
13942
- function createReactData$i() {
13946
+ function createReactData$j() {
13943
13947
  return {};
13944
13948
  }
13945
- function createInternalData$h() {
13949
+ function createInternalData$i() {
13946
13950
  return {
13947
13951
  // isLoaded: false
13948
13952
  };
@@ -13986,8 +13990,8 @@ var VxeCheckboxGroupComponent = defineVxeComponent({
13986
13990
  const $xeForm = inject('$xeForm', null);
13987
13991
  const formItemInfo = inject('xeFormItemInfo', null);
13988
13992
  const xID = XEUtils.uniqueId();
13989
- const reactData = reactive(createReactData$i());
13990
- const internalData = createInternalData$h();
13993
+ const reactData = reactive(createReactData$j());
13994
+ const internalData = createInternalData$i();
13991
13995
  const computeIsReadonly = computed(() => {
13992
13996
  const { readonly } = props;
13993
13997
  if (readonly === null) {
@@ -14160,8 +14164,8 @@ var VxeCheckboxGroupComponent = defineVxeComponent({
14160
14164
  });
14161
14165
  });
14162
14166
  onUnmounted(() => {
14163
- XEUtils.assign(reactData, createReactData$i());
14164
- XEUtils.assign(internalData, createInternalData$h());
14167
+ XEUtils.assign(reactData, createReactData$j());
14168
+ XEUtils.assign(internalData, createInternalData$i());
14165
14169
  });
14166
14170
  provide('$xeCheckboxGroup', $xeCheckboxGroup);
14167
14171
  $xeCheckboxGroup.renderVN = renderVN;
@@ -14294,7 +14298,7 @@ dynamicApp.use(VxeCol);
14294
14298
  VxeUI.component(VxeColComponent);
14295
14299
  const Col = VxeCol;
14296
14300
 
14297
- function createReactData$h() {
14301
+ function createReactData$i() {
14298
14302
  return {
14299
14303
  staticPanes: [],
14300
14304
  cachePaneMaps: {},
@@ -14302,7 +14306,7 @@ function createReactData$h() {
14302
14306
  openKeyFlag: 0
14303
14307
  };
14304
14308
  }
14305
- function createInternalData$g() {
14309
+ function createInternalData$h() {
14306
14310
  return {
14307
14311
  // esTime: null,
14308
14312
  activeKeyMaps: {},
@@ -14339,8 +14343,8 @@ var VxeCollapseComponent = defineVxeComponent({
14339
14343
  const xID = XEUtils.uniqueId();
14340
14344
  const { computeSize } = useSize(props);
14341
14345
  const refElem = ref();
14342
- const reactData = reactive(createReactData$h());
14343
- const internalData = createInternalData$g();
14346
+ const reactData = reactive(createReactData$i());
14347
+ const internalData = createInternalData$h();
14344
14348
  const refMaps = {
14345
14349
  refElem
14346
14350
  };
@@ -14619,8 +14623,8 @@ var VxeCollapseComponent = defineVxeComponent({
14619
14623
  if (esTime) {
14620
14624
  clearTimeout(esTime);
14621
14625
  }
14622
- XEUtils.assign(reactData, createReactData$h());
14623
- XEUtils.assign(internalData, createInternalData$g());
14626
+ XEUtils.assign(reactData, createReactData$i());
14627
+ XEUtils.assign(internalData, createInternalData$h());
14624
14628
  });
14625
14629
  provide('$xeCollapse', $xeCollapse);
14626
14630
  $xeCollapse.renderVN = renderVN;
@@ -17289,12 +17293,12 @@ VxeUI.color = {
17289
17293
  };
17290
17294
  const ColorPicker = VxeColorPicker;
17291
17295
 
17292
- function createInternalData$f() {
17296
+ function createInternalData$g() {
17293
17297
  return {
17294
17298
  // leaveTime: null
17295
17299
  };
17296
17300
  }
17297
- function createReactData$g() {
17301
+ function createReactData$h() {
17298
17302
  return {
17299
17303
  visible: false,
17300
17304
  activeOption: null,
@@ -17349,8 +17353,8 @@ var VxeContextMenuComponent = defineVxeComponent({
17349
17353
  const xID = XEUtils.uniqueId();
17350
17354
  const refElem = ref();
17351
17355
  const { computeSize } = useSize(props);
17352
- const internalData = createInternalData$f();
17353
- const reactData = reactive(createReactData$g());
17356
+ const internalData = createInternalData$g();
17357
+ const reactData = reactive(createReactData$h());
17354
17358
  const refMaps = {
17355
17359
  refElem
17356
17360
  };
@@ -17905,8 +17909,8 @@ var VxeContextMenuComponent = defineVxeComponent({
17905
17909
  globalEvents.off($xeContextMenu, 'keydown');
17906
17910
  globalEvents.off($xeContextMenu, 'mousedown');
17907
17911
  globalEvents.off($xeContextMenu, 'blur');
17908
- XEUtils.assign(reactData, createReactData$g());
17909
- XEUtils.assign(internalData, createInternalData$f());
17912
+ XEUtils.assign(reactData, createReactData$h());
17913
+ XEUtils.assign(internalData, createInternalData$g());
17910
17914
  });
17911
17915
  $xeContextMenu.renderVN = renderVN;
17912
17916
  return $xeContextMenu;
@@ -20224,7 +20228,7 @@ const parseInputKayMaps = {};
20224
20228
  inputMaskedKeys.forEach(key => {
20225
20229
  parseInputKayMaps[key] = true;
20226
20230
  });
20227
- function createReactData$f() {
20231
+ function createReactData$g() {
20228
20232
  return {
20229
20233
  initialized: false,
20230
20234
  panelIndex: 0,
@@ -20237,7 +20241,7 @@ function createReactData$f() {
20237
20241
  labelFlag: 0
20238
20242
  };
20239
20243
  }
20240
- function createInternalData$e() {
20244
+ function createInternalData$f() {
20241
20245
  return {
20242
20246
  // hpTimeout: undefined,
20243
20247
  // fsTimeout: undefined,
@@ -20382,8 +20386,8 @@ var VxeDatePickerComponent = defineVxeComponent({
20382
20386
  const formItemInfo = inject('xeFormItemInfo', null);
20383
20387
  const xID = XEUtils.uniqueId();
20384
20388
  const { computeSize } = useSize(props);
20385
- const reactData = reactive(createReactData$f());
20386
- const internalData = createInternalData$e();
20389
+ const reactData = reactive(createReactData$g());
20390
+ const internalData = createInternalData$f();
20387
20391
  const refElem = ref();
20388
20392
  const refInputTarget = ref();
20389
20393
  const refInputPanel = ref();
@@ -21819,8 +21823,8 @@ var VxeDatePickerComponent = defineVxeComponent({
21819
21823
  globalEvents.off($xeDatePicker, 'keydown');
21820
21824
  globalEvents.off($xeDatePicker, 'blur');
21821
21825
  globalEvents.off($xeDatePicker, 'resize');
21822
- XEUtils.assign(reactData, createReactData$f());
21823
- XEUtils.assign(internalData, createInternalData$e());
21826
+ XEUtils.assign(reactData, createReactData$g());
21827
+ XEUtils.assign(internalData, createInternalData$f());
21824
21828
  });
21825
21829
  provide('$xeDatePicker', $xeDatePicker);
21826
21830
  $xeDatePicker.renderVN = renderVN;
@@ -21841,7 +21845,7 @@ VxeUI.component(VxeDatePickerComponent);
21841
21845
  const DatePicker = VxeDatePicker;
21842
21846
 
21843
21847
  const { errLog: errLog$e } = createComponentLog('date-range-picker');
21844
- function createReactData$e() {
21848
+ function createReactData$f() {
21845
21849
  return {
21846
21850
  initialized: false,
21847
21851
  panelIndex: 0,
@@ -21856,7 +21860,7 @@ function createReactData$e() {
21856
21860
  paneEndVal: []
21857
21861
  };
21858
21862
  }
21859
- function createInternalData$d() {
21863
+ function createInternalData$e() {
21860
21864
  return {
21861
21865
  // selectStatus: false
21862
21866
  // hpTimeout: undefined
@@ -22003,8 +22007,8 @@ var VxeDateRangePickerComponent = defineVxeComponent({
22003
22007
  const formItemInfo = inject('xeFormItemInfo', null);
22004
22008
  const xID = XEUtils.uniqueId();
22005
22009
  const { computeSize } = useSize(props);
22006
- const reactData = reactive(createReactData$e());
22007
- const internalData = createInternalData$d();
22010
+ const reactData = reactive(createReactData$f());
22011
+ const internalData = createInternalData$e();
22008
22012
  const refElem = ref();
22009
22013
  const refInputTarget = ref();
22010
22014
  const refInputPanel = ref();
@@ -23330,8 +23334,8 @@ var VxeDateRangePickerComponent = defineVxeComponent({
23330
23334
  globalEvents.off($xeDateRangePicker, 'mousedown');
23331
23335
  globalEvents.off($xeDateRangePicker, 'blur');
23332
23336
  globalEvents.off($xeDateRangePicker, 'resize');
23333
- XEUtils.assign(reactData, createReactData$e());
23334
- XEUtils.assign(internalData, createInternalData$d());
23337
+ XEUtils.assign(reactData, createReactData$f());
23338
+ XEUtils.assign(internalData, createInternalData$e());
23335
23339
  });
23336
23340
  provide('$xeDateRangePicker', $xeDateRangePicker);
23337
23341
  $xeDateRangePicker.renderVN = renderVN;
@@ -24083,11 +24087,11 @@ var VxeEmptyComponent = defineVxeComponent({
24083
24087
  const dispatchEvent = (type, params, evnt) => {
24084
24088
  emit(type, createEvent(evnt, { $empty: $xeEmpty }, params));
24085
24089
  };
24086
- const collapsePaneMethods = {
24090
+ const emptyMethods = {
24087
24091
  dispatchEvent
24088
24092
  };
24089
- const collapsePanePrivateMethods = {};
24090
- Object.assign($xeEmpty, collapsePaneMethods, collapsePanePrivateMethods);
24093
+ const emptyPrivateMethods = {};
24094
+ Object.assign($xeEmpty, emptyMethods, emptyPrivateMethods);
24091
24095
  const renderVN = () => {
24092
24096
  const { imageUrl, imageStyle, icon, status, content } = props;
24093
24097
  return h('div', {
@@ -25529,7 +25533,7 @@ function checkRuleStatus(rule, data, val) {
25529
25533
  }
25530
25534
  return true;
25531
25535
  }
25532
- function createReactData$d() {
25536
+ function createReactData$e() {
25533
25537
  return {
25534
25538
  collapseAll: false,
25535
25539
  staticItems: [],
@@ -25537,7 +25541,7 @@ function createReactData$d() {
25537
25541
  itemWidth: 0
25538
25542
  };
25539
25543
  }
25540
- function createInternalData$c() {
25544
+ function createInternalData$d() {
25541
25545
  return {
25542
25546
  meTimeout: undefined,
25543
25547
  stTimeout: undefined,
@@ -25646,8 +25650,8 @@ var VxeFormComponent = defineVxeComponent({
25646
25650
  const $xeGrid = inject('$xeGrid', null);
25647
25651
  const xID = XEUtils.uniqueId();
25648
25652
  const { computeSize } = useSize(props);
25649
- const reactData = reactive(createReactData$d());
25650
- const internalData = createInternalData$c();
25653
+ const reactData = reactive(createReactData$e());
25654
+ const internalData = createInternalData$d();
25651
25655
  const refElem = ref();
25652
25656
  const refTooltip = ref();
25653
25657
  let formMethods = {};
@@ -26356,8 +26360,8 @@ var VxeFormComponent = defineVxeComponent({
26356
26360
  });
26357
26361
  onUnmounted(() => {
26358
26362
  globalEvents.off($xeForm, 'resize');
26359
- XEUtils.assign(reactData, createReactData$d());
26360
- XEUtils.assign(internalData, createInternalData$c());
26363
+ XEUtils.assign(reactData, createReactData$e());
26364
+ XEUtils.assign(internalData, createInternalData$d());
26361
26365
  });
26362
26366
  reactData.collapseAll = !!props.collapseStatus;
26363
26367
  if (props.items) {
@@ -26484,7 +26488,7 @@ dynamicApp.use(VxeFormItem);
26484
26488
  VxeUI.component(VxeFormItemComponent);
26485
26489
  const FormItem = VxeFormItem;
26486
26490
 
26487
- function createReactData$c() {
26491
+ function createReactData$d() {
26488
26492
  return {
26489
26493
  initialized: false,
26490
26494
  selectIcon: '',
@@ -26498,7 +26502,7 @@ function createReactData$c() {
26498
26502
  iconList: []
26499
26503
  };
26500
26504
  }
26501
- function createInternalData$b() {
26505
+ function createInternalData$c() {
26502
26506
  return {
26503
26507
  fullList: []
26504
26508
  // hpTimeout: undefined
@@ -26560,8 +26564,8 @@ var VxeIconPickerComponent = defineVxeComponent({
26560
26564
  const formItemInfo = inject('xeFormItemInfo', null);
26561
26565
  const xID = XEUtils.uniqueId();
26562
26566
  const { computeSize } = useSize(props);
26563
- const reactData = reactive(createReactData$c());
26564
- const internalData = createInternalData$b();
26567
+ const reactData = reactive(createReactData$d());
26568
+ const internalData = createInternalData$c();
26565
26569
  const refElem = ref();
26566
26570
  const refInput = ref();
26567
26571
  const refOptionPanel = ref();
@@ -27161,8 +27165,8 @@ var VxeIconPickerComponent = defineVxeComponent({
27161
27165
  globalEvents.off($xeIconPicker, 'mousedown');
27162
27166
  globalEvents.off($xeIconPicker, 'keydown');
27163
27167
  globalEvents.off($xeIconPicker, 'blur');
27164
- XEUtils.assign(reactData, createReactData$c());
27165
- XEUtils.assign(internalData, createInternalData$b());
27168
+ XEUtils.assign(reactData, createReactData$d());
27169
+ XEUtils.assign(internalData, createInternalData$c());
27166
27170
  });
27167
27171
  provide('$xeIconPicker', $xeIconPicker);
27168
27172
  $xeIconPicker.renderVN = renderVN;
@@ -27865,13 +27869,13 @@ const openPreviewImage = (options) => {
27865
27869
  return Promise.resolve();
27866
27870
  };
27867
27871
 
27868
- function createInternalData$a() {
27872
+ function createInternalData$b() {
27869
27873
  return {
27870
27874
  // dgTime: 0,
27871
27875
  // mdTime: 0
27872
27876
  };
27873
27877
  }
27874
- function createReactData$b() {
27878
+ function createReactData$c() {
27875
27879
  return {};
27876
27880
  }
27877
27881
  var VxeImageComponent = defineVxeComponent({
@@ -27930,8 +27934,8 @@ var VxeImageComponent = defineVxeComponent({
27930
27934
  const $xeImageGroup = inject('$xeImageGroup', null);
27931
27935
  const refElem = ref();
27932
27936
  const { computeSize } = useSize(props);
27933
- const internalData = createInternalData$a();
27934
- const reactData = reactive(createReactData$b());
27937
+ const internalData = createInternalData$b();
27938
+ const reactData = reactive(createReactData$c());
27935
27939
  const refMaps = {
27936
27940
  refElem
27937
27941
  };
@@ -28117,8 +28121,8 @@ var VxeImageComponent = defineVxeComponent({
28117
28121
  ]);
28118
28122
  };
28119
28123
  onBeforeUnmount(() => {
28120
- XEUtils.assign(reactData, createReactData$b());
28121
- XEUtils.assign(internalData, createInternalData$a());
28124
+ XEUtils.assign(reactData, createReactData$c());
28125
+ XEUtils.assign(internalData, createInternalData$b());
28122
28126
  });
28123
28127
  $xeImage.renderVN = renderVN;
28124
28128
  return $xeImage;
@@ -28391,10 +28395,10 @@ dynamicApp.use(VxeLayoutAside);
28391
28395
  VxeUI.component(VxeLayoutAsideComponent);
28392
28396
  const LayoutAside = VxeLayoutAside;
28393
28397
 
28394
- function createInternalData$9() {
28398
+ function createInternalData$a() {
28395
28399
  return {};
28396
28400
  }
28397
- function createReactData$a() {
28401
+ function createReactData$b() {
28398
28402
  return {};
28399
28403
  }
28400
28404
  var VxeLayoutBodyComponent = defineVxeComponent({
@@ -28419,8 +28423,8 @@ var VxeLayoutBodyComponent = defineVxeComponent({
28419
28423
  const backtopId = `vxe_layout_body_backtop_${xID}`;
28420
28424
  const refElem = ref();
28421
28425
  const { computeSize } = useSize(props);
28422
- const internalData = createInternalData$9();
28423
- const reactData = reactive(createReactData$a());
28426
+ const internalData = createInternalData$a();
28427
+ const reactData = reactive(createReactData$b());
28424
28428
  const refMaps = {
28425
28429
  refElem
28426
28430
  };
@@ -28837,7 +28841,7 @@ const Link = VxeLink;
28837
28841
 
28838
28842
  const { errLog: errLog$a } = createComponentLog('menu');
28839
28843
  const { menus: menus$1, getConfig: getConfig$1, getIcon: getIcon$1 } = VxeUI;
28840
- function createInternalData$8() {
28844
+ function createInternalData$9() {
28841
28845
  return {
28842
28846
  lastActiveTime: 0,
28843
28847
  menuInitMaps: {},
@@ -28846,7 +28850,7 @@ function createInternalData$8() {
28846
28850
  menuEffectMaps: {}
28847
28851
  };
28848
28852
  }
28849
- function createReactData$9() {
28853
+ function createReactData$a() {
28850
28854
  return {
28851
28855
  initialized: false,
28852
28856
  isEnterCollapse: false,
@@ -28909,8 +28913,8 @@ var VxeMenuComponent = defineVxeComponent({
28909
28913
  const refElem = ref();
28910
28914
  const refCollapseElem = ref();
28911
28915
  const { computeSize } = useSize(props);
28912
- const reactData = reactive(createReactData$9());
28913
- const internalData = createInternalData$8();
28916
+ const reactData = reactive(createReactData$a());
28917
+ const internalData = createInternalData$9();
28914
28918
  const refMaps = {
28915
28919
  refElem
28916
28920
  };
@@ -29534,8 +29538,8 @@ var VxeMenuComponent = defineVxeComponent({
29534
29538
  });
29535
29539
  onBeforeUnmount(() => {
29536
29540
  globalEvents.off($xeMenu, 'resize');
29537
- XEUtils.assign(reactData, createReactData$9());
29538
- XEUtils.assign(internalData, createInternalData$8());
29541
+ XEUtils.assign(reactData, createReactData$a());
29542
+ XEUtils.assign(internalData, createInternalData$9());
29539
29543
  });
29540
29544
  reactData.initialized = !!props.collapsed;
29541
29545
  reactData.activeName = props.modelValue;
@@ -31404,7 +31408,7 @@ function isOptionVisible(option) {
31404
31408
  function getOptUniqueId$1() {
31405
31409
  return XEUtils.uniqueId('opt_');
31406
31410
  }
31407
- function createReactData$8() {
31411
+ function createReactData$9() {
31408
31412
  return {
31409
31413
  initialized: false,
31410
31414
  scrollYLoad: false,
@@ -31425,7 +31429,7 @@ function createReactData$8() {
31425
31429
  isActivated: false
31426
31430
  };
31427
31431
  }
31428
- function createInternalData$7() {
31432
+ function createInternalData$8() {
31429
31433
  return {
31430
31434
  // isLoaded: false,
31431
31435
  synchData: [],
@@ -31605,8 +31609,8 @@ var VxeSelectComponent = defineVxeComponent({
31605
31609
  const refOptionPanel = ref();
31606
31610
  const refVirtualBody = ref();
31607
31611
  const { computeSize } = useSize(props);
31608
- const reactData = reactive(createReactData$8());
31609
- const internalData = createInternalData$7();
31612
+ const reactData = reactive(createReactData$9());
31613
+ const internalData = createInternalData$8();
31610
31614
  const refMaps = {
31611
31615
  refElem
31612
31616
  };
@@ -33129,8 +33133,8 @@ var VxeSelectComponent = defineVxeComponent({
33129
33133
  globalEvents.off($xeSelect, 'keydown');
33130
33134
  globalEvents.off($xeSelect, 'blur');
33131
33135
  globalEvents.off($xeSelect, 'resize');
33132
- XEUtils.assign(reactData, createReactData$8());
33133
- XEUtils.assign(internalData, createInternalData$7());
33136
+ XEUtils.assign(reactData, createReactData$9());
33137
+ XEUtils.assign(internalData, createInternalData$8());
33134
33138
  });
33135
33139
  provide('$xeSelect', $xeSelect);
33136
33140
  $xeSelect.renderVN = renderVN;
@@ -35736,10 +35740,10 @@ dynamicApp.use(VxeRadioButton);
35736
35740
  VxeUI.component(VxeRadioButtonComponent);
35737
35741
  const RadioButton = VxeRadioButton;
35738
35742
 
35739
- function createReactData$7() {
35743
+ function createReactData$8() {
35740
35744
  return {};
35741
35745
  }
35742
- function createInternalData$6() {
35746
+ function createInternalData$7() {
35743
35747
  return {
35744
35748
  // isLoaded: false
35745
35749
  };
@@ -35784,8 +35788,8 @@ var VxeRadioGroupComponent = defineVxeComponent({
35784
35788
  const formItemInfo = inject('xeFormItemInfo', null);
35785
35789
  const xID = XEUtils.uniqueId();
35786
35790
  const { computeSize } = useSize(props);
35787
- const reactData = reactive(createReactData$7());
35788
- const internalData = createInternalData$6();
35791
+ const reactData = reactive(createReactData$8());
35792
+ const internalData = createInternalData$7();
35789
35793
  const computeIsReadonly = computed(() => {
35790
35794
  const { readonly } = props;
35791
35795
  if (readonly === null) {
@@ -35934,8 +35938,8 @@ var VxeRadioGroupComponent = defineVxeComponent({
35934
35938
  });
35935
35939
  });
35936
35940
  onUnmounted(() => {
35937
- XEUtils.assign(reactData, createReactData$7());
35938
- XEUtils.assign(internalData, createInternalData$6());
35941
+ XEUtils.assign(reactData, createReactData$8());
35942
+ XEUtils.assign(internalData, createInternalData$7());
35939
35943
  });
35940
35944
  provide('$xeRadioGroup', $xeRadioGroup);
35941
35945
  $xeRadioGroup.renderVN = renderVN;
@@ -36035,10 +36039,10 @@ var VxeRateComponent = defineVxeComponent({
36035
36039
  const dispatchEvent = (type, params, evnt) => {
36036
36040
  emit(type, createEvent(evnt, { $rate: $xeRate }, params));
36037
36041
  };
36038
- const collapsePaneMethods = {
36042
+ const rateMethods = {
36039
36043
  dispatchEvent
36040
36044
  };
36041
- const collapsePanePrivateMethods = {};
36045
+ const ratePrivateMethods = {};
36042
36046
  const emitModel = (value) => {
36043
36047
  emit('update:modelValue', value);
36044
36048
  };
@@ -36066,7 +36070,7 @@ var VxeRateComponent = defineVxeComponent({
36066
36070
  }
36067
36071
  }
36068
36072
  };
36069
- Object.assign($xeRate, collapsePaneMethods, collapsePanePrivateMethods);
36073
+ Object.assign($xeRate, rateMethods, ratePrivateMethods);
36070
36074
  const renderVN = () => {
36071
36075
  const { status } = props;
36072
36076
  const isDisabled = computeIsDisabled.value;
@@ -36155,11 +36159,11 @@ var VxeResultComponent = defineVxeComponent({
36155
36159
  const dispatchEvent = (type, params, evnt) => {
36156
36160
  emit(type, createEvent(evnt, { $result: $xeResult }, params));
36157
36161
  };
36158
- const collapsePaneMethods = {
36162
+ const resultMethods = {
36159
36163
  dispatchEvent
36160
36164
  };
36161
- const collapsePanePrivateMethods = {};
36162
- Object.assign($xeResult, collapsePaneMethods, collapsePanePrivateMethods);
36165
+ const resultPrivateMethods = {};
36166
+ Object.assign($xeResult, resultMethods, resultPrivateMethods);
36163
36167
  const renderVN = () => {
36164
36168
  const { imageUrl, imageStyle, icon, title, type, content } = props;
36165
36169
  const status = props.status || type;
@@ -36320,7 +36324,7 @@ dynamicApp.use(VxeRow);
36320
36324
  VxeUI.component(VxeRowComponent);
36321
36325
  const Row = VxeRow;
36322
36326
 
36323
- function createReactData$6() {
36327
+ function createReactData$7() {
36324
36328
  return {
36325
36329
  groupName: XEUtils.uniqueId('xe_group_'),
36326
36330
  selectStyle: {
@@ -36361,7 +36365,7 @@ var VxeSegmentedComponent = defineVxeComponent({
36361
36365
  const refElem = ref();
36362
36366
  const refWrapperElem = ref();
36363
36367
  const refSelectedElem = ref();
36364
- const reactData = reactive(createReactData$6());
36368
+ const reactData = reactive(createReactData$7());
36365
36369
  const refMaps = {
36366
36370
  refElem
36367
36371
  };
@@ -36534,7 +36538,7 @@ var VxeSegmentedComponent = defineVxeComponent({
36534
36538
  updateStyle();
36535
36539
  });
36536
36540
  onBeforeUnmount(() => {
36537
- XEUtils.assign(reactData, createReactData$6());
36541
+ XEUtils.assign(reactData, createReactData$7());
36538
36542
  });
36539
36543
  $xeSegmented.renderVN = renderVN;
36540
36544
  return $xeSegmented;
@@ -37691,10 +37695,23 @@ dynamicApp.use(VxeSplitPane);
37691
37695
  VxeUI.component(VxeSplitPaneComponent);
37692
37696
  const SplitPane = VxeSplitPane;
37693
37697
 
37698
+ function createInternalData$6() {
37699
+ return {
37700
+ // _isUp: false,
37701
+ currValue: 0,
37702
+ startValue: 0,
37703
+ endValue: 0
37704
+ };
37705
+ }
37706
+ function createReactData$6() {
37707
+ return {};
37708
+ }
37694
37709
  var VxeSliderComponent = defineVxeComponent({
37695
37710
  name: 'VxeSlider',
37696
37711
  props: {
37697
37712
  modelValue: [String, Number, Array],
37713
+ startValue: [String, Number],
37714
+ endValue: [String, Number],
37698
37715
  vertical: Boolean,
37699
37716
  max: {
37700
37717
  type: [String, Number],
@@ -37723,10 +37740,16 @@ var VxeSliderComponent = defineVxeComponent({
37723
37740
  disabled: {
37724
37741
  type: Boolean,
37725
37742
  default: null
37743
+ },
37744
+ immediate: {
37745
+ type: Boolean,
37746
+ default: () => getConfig$3().slider.immediate
37726
37747
  }
37727
37748
  },
37728
37749
  emits: [
37729
37750
  'update:modelValue',
37751
+ 'update:startValue',
37752
+ 'update:endValue',
37730
37753
  'change',
37731
37754
  'track-dragstart',
37732
37755
  'track-dragover',
@@ -37743,10 +37766,8 @@ var VxeSliderComponent = defineVxeComponent({
37743
37766
  const refTrackElem = ref();
37744
37767
  const refStartBtnElem = ref();
37745
37768
  const refEndBtnElem = ref();
37746
- const reactData = reactive({
37747
- startValue: 0,
37748
- endValue: 0
37749
- });
37769
+ const reactData = reactive(createReactData$6());
37770
+ const internalData = createInternalData$6();
37750
37771
  const refMaps = {
37751
37772
  refElem
37752
37773
  };
@@ -37776,6 +37797,10 @@ var VxeSliderComponent = defineVxeComponent({
37776
37797
  const computeMinNum = computed(() => {
37777
37798
  return XEUtils.toNumber(props.min || 0);
37778
37799
  });
37800
+ const computeMVal = computed(() => {
37801
+ const { range, startValue, endValue } = props;
37802
+ return range ? `${startValue || ''}${endValue || ''}` : '';
37803
+ });
37779
37804
  const computeMaps = {};
37780
37805
  const $xeSlider = {
37781
37806
  xID,
@@ -37786,6 +37811,7 @@ var VxeSliderComponent = defineVxeComponent({
37786
37811
  getComputeMaps: () => computeMaps
37787
37812
  };
37788
37813
  const emitModel = (value) => {
37814
+ internalData._isUp = true;
37789
37815
  emit('update:modelValue', value);
37790
37816
  };
37791
37817
  const dispatchEvent = (type, params, evnt) => {
@@ -37794,72 +37820,144 @@ var VxeSliderComponent = defineVxeComponent({
37794
37820
  const collapsePaneMethods = {
37795
37821
  dispatchEvent
37796
37822
  };
37797
- const getStartPercent = (startValue) => {
37798
- const { range } = props;
37799
- const maxNum = computeMaxNum.value;
37800
- const minNum = computeMinNum.value;
37801
- return range ? XEUtils.floor((startValue - minNum) / XEUtils.toNumber(maxNum - minNum) * 100) : 0;
37802
- };
37803
- const getEndPercent = (startValue, endValue) => {
37804
- const { range } = props;
37823
+ const getBarPercent = (currValue) => {
37805
37824
  const maxNum = computeMaxNum.value;
37806
37825
  const minNum = computeMinNum.value;
37807
- return XEUtils.floor((endValue - (range ? startValue : 0) - minNum) / XEUtils.toNumber(maxNum - minNum) * 100);
37808
- };
37809
- const updateModel = () => {
37810
- const { modelValue } = props;
37811
- if (XEUtils.isArray(modelValue)) {
37812
- const [sVal, eVal] = XEUtils.clone(modelValue, true).sort();
37813
- reactData.startValue = XEUtils.floor(XEUtils.toNumber(sVal || 0));
37814
- reactData.endValue = XEUtils.floor(XEUtils.toNumber(eVal || 0));
37826
+ if (maxNum === minNum) {
37827
+ return 0;
37828
+ }
37829
+ if (currValue < minNum) {
37830
+ currValue = minNum;
37831
+ }
37832
+ if (currValue > maxNum) {
37833
+ currValue = maxNum;
37834
+ }
37835
+ return ((currValue - minNum) / (maxNum - minNum)) * 100;
37836
+ };
37837
+ const parseFields = (startValue, endValue) => {
37838
+ const [sVal, eVal] = XEUtils.orderBy([XEUtils.toNumber(startValue), XEUtils.toNumber(endValue)]);
37839
+ const currValue = XEUtils.floor(XEUtils.toNumber(sVal || 0));
37840
+ internalData.currValue = currValue;
37841
+ internalData.startValue = currValue;
37842
+ internalData.endValue = XEUtils.floor(XEUtils.toNumber(eVal || 0));
37843
+ };
37844
+ const parseArrs = (arrVals) => {
37845
+ const [sVal, eVal] = XEUtils.orderBy(arrVals);
37846
+ const currValue = XEUtils.floor(XEUtils.toNumber(sVal || 0));
37847
+ internalData.currValue = currValue;
37848
+ internalData.startValue = currValue;
37849
+ internalData.endValue = XEUtils.floor(XEUtils.toNumber(eVal || 0));
37850
+ };
37851
+ const parseNum = (val) => {
37852
+ const currValue = XEUtils.floor(XEUtils.toNumber(val || 0));
37853
+ internalData.currValue = currValue;
37854
+ internalData.startValue = 0;
37855
+ internalData.endValue = currValue;
37856
+ };
37857
+ const updateModelValue = (umType) => {
37858
+ const { range, modelValue, startValue, endValue } = props;
37859
+ if (!umType) {
37860
+ if (range) {
37861
+ if (XEUtils.eqNull(modelValue)) {
37862
+ if (startValue || endValue) {
37863
+ parseFields(startValue, endValue);
37864
+ }
37865
+ }
37866
+ else {
37867
+ if (XEUtils.isArray(modelValue)) {
37868
+ parseArrs(modelValue.map(num => XEUtils.toNumber(num)));
37869
+ }
37870
+ else {
37871
+ parseNum(modelValue);
37872
+ }
37873
+ }
37874
+ }
37875
+ else {
37876
+ parseNum(modelValue);
37877
+ }
37878
+ }
37879
+ else if (range && umType === 2) {
37880
+ parseFields(startValue, endValue);
37815
37881
  }
37816
37882
  else {
37817
- reactData.startValue = 0;
37818
- reactData.endValue = XEUtils.floor(XEUtils.toNumber(modelValue || 0));
37883
+ if (XEUtils.isArray(modelValue)) {
37884
+ parseArrs(modelValue.map(num => XEUtils.toNumber(num)));
37885
+ }
37886
+ else {
37887
+ parseNum(modelValue);
37888
+ }
37819
37889
  }
37890
+ updateBarStyle();
37891
+ updateTrackStyle();
37820
37892
  };
37821
37893
  const updateBarStyle = () => {
37822
- const { startValue, endValue } = reactData;
37823
- const trackElem = refTrackElem.value;
37894
+ const { range } = props;
37895
+ const { currValue, startValue, endValue } = internalData;
37824
37896
  const startBtnElem = refStartBtnElem.value;
37825
37897
  const endBtnElem = refEndBtnElem.value;
37826
- let startPercent = 0;
37827
- let endPercent = 0;
37828
- if (startValue > endValue) {
37829
- startPercent = getStartPercent(endValue);
37830
- endPercent = getEndPercent(endValue, startValue);
37898
+ if (range) {
37899
+ const [sVal, eVal] = XEUtils.orderBy([startValue, endValue]);
37900
+ if (startBtnElem) {
37901
+ startBtnElem.style.left = getBarPercent(sVal) + '%';
37902
+ }
37903
+ if (endBtnElem) {
37904
+ endBtnElem.style.left = getBarPercent(eVal) + '%';
37905
+ }
37831
37906
  }
37832
37907
  else {
37833
- startPercent = getStartPercent(startValue);
37834
- endPercent = getEndPercent(startValue, endValue);
37908
+ if (endBtnElem) {
37909
+ endBtnElem.style.left = getBarPercent(currValue) + '%';
37910
+ }
37835
37911
  }
37912
+ };
37913
+ const updateTrackStyle = () => {
37914
+ const { range } = props;
37915
+ const { currValue, startValue, endValue } = internalData;
37916
+ const trackElem = refTrackElem.value;
37836
37917
  if (trackElem) {
37837
- trackElem.style.left = `${startPercent}%`;
37838
- trackElem.style.width = `${endPercent}%`;
37839
- }
37840
- if (startBtnElem) {
37841
- startBtnElem.style.left = `${startPercent}%`;
37842
- }
37843
- if (endBtnElem) {
37844
- endBtnElem.style.left = `${XEUtils.floor(startPercent + endPercent)}%`;
37918
+ if (range) {
37919
+ const [sVal, eVal] = XEUtils.orderBy([startValue, endValue]);
37920
+ trackElem.style.left = getBarPercent(sVal) + '%';
37921
+ trackElem.style.width = getBarPercent(eVal - sVal) + '%';
37922
+ }
37923
+ else {
37924
+ trackElem.style.left = '0';
37925
+ trackElem.style.width = getBarPercent(currValue) + '%';
37926
+ }
37845
37927
  }
37846
37928
  };
37847
37929
  const changeEvent = (evnt) => {
37848
37930
  const { range } = props;
37849
- const { startValue, endValue } = reactData;
37850
- const value = range ? [startValue, endValue].sort() : endValue;
37931
+ const { currValue, startValue, endValue } = internalData;
37932
+ const vals = range ? XEUtils.orderBy([startValue, endValue]) : [];
37933
+ const value = range ? vals : currValue;
37851
37934
  emitModel(value);
37935
+ if (range) {
37936
+ emit('update:startValue', vals[0] || 0);
37937
+ emit('update:endValue', vals[1] || 0);
37938
+ }
37852
37939
  dispatchEvent('change', { value }, evnt);
37853
37940
  // 自动更新校验状态
37854
37941
  if ($xeForm && formItemInfo) {
37855
37942
  $xeForm.triggerItemEvent(evnt, formItemInfo.itemConfig.field, value);
37856
37943
  }
37857
37944
  };
37858
- const handleMousedownEvent = (evnt, isEnd) => {
37859
- const formReadonly = computeFormReadonly.value;
37860
- const isDisabled = computeIsDisabled.value;
37945
+ const getValueByLeft = (offsetLeft, barWidth) => {
37861
37946
  const maxNum = computeMaxNum.value;
37862
37947
  const minNum = computeMinNum.value;
37948
+ if (barWidth === 0) {
37949
+ return minNum;
37950
+ }
37951
+ const clamped = Math.max(0, Math.min(barWidth, offsetLeft));
37952
+ const ratio = clamped / barWidth;
37953
+ const raw = minNum + ratio * (maxNum - minNum);
37954
+ return Math.floor(raw);
37955
+ };
37956
+ const handleBtnMousedownEvent = (evnt) => {
37957
+ const { range, immediate } = props;
37958
+ const btnElem = evnt.currentTarget;
37959
+ const formReadonly = computeFormReadonly.value;
37960
+ const isDisabled = computeIsDisabled.value;
37863
37961
  if (!(formReadonly || isDisabled)) {
37864
37962
  evnt.preventDefault();
37865
37963
  document.onmousemove = evnt => {
@@ -37867,38 +37965,50 @@ var VxeSliderComponent = defineVxeComponent({
37867
37965
  const el = refElem.value;
37868
37966
  const barElem = refBarElem.value;
37869
37967
  if (el && barElem) {
37968
+ const btnType = btnElem.getAttribute('data-type');
37870
37969
  const barRect = barElem.getBoundingClientRect();
37871
- const trackWidth = (evnt.clientX - barRect.left) / barRect.width;
37872
- if (isEnd) {
37873
- reactData.endValue = XEUtils.floor(Math.max(minNum, Math.min(maxNum, trackWidth * (maxNum - minNum) + minNum)));
37874
- }
37875
- else {
37876
- reactData.startValue = XEUtils.floor(Math.max(minNum, Math.min(maxNum, trackWidth * (maxNum - minNum))));
37970
+ const barWidth = barRect.width;
37971
+ const offsetLeft = Math.min(barWidth, Math.max(0, evnt.clientX - barRect.left));
37972
+ const currValue = getValueByLeft(offsetLeft, barWidth);
37973
+ if (range) {
37974
+ if (btnType === '1') {
37975
+ internalData.startValue = currValue;
37976
+ }
37977
+ else {
37978
+ internalData.endValue = currValue;
37979
+ }
37877
37980
  }
37878
- dispatchEvent('track-dragover', { startValue: reactData.startValue, endValue: reactData.endValue }, evnt);
37981
+ internalData.currValue = currValue;
37982
+ btnElem.style.left = getBarPercent(currValue) + '%';
37983
+ dispatchEvent('track-dragover', {
37984
+ currentValue: internalData.currValue,
37985
+ startValue: internalData.startValue,
37986
+ endValue: internalData.endValue
37987
+ }, evnt);
37879
37988
  }
37880
- updateBarStyle();
37989
+ if (immediate) {
37990
+ changeEvent(evnt);
37991
+ }
37992
+ updateTrackStyle();
37881
37993
  };
37882
37994
  document.onmouseup = (evnt) => {
37883
37995
  document.onmousemove = null;
37884
37996
  document.onmouseup = null;
37885
- dispatchEvent('track-dragend', { startValue: reactData.startValue, endValue: reactData.endValue }, evnt);
37997
+ dispatchEvent('track-dragend', {
37998
+ currentValue: internalData.currValue,
37999
+ startValue: internalData.startValue,
38000
+ endValue: internalData.endValue
38001
+ }, evnt);
37886
38002
  changeEvent(evnt);
37887
- updateBarStyle();
38003
+ updateTrackStyle();
37888
38004
  };
37889
- dispatchEvent('track-dragstart', { startValue: reactData.startValue, endValue: reactData.endValue }, evnt);
38005
+ dispatchEvent('track-dragstart', {
38006
+ currentValue: internalData.currValue,
38007
+ startValue: internalData.startValue,
38008
+ endValue: internalData.endValue
38009
+ }, evnt);
37890
38010
  }
37891
38011
  };
37892
- const handleStartMousedownEvent = (evnt) => {
37893
- const endBtnElem = refEndBtnElem.value;
37894
- const startBtnElem = evnt.currentTarget;
37895
- handleMousedownEvent(evnt, endBtnElem ? endBtnElem.offsetLeft < startBtnElem.offsetLeft : false);
37896
- };
37897
- const handleEndMousedownEvent = (evnt) => {
37898
- const startBtnElem = refStartBtnElem.value;
37899
- const endBtnElem = evnt.currentTarget;
37900
- handleMousedownEvent(evnt, startBtnElem ? endBtnElem.offsetLeft > startBtnElem.offsetLeft : true);
37901
- };
37902
38012
  const collapsePanePrivateMethods = {};
37903
38013
  Object.assign($xeSlider, collapsePaneMethods, collapsePanePrivateMethods);
37904
38014
  const renderVN = () => {
@@ -37930,26 +38040,40 @@ var VxeSliderComponent = defineVxeComponent({
37930
38040
  ? renderEmptyElement($xeSlider)
37931
38041
  : h('div', {
37932
38042
  ref: refStartBtnElem,
37933
- class: 'vxe-slider--bar-btn vxe-slider--start-btn',
37934
- onMousedown: handleStartMousedownEvent
38043
+ class: 'vxe-slider--bar-btn',
38044
+ 'data-type': '1',
38045
+ onMousedown: handleBtnMousedownEvent
37935
38046
  }),
37936
38047
  formReadonly
37937
38048
  ? renderEmptyElement($xeSlider)
37938
38049
  : h('div', {
37939
38050
  ref: refEndBtnElem,
37940
- class: 'vxe-slider--bar-btn vxe-slider--end-btn',
37941
- onMousedown: handleEndMousedownEvent
38051
+ class: 'vxe-slider--bar-btn',
38052
+ 'data-type': '2',
38053
+ onMousedown: handleBtnMousedownEvent
37942
38054
  })
37943
38055
  ])
37944
38056
  ]);
37945
38057
  };
37946
38058
  watch(() => props.modelValue, () => {
37947
- updateModel();
38059
+ if (!internalData._isUp) {
38060
+ updateModelValue(1);
38061
+ }
38062
+ internalData._isUp = false;
38063
+ });
38064
+ watch(computeMVal, () => {
38065
+ if (!internalData._isUp) {
38066
+ updateModelValue(2);
38067
+ }
38068
+ internalData._isUp = false;
37948
38069
  });
37949
38070
  onMounted(() => {
37950
- updateBarStyle();
38071
+ updateModelValue();
38072
+ });
38073
+ onBeforeUnmount(() => {
38074
+ XEUtils.assign(reactData, createReactData$6());
38075
+ XEUtils.assign(internalData, createInternalData$6());
37951
38076
  });
37952
- updateModel();
37953
38077
  $xeSlider.renderVN = renderVN;
37954
38078
  return $xeSlider;
37955
38079
  },
@@ -37967,6 +38091,153 @@ dynamicApp.use(VxeSlider);
37967
38091
  VxeUI.component(VxeSliderComponent);
37968
38092
  const Slider = VxeSlider;
37969
38093
 
38094
+ var VxeSpaceComponent = defineVxeComponent({
38095
+ name: 'VxeSpace',
38096
+ props: {
38097
+ size: {
38098
+ type: String,
38099
+ default: () => getConfig$3().space.size || getConfig$3().size
38100
+ },
38101
+ wrap: {
38102
+ type: Boolean,
38103
+ default: () => getConfig$3().space.wrap
38104
+ },
38105
+ gap: {
38106
+ type: [Number, String, Array, Object],
38107
+ default: () => getConfig$3().space.gap
38108
+ },
38109
+ vertical: {
38110
+ type: Boolean,
38111
+ default: () => getConfig$3().space.vertical
38112
+ },
38113
+ className: {
38114
+ type: String,
38115
+ default: () => getConfig$3().space.className
38116
+ },
38117
+ itemClassName: {
38118
+ type: String,
38119
+ default: () => getConfig$3().space.itemClassName
38120
+ },
38121
+ separator: {
38122
+ type: String,
38123
+ default: () => getConfig$3().space.separator
38124
+ },
38125
+ align: {
38126
+ type: String,
38127
+ default: () => getConfig$3().space.align
38128
+ }
38129
+ },
38130
+ emits: [],
38131
+ setup(props, context) {
38132
+ const { emit, slots } = context;
38133
+ const xID = XEUtils.uniqueId();
38134
+ const { computeSize } = useSize(props);
38135
+ const refElem = ref();
38136
+ const reactData = reactive({
38137
+ activeValue: null
38138
+ });
38139
+ const refMaps = {
38140
+ refElem
38141
+ };
38142
+ const computeWrapperStyle = computed(() => {
38143
+ const { align, gap } = props;
38144
+ const stys = {};
38145
+ let rowGap = '';
38146
+ let columGap = '';
38147
+ if (XEUtils.isNumber(gap) || XEUtils.isString(gap)) {
38148
+ rowGap = gap;
38149
+ columGap = gap;
38150
+ }
38151
+ else if (gap) {
38152
+ if (XEUtils.isArray(gap)) {
38153
+ rowGap = gap[0];
38154
+ columGap = gap[1];
38155
+ }
38156
+ else {
38157
+ rowGap = gap.rowGap || '';
38158
+ columGap = gap.columGap || '';
38159
+ }
38160
+ }
38161
+ if (align) {
38162
+ stys['align-items'] = align;
38163
+ }
38164
+ if (!eqEmptyValue(rowGap)) {
38165
+ stys['--vxe-ui-space-current-row-gap'] = toCssUnit(rowGap);
38166
+ }
38167
+ if (!eqEmptyValue(columGap)) {
38168
+ stys['--vxe-ui-space-current-column-gap'] = toCssUnit(columGap);
38169
+ }
38170
+ return stys;
38171
+ });
38172
+ const computeMaps = {};
38173
+ const $xeSpace = {
38174
+ xID,
38175
+ props,
38176
+ context,
38177
+ reactData,
38178
+ getRefMaps: () => refMaps,
38179
+ getComputeMaps: () => computeMaps
38180
+ };
38181
+ const dispatchEvent = (type, params, evnt) => {
38182
+ emit(type, createEvent(evnt, { $space: $xeSpace }, params));
38183
+ };
38184
+ const spaceMethods = {
38185
+ dispatchEvent
38186
+ };
38187
+ const spacePrivateMethods = {};
38188
+ Object.assign($xeSpace, spaceMethods, spacePrivateMethods);
38189
+ const renderItems = () => {
38190
+ const { separator, itemClassName } = props;
38191
+ const itemVNs = [];
38192
+ const defaultSlot = slots.default;
38193
+ const separatorSlot = slots.separator;
38194
+ if (defaultSlot) {
38195
+ XEUtils.each(defaultSlot({}), (itemVN, index, items) => {
38196
+ itemVNs.push(h('div', {
38197
+ key: 'i' + index,
38198
+ class: ['vxe-space--item', getPropClass(itemClassName, { index })]
38199
+ }, [itemVN]));
38200
+ if ((separator || separatorSlot) && index < items.length - 1) {
38201
+ itemVNs.push(h('div', {
38202
+ key: 's' + index,
38203
+ class: 'vxe-space--separator'
38204
+ }, separatorSlot ? separatorSlot({}) : ('' + separator)));
38205
+ }
38206
+ });
38207
+ }
38208
+ return itemVNs;
38209
+ };
38210
+ const renderVN = () => {
38211
+ const { vertical, wrap, className } = props;
38212
+ const wrapperStyle = computeWrapperStyle.value;
38213
+ const vSize = computeSize.value;
38214
+ return h('div', {
38215
+ ref: refElem,
38216
+ class: ['vxe-space', getPropClass(className, {}), {
38217
+ [`size--${vSize}`]: vSize,
38218
+ 'is--wrap': wrap,
38219
+ 'is--vertical': vertical
38220
+ }],
38221
+ style: wrapperStyle
38222
+ }, renderItems());
38223
+ };
38224
+ $xeSpace.renderVN = renderVN;
38225
+ return $xeSpace;
38226
+ },
38227
+ render() {
38228
+ return this.renderVN();
38229
+ }
38230
+ });
38231
+
38232
+ const VxeSpace = Object.assign({}, VxeSpaceComponent, {
38233
+ install(app) {
38234
+ app.component(VxeSpaceComponent.name, VxeSpaceComponent);
38235
+ }
38236
+ });
38237
+ dynamicApp.use(VxeSpace);
38238
+ VxeUI.component(VxeSpaceComponent);
38239
+ const Space = VxeSpace;
38240
+
37970
38241
  var VxeStepsComponent = defineVxeComponent({
37971
38242
  name: 'VxeSteps',
37972
38243
  props: {},
@@ -47955,7 +48226,7 @@ var VxeWatermarkComponent = defineVxeComponent({
47955
48226
  const dispatchEvent = (type, params, evnt) => {
47956
48227
  emit(type, createEvent(evnt, { $watermark: $xeWatermark }, params));
47957
48228
  };
47958
- const collapsePaneMethods = {
48229
+ const watermarkMethods = {
47959
48230
  dispatchEvent
47960
48231
  };
47961
48232
  const updateMarkStyle = () => {
@@ -47975,8 +48246,8 @@ var VxeWatermarkComponent = defineVxeComponent({
47975
48246
  }
47976
48247
  }
47977
48248
  };
47978
- const collapsePanePrivateMethods = {};
47979
- Object.assign($xeWatermark, collapsePaneMethods, collapsePanePrivateMethods);
48249
+ const watermarkPrivateMethods = {};
48250
+ Object.assign($xeWatermark, watermarkMethods, watermarkPrivateMethods);
47980
48251
  const renderVN = () => {
47981
48252
  const wrapperStyle = computeWrapperStyle.value;
47982
48253
  return h('div', {
@@ -48117,6 +48388,7 @@ const components = [
48117
48388
  VxeSplit,
48118
48389
  VxeSplitPane,
48119
48390
  VxeSlider,
48391
+ VxeSpace,
48120
48392
  VxeSteps,
48121
48393
  VxeSwitch,
48122
48394
  VxeTabPane,
@@ -48147,13 +48419,40 @@ const defaultLanguage = 'zh-CN';
48147
48419
  setI18n(defaultLanguage, zhCN);
48148
48420
  setLanguage(defaultLanguage);
48149
48421
  setTheme('light');
48150
- // 兼容老版本
48422
+ /**
48423
+ * 已废弃,被 VxeUI.loading 替换
48424
+ * @deprecated
48425
+ */
48151
48426
  const loading = LoadingController;
48427
+ /**
48428
+ * 已废弃,被 VxeUI.modal 替换
48429
+ * @deprecated
48430
+ */
48152
48431
  const modal = ModalController;
48432
+ /**
48433
+ * 已废弃,被 VxeUI.drawer 替换
48434
+ * @deprecated
48435
+ */
48153
48436
  const drawer = DrawerController;
48437
+ /**
48438
+ * 已废弃,被 VxeUI.watermark 替换
48439
+ * @deprecated
48440
+ */
48154
48441
  const watermark = WatermarkController;
48442
+ /**
48443
+ * 已废弃,被 VxeUI.print 替换
48444
+ * @deprecated
48445
+ */
48155
48446
  const print = printHtml;
48447
+ /**
48448
+ * 已废弃,被 VxeUI.saveFile 替换
48449
+ * @deprecated
48450
+ */
48156
48451
  const saveFile = saveLocalFile;
48452
+ /**
48453
+ * 已废弃,被 VxeUI.readFile 替换
48454
+ * @deprecated
48455
+ */
48157
48456
  const readFile = readLocalFile;
48158
48457
 
48159
48458
  var VxeUIExport = /*#__PURE__*/Object.freeze({
@@ -48229,6 +48528,7 @@ var VxeUIExport = /*#__PURE__*/Object.freeze({
48229
48528
  Segmented: Segmented,
48230
48529
  Select: Select,
48231
48530
  Slider: Slider,
48531
+ Space: Space,
48232
48532
  Split: Split,
48233
48533
  SplitPane: SplitPane,
48234
48534
  Splitter: Splitter,
@@ -48320,6 +48620,7 @@ var VxeUIExport = /*#__PURE__*/Object.freeze({
48320
48620
  VxeSegmented: VxeSegmented,
48321
48621
  VxeSelect: VxeSelect,
48322
48622
  VxeSlider: VxeSlider,
48623
+ VxeSpace: VxeSpace,
48323
48624
  VxeSplit: VxeSplit,
48324
48625
  VxeSplitPane: VxeSplitPane,
48325
48626
  VxeSplitter: VxeSplitter,
@@ -48359,4 +48660,4 @@ var VxeUIExport = /*#__PURE__*/Object.freeze({
48359
48660
  watermark: watermark
48360
48661
  });
48361
48662
 
48362
- export { Alert, Anchor, AnchorLink, Avatar, Backtop, Badge, Breadcrumb, BreadcrumbItem, Button, ButtonGroup, Calendar, Card, Carousel, CarouselItem, Cascader, Checkbox, CheckboxButton, CheckboxGroup, Col, Collapse, CollapsePane, ColorPicker, ContextMenu, ContextMenuController, Countdown, DatePanel, DatePicker, DateRangePicker, Drawer, DrawerController, Empty, Form, FormGather, FormGroup, FormItem, Icon, IconPicker, Image$1 as Image, ImageGroup, ImagePreview, Input, LayoutAside, LayoutBody, LayoutContainer, LayoutFooter, LayoutHeader, Link, List, Loading, LoadingController, Menu, Modal, ModalController, NoticeBar, NumberInput, Optgroup, Option, Pager, PasswordInput, Print, PrintPageBreak, Pulldown, Radio, RadioButton, RadioGroup, Rate, Result, Row, Segmented, Select, Slider, Split, SplitPane, Splitter, SplitterPanel, Steps, Switch, TabPane, TableSelect, TableTransfer, Tabs, Tag, Text, TextEllipsis, Textarea, Timeline, TimelineItem, Tip, Tips, Tooltip, Tour, Transfer, Tree, TreeSelect, Upload, VxeAlert, VxeAnchor, VxeAnchorLink, VxeAvatar, VxeBacktop, VxeBadge, VxeBreadcrumb, VxeBreadcrumbItem, VxeButton, VxeButtonGroup, VxeCalendar, VxeCard, VxeCarousel, VxeCarouselItem, VxeCascader, VxeCheckbox, VxeCheckboxButton, VxeCheckboxGroup, VxeCol, VxeCollapse, VxeCollapsePane, VxeColorPicker, VxeContextMenu, VxeCountdown, VxeDatePanel, VxeDatePicker, VxeDateRangePicker, VxeDrawer, VxeEmpty, VxeForm, VxeFormGather, VxeFormGroup, VxeFormItem, VxeIcon, VxeIconPicker, VxeImage, VxeImageGroup, VxeImagePreview, VxeInput, VxeLayoutAside, VxeLayoutBody, VxeLayoutContainer, VxeLayoutFooter, VxeLayoutHeader, VxeLink, VxeList, VxeLoading, VxeMenu, VxeModal, VxeNoticeBar, VxeNumberInput, VxeOptgroup, VxeOption, VxePager, VxePasswordInput, VxePrint, VxePrintPageBreak, VxePulldown, VxeRadio, VxeRadioButton, VxeRadioGroup, VxeRate, VxeResult, VxeRow, VxeSegmented, VxeSelect, VxeSlider, VxeSplit, VxeSplitPane, VxeSplitter, VxeSplitterPanel, VxeSteps, VxeSwitch, VxeTabPane, VxeTableSelect, VxeTableTransfer, VxeTabs, VxeTag, VxeText, VxeTextEllipsis, VxeTextarea, VxeTimeline, VxeTimelineItem, VxeTip, VxeTooltip, VxeTour, VxeTransfer, VxeTree, VxeTreeSelect, VxeUpload, VxeWatermark, Watermark, WatermarkController, config, VxeUIExport as default, drawer, install, loading, modal, print, readFile, saveFile, setup, version, watermark };
48663
+ export { Alert, Anchor, AnchorLink, Avatar, Backtop, Badge, Breadcrumb, BreadcrumbItem, Button, ButtonGroup, Calendar, Card, Carousel, CarouselItem, Cascader, Checkbox, CheckboxButton, CheckboxGroup, Col, Collapse, CollapsePane, ColorPicker, ContextMenu, ContextMenuController, Countdown, DatePanel, DatePicker, DateRangePicker, Drawer, DrawerController, Empty, Form, FormGather, FormGroup, FormItem, Icon, IconPicker, Image$1 as Image, ImageGroup, ImagePreview, Input, LayoutAside, LayoutBody, LayoutContainer, LayoutFooter, LayoutHeader, Link, List, Loading, LoadingController, Menu, Modal, ModalController, NoticeBar, NumberInput, Optgroup, Option, Pager, PasswordInput, Print, PrintPageBreak, Pulldown, Radio, RadioButton, RadioGroup, Rate, Result, Row, Segmented, Select, Slider, Space, Split, SplitPane, Splitter, SplitterPanel, Steps, Switch, TabPane, TableSelect, TableTransfer, Tabs, Tag, Text, TextEllipsis, Textarea, Timeline, TimelineItem, Tip, Tips, Tooltip, Tour, Transfer, Tree, TreeSelect, Upload, VxeAlert, VxeAnchor, VxeAnchorLink, VxeAvatar, VxeBacktop, VxeBadge, VxeBreadcrumb, VxeBreadcrumbItem, VxeButton, VxeButtonGroup, VxeCalendar, VxeCard, VxeCarousel, VxeCarouselItem, VxeCascader, VxeCheckbox, VxeCheckboxButton, VxeCheckboxGroup, VxeCol, VxeCollapse, VxeCollapsePane, VxeColorPicker, VxeContextMenu, VxeCountdown, VxeDatePanel, VxeDatePicker, VxeDateRangePicker, VxeDrawer, VxeEmpty, VxeForm, VxeFormGather, VxeFormGroup, VxeFormItem, VxeIcon, VxeIconPicker, VxeImage, VxeImageGroup, VxeImagePreview, VxeInput, VxeLayoutAside, VxeLayoutBody, VxeLayoutContainer, VxeLayoutFooter, VxeLayoutHeader, VxeLink, VxeList, VxeLoading, VxeMenu, VxeModal, VxeNoticeBar, VxeNumberInput, VxeOptgroup, VxeOption, VxePager, VxePasswordInput, VxePrint, VxePrintPageBreak, VxePulldown, VxeRadio, VxeRadioButton, VxeRadioGroup, VxeRate, VxeResult, VxeRow, VxeSegmented, VxeSelect, VxeSlider, VxeSpace, VxeSplit, VxeSplitPane, VxeSplitter, VxeSplitterPanel, VxeSteps, VxeSwitch, VxeTabPane, VxeTableSelect, VxeTableTransfer, VxeTabs, VxeTag, VxeText, VxeTextEllipsis, VxeTextarea, VxeTimeline, VxeTimelineItem, VxeTip, VxeTooltip, VxeTour, VxeTransfer, VxeTree, VxeTreeSelect, VxeUpload, VxeWatermark, Watermark, WatermarkController, config, VxeUIExport as default, drawer, install, loading, modal, print, readFile, saveFile, setup, version, watermark };