@fileverse-dev/fortune-core 1.1.0 → 1.1.2

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 (346) hide show
  1. package/{dist/packages/core/src → es}/api/cell.d.ts +10 -10
  2. package/es/api/cell.js +204 -0
  3. package/{dist/packages/core/src → es}/api/common.d.ts +71 -66
  4. package/es/api/common.js +79 -0
  5. package/{dist/packages/core/src → es}/api/errors.d.ts +2 -2
  6. package/es/api/errors.js +2 -0
  7. package/{dist/packages/core/src → es}/api/index.d.ts +9 -9
  8. package/es/api/index.js +8 -0
  9. package/{dist/packages/core/src → es}/api/merge.d.ts +5 -5
  10. package/es/api/merge.js +15 -0
  11. package/{dist/packages/core/src → es}/api/range.d.ts +22 -22
  12. package/es/api/range.js +123 -0
  13. package/{dist/packages/core/src → es}/api/rowcol.d.ts +14 -14
  14. package/es/api/rowcol.js +207 -0
  15. package/{dist/packages/core/src → es}/api/sheet.d.ts +10 -10
  16. package/es/api/sheet.js +128 -0
  17. package/{dist/packages/core/src → es}/api/workbook.d.ts +15 -15
  18. package/es/api/workbook.js +85 -0
  19. package/{dist/packages/core/src → es}/canvas.d.ts +46 -46
  20. package/es/canvas.js +1350 -0
  21. package/{dist/packages/core/src → es}/context.d.ts +198 -197
  22. package/es/context.js +381 -0
  23. package/{dist/packages/core/src → es}/events/copy.d.ts +2 -2
  24. package/es/events/copy.js +78 -0
  25. package/{dist/packages/core/src → es}/events/index.d.ts +4 -4
  26. package/es/events/index.js +4 -0
  27. package/{dist/packages/core/src → es}/events/keyboard.d.ts +6 -6
  28. package/es/events/keyboard.js +360 -0
  29. package/{dist/packages/core/src → es}/events/mouse.d.ts +22 -22
  30. package/es/events/mouse.js +1725 -0
  31. package/{dist/packages/core/src → es}/events/paste.d.ts +4 -3
  32. package/es/events/paste.js +1416 -0
  33. package/{dist/packages/core/src → es}/index.d.ts +10 -10
  34. package/es/index.js +10 -0
  35. package/{dist/packages/core/src → es}/locale/en.d.ts +993 -992
  36. package/es/locale/en.js +10140 -0
  37. package/{dist/packages/core/src → es}/locale/es.d.ts +1134 -1134
  38. package/es/locale/es.js +10010 -0
  39. package/{dist/packages/core/src → es}/locale/hi.d.ts +1030 -1030
  40. package/es/locale/hi.js +10550 -0
  41. package/{dist/packages/core/src → es}/locale/index.d.ts +1049 -1049
  42. package/es/locale/index.js +23 -0
  43. package/{dist/packages/core/src → es}/locale/zh.d.ts +1048 -1048
  44. package/es/locale/zh.js +10568 -0
  45. package/{dist/packages/core/src → es}/locale/zh_tw.d.ts +1187 -1187
  46. package/es/locale/zh_tw.js +10072 -0
  47. package/{dist/packages/core/src → es}/modules/ConditionFormat.d.ts +17 -17
  48. package/es/modules/ConditionFormat.js +1258 -0
  49. package/{dist/packages/core/src → es}/modules/border.d.ts +3 -3
  50. package/es/modules/border.js +1240 -0
  51. package/{dist/packages/core/src → es}/modules/cell.d.ts +32 -32
  52. package/es/modules/cell.js +1092 -0
  53. package/{dist/packages/core/src → es}/modules/clipboard.d.ts +3 -3
  54. package/es/modules/clipboard.js +36 -0
  55. package/{dist/packages/core/src → es}/modules/color.d.ts +1 -1
  56. package/es/modules/color.js +1 -0
  57. package/{dist/packages/core/src → es}/modules/comment.d.ts +97 -97
  58. package/es/modules/comment.js +597 -0
  59. package/{dist/packages/core/src → es}/modules/conditionalFormat.d.ts +2 -2
  60. package/es/modules/conditionalFormat.js +441 -0
  61. package/{dist/packages/core/src → es}/modules/cursor.d.ts +3 -3
  62. package/es/modules/cursor.js +62 -0
  63. package/{dist/packages/core/src → es}/modules/dataVerification.d.ts +11 -11
  64. package/es/modules/dataVerification.js +701 -0
  65. package/{dist/packages/core/src → es}/modules/dropCell.d.ts +10 -10
  66. package/es/modules/dropCell.js +2267 -0
  67. package/{dist/packages/core/src → es}/modules/filter.d.ts +45 -45
  68. package/es/modules/filter.js +434 -0
  69. package/{dist/packages/core/src → es}/modules/format.d.ts +6 -6
  70. package/es/modules/format.js +323 -0
  71. package/{dist/packages/core/src → es}/modules/formula.d.ts +54 -54
  72. package/es/modules/formula.js +2346 -0
  73. package/{dist/packages/core/src → es}/modules/freeze.d.ts +5 -5
  74. package/es/modules/freeze.js +148 -0
  75. package/{dist/packages/core/src → es}/modules/hyperlink.d.ts +21 -21
  76. package/es/modules/hyperlink.js +216 -0
  77. package/{dist/packages/core/src → es}/modules/iframe.d.ts +12 -12
  78. package/es/modules/iframe.js +220 -0
  79. package/{dist/packages/core/src → es}/modules/image.d.ts +31 -31
  80. package/es/modules/image.js +253 -0
  81. package/{dist/packages/core/src → es}/modules/index.d.ts +36 -36
  82. package/es/modules/index.js +36 -0
  83. package/{dist/packages/core/src → es}/modules/inline-string.d.ts +36 -36
  84. package/es/modules/inline-string.js +437 -0
  85. package/{dist/packages/core/src → es}/modules/location.d.ts +6 -6
  86. package/es/modules/location.js +46 -0
  87. package/{dist/packages/core/src → es}/modules/locationCondition.d.ts +21 -21
  88. package/es/modules/locationCondition.js +218 -0
  89. package/{dist/packages/core/src → es}/modules/merge.d.ts +3 -3
  90. package/es/modules/merge.js +216 -0
  91. package/{dist/packages/core/src → es}/modules/mobile.d.ts +5 -5
  92. package/es/modules/mobile.js +33 -0
  93. package/{dist/packages/core/src → es}/modules/moveCells.d.ts +5 -5
  94. package/es/modules/moveCells.js +348 -0
  95. package/{dist/packages/core/src → es}/modules/protection.d.ts +5 -5
  96. package/es/modules/protection.js +96 -0
  97. package/{dist/packages/core/src → es}/modules/refresh.d.ts +3 -3
  98. package/es/modules/refresh.js +34 -0
  99. package/{dist/packages/core/src → es}/modules/rowcol.d.ts +19 -19
  100. package/es/modules/rowcol.js +1922 -0
  101. package/{dist/packages/core/src → es}/modules/screenshot.d.ts +2 -2
  102. package/es/modules/screenshot.js +90 -0
  103. package/{dist/packages/core/src → es}/modules/searchReplace.d.ts +36 -36
  104. package/es/modules/searchReplace.js +388 -0
  105. package/{dist/packages/core/src → es}/modules/selection.d.ts +50 -46
  106. package/es/modules/selection.js +1856 -0
  107. package/{dist/packages/core/src → es}/modules/sheet.d.ts +10 -10
  108. package/es/modules/sheet.js +237 -0
  109. package/{dist/packages/core/src → es}/modules/sort.d.ts +7 -7
  110. package/es/modules/sort.js +134 -0
  111. package/{dist/packages/core/src → es}/modules/splitColumn.d.ts +5 -5
  112. package/es/modules/splitColumn.js +126 -0
  113. package/es/modules/ssf.js +1533 -0
  114. package/{dist/packages/core/src → es}/modules/text.d.ts +10 -10
  115. package/es/modules/text.js +1207 -0
  116. package/{dist/packages/core/src → es}/modules/toolbar.d.ts +32 -32
  117. package/es/modules/toolbar.js +970 -0
  118. package/{dist/packages/core/src → es}/modules/validation.d.ts +19 -19
  119. package/es/modules/validation.js +190 -0
  120. package/{dist/packages/core/src → es}/modules/zoom.d.ts +3 -3
  121. package/es/modules/zoom.js +29 -0
  122. package/{dist/packages/core/src → es}/settings.d.ts +100 -100
  123. package/es/settings.js +36 -0
  124. package/{dist/packages/core/src → es}/types.d.ts +380 -371
  125. package/es/types.js +1 -0
  126. package/{dist/packages/core/src → es}/utils/freeze.d.ts +7 -7
  127. package/es/utils/freeze.js +86 -0
  128. package/{dist/packages/core/src → es}/utils/index.d.ts +19 -18
  129. package/es/utils/index.js +198 -0
  130. package/{dist/packages/core/src → es}/utils/patch.d.ts +37 -37
  131. package/es/utils/patch.js +381 -0
  132. package/lib/api/cell.d.ts +10 -0
  133. package/lib/api/cell.js +215 -0
  134. package/lib/api/common.d.ts +71 -0
  135. package/lib/api/common.js +88 -0
  136. package/lib/api/errors.d.ts +2 -0
  137. package/lib/api/errors.js +8 -0
  138. package/lib/api/index.d.ts +9 -0
  139. package/lib/api/index.js +101 -0
  140. package/lib/api/merge.d.ts +5 -0
  141. package/lib/api/merge.js +22 -0
  142. package/lib/api/range.d.ts +22 -0
  143. package/lib/api/range.js +138 -0
  144. package/lib/api/rowcol.d.ts +14 -0
  145. package/lib/api/rowcol.js +222 -0
  146. package/lib/api/sheet.d.ts +10 -0
  147. package/lib/api/sheet.js +145 -0
  148. package/lib/api/workbook.d.ts +15 -0
  149. package/lib/api/workbook.js +98 -0
  150. package/lib/canvas.d.ts +46 -0
  151. package/lib/canvas.js +1356 -0
  152. package/lib/context.d.ts +198 -0
  153. package/lib/context.js +393 -0
  154. package/lib/events/copy.d.ts +2 -0
  155. package/lib/events/copy.js +85 -0
  156. package/lib/events/index.d.ts +4 -0
  157. package/lib/events/index.js +49 -0
  158. package/lib/events/keyboard.d.ts +6 -0
  159. package/lib/events/keyboard.js +370 -0
  160. package/lib/events/mouse.d.ts +22 -0
  161. package/lib/events/mouse.js +1744 -0
  162. package/lib/events/paste.d.ts +4 -0
  163. package/lib/events/paste.js +1425 -0
  164. package/lib/index.d.ts +10 -0
  165. package/lib/index.js +109 -0
  166. package/lib/locale/en.d.ts +993 -0
  167. package/lib/locale/en.js +10146 -0
  168. package/lib/locale/es.d.ts +1134 -0
  169. package/lib/locale/es.js +10016 -0
  170. package/lib/locale/hi.d.ts +1030 -0
  171. package/lib/locale/hi.js +10556 -0
  172. package/lib/locale/index.d.ts +1049 -0
  173. package/lib/locale/index.js +29 -0
  174. package/lib/locale/zh.d.ts +1048 -0
  175. package/lib/locale/zh.js +10574 -0
  176. package/lib/locale/zh_tw.d.ts +1187 -0
  177. package/lib/locale/zh_tw.js +10078 -0
  178. package/lib/modules/ConditionFormat.d.ts +17 -0
  179. package/lib/modules/ConditionFormat.js +1273 -0
  180. package/lib/modules/border.d.ts +3 -0
  181. package/lib/modules/border.js +1248 -0
  182. package/lib/modules/cell.d.ts +32 -0
  183. package/lib/modules/cell.js +1122 -0
  184. package/lib/modules/clipboard.d.ts +3 -0
  185. package/lib/modules/clipboard.js +42 -0
  186. package/lib/modules/color.d.ts +1 -0
  187. package/lib/modules/color.js +7 -0
  188. package/lib/modules/comment.d.ts +97 -0
  189. package/lib/modules/comment.js +625 -0
  190. package/lib/modules/conditionalFormat.d.ts +2 -0
  191. package/lib/modules/conditionalFormat.js +447 -0
  192. package/lib/modules/cursor.d.ts +3 -0
  193. package/lib/modules/cursor.js +70 -0
  194. package/lib/modules/dataVerification.d.ts +11 -0
  195. package/lib/modules/dataVerification.js +716 -0
  196. package/lib/modules/dropCell.d.ts +10 -0
  197. package/lib/modules/dropCell.js +2283 -0
  198. package/lib/modules/filter.d.ts +45 -0
  199. package/lib/modules/filter.js +448 -0
  200. package/lib/modules/format.d.ts +6 -0
  201. package/lib/modules/format.js +334 -0
  202. package/lib/modules/formula.d.ts +54 -0
  203. package/lib/modules/formula.js +2375 -0
  204. package/lib/modules/freeze.d.ts +5 -0
  205. package/lib/modules/freeze.js +158 -0
  206. package/lib/modules/hyperlink.d.ts +21 -0
  207. package/lib/modules/hyperlink.js +232 -0
  208. package/lib/modules/iframe.d.ts +12 -0
  209. package/lib/modules/iframe.js +236 -0
  210. package/lib/modules/image.d.ts +31 -0
  211. package/lib/modules/image.js +272 -0
  212. package/lib/modules/index.d.ts +36 -0
  213. package/lib/modules/index.js +401 -0
  214. package/lib/modules/inline-string.d.ts +36 -0
  215. package/lib/modules/inline-string.js +452 -0
  216. package/lib/modules/location.d.ts +6 -0
  217. package/lib/modules/location.js +57 -0
  218. package/lib/modules/locationCondition.d.ts +21 -0
  219. package/lib/modules/locationCondition.js +229 -0
  220. package/lib/modules/merge.d.ts +3 -0
  221. package/lib/modules/merge.js +223 -0
  222. package/lib/modules/mobile.d.ts +5 -0
  223. package/lib/modules/mobile.js +41 -0
  224. package/lib/modules/moveCells.d.ts +5 -0
  225. package/lib/modules/moveCells.js +357 -0
  226. package/lib/modules/protection.d.ts +5 -0
  227. package/lib/modules/protection.js +106 -0
  228. package/lib/modules/refresh.d.ts +3 -0
  229. package/lib/modules/refresh.js +40 -0
  230. package/lib/modules/rowcol.d.ts +19 -0
  231. package/lib/modules/rowcol.js +1935 -0
  232. package/lib/modules/screenshot.d.ts +2 -0
  233. package/lib/modules/screenshot.js +96 -0
  234. package/lib/modules/searchReplace.d.ts +36 -0
  235. package/lib/modules/searchReplace.js +402 -0
  236. package/lib/modules/selection.d.ts +50 -0
  237. package/lib/modules/selection.js +1889 -0
  238. package/lib/modules/sheet.d.ts +10 -0
  239. package/lib/modules/sheet.js +250 -0
  240. package/lib/modules/sort.d.ts +7 -0
  241. package/lib/modules/sort.js +143 -0
  242. package/lib/modules/splitColumn.d.ts +5 -0
  243. package/lib/modules/splitColumn.js +136 -0
  244. package/lib/modules/ssf.js +1539 -0
  245. package/lib/modules/text.d.ts +10 -0
  246. package/lib/modules/text.js +1221 -0
  247. package/lib/modules/toolbar.d.ts +32 -0
  248. package/lib/modules/toolbar.js +1003 -0
  249. package/lib/modules/validation.d.ts +19 -0
  250. package/lib/modules/validation.js +205 -0
  251. package/lib/modules/zoom.d.ts +3 -0
  252. package/lib/modules/zoom.js +36 -0
  253. package/lib/settings.d.ts +100 -0
  254. package/lib/settings.js +42 -0
  255. package/lib/types.d.ts +380 -0
  256. package/lib/types.js +5 -0
  257. package/lib/utils/freeze.d.ts +7 -0
  258. package/lib/utils/freeze.js +92 -0
  259. package/lib/utils/index.d.ts +19 -0
  260. package/lib/utils/index.js +258 -0
  261. package/lib/utils/patch.d.ts +37 -0
  262. package/lib/utils/patch.js +392 -0
  263. package/package.json +7 -6
  264. package/dist/index.esm.js +0 -80255
  265. package/dist/index.js +0 -80601
  266. package/dist/packages/react/src/components/ChangeColor/index.d.ts +0 -7
  267. package/dist/packages/react/src/components/ConditionFormat/ConditionRules.d.ts +0 -6
  268. package/dist/packages/react/src/components/ConditionFormat/index.d.ts +0 -7
  269. package/dist/packages/react/src/components/ContextMenu/Divider.d.ts +0 -3
  270. package/dist/packages/react/src/components/ContextMenu/FilterMenu.d.ts +0 -3
  271. package/dist/packages/react/src/components/ContextMenu/Menu.d.ts +0 -8
  272. package/dist/packages/react/src/components/ContextMenu/SheetTab.d.ts +0 -4
  273. package/dist/packages/react/src/components/ContextMenu/index.d.ts +0 -5
  274. package/dist/packages/react/src/components/CustomSort/index.d.ts +0 -4
  275. package/dist/packages/react/src/components/DataVerification/DropdownList.d.ts +0 -4
  276. package/dist/packages/react/src/components/DataVerification/RangeDialog.d.ts +0 -4
  277. package/dist/packages/react/src/components/DataVerification/getDisplayedRangeTxt.d.ts +0 -2
  278. package/dist/packages/react/src/components/DataVerification/index.d.ts +0 -4
  279. package/dist/packages/react/src/components/Dialog/index.d.ts +0 -15
  280. package/dist/packages/react/src/components/DuneChartsInputModal/DuneChartsInputModal.d.ts +0 -11
  281. package/dist/packages/react/src/components/DunePreview/DunePreview.d.ts +0 -13
  282. package/dist/packages/react/src/components/FilterOption/index.d.ts +0 -5
  283. package/dist/packages/react/src/components/FormatSearch/index.d.ts +0 -6
  284. package/dist/packages/react/src/components/FormulaSearch/index.d.ts +0 -5
  285. package/dist/packages/react/src/components/FxEditor/NameBox.d.ts +0 -3
  286. package/dist/packages/react/src/components/FxEditor/index.d.ts +0 -4
  287. package/dist/packages/react/src/components/IFrameBoxs/iFrameBoxs.d.ts +0 -4
  288. package/dist/packages/react/src/components/ImgBoxs/index.d.ts +0 -3
  289. package/dist/packages/react/src/components/LinkEidtCard/index.d.ts +0 -5
  290. package/dist/packages/react/src/components/LocationCondition/index.d.ts +0 -3
  291. package/dist/packages/react/src/components/MessageBox/index.d.ts +0 -9
  292. package/dist/packages/react/src/components/NotationBoxes/index.d.ts +0 -3
  293. package/dist/packages/react/src/components/ResetColumnWidth/index.d.ts +0 -2
  294. package/dist/packages/react/src/components/SVGDefines.d.ts +0 -5
  295. package/dist/packages/react/src/components/SVGIcon.d.ts +0 -9
  296. package/dist/packages/react/src/components/SearchReplace/index.d.ts +0 -6
  297. package/dist/packages/react/src/components/Sheet/index.d.ts +0 -8
  298. package/dist/packages/react/src/components/SheetList/SheetHiddenButton.d.ts +0 -8
  299. package/dist/packages/react/src/components/SheetList/SheetListItem.d.ts +0 -9
  300. package/dist/packages/react/src/components/SheetList/index.d.ts +0 -4
  301. package/dist/packages/react/src/components/SheetOverlay/ColumnHeader.d.ts +0 -3
  302. package/dist/packages/react/src/components/SheetOverlay/ContentEditable.d.ts +0 -11
  303. package/dist/packages/react/src/components/SheetOverlay/FormulaHint/index.d.ts +0 -4
  304. package/dist/packages/react/src/components/SheetOverlay/FormulaSearch/constant.d.ts +0 -63
  305. package/dist/packages/react/src/components/SheetOverlay/FormulaSearch/index.d.ts +0 -4
  306. package/dist/packages/react/src/components/SheetOverlay/InputBox.d.ts +0 -3
  307. package/dist/packages/react/src/components/SheetOverlay/RowHeader.d.ts +0 -3
  308. package/dist/packages/react/src/components/SheetOverlay/ScrollBar/index.d.ts +0 -7
  309. package/dist/packages/react/src/components/SheetOverlay/index.d.ts +0 -4
  310. package/dist/packages/react/src/components/SheetTab/SheetItem.d.ts +0 -8
  311. package/dist/packages/react/src/components/SheetTab/index.d.ts +0 -4
  312. package/dist/packages/react/src/components/SplitColumn/index.d.ts +0 -3
  313. package/dist/packages/react/src/components/Toolbar/Button.d.ts +0 -12
  314. package/dist/packages/react/src/components/Toolbar/ColorPicker.d.ts +0 -6
  315. package/dist/packages/react/src/components/Toolbar/Combo.d.ts +0 -12
  316. package/dist/packages/react/src/components/Toolbar/CustomBorder.d.ts +0 -7
  317. package/dist/packages/react/src/components/Toolbar/CustomButton.d.ts +0 -11
  318. package/dist/packages/react/src/components/Toolbar/CustomColor.d.ts +0 -8
  319. package/dist/packages/react/src/components/Toolbar/CustomIcon.d.ts +0 -9
  320. package/dist/packages/react/src/components/Toolbar/Divider.d.ts +0 -4
  321. package/dist/packages/react/src/components/Toolbar/MoreItemsContainer.d.ts +0 -6
  322. package/dist/packages/react/src/components/Toolbar/Select.d.ts +0 -14
  323. package/dist/packages/react/src/components/Toolbar/index.d.ts +0 -10
  324. package/dist/packages/react/src/components/Workbook/api.d.ts +0 -1177
  325. package/dist/packages/react/src/components/Workbook/index.d.ts +0 -1185
  326. package/dist/packages/react/src/components/ZoomControl/index.d.ts +0 -4
  327. package/dist/packages/react/src/components/index.d.ts +0 -4
  328. package/dist/packages/react/src/constants.d.ts +0 -1
  329. package/dist/packages/react/src/context/index.d.ts +0 -25
  330. package/dist/packages/react/src/context/modal.d.ts +0 -10
  331. package/dist/packages/react/src/hooks/useAlert.d.ts +0 -4
  332. package/dist/packages/react/src/hooks/useDialog.d.ts +0 -5
  333. package/dist/packages/react/src/hooks/useOutsideClick.d.ts +0 -2
  334. package/dist/packages/react/src/hooks/usePrevious.d.ts +0 -2
  335. package/dist/packages/react/src/index.d.ts +0 -1
  336. package/dist/packages/react/src/utils/datepickerStyles.d.ts +0 -2
  337. package/dist/stories/API.stories.d.ts +0 -1210
  338. package/dist/stories/Collabration.stories.d.ts +0 -2359
  339. package/dist/stories/Features.stories.d.ts +0 -9430
  340. package/dist/stories/data/cell.d.ts +0 -983
  341. package/dist/stories/data/dataVerification.d.ts +0 -131
  342. package/dist/stories/data/empty.d.ts +0 -10
  343. package/dist/stories/data/formula.d.ts +0 -362
  344. package/dist/stories/data/freeze.d.ts +0 -34
  345. package/dist/stories/data/protected.d.ts +0 -40
  346. package/dist/stories/utils.d.ts +0 -1
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _copy = require("./copy");
7
+ Object.keys(_copy).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _copy[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function get() {
13
+ return _copy[key];
14
+ }
15
+ });
16
+ });
17
+ var _keyboard = require("./keyboard");
18
+ Object.keys(_keyboard).forEach(function (key) {
19
+ if (key === "default" || key === "__esModule") return;
20
+ if (key in exports && exports[key] === _keyboard[key]) return;
21
+ Object.defineProperty(exports, key, {
22
+ enumerable: true,
23
+ get: function get() {
24
+ return _keyboard[key];
25
+ }
26
+ });
27
+ });
28
+ var _mouse = require("./mouse");
29
+ Object.keys(_mouse).forEach(function (key) {
30
+ if (key === "default" || key === "__esModule") return;
31
+ if (key in exports && exports[key] === _mouse[key]) return;
32
+ Object.defineProperty(exports, key, {
33
+ enumerable: true,
34
+ get: function get() {
35
+ return _mouse[key];
36
+ }
37
+ });
38
+ });
39
+ var _paste = require("./paste");
40
+ Object.keys(_paste).forEach(function (key) {
41
+ if (key === "default" || key === "__esModule") return;
42
+ if (key in exports && exports[key] === _paste[key]) return;
43
+ Object.defineProperty(exports, key, {
44
+ enumerable: true,
45
+ get: function get() {
46
+ return _paste[key];
47
+ }
48
+ });
49
+ });
@@ -0,0 +1,6 @@
1
+ import { Context } from "../context";
2
+ import { GlobalCache } from "../types";
3
+ export declare function handleGlobalEnter(ctx: Context, cellInput: HTMLDivElement, e: KeyboardEvent, canvas?: CanvasRenderingContext2D): void;
4
+ export declare function handleWithCtrlOrMetaKey(ctx: Context, cache: GlobalCache, e: KeyboardEvent, cellInput: HTMLDivElement, fxInput: HTMLDivElement | null | undefined, handleUndo: () => void, handleRedo: () => void): void;
5
+ export declare function handleArrowKey(ctx: Context, e: KeyboardEvent): void;
6
+ export declare function handleGlobalKeyDown(ctx: Context, cellInput: HTMLDivElement, fxInput: HTMLDivElement | null | undefined, e: KeyboardEvent, cache: GlobalCache, handleUndo: () => void, handleRedo: () => void, canvas?: CanvasRenderingContext2D): void;
@@ -0,0 +1,370 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.handleArrowKey = handleArrowKey;
7
+ exports.handleGlobalEnter = handleGlobalEnter;
8
+ exports.handleGlobalKeyDown = handleGlobalKeyDown;
9
+ exports.handleWithCtrlOrMetaKey = handleWithCtrlOrMetaKey;
10
+ var _lodash = _interopRequireDefault(require("lodash"));
11
+ var _2 = require("..");
12
+ var _context = require("../context");
13
+ var _cell = require("../modules/cell");
14
+ var _formula = require("../modules/formula");
15
+ var _selection = require("../modules/selection");
16
+ var _toolbar = require("../modules/toolbar");
17
+ var _validation = require("../modules/validation");
18
+ var _utils = require("../utils");
19
+ var _copy = require("./copy");
20
+ var _refresh = require("../modules/refresh");
21
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
22
+ function handleGlobalEnter(ctx, cellInput, e, canvas) {
23
+ var _a, _b, _c;
24
+ if ((e.altKey || e.metaKey) && ctx.luckysheetCellUpdate.length > 0) {
25
+ var last = (_a = ctx.luckysheet_select_save) === null || _a === void 0 ? void 0 : _a[ctx.luckysheet_select_save.length - 1];
26
+ if (last && !_lodash.default.isNil(last.row_focus) && !_lodash.default.isNil(last.column_focus)) {}
27
+ e.preventDefault();
28
+ } else if (ctx.luckysheetCellUpdate.length > 0) {
29
+ var lastCellUpdate = _lodash.default.clone(ctx.luckysheetCellUpdate);
30
+ (0, _cell.updateCell)(ctx, ctx.luckysheetCellUpdate[0], ctx.luckysheetCellUpdate[1], cellInput, undefined, canvas);
31
+ ctx.luckysheet_select_save = [{
32
+ row: [lastCellUpdate[0], lastCellUpdate[0]],
33
+ column: [lastCellUpdate[1], lastCellUpdate[1]],
34
+ row_focus: lastCellUpdate[0],
35
+ column_focus: lastCellUpdate[1]
36
+ }];
37
+ (0, _selection.moveHighlightCell)(ctx, "down", 1, "rangeOfSelect");
38
+ e.preventDefault();
39
+ } else {
40
+ if (((_c = (_b = ctx.luckysheet_select_save) === null || _b === void 0 ? void 0 : _b.length) !== null && _c !== void 0 ? _c : 0) > 0) {
41
+ var last = ctx.luckysheet_select_save[ctx.luckysheet_select_save.length - 1];
42
+ var row_index = last.row_focus;
43
+ var col_index = last.column_focus;
44
+ ctx.luckysheetCellUpdate = [row_index, col_index];
45
+ e.preventDefault();
46
+ }
47
+ }
48
+ }
49
+ function moveToEdge(sheetData, key, curr, rowDelta, colDelta, startR, endR, startC, endC, maxRow, maxCol) {
50
+ var _a, _b, _c, _d, _e, _f;
51
+ var selectedLimit = -1;
52
+ if (key === "ArrowUp") selectedLimit = startR - 1;else if (key === "ArrowDown") selectedLimit = endR + 1;else if (key === "ArrowLeft") selectedLimit = startC - 1;else if (key === "ArrowRight") selectedLimit = endC + 1;
53
+ var maxRowCol = colDelta === 0 ? maxRow : maxCol;
54
+ var r = colDelta === 0 ? selectedLimit : curr;
55
+ var c = colDelta === 0 ? curr : selectedLimit;
56
+ while (r >= 0 && c >= 0 && (colDelta === 0 ? r : c) < maxRowCol - 1) {
57
+ if (!_lodash.default.isNil((_b = (_a = sheetData === null || sheetData === void 0 ? void 0 : sheetData[r]) === null || _a === void 0 ? void 0 : _a[c]) === null || _b === void 0 ? void 0 : _b.v) && (_lodash.default.isNil((_d = (_c = sheetData === null || sheetData === void 0 ? void 0 : sheetData[r - rowDelta]) === null || _c === void 0 ? void 0 : _c[c - colDelta]) === null || _d === void 0 ? void 0 : _d.v) || _lodash.default.isNil((_f = (_e = sheetData === null || sheetData === void 0 ? void 0 : sheetData[r + rowDelta]) === null || _e === void 0 ? void 0 : _e[c + colDelta]) === null || _f === void 0 ? void 0 : _f.v))) {
58
+ break;
59
+ } else {
60
+ r += 1 * rowDelta;
61
+ c += 1 * colDelta;
62
+ }
63
+ }
64
+ return colDelta === 0 ? r : c;
65
+ }
66
+ function handleControlPlusArrowKey(ctx, e, shiftPressed) {
67
+ if (ctx.luckysheetCellUpdate.length > 0) return;
68
+ var idx = (0, _utils.getSheetIndex)(ctx, ctx.currentSheetId);
69
+ if (_lodash.default.isNil(idx)) return;
70
+ var file = ctx.luckysheetfile[idx];
71
+ if (!file || !file.row || !file.column) return;
72
+ var maxRow = file.row;
73
+ var maxCol = file.column;
74
+ var last;
75
+ if (ctx.luckysheet_select_save && ctx.luckysheet_select_save.length > 0) last = ctx.luckysheet_select_save[ctx.luckysheet_select_save.length - 1];
76
+ if (!last) return;
77
+ var currR = last.row_focus;
78
+ var currC = last.column_focus;
79
+ if (_lodash.default.isNil(currR) || _lodash.default.isNil(currC)) return;
80
+ var startR = last.row[0];
81
+ var endR = last.row[1];
82
+ var startC = last.column[0];
83
+ var endC = last.column[1];
84
+ var horizontalOffset = currC - endC !== 0 ? currC - endC : currC - startC;
85
+ var verticalOffset = currR - endR !== 0 ? currR - endR : currR - startR;
86
+ var sheetData = file.data;
87
+ if (!sheetData) return;
88
+ var selectedLimit;
89
+ switch (e.key) {
90
+ case "ArrowUp":
91
+ selectedLimit = moveToEdge(sheetData, e.key, currC, -1, 0, startR, endR, startC, endC, maxRow, maxCol);
92
+ if (shiftPressed) {
93
+ (0, _selection.moveHighlightRange)(ctx, "down", verticalOffset, "rangeOfSelect");
94
+ (0, _selection.moveHighlightRange)(ctx, "down", selectedLimit - currR, "rangeOfSelect");
95
+ } else {
96
+ (0, _selection.moveHighlightCell)(ctx, "down", selectedLimit - currR, "rangeOfSelect");
97
+ }
98
+ break;
99
+ case "ArrowDown":
100
+ selectedLimit = moveToEdge(sheetData, e.key, currC, 1, 0, startR, endR, startC, endC, maxRow, maxCol);
101
+ if (shiftPressed) {
102
+ (0, _selection.moveHighlightRange)(ctx, "down", verticalOffset, "rangeOfSelect");
103
+ (0, _selection.moveHighlightRange)(ctx, "down", selectedLimit - currR, "rangeOfSelect");
104
+ } else {
105
+ (0, _selection.moveHighlightCell)(ctx, "down", selectedLimit - currR, "rangeOfSelect");
106
+ }
107
+ break;
108
+ case "ArrowLeft":
109
+ selectedLimit = moveToEdge(sheetData, e.key, currR, 0, -1, startR, endR, startC, endC, maxRow, maxCol);
110
+ if (shiftPressed) {
111
+ (0, _selection.moveHighlightRange)(ctx, "right", horizontalOffset, "rangeOfSelect");
112
+ (0, _selection.moveHighlightRange)(ctx, "right", selectedLimit - currC, "rangeOfSelect");
113
+ } else {
114
+ (0, _selection.moveHighlightCell)(ctx, "right", selectedLimit - currC, "rangeOfSelect");
115
+ }
116
+ break;
117
+ case "ArrowRight":
118
+ selectedLimit = moveToEdge(sheetData, e.key, currR, 0, 1, startR, endR, startC, endC, maxRow, maxCol);
119
+ if (shiftPressed) {
120
+ (0, _selection.moveHighlightRange)(ctx, "right", horizontalOffset, "rangeOfSelect");
121
+ (0, _selection.moveHighlightRange)(ctx, "right", selectedLimit - currC, "rangeOfSelect");
122
+ } else {
123
+ (0, _selection.moveHighlightCell)(ctx, "right", selectedLimit - currC, "rangeOfSelect");
124
+ }
125
+ break;
126
+ default:
127
+ break;
128
+ }
129
+ }
130
+ function handleWithCtrlOrMetaKey(ctx, cache, e, cellInput, fxInput, handleUndo, handleRedo) {
131
+ var _a, _b, _c, _d;
132
+ var flowdata = (0, _context.getFlowdata)(ctx);
133
+ if (!flowdata) return;
134
+ if (e.shiftKey) {
135
+ ctx.luckysheet_shiftpositon = _lodash.default.cloneDeep((_a = ctx.luckysheet_select_save) === null || _a === void 0 ? void 0 : _a[ctx.luckysheet_select_save.length - 1]);
136
+ ctx.luckysheet_shiftkeydown = true;
137
+ if (["ArrowUp", "ArrowDown", "ArrowLeft", "ArrowRight"].includes(e.key)) {
138
+ handleControlPlusArrowKey(ctx, e, true);
139
+ } else if (_lodash.default.includes(['"', ":", "'"], e.key)) {
140
+ var last = (_b = ctx.luckysheet_select_save) === null || _b === void 0 ? void 0 : _b[ctx.luckysheet_select_save.length - 1];
141
+ if (!last) return;
142
+ var row_index = last.row_focus;
143
+ var col_index = last.column_focus;
144
+ (0, _cell.updateCell)(ctx, row_index, col_index, cellInput);
145
+ ctx.luckysheetCellUpdate = [row_index, col_index];
146
+ cache.ignoreWriteCell = true;
147
+ var value = (0, _utils.getNowDateTime)(2);
148
+ cellInput.innerText = value;
149
+ (0, _formula.handleFormulaInput)(ctx, fxInput, cellInput, e.keyCode);
150
+ } else if (e.code === "KeyZ") {
151
+ handleRedo();
152
+ e.stopPropagation();
153
+ return;
154
+ }
155
+ } else if (["ArrowUp", "ArrowDown", "ArrowLeft", "ArrowRight"].includes(e.key)) {
156
+ handleControlPlusArrowKey(ctx, e, false);
157
+ } else if (e.code === "KeyB") {
158
+ (0, _toolbar.handleBold)(ctx, cellInput);
159
+ } else if (e.code === "KeyI") {
160
+ (0, _toolbar.handleItalic)(ctx, cellInput);
161
+ } else if (e.code === "KeyU") {
162
+ (0, _toolbar.handleUnderline)(ctx, cellInput);
163
+ } else if (e.code === "Backslash") {
164
+ (0, _selection.deleteSelectedCellFormat)(ctx);
165
+ } else if (e.code === "KeyC") {
166
+ (0, _copy.handleCopy)(ctx);
167
+ e.stopPropagation();
168
+ return;
169
+ } else if (e.code === "KeyF") {
170
+ ctx.showSearch = true;
171
+ } else if (e.code === "KeyH") {
172
+ ctx.showReplace = true;
173
+ } else if (e.code === "KeyV") {
174
+ if (((_d = (_c = ctx.luckysheet_select_save) === null || _c === void 0 ? void 0 : _c.length) !== null && _d !== void 0 ? _d : 0) > 1) {
175
+ return;
176
+ }
177
+ _selection.selectionCache.isPasteAction = true;
178
+ e.stopPropagation();
179
+ return;
180
+ } else if (e.code === "KeyX") {
181
+ if (ctx.luckysheetPaintModelOn) {
182
+ (0, _toolbar.cancelPaintModel)(ctx);
183
+ }
184
+ var selection = ctx.luckysheet_select_save;
185
+ if (!selection || _lodash.default.isEmpty(selection)) {
186
+ return;
187
+ }
188
+ if (ctx.config.merge != null) {
189
+ var has_PartMC = false;
190
+ for (var s = 0; s < selection.length; s += 1) {
191
+ var r1 = selection[s].row[0];
192
+ var r2 = selection[s].row[1];
193
+ var c1 = selection[s].column[0];
194
+ var c2 = selection[s].column[1];
195
+ has_PartMC = (0, _validation.hasPartMC)(ctx, ctx.config, r1, r2, c1, c2);
196
+ if (has_PartMC) {
197
+ break;
198
+ }
199
+ }
200
+ if (has_PartMC) {
201
+ return;
202
+ }
203
+ }
204
+ if (selection.length > 1) {
205
+ return;
206
+ }
207
+ (0, _selection.copy)(ctx);
208
+ ctx.luckysheet_paste_iscut = true;
209
+ e.stopPropagation();
210
+ return;
211
+ } else if (e.code === "KeyZ") {
212
+ handleUndo();
213
+ e.stopPropagation();
214
+ return;
215
+ } else if (e.code === "KeyA") {
216
+ (0, _selection.selectAll)(ctx);
217
+ }
218
+ e.preventDefault();
219
+ }
220
+ function handleShiftWithArrowKey(ctx, e) {
221
+ var _a;
222
+ if (ctx.luckysheetCellUpdate.length > 0) {
223
+ return;
224
+ }
225
+ ctx.luckysheet_shiftpositon = _lodash.default.cloneDeep((_a = ctx.luckysheet_select_save) === null || _a === void 0 ? void 0 : _a[ctx.luckysheet_select_save.length - 1]);
226
+ ctx.luckysheet_shiftkeydown = true;
227
+ switch (e.key) {
228
+ case "ArrowUp":
229
+ (0, _selection.moveHighlightRange)(ctx, "down", -1, "rangeOfSelect");
230
+ break;
231
+ case "ArrowDown":
232
+ (0, _selection.moveHighlightRange)(ctx, "down", 1, "rangeOfSelect");
233
+ break;
234
+ case "ArrowLeft":
235
+ (0, _selection.moveHighlightRange)(ctx, "right", -1, "rangeOfSelect");
236
+ break;
237
+ case "ArrowRight":
238
+ (0, _selection.moveHighlightRange)(ctx, "right", 1, "rangeOfSelect");
239
+ break;
240
+ default:
241
+ break;
242
+ }
243
+ e.preventDefault();
244
+ }
245
+ function handleArrowKey(ctx, e) {
246
+ if (ctx.luckysheetCellUpdate.length > 0 || ctx.luckysheet_cell_selected_move || ctx.luckysheet_cell_selected_extend) {
247
+ return;
248
+ }
249
+ var moveCount = (0, _2.hideCRCount)(ctx, e.key);
250
+ switch (e.key) {
251
+ case "ArrowUp":
252
+ (0, _selection.moveHighlightCell)(ctx, "down", -moveCount, "rangeOfSelect");
253
+ break;
254
+ case "ArrowDown":
255
+ (0, _selection.moveHighlightCell)(ctx, "down", moveCount, "rangeOfSelect");
256
+ break;
257
+ case "ArrowLeft":
258
+ (0, _selection.moveHighlightCell)(ctx, "right", -moveCount, "rangeOfSelect");
259
+ break;
260
+ case "ArrowRight":
261
+ (0, _selection.moveHighlightCell)(ctx, "right", moveCount, "rangeOfSelect");
262
+ break;
263
+ default:
264
+ break;
265
+ }
266
+ }
267
+ function handleGlobalKeyDown(ctx, cellInput, fxInput, e, cache, handleUndo, handleRedo, canvas) {
268
+ var _a;
269
+ if (e.shiftKey && e.code === "Space") {
270
+ e.stopImmediatePropagation();
271
+ e.stopPropagation();
272
+ e.preventDefault();
273
+ return;
274
+ }
275
+ if ((e.ctrlKey || e.metaKey && e.shiftKey) && e.code === "KeyE") {
276
+ (0, _selection.textFormat)(ctx, "center");
277
+ } else if ((e.ctrlKey || e.metaKey && e.shiftKey) && e.code === "KeyL") {
278
+ (0, _selection.textFormat)(ctx, "left");
279
+ } else if ((e.ctrlKey || e.metaKey && e.shiftKey) && e.code === "KeyR") {
280
+ (0, _selection.textFormat)(ctx, "right");
281
+ }
282
+ if ((e.metaKey || e.ctrlKey) && e.code === "KeyK") {
283
+ (0, _toolbar.handleLink)(ctx);
284
+ }
285
+ if ((e.metaKey || e.ctrlKey) && !e.shiftKey && e.code === "Semicolon") {
286
+ (0, _selection.fillDate)(ctx);
287
+ }
288
+ if ((e.metaKey || e.ctrlKey) && e.shiftKey && e.code === "Semicolon") {
289
+ (0, _selection.fillTime)(ctx);
290
+ }
291
+ ctx.luckysheet_select_status = false;
292
+ var kcode = e.keyCode;
293
+ var kstr = e.key;
294
+ if (!_lodash.default.isEmpty(ctx.contextMenu) || ctx.filterContextMenu) {
295
+ return;
296
+ }
297
+ if (kstr === "Escape" && !!ctx.luckysheet_selection_range) {
298
+ ctx.luckysheet_selection_range = [];
299
+ }
300
+ var allowEdit = (0, _utils.isAllowEdit)(ctx);
301
+ if (ctx.luckysheetCellUpdate.length > 0 && kstr !== "Enter" && kstr !== "Tab" && kstr !== "ArrowUp" && kstr !== "ArrowDown" && kstr !== "ArrowLeft" && kstr !== "ArrowRight") {
302
+ return;
303
+ }
304
+ if (kstr === "Enter") {
305
+ if (!allowEdit) return;
306
+ handleGlobalEnter(ctx, cellInput, e, canvas);
307
+ } else if (kstr === "Tab") {
308
+ if (ctx.luckysheetCellUpdate.length > 0) {
309
+ return;
310
+ }
311
+ if (e.shiftKey) {
312
+ (0, _selection.moveHighlightCell)(ctx, "right", -1, "rangeOfSelect");
313
+ } else {
314
+ (0, _selection.moveHighlightCell)(ctx, "right", 1, "rangeOfSelect");
315
+ }
316
+ e.preventDefault();
317
+ } else if (kstr === "F2") {
318
+ if (!allowEdit) return;
319
+ if (ctx.luckysheetCellUpdate.length > 0) {
320
+ return;
321
+ }
322
+ var last = (_a = ctx.luckysheet_select_save) === null || _a === void 0 ? void 0 : _a[ctx.luckysheet_select_save.length - 1];
323
+ if (!last) return;
324
+ var row_index = last.row_focus;
325
+ var col_index = last.column_focus;
326
+ ctx.luckysheetCellUpdate = [row_index, col_index];
327
+ e.preventDefault();
328
+ } else if (kstr === "F4" && ctx.luckysheetCellUpdate.length > 0) {
329
+ e.preventDefault();
330
+ } else if (kstr === "Escape" && ctx.luckysheetCellUpdate.length > 0) {
331
+ (0, _cell.cancelNormalSelected)(ctx);
332
+ (0, _selection.moveHighlightCell)(ctx, "down", 0, "rangeOfSelect");
333
+ e.preventDefault();
334
+ } else {
335
+ if (e.ctrlKey || e.metaKey) {
336
+ handleWithCtrlOrMetaKey(ctx, cache, e, cellInput, fxInput, handleUndo, handleRedo);
337
+ return;
338
+ }
339
+ if (e.shiftKey && (kstr === "ArrowUp" || kstr === "ArrowDown" || kstr === "ArrowLeft" || kstr === "ArrowRight")) {
340
+ handleShiftWithArrowKey(ctx, e);
341
+ } else if (kstr === "Escape") {
342
+ ctx.contextMenu = {};
343
+ } else if (kstr === "Delete" || kstr === "Backspace") {
344
+ if (!allowEdit) return;
345
+ if (ctx.activeImg != null) {
346
+ (0, _2.removeActiveImage)(ctx);
347
+ } else {
348
+ (0, _selection.deleteSelectedCellText)(ctx);
349
+ }
350
+ (0, _refresh.jfrefreshgrid)(ctx, null, undefined);
351
+ e.preventDefault();
352
+ } else if (kstr === "ArrowUp" || kstr === "ArrowDown" || kstr === "ArrowLeft" || kstr === "ArrowRight") {
353
+ handleArrowKey(ctx, e);
354
+ } else if (!(kcode >= 112 && kcode <= 123 || kcode <= 46 || kcode === 144 || kcode === 108 || e.ctrlKey || e.altKey || e.shiftKey && (kcode === 37 || kcode === 38 || kcode === 39 || kcode === 40)) || kcode === 8 || kcode === 32 || kcode === 46 || kcode === 0 || e.ctrlKey && kcode === 86) {
355
+ if (!allowEdit) return;
356
+ if (String.fromCharCode(kcode) != null && !_lodash.default.isEmpty(ctx.luckysheet_select_save) && kstr !== "CapsLock" && kstr !== "Win" && kcode !== 18) {
357
+ var last = ctx.luckysheet_select_save[ctx.luckysheet_select_save.length - 1];
358
+ var row_index = last.row_focus;
359
+ var col_index = last.column_focus;
360
+ ctx.luckysheetCellUpdate = [row_index, col_index];
361
+ cache.overwriteCell = true;
362
+ (0, _formula.handleFormulaInput)(ctx, fxInput, cellInput, kcode);
363
+ }
364
+ }
365
+ }
366
+ if (cellInput !== document.activeElement) {
367
+ cellInput === null || cellInput === void 0 ? void 0 : cellInput.focus();
368
+ }
369
+ e.stopPropagation();
370
+ }
@@ -0,0 +1,22 @@
1
+ import { Freezen } from "..";
2
+ import { Context } from "../context";
3
+ import { Settings } from "../settings";
4
+ import { GlobalCache } from "../types";
5
+ export declare function handleGlobalWheel(ctx: Context, e: WheelEvent, cache: GlobalCache, scrollbarX: HTMLDivElement, scrollbarY: HTMLDivElement): void;
6
+ export declare function fixPositionOnFrozenCells(freeze: Freezen | undefined, x: number, y: number, mouseX: number, mouseY: number): {
7
+ x: number;
8
+ y: number;
9
+ inHorizontalFreeze: boolean;
10
+ inVerticalFreeze: boolean;
11
+ };
12
+ export declare function handleCellAreaMouseDown(ctx: Context, globalCache: GlobalCache, e: MouseEvent, cellInput: HTMLDivElement, container: HTMLDivElement, fxInput?: HTMLDivElement | null, canvas?: CanvasRenderingContext2D): void;
13
+ export declare function handleCellAreaDoubleClick(ctx: Context, globalCache: GlobalCache, settings: Settings, e: MouseEvent, container: HTMLElement): void;
14
+ export declare function handleContextMenu(ctx: Context, settings: Settings, e: MouseEvent, workbookContainer: HTMLDivElement, container: HTMLDivElement, area: "cell" | "rowHeader" | "columnHeader"): void;
15
+ export declare function handleOverlayMouseMove(ctx: Context, globalCache: GlobalCache, e: MouseEvent, cellInput: HTMLDivElement, scrollX: HTMLDivElement, scrollY: HTMLDivElement, container: HTMLDivElement, fxInput?: HTMLDivElement | null): void;
16
+ export declare function handleOverlayMouseUp(ctx: Context, globalCache: GlobalCache, settings: Settings, e: MouseEvent, scrollbarX: HTMLDivElement, scrollbarY: HTMLDivElement, container: HTMLDivElement, cellInput: HTMLDivElement | null, fxInput: HTMLDivElement | null): void;
17
+ export declare function handleRowHeaderMouseDown(ctx: Context, globalCache: GlobalCache, e: MouseEvent, container: HTMLDivElement, cellInput: HTMLDivElement, fxInput: HTMLDivElement | null): void;
18
+ export declare function handleColumnHeaderMouseDown(ctx: Context, globalCache: GlobalCache, e: MouseEvent, container: HTMLElement, cellInput: HTMLDivElement, fxInput: HTMLDivElement | null): void;
19
+ export declare function handleColSizeHandleMouseDown(ctx: Context, globalCache: GlobalCache, e: MouseEvent, headerContainer: HTMLDivElement, workbookContainer: HTMLDivElement, cellArea: HTMLDivElement): void;
20
+ export declare function handleRowSizeHandleMouseDown(ctx: Context, globalCache: GlobalCache, e: MouseEvent, headerContainer: HTMLDivElement, workbookContainer: HTMLDivElement, cellArea: HTMLDivElement): void;
21
+ export declare function handleColFreezeHandleMouseDown(ctx: Context, globalCache: GlobalCache, e: MouseEvent, headerContainer: HTMLDivElement, workbookContainer: HTMLDivElement, cellArea: HTMLDivElement): void;
22
+ export declare function handleRowFreezeHandleMouseDown(ctx: Context, globalCache: GlobalCache, e: MouseEvent, headerContainer: HTMLDivElement, workbookContainer: HTMLDivElement, cellArea: HTMLDivElement): void;