feat: integrate luckysheet inline and fullscreen

This commit is contained in:
liaibo
2025-11-23 17:22:35 +08:00
parent c8e479aeab
commit 994dd4e67c
529 changed files with 403413 additions and 201 deletions
+13
View File
@@ -0,0 +1,13 @@
import './utils/math'
import { luckysheet } from './core'
import __firefox from './utils/polyfill'
// Prevent gulp warning: 'Use of eval is strongly discouraged, as it poses security risks and may cause issues with minification'
// window.evall = window.eval;
// polyfill event in firefox
if (window.addEventListener && (navigator.userAgent.indexOf("Firefox") > 0)) {
__firefox();
}
// export default luckysheet;
// use esbuild,bundle iife format
module.exports = luckysheet