gitextract_wgvkz2_0/ ├── .eslintignore ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── bug_report_zh.md │ │ ├── feature_request.md │ │ └── feature_request_zh.md │ └── workflows/ │ ├── gitee-mirror.yml │ ├── github-demo.yml │ └── github-doc.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── README-zh.md ├── README.md ├── commitlint.config.js ├── deploy.bat ├── docs/ │ ├── .vuepress/ │ │ └── config.js │ ├── README.md │ ├── about/ │ │ ├── README.md │ │ ├── company.md │ │ └── sponsor.md │ ├── guide/ │ │ ├── FAQ.md │ │ ├── README.md │ │ ├── api.md │ │ ├── cell.md │ │ ├── config.md │ │ ├── contribute.md │ │ ├── data.md │ │ ├── operate.md │ │ ├── resource.md │ │ └── sheet.md │ └── zh/ │ ├── README.md │ ├── about/ │ │ ├── README.md │ │ ├── company.md │ │ └── sponsor.md │ └── guide/ │ ├── FAQ.md │ ├── README.md │ ├── api.md │ ├── cell.md │ ├── config.md │ ├── contribute.md │ ├── operate.md │ ├── resource.md │ └── sheet.md ├── gulpfile.js ├── package.json └── src/ ├── assets/ │ └── iconfont/ │ ├── demo.css │ ├── demo_index.html │ ├── iconfont.css │ ├── iconfont.js │ └── iconfont.json ├── config.js ├── controllers/ │ ├── alternateformat.js │ ├── cellDatePickerCtrl.js │ ├── cellFormat.js │ ├── conditionformat.js │ ├── constant.js │ ├── controlHistory.js │ ├── dataVerificationCtrl.js │ ├── dropCell.js │ ├── expendPlugins.js │ ├── filter.js │ ├── formulaBar.js │ ├── freezen.js │ ├── handler.js │ ├── hyperlinkCtrl.js │ ├── ifFormulaGenerator.js │ ├── imageCtrl.js │ ├── imageUpdateCtrl.js │ ├── inlineString.js │ ├── insertFormula.js │ ├── keyboard.js │ ├── listener.js │ ├── locationCell.js │ ├── luckysheetConfigsetting.js │ ├── matrixOperation.js │ ├── menuButton.js │ ├── mobile.js │ ├── moreFormat.js │ ├── orderBy.js │ ├── pivotTable.js │ ├── postil.js │ ├── protection.js │ ├── resize.js │ ├── rowColumnOperation.js │ ├── searchReplace.js │ ├── select.js │ ├── selection.js │ ├── server.js │ ├── sheetBar.js │ ├── sheetMove.js │ ├── sheetSearch.js │ ├── sheetmanage.js │ ├── sparkline.js │ ├── splitColumn.js │ ├── toolbar.js │ ├── updateCell.js │ └── zoom.js ├── core.js ├── css/ │ ├── iconCustom.css │ ├── luckysheet-cellFormat.css │ ├── luckysheet-core.css │ ├── luckysheet-protection.css │ └── luckysheet-zoom.css ├── data/ │ └── chartJson.js ├── demoData/ │ ├── chat.js │ ├── demoFeature.js │ ├── getTargetData.js │ ├── sheetCell.js │ ├── sheetChart.js │ ├── sheetComment.js │ ├── sheetConditionFormat.js │ ├── sheetDataVerification.js │ ├── sheetFormula.js │ ├── sheetPicture.js │ ├── sheetPivotTable.js │ ├── sheetPivotTableData.js │ ├── sheetSparkline.js │ └── sheetTable.js ├── expendPlugins/ │ ├── chart/ │ │ ├── chartmix.css │ │ └── plugin.js │ ├── exportXlsx/ │ │ └── plugin.js │ └── print/ │ ├── plugin.js │ └── print.css ├── fonts/ │ └── FontAwesome.otf ├── function/ │ ├── func.js │ ├── functionImplementation.js │ ├── functionListDescriptor.js │ ├── functionlist.js │ ├── getLocalizedFunctionList.js │ ├── luckysheet_function.js │ └── matrix_methods.js ├── global/ │ ├── analysis.js │ ├── api.js │ ├── array.js │ ├── border.js │ ├── browser.js │ ├── cleargridelement.js │ ├── count.js │ ├── createdom.js │ ├── createsheet.js │ ├── cursorPos.js │ ├── datecontroll.js │ ├── draw.js │ ├── dynamicArray.js │ ├── editor.js │ ├── extend.js │ ├── format.js │ ├── formula.js │ ├── func_methods.js │ ├── getRowlen.js │ ├── getdata.js │ ├── json.js │ ├── loading.js │ ├── location.js │ ├── method.js │ ├── refresh.js │ ├── rhchInit.js │ ├── scroll.js │ ├── setdata.js │ ├── sort.js │ ├── tooltip.js │ └── validate.js ├── index.html ├── index.js ├── locale/ │ ├── en.js │ ├── es.js │ ├── locale.js │ ├── zh.js │ └── zh_tw.js ├── methods/ │ ├── get.js │ └── set.js ├── plugins/ │ └── jquery.sPage.css ├── store/ │ └── index.js └── utils/ ├── chartUtil.js ├── math.js ├── polyfill.js └── util.js