vxe-table 3.18.17 → 3.18.18

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.
@@ -13571,19 +13571,19 @@ const Methods = {
13571
13571
  const funcs = 'setFilter,openFilter,clearFilter,saveFilterPanel,saveFilterPanelByEvent,resetFilterPanel,resetFilterPanelByEvent,getCheckedFilters,updateFilterOptionStatus,closeMenu,setActiveCellArea,getActiveCellArea,getCellAreas,clearCellAreas,copyCellArea,cutCellArea,pasteCellArea,getCopyCellArea,getCopyCellAreas,clearCopyCellArea,setCellAreas,openFNR,openFind,openReplace,closeFNR,getSelectedCell,clearSelected,insert,insertAt,insertNextAt,insertChild,insertChildAt,insertChildNextAt,remove,removeCheckboxRow,removeRadioRow,removeCurrentRow,getRecordset,getInsertRecords,getRemoveRecords,getUpdateRecords,clearEdit,clearActived,getEditRecord,getEditCell,getActiveRecord,isEditByRow,isActiveByRow,setEditRow,setActiveRow,setEditCell,setActiveCell,setSelectCell,clearValidate,fullValidate,validate,fullValidateField,validateField,openExport,closeExport,openPrint,closePrint,getPrintHtml,exportData,openImport,closeImport,importData,saveFile,readFile,importByFile,print,getCustomVisible,openCustom,closeCustom,toggleCustom,saveCustom,cancelCustom,resetCustom,toggleCustomAllCheckbox,setCustomAllCheckbox'.split(',');
13572
13572
  funcs.forEach(name => {
13573
13573
  Methods[name] = function (...args) {
13574
- if (!this[`_${name}`]) {
13575
- if ('openExport,openPrint,exportData,openImport,importData,saveFile,readFile,importByFile,print'.split(',').includes(name)) {
13576
- (0, _log.errLog)('vxe.error.reqModule', ['Export']);
13577
- } else if ('fullValidate,validate'.split(',').includes(name)) {
13578
- (0, _log.errLog)('vxe.error.reqModule', ['Validator']);
13579
- } else if ('setFilter,openFilter,clearFilter,getCheckedFilters'.split(',').includes(name)) {
13580
- (0, _log.errLog)('vxe.error.reqModule', ['Filter']);
13581
- } else if ('insert,insertAt,insertNextAt,remove,removeCheckboxRow,removeRadioRow,removeCurrentRow,getRecordset,getInsertRecords,getRemoveRecords,getUpdateRecords,getEditRecord,getEditCell,getActiveRecord,isEditByRow,isActiveByRow,setEditRow,setActiveRow,setEditCell,setActiveCell'.split(',').includes(name)) {
13582
- (0, _log.errLog)('vxe.error.reqModule', ['Edit']);
13583
- } else if ('openCustom'.split(',').includes(name)) {
13584
- (0, _log.errLog)('vxe.error.reqModule', ['Custom']);
13585
- }
13586
- }
13574
+ // if (!this[`_${name}`]) {
13575
+ // if ('openExport,openPrint,exportData,openImport,importData,saveFile,readFile,importByFile,print'.split(',').includes(name)) {
13576
+ // errLog('vxe.error.reqModule', ['Export'])
13577
+ // } else if ('fullValidate,validate'.split(',').includes(name)) {
13578
+ // errLog('vxe.error.reqModule', ['Validator'])
13579
+ // } else if ('setFilter,openFilter,clearFilter,getCheckedFilters'.split(',').includes(name)) {
13580
+ // errLog('vxe.error.reqModule', ['Filter'])
13581
+ // } else if ('insert,insertAt,insertNextAt,remove,removeCheckboxRow,removeRadioRow,removeCurrentRow,getRecordset,getInsertRecords,getRemoveRecords,getUpdateRecords,getEditRecord,getEditCell,getActiveRecord,isEditByRow,isActiveByRow,setEditRow,setActiveRow,setEditCell,setActiveCell'.split(',').includes(name)) {
13582
+ // errLog('vxe.error.reqModule', ['Edit'])
13583
+ // } else if ('openCustom'.split(',').includes(name)) {
13584
+ // errLog('vxe.error.reqModule', ['Custom'])
13585
+ // }
13586
+ // }
13587
13587
  return this[`_${name}`] ? this[`_${name}`](...args) : null;
13588
13588
  };
13589
13589
  });