@ecan-bi/sheet 0.0.9 → 0.0.13

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.
Files changed (94) hide show
  1. package/dist/index.es.js +98538 -64
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +4149 -1
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +4 -0
  6. package/package.json +29 -6
  7. package/types/luckysheet/config.d.ts +78 -0
  8. package/types/luckysheet/controllers/cellDatePickerCtrl.d.ts +4 -0
  9. package/types/luckysheet/controllers/cellFormat.d.ts +1 -0
  10. package/types/luckysheet/controllers/conditionformat.d.ts +47 -0
  11. package/types/luckysheet/controllers/constant.d.ts +142 -0
  12. package/types/luckysheet/controllers/controlHistory.d.ts +5 -0
  13. package/types/luckysheet/controllers/dropCell.d.ts +95 -0
  14. package/types/luckysheet/controllers/expendPlugins.d.ts +4 -0
  15. package/types/luckysheet/controllers/filter.d.ts +5 -0
  16. package/types/luckysheet/controllers/formulaBar.d.ts +1 -0
  17. package/types/luckysheet/controllers/handler.d.ts +1 -0
  18. package/types/luckysheet/controllers/ifFormulaGenerator.d.ts +12 -0
  19. package/types/luckysheet/controllers/imageUpdateCtrl.d.ts +1 -0
  20. package/types/luckysheet/controllers/inlineString.d.ts +25 -0
  21. package/types/luckysheet/controllers/insertFormula.d.ts +9 -0
  22. package/types/luckysheet/controllers/keyboard.d.ts +1 -0
  23. package/types/luckysheet/controllers/listener.d.ts +1 -0
  24. package/types/luckysheet/controllers/locationCell.d.ts +10 -0
  25. package/types/luckysheet/controllers/luckysheetConfigsetting.d.ts +36 -0
  26. package/types/luckysheet/controllers/matrixOperation.d.ts +1 -0
  27. package/types/luckysheet/controllers/mobile.d.ts +1 -0
  28. package/types/luckysheet/controllers/orderBy.d.ts +1 -0
  29. package/types/luckysheet/controllers/postil.d.ts +27 -0
  30. package/types/luckysheet/controllers/print.d.ts +2 -0
  31. package/types/luckysheet/controllers/protection.d.ts +10 -0
  32. package/types/luckysheet/controllers/resize.d.ts +10 -0
  33. package/types/luckysheet/controllers/rowColumnOperation.d.ts +9 -0
  34. package/types/luckysheet/controllers/searchReplace.d.ts +10 -0
  35. package/types/luckysheet/controllers/select.d.ts +7 -0
  36. package/types/luckysheet/controllers/selection.d.ts +14 -0
  37. package/types/luckysheet/controllers/sheetBar.d.ts +1 -0
  38. package/types/luckysheet/controllers/sheetMove.d.ts +5 -0
  39. package/types/luckysheet/controllers/sheetSearch.d.ts +1 -0
  40. package/types/luckysheet/controllers/splitColumn.d.ts +10 -0
  41. package/types/luckysheet/controllers/toolbar.d.ts +42 -0
  42. package/types/luckysheet/controllers/updateCell.d.ts +10 -0
  43. package/types/luckysheet/controllers/zoom.d.ts +4 -0
  44. package/types/luckysheet/core.d.ts +41 -0
  45. package/types/luckysheet/expendPlugins/chart/plugin.d.ts +4 -0
  46. package/types/luckysheet/expendPlugins/print/plugin.d.ts +1 -0
  47. package/types/luckysheet/function/func.d.ts +10 -0
  48. package/types/luckysheet/function/functionImplementation.d.ts +451 -0
  49. package/types/luckysheet/function/functionlist.d.ts +2 -0
  50. package/types/luckysheet/function/matrix_methods.d.ts +1 -0
  51. package/types/luckysheet/global/analysis.d.ts +8 -0
  52. package/types/luckysheet/global/api.d.ts +1193 -0
  53. package/types/luckysheet/global/array.d.ts +8 -0
  54. package/types/luckysheet/global/border.d.ts +2 -0
  55. package/types/luckysheet/global/browser.d.ts +15 -0
  56. package/types/luckysheet/global/cleargridelement.d.ts +1 -0
  57. package/types/luckysheet/global/count.d.ts +1 -0
  58. package/types/luckysheet/global/createdom.d.ts +1 -0
  59. package/types/luckysheet/global/createsheet.d.ts +1 -0
  60. package/types/luckysheet/global/cursorPos.d.ts +7 -0
  61. package/types/luckysheet/global/datecontroll.d.ts +7 -0
  62. package/types/luckysheet/global/draw.d.ts +3 -0
  63. package/types/luckysheet/global/dynamicArray.d.ts +4 -0
  64. package/types/luckysheet/global/editor.d.ts +11 -0
  65. package/types/luckysheet/global/extend.d.ts +13 -0
  66. package/types/luckysheet/global/format.d.ts +5 -0
  67. package/types/luckysheet/global/func_methods.d.ts +25 -0
  68. package/types/luckysheet/global/getRowlen.d.ts +16 -0
  69. package/types/luckysheet/global/getdata.d.ts +13 -0
  70. package/types/luckysheet/global/json.d.ts +5 -0
  71. package/types/luckysheet/global/loading.d.ts +2 -0
  72. package/types/luckysheet/global/location.d.ts +6 -0
  73. package/types/luckysheet/global/method.d.ts +10 -0
  74. package/types/luckysheet/global/refresh.d.ts +8 -0
  75. package/types/luckysheet/global/rhchInit.d.ts +2 -0
  76. package/types/luckysheet/global/scroll.d.ts +1 -0
  77. package/types/luckysheet/global/setdata.d.ts +2 -0
  78. package/types/luckysheet/global/sort.d.ts +4 -0
  79. package/types/luckysheet/global/tooltip.d.ts +12 -0
  80. package/types/luckysheet/global/validate.d.ts +23 -0
  81. package/types/luckysheet/index.d.ts +2 -0
  82. package/types/luckysheet/locale/en.d.ts +1216 -0
  83. package/types/luckysheet/locale/es.d.ts +1194 -0
  84. package/types/luckysheet/locale/locale.d.ts +12 -0
  85. package/types/luckysheet/locale/zh.d.ts +1235 -0
  86. package/types/luckysheet/locale/zh_tw.d.ts +1249 -0
  87. package/types/luckysheet/methods/get.d.ts +11 -0
  88. package/types/luckysheet/methods/set.d.ts +6 -0
  89. package/types/luckysheet/plugins/js/jquery-mousewheel.d.ts +8 -0
  90. package/types/luckysheet/plugins/js/spectrum.d.ts +1 -0
  91. package/types/luckysheet/store/index.d.ts +145 -0
  92. package/types/luckysheet/utils/chartUtil.d.ts +20 -0
  93. package/types/luckysheet/utils/polyfill.d.ts +5 -0
  94. package/types/luckysheet/utils/util.d.ts +87 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.