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.
- package/es/style.css +1 -1
- package/es/table/src/methods.js +13 -17
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/helper/vetur/attributes.json +1 -1
- package/helper/vetur/tags.json +1 -1
- package/lib/index.umd.js +15 -15
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/src/methods.js +13 -13
- package/lib/table/src/methods.min.js +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/table/src/methods.ts +13 -13
- /package/es/{iconfont.1758506941442.ttf → iconfont.1758524611561.ttf} +0 -0
- /package/es/{iconfont.1758506941442.woff → iconfont.1758524611561.woff} +0 -0
- /package/es/{iconfont.1758506941442.woff2 → iconfont.1758524611561.woff2} +0 -0
- /package/lib/{iconfont.1758506941442.ttf → iconfont.1758524611561.ttf} +0 -0
- /package/lib/{iconfont.1758506941442.woff → iconfont.1758524611561.woff} +0 -0
- /package/lib/{iconfont.1758506941442.woff2 → iconfont.1758524611561.woff2} +0 -0
package/lib/table/src/methods.js
CHANGED
|
@@ -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
|
-
|
|
13576
|
-
|
|
13577
|
-
|
|
13578
|
-
|
|
13579
|
-
|
|
13580
|
-
|
|
13581
|
-
|
|
13582
|
-
|
|
13583
|
-
|
|
13584
|
-
|
|
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
|
});
|