vxe-table 4.7.90 → 4.7.91

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.
@@ -760,6 +760,9 @@ renderer.mixin({
760
760
  ]
761
761
  }
762
762
  },
763
+ VxeRate: {
764
+ renderTableDefault: defaultEditRender
765
+ },
763
766
 
764
767
  // 以下已废弃
765
768
  $input: {
@@ -2135,7 +2135,7 @@ export default defineComponent({
2135
2135
  const checkboxOpts = computeCheckboxOpts.value
2136
2136
  const { transform, loadMethod } = treeOpts
2137
2137
  const { checkStrictly } = checkboxOpts
2138
- return new Promise(resolve => {
2138
+ return new Promise<void>(resolve => {
2139
2139
  if (loadMethod) {
2140
2140
  const { treeExpandLazyLoadedMaps } = reactData
2141
2141
  const { fullAllDataRowIdData } = internalData
@@ -2198,7 +2198,7 @@ export default defineComponent({
2198
2198
  }
2199
2199
 
2200
2200
  const handleAsyncRowExpand = (row: any): Promise<void> => {
2201
- return new Promise(resolve => {
2201
+ return new Promise<void>(resolve => {
2202
2202
  const expandOpts = computeExpandOpts.value
2203
2203
  const { loadMethod } = expandOpts
2204
2204
  if (loadMethod) {