handsontable 0.0.0-next-9ec04ce-20221121

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.

Potentially problematic release.


This version of handsontable might be problematic. Click here for more details.

Files changed (1232) hide show
  1. package/3rdparty/SheetClip/SheetClip.js +128 -0
  2. package/3rdparty/SheetClip/SheetClip.mjs +123 -0
  3. package/3rdparty/SheetClip/index.js +7 -0
  4. package/3rdparty/SheetClip/index.mjs +1 -0
  5. package/3rdparty/autoResize/autoResize.js +164 -0
  6. package/3rdparty/autoResize/autoResize.mjs +160 -0
  7. package/3rdparty/autoResize/index.js +6 -0
  8. package/3rdparty/autoResize/index.mjs +1 -0
  9. package/3rdparty/walkontable/src/border.js +746 -0
  10. package/3rdparty/walkontable/src/border.mjs +741 -0
  11. package/3rdparty/walkontable/src/calculator/constants.js +30 -0
  12. package/3rdparty/walkontable/src/calculator/constants.mjs +23 -0
  13. package/3rdparty/walkontable/src/calculator/index.js +22 -0
  14. package/3rdparty/walkontable/src/calculator/index.mjs +4 -0
  15. package/3rdparty/walkontable/src/calculator/viewportColumns.d.ts +18 -0
  16. package/3rdparty/walkontable/src/calculator/viewportColumns.js +297 -0
  17. package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +292 -0
  18. package/3rdparty/walkontable/src/calculator/viewportRows.js +175 -0
  19. package/3rdparty/walkontable/src/calculator/viewportRows.mjs +170 -0
  20. package/3rdparty/walkontable/src/cell/coords.d.ts +16 -0
  21. package/3rdparty/walkontable/src/cell/coords.js +185 -0
  22. package/3rdparty/walkontable/src/cell/coords.mjs +180 -0
  23. package/3rdparty/walkontable/src/cell/range.d.ts +59 -0
  24. package/3rdparty/walkontable/src/cell/range.js +888 -0
  25. package/3rdparty/walkontable/src/cell/range.mjs +882 -0
  26. package/3rdparty/walkontable/src/core/_base.js +395 -0
  27. package/3rdparty/walkontable/src/core/_base.mjs +390 -0
  28. package/3rdparty/walkontable/src/core/clone.js +59 -0
  29. package/3rdparty/walkontable/src/core/clone.mjs +54 -0
  30. package/3rdparty/walkontable/src/core/core.js +130 -0
  31. package/3rdparty/walkontable/src/core/core.mjs +125 -0
  32. package/3rdparty/walkontable/src/event.js +401 -0
  33. package/3rdparty/walkontable/src/event.mjs +396 -0
  34. package/3rdparty/walkontable/src/facade/core.js +236 -0
  35. package/3rdparty/walkontable/src/facade/core.mjs +231 -0
  36. package/3rdparty/walkontable/src/filter/column.js +107 -0
  37. package/3rdparty/walkontable/src/filter/column.mjs +102 -0
  38. package/3rdparty/walkontable/src/filter/row.js +107 -0
  39. package/3rdparty/walkontable/src/filter/row.mjs +102 -0
  40. package/3rdparty/walkontable/src/index.d.ts +1 -0
  41. package/3rdparty/walkontable/src/index.js +37 -0
  42. package/3rdparty/walkontable/src/index.mjs +10 -0
  43. package/3rdparty/walkontable/src/overlay/_base.js +363 -0
  44. package/3rdparty/walkontable/src/overlay/_base.mjs +357 -0
  45. package/3rdparty/walkontable/src/overlay/bottom.js +397 -0
  46. package/3rdparty/walkontable/src/overlay/bottom.mjs +391 -0
  47. package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.js +140 -0
  48. package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.mjs +134 -0
  49. package/3rdparty/walkontable/src/overlay/constants.js +26 -0
  50. package/3rdparty/walkontable/src/overlay/constants.mjs +15 -0
  51. package/3rdparty/walkontable/src/overlay/index.js +34 -0
  52. package/3rdparty/walkontable/src/overlay/index.mjs +7 -0
  53. package/3rdparty/walkontable/src/overlay/inlineStart.js +385 -0
  54. package/3rdparty/walkontable/src/overlay/inlineStart.mjs +379 -0
  55. package/3rdparty/walkontable/src/overlay/top.js +415 -0
  56. package/3rdparty/walkontable/src/overlay/top.mjs +409 -0
  57. package/3rdparty/walkontable/src/overlay/topInlineStartCorner.js +130 -0
  58. package/3rdparty/walkontable/src/overlay/topInlineStartCorner.mjs +124 -0
  59. package/3rdparty/walkontable/src/overlays.js +675 -0
  60. package/3rdparty/walkontable/src/overlays.mjs +670 -0
  61. package/3rdparty/walkontable/src/renderer/_base.js +83 -0
  62. package/3rdparty/walkontable/src/renderer/_base.mjs +78 -0
  63. package/3rdparty/walkontable/src/renderer/cells.js +127 -0
  64. package/3rdparty/walkontable/src/renderer/cells.mjs +122 -0
  65. package/3rdparty/walkontable/src/renderer/colGroup.js +101 -0
  66. package/3rdparty/walkontable/src/renderer/colGroup.mjs +96 -0
  67. package/3rdparty/walkontable/src/renderer/columnHeaders.js +115 -0
  68. package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +110 -0
  69. package/3rdparty/walkontable/src/renderer/index.js +118 -0
  70. package/3rdparty/walkontable/src/renderer/index.mjs +107 -0
  71. package/3rdparty/walkontable/src/renderer/rowHeaders.js +119 -0
  72. package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +114 -0
  73. package/3rdparty/walkontable/src/renderer/rows.js +99 -0
  74. package/3rdparty/walkontable/src/renderer/rows.mjs +94 -0
  75. package/3rdparty/walkontable/src/renderer/table.js +317 -0
  76. package/3rdparty/walkontable/src/renderer/table.mjs +313 -0
  77. package/3rdparty/walkontable/src/scroll.js +316 -0
  78. package/3rdparty/walkontable/src/scroll.mjs +311 -0
  79. package/3rdparty/walkontable/src/selection.js +349 -0
  80. package/3rdparty/walkontable/src/selection.mjs +343 -0
  81. package/3rdparty/walkontable/src/settings.js +306 -0
  82. package/3rdparty/walkontable/src/settings.mjs +302 -0
  83. package/3rdparty/walkontable/src/table/bottom.js +56 -0
  84. package/3rdparty/walkontable/src/table/bottom.mjs +50 -0
  85. package/3rdparty/walkontable/src/table/bottomInlineStartCorner.js +57 -0
  86. package/3rdparty/walkontable/src/table/bottomInlineStartCorner.mjs +51 -0
  87. package/3rdparty/walkontable/src/table/inlineStart.js +53 -0
  88. package/3rdparty/walkontable/src/table/inlineStart.mjs +47 -0
  89. package/3rdparty/walkontable/src/table/master.js +132 -0
  90. package/3rdparty/walkontable/src/table/master.mjs +126 -0
  91. package/3rdparty/walkontable/src/table/mixin/calculatedColumns.js +93 -0
  92. package/3rdparty/walkontable/src/table/mixin/calculatedColumns.mjs +88 -0
  93. package/3rdparty/walkontable/src/table/mixin/calculatedRows.js +93 -0
  94. package/3rdparty/walkontable/src/table/mixin/calculatedRows.mjs +88 -0
  95. package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.js +85 -0
  96. package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.mjs +80 -0
  97. package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.js +90 -0
  98. package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.mjs +85 -0
  99. package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.js +85 -0
  100. package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.mjs +80 -0
  101. package/3rdparty/walkontable/src/table/top.js +56 -0
  102. package/3rdparty/walkontable/src/table/top.mjs +50 -0
  103. package/3rdparty/walkontable/src/table/topInlineStartCorner.js +57 -0
  104. package/3rdparty/walkontable/src/table/topInlineStartCorner.mjs +51 -0
  105. package/3rdparty/walkontable/src/table.js +1171 -0
  106. package/3rdparty/walkontable/src/table.mjs +1165 -0
  107. package/3rdparty/walkontable/src/types.js +98 -0
  108. package/3rdparty/walkontable/src/types.mjs +97 -0
  109. package/3rdparty/walkontable/src/utils/column.js +121 -0
  110. package/3rdparty/walkontable/src/utils/column.mjs +117 -0
  111. package/3rdparty/walkontable/src/utils/nodesPool.js +48 -0
  112. package/3rdparty/walkontable/src/utils/nodesPool.mjs +44 -0
  113. package/3rdparty/walkontable/src/utils/orderView/constants.js +30 -0
  114. package/3rdparty/walkontable/src/utils/orderView/constants.mjs +23 -0
  115. package/3rdparty/walkontable/src/utils/orderView/index.js +8 -0
  116. package/3rdparty/walkontable/src/utils/orderView/index.mjs +3 -0
  117. package/3rdparty/walkontable/src/utils/orderView/sharedView.js +81 -0
  118. package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +76 -0
  119. package/3rdparty/walkontable/src/utils/orderView/view.js +216 -0
  120. package/3rdparty/walkontable/src/utils/orderView/view.mjs +211 -0
  121. package/3rdparty/walkontable/src/utils/orderView/viewSize.js +68 -0
  122. package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +64 -0
  123. package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +137 -0
  124. package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +132 -0
  125. package/3rdparty/walkontable/src/utils/row.js +43 -0
  126. package/3rdparty/walkontable/src/utils/row.mjs +39 -0
  127. package/3rdparty/walkontable/src/viewport.js +491 -0
  128. package/3rdparty/walkontable/src/viewport.mjs +486 -0
  129. package/CHANGELOG.md +716 -0
  130. package/LICENSE.txt +25 -0
  131. package/README.md +140 -0
  132. package/base.d.ts +3 -0
  133. package/base.js +54 -0
  134. package/base.mjs +44 -0
  135. package/cellTypes/autocompleteType/autocompleteType.d.ts +17 -0
  136. package/cellTypes/autocompleteType/autocompleteType.js +16 -0
  137. package/cellTypes/autocompleteType/autocompleteType.mjs +10 -0
  138. package/cellTypes/autocompleteType/index.d.ts +1 -0
  139. package/cellTypes/autocompleteType/index.js +7 -0
  140. package/cellTypes/autocompleteType/index.mjs +1 -0
  141. package/cellTypes/base.d.ts +14 -0
  142. package/cellTypes/checkboxType/checkboxType.d.ts +14 -0
  143. package/cellTypes/checkboxType/checkboxType.js +14 -0
  144. package/cellTypes/checkboxType/checkboxType.mjs +8 -0
  145. package/cellTypes/checkboxType/index.d.ts +1 -0
  146. package/cellTypes/checkboxType/index.js +7 -0
  147. package/cellTypes/checkboxType/index.mjs +1 -0
  148. package/cellTypes/dateType/dateType.d.ts +17 -0
  149. package/cellTypes/dateType/dateType.js +17 -0
  150. package/cellTypes/dateType/dateType.mjs +11 -0
  151. package/cellTypes/dateType/index.d.ts +1 -0
  152. package/cellTypes/dateType/index.js +7 -0
  153. package/cellTypes/dateType/index.mjs +1 -0
  154. package/cellTypes/dropdownType/dropdownType.d.ts +17 -0
  155. package/cellTypes/dropdownType/dropdownType.js +17 -0
  156. package/cellTypes/dropdownType/dropdownType.mjs +11 -0
  157. package/cellTypes/dropdownType/index.d.ts +1 -0
  158. package/cellTypes/dropdownType/index.js +7 -0
  159. package/cellTypes/dropdownType/index.mjs +1 -0
  160. package/cellTypes/handsontableType/handsontableType.d.ts +14 -0
  161. package/cellTypes/handsontableType/handsontableType.js +15 -0
  162. package/cellTypes/handsontableType/handsontableType.mjs +9 -0
  163. package/cellTypes/handsontableType/index.d.ts +1 -0
  164. package/cellTypes/handsontableType/index.js +7 -0
  165. package/cellTypes/handsontableType/index.mjs +1 -0
  166. package/cellTypes/index.d.ts +47 -0
  167. package/cellTypes/index.js +52 -0
  168. package/cellTypes/index.mjs +26 -0
  169. package/cellTypes/numericType/index.d.ts +1 -0
  170. package/cellTypes/numericType/index.js +7 -0
  171. package/cellTypes/numericType/index.mjs +1 -0
  172. package/cellTypes/numericType/numericType.d.ts +17 -0
  173. package/cellTypes/numericType/numericType.js +17 -0
  174. package/cellTypes/numericType/numericType.mjs +11 -0
  175. package/cellTypes/passwordType/index.d.ts +1 -0
  176. package/cellTypes/passwordType/index.js +7 -0
  177. package/cellTypes/passwordType/index.mjs +1 -0
  178. package/cellTypes/passwordType/passwordType.d.ts +14 -0
  179. package/cellTypes/passwordType/passwordType.js +15 -0
  180. package/cellTypes/passwordType/passwordType.mjs +9 -0
  181. package/cellTypes/registry.d.ts +18 -0
  182. package/cellTypes/registry.js +60 -0
  183. package/cellTypes/registry.mjs +51 -0
  184. package/cellTypes/textType/index.d.ts +1 -0
  185. package/cellTypes/textType/index.js +7 -0
  186. package/cellTypes/textType/index.mjs +1 -0
  187. package/cellTypes/textType/textType.d.ts +14 -0
  188. package/cellTypes/textType/textType.js +14 -0
  189. package/cellTypes/textType/textType.mjs +8 -0
  190. package/cellTypes/timeType/index.d.ts +1 -0
  191. package/cellTypes/timeType/index.js +7 -0
  192. package/cellTypes/timeType/index.mjs +1 -0
  193. package/cellTypes/timeType/timeType.d.ts +17 -0
  194. package/cellTypes/timeType/timeType.js +16 -0
  195. package/cellTypes/timeType/timeType.mjs +10 -0
  196. package/common.d.ts +74 -0
  197. package/core.d.ts +167 -0
  198. package/core.js +4684 -0
  199. package/core.mjs +4679 -0
  200. package/dataMap/dataMap.js +975 -0
  201. package/dataMap/dataMap.mjs +970 -0
  202. package/dataMap/dataSource.js +325 -0
  203. package/dataMap/dataSource.mjs +320 -0
  204. package/dataMap/index.js +16 -0
  205. package/dataMap/index.mjs +7 -0
  206. package/dataMap/metaManager/index.js +339 -0
  207. package/dataMap/metaManager/index.mjs +334 -0
  208. package/dataMap/metaManager/lazyFactoryMap.js +370 -0
  209. package/dataMap/metaManager/lazyFactoryMap.mjs +366 -0
  210. package/dataMap/metaManager/metaLayers/cellMeta.js +275 -0
  211. package/dataMap/metaManager/metaLayers/cellMeta.mjs +270 -0
  212. package/dataMap/metaManager/metaLayers/columnMeta.js +153 -0
  213. package/dataMap/metaManager/metaLayers/columnMeta.mjs +148 -0
  214. package/dataMap/metaManager/metaLayers/globalMeta.js +103 -0
  215. package/dataMap/metaManager/metaLayers/globalMeta.mjs +98 -0
  216. package/dataMap/metaManager/metaLayers/tableMeta.js +73 -0
  217. package/dataMap/metaManager/metaLayers/tableMeta.mjs +69 -0
  218. package/dataMap/metaManager/metaSchema.js +4610 -0
  219. package/dataMap/metaManager/metaSchema.mjs +4605 -0
  220. package/dataMap/metaManager/mods/dynamicCellMeta.js +107 -0
  221. package/dataMap/metaManager/mods/dynamicCellMeta.mjs +101 -0
  222. package/dataMap/metaManager/mods/extendMetaProperties.js +104 -0
  223. package/dataMap/metaManager/mods/extendMetaProperties.mjs +99 -0
  224. package/dataMap/metaManager/utils.js +99 -0
  225. package/dataMap/metaManager/utils.mjs +91 -0
  226. package/dataMap/replaceData.js +119 -0
  227. package/dataMap/replaceData.mjs +115 -0
  228. package/dist/README.md +54 -0
  229. package/dist/handsontable.css +1941 -0
  230. package/dist/handsontable.full.css +2172 -0
  231. package/dist/handsontable.full.js +150392 -0
  232. package/dist/handsontable.full.min.css +47 -0
  233. package/dist/handsontable.full.min.js +869 -0
  234. package/dist/handsontable.js +94075 -0
  235. package/dist/handsontable.min.css +43 -0
  236. package/dist/handsontable.min.js +31 -0
  237. package/dist/languages/all.js +583 -0
  238. package/dist/languages/all.min.js +1 -0
  239. package/dist/languages/ar-AR.js +157 -0
  240. package/dist/languages/ar-AR.min.js +1 -0
  241. package/dist/languages/cs-CZ.js +157 -0
  242. package/dist/languages/cs-CZ.min.js +1 -0
  243. package/dist/languages/de-CH.js +158 -0
  244. package/dist/languages/de-CH.min.js +1 -0
  245. package/dist/languages/de-DE.js +159 -0
  246. package/dist/languages/de-DE.min.js +1 -0
  247. package/dist/languages/en-US.js +160 -0
  248. package/dist/languages/en-US.min.js +1 -0
  249. package/dist/languages/es-MX.js +161 -0
  250. package/dist/languages/es-MX.min.js +1 -0
  251. package/dist/languages/fr-FR.js +162 -0
  252. package/dist/languages/fr-FR.min.js +1 -0
  253. package/dist/languages/it-IT.js +164 -0
  254. package/dist/languages/it-IT.min.js +1 -0
  255. package/dist/languages/ja-JP.js +161 -0
  256. package/dist/languages/ja-JP.min.js +1 -0
  257. package/dist/languages/ko-KR.js +161 -0
  258. package/dist/languages/ko-KR.min.js +1 -0
  259. package/dist/languages/lv-LV.js +161 -0
  260. package/dist/languages/lv-LV.min.js +1 -0
  261. package/dist/languages/nb-NO.js +161 -0
  262. package/dist/languages/nb-NO.min.js +1 -0
  263. package/dist/languages/nl-NL.js +161 -0
  264. package/dist/languages/nl-NL.min.js +1 -0
  265. package/dist/languages/pl-PL.js +161 -0
  266. package/dist/languages/pl-PL.min.js +1 -0
  267. package/dist/languages/pt-BR.js +161 -0
  268. package/dist/languages/pt-BR.min.js +1 -0
  269. package/dist/languages/ru-RU.js +161 -0
  270. package/dist/languages/ru-RU.min.js +1 -0
  271. package/dist/languages/sr-SP.js +161 -0
  272. package/dist/languages/sr-SP.min.js +1 -0
  273. package/dist/languages/zh-CN.js +161 -0
  274. package/dist/languages/zh-CN.min.js +1 -0
  275. package/dist/languages/zh-TW.js +161 -0
  276. package/dist/languages/zh-TW.min.js +1 -0
  277. package/editorManager.js +522 -0
  278. package/editorManager.mjs +514 -0
  279. package/editors/autocompleteEditor/autocompleteEditor.d.ts +29 -0
  280. package/editors/autocompleteEditor/autocompleteEditor.js +584 -0
  281. package/editors/autocompleteEditor/autocompleteEditor.mjs +578 -0
  282. package/editors/autocompleteEditor/index.d.ts +1 -0
  283. package/editors/autocompleteEditor/index.js +7 -0
  284. package/editors/autocompleteEditor/index.mjs +1 -0
  285. package/editors/baseEditor/baseEditor.d.ts +45 -0
  286. package/editors/baseEditor/baseEditor.js +688 -0
  287. package/editors/baseEditor/baseEditor.mjs +679 -0
  288. package/editors/baseEditor/index.d.ts +1 -0
  289. package/editors/baseEditor/index.js +8 -0
  290. package/editors/baseEditor/index.mjs +1 -0
  291. package/editors/checkboxEditor/checkboxEditor.d.ts +12 -0
  292. package/editors/checkboxEditor/checkboxEditor.js +85 -0
  293. package/editors/checkboxEditor/checkboxEditor.mjs +79 -0
  294. package/editors/checkboxEditor/index.d.ts +1 -0
  295. package/editors/checkboxEditor/index.js +7 -0
  296. package/editors/checkboxEditor/index.mjs +1 -0
  297. package/editors/dateEditor/dateEditor.d.ts +18 -0
  298. package/editors/dateEditor/dateEditor.js +325 -0
  299. package/editors/dateEditor/dateEditor.mjs +318 -0
  300. package/editors/dateEditor/index.d.ts +1 -0
  301. package/editors/dateEditor/index.js +7 -0
  302. package/editors/dateEditor/index.mjs +1 -0
  303. package/editors/dropdownEditor/dropdownEditor.d.ts +7 -0
  304. package/editors/dropdownEditor/dropdownEditor.js +81 -0
  305. package/editors/dropdownEditor/dropdownEditor.mjs +74 -0
  306. package/editors/dropdownEditor/index.d.ts +1 -0
  307. package/editors/dropdownEditor/index.js +7 -0
  308. package/editors/dropdownEditor/index.mjs +1 -0
  309. package/editors/handsontableEditor/handsontableEditor.d.ts +10 -0
  310. package/editors/handsontableEditor/handsontableEditor.js +306 -0
  311. package/editors/handsontableEditor/handsontableEditor.mjs +300 -0
  312. package/editors/handsontableEditor/index.d.ts +1 -0
  313. package/editors/handsontableEditor/index.js +7 -0
  314. package/editors/handsontableEditor/index.mjs +1 -0
  315. package/editors/index.d.ts +56 -0
  316. package/editors/index.js +63 -0
  317. package/editors/index.mjs +30 -0
  318. package/editors/numericEditor/index.d.ts +1 -0
  319. package/editors/numericEditor/index.js +7 -0
  320. package/editors/numericEditor/index.mjs +1 -0
  321. package/editors/numericEditor/numericEditor.d.ts +7 -0
  322. package/editors/numericEditor/numericEditor.js +49 -0
  323. package/editors/numericEditor/numericEditor.mjs +43 -0
  324. package/editors/passwordEditor/index.d.ts +1 -0
  325. package/editors/passwordEditor/index.js +7 -0
  326. package/editors/passwordEditor/index.mjs +1 -0
  327. package/editors/passwordEditor/passwordEditor.d.ts +7 -0
  328. package/editors/passwordEditor/passwordEditor.js +68 -0
  329. package/editors/passwordEditor/passwordEditor.mjs +62 -0
  330. package/editors/registry.d.ts +29 -0
  331. package/editors/registry.js +106 -0
  332. package/editors/registry.mjs +94 -0
  333. package/editors/selectEditor/index.d.ts +1 -0
  334. package/editors/selectEditor/index.js +7 -0
  335. package/editors/selectEditor/index.mjs +1 -0
  336. package/editors/selectEditor/selectEditor.d.ts +16 -0
  337. package/editors/selectEditor/selectEditor.js +302 -0
  338. package/editors/selectEditor/selectEditor.mjs +296 -0
  339. package/editors/textEditor/caretPositioner.js +37 -0
  340. package/editors/textEditor/caretPositioner.mjs +33 -0
  341. package/editors/textEditor/index.d.ts +1 -0
  342. package/editors/textEditor/index.js +7 -0
  343. package/editors/textEditor/index.mjs +1 -0
  344. package/editors/textEditor/textEditor.d.ts +24 -0
  345. package/editors/textEditor/textEditor.js +612 -0
  346. package/editors/textEditor/textEditor.mjs +605 -0
  347. package/editors/timeEditor/index.d.ts +1 -0
  348. package/editors/timeEditor/index.js +7 -0
  349. package/editors/timeEditor/index.mjs +1 -0
  350. package/editors/timeEditor/timeEditor.d.ts +7 -0
  351. package/editors/timeEditor/timeEditor.js +70 -0
  352. package/editors/timeEditor/timeEditor.mjs +64 -0
  353. package/eventManager.d.ts +13 -0
  354. package/eventManager.js +236 -0
  355. package/eventManager.mjs +231 -0
  356. package/handsontable-non-commercial-license.pdf +0 -0
  357. package/helpers/array.d.ts +18 -0
  358. package/helpers/array.js +353 -0
  359. package/helpers/array.mjs +333 -0
  360. package/helpers/browser.d.ts +25 -0
  361. package/helpers/browser.js +231 -0
  362. package/helpers/browser.mjs +210 -0
  363. package/helpers/console.d.ts +4 -0
  364. package/helpers/console.js +65 -0
  365. package/helpers/console.mjs +56 -0
  366. package/helpers/data.d.ts +12 -0
  367. package/helpers/data.js +247 -0
  368. package/helpers/data.mjs +234 -0
  369. package/helpers/date.d.ts +1 -0
  370. package/helpers/date.js +22 -0
  371. package/helpers/date.mjs +18 -0
  372. package/helpers/dom/element.d.ts +49 -0
  373. package/helpers/dom/element.js +1117 -0
  374. package/helpers/dom/element.mjs +1064 -0
  375. package/helpers/dom/event.d.ts +4 -0
  376. package/helpers/dom/event.js +46 -0
  377. package/helpers/dom/event.mjs +39 -0
  378. package/helpers/dom/index.d.ts +2 -0
  379. package/helpers/feature.d.ts +11 -0
  380. package/helpers/feature.js +184 -0
  381. package/helpers/feature.mjs +172 -0
  382. package/helpers/function.d.ts +10 -0
  383. package/helpers/function.js +319 -0
  384. package/helpers/function.mjs +307 -0
  385. package/helpers/index.d.ts +14 -0
  386. package/helpers/mixed.d.ts +5 -0
  387. package/helpers/mixed.js +230 -0
  388. package/helpers/mixed.mjs +220 -0
  389. package/helpers/number.d.ts +5 -0
  390. package/helpers/number.js +142 -0
  391. package/helpers/number.mjs +134 -0
  392. package/helpers/object.d.ts +16 -0
  393. package/helpers/object.js +371 -0
  394. package/helpers/object.mjs +352 -0
  395. package/helpers/string.d.ts +7 -0
  396. package/helpers/string.js +115 -0
  397. package/helpers/string.mjs +104 -0
  398. package/helpers/templateLiteralTag.d.ts +1 -0
  399. package/helpers/templateLiteralTag.js +26 -0
  400. package/helpers/templateLiteralTag.mjs +22 -0
  401. package/helpers/unicode.d.ts +73 -0
  402. package/helpers/unicode.js +158 -0
  403. package/helpers/unicode.mjs +148 -0
  404. package/helpers/wrappers/jquery.js +50 -0
  405. package/helpers/wrappers/jquery.mjs +46 -0
  406. package/i18n/constants.js +162 -0
  407. package/i18n/constants.mjs +82 -0
  408. package/i18n/index.d.ts +2 -0
  409. package/i18n/index.js +18 -0
  410. package/i18n/index.mjs +2 -0
  411. package/i18n/languages/ar-AR.js +25 -0
  412. package/i18n/languages/ar-AR.mjs +15 -0
  413. package/i18n/languages/cs-CZ.js +24 -0
  414. package/i18n/languages/cs-CZ.mjs +14 -0
  415. package/i18n/languages/de-CH.d.ts +5 -0
  416. package/i18n/languages/de-CH.js +24 -0
  417. package/i18n/languages/de-CH.mjs +14 -0
  418. package/i18n/languages/de-DE.d.ts +5 -0
  419. package/i18n/languages/de-DE.js +24 -0
  420. package/i18n/languages/de-DE.mjs +14 -0
  421. package/i18n/languages/en-US.d.ts +5 -0
  422. package/i18n/languages/en-US.js +24 -0
  423. package/i18n/languages/en-US.mjs +14 -0
  424. package/i18n/languages/es-MX.d.ts +5 -0
  425. package/i18n/languages/es-MX.js +24 -0
  426. package/i18n/languages/es-MX.mjs +13 -0
  427. package/i18n/languages/fr-FR.d.ts +5 -0
  428. package/i18n/languages/fr-FR.js +24 -0
  429. package/i18n/languages/fr-FR.mjs +14 -0
  430. package/i18n/languages/index.d.ts +35 -0
  431. package/i18n/languages/index.js +42 -0
  432. package/i18n/languages/index.mjs +20 -0
  433. package/i18n/languages/it-IT.d.ts +5 -0
  434. package/i18n/languages/it-IT.js +24 -0
  435. package/i18n/languages/it-IT.mjs +14 -0
  436. package/i18n/languages/ja-JP.d.ts +5 -0
  437. package/i18n/languages/ja-JP.js +24 -0
  438. package/i18n/languages/ja-JP.mjs +14 -0
  439. package/i18n/languages/ko-KR.d.ts +5 -0
  440. package/i18n/languages/ko-KR.js +24 -0
  441. package/i18n/languages/ko-KR.mjs +14 -0
  442. package/i18n/languages/lv-LV.d.ts +5 -0
  443. package/i18n/languages/lv-LV.js +24 -0
  444. package/i18n/languages/lv-LV.mjs +14 -0
  445. package/i18n/languages/nb-NO.d.ts +5 -0
  446. package/i18n/languages/nb-NO.js +24 -0
  447. package/i18n/languages/nb-NO.mjs +14 -0
  448. package/i18n/languages/nl-NL.d.ts +5 -0
  449. package/i18n/languages/nl-NL.js +24 -0
  450. package/i18n/languages/nl-NL.mjs +14 -0
  451. package/i18n/languages/pl-PL.d.ts +5 -0
  452. package/i18n/languages/pl-PL.js +24 -0
  453. package/i18n/languages/pl-PL.mjs +14 -0
  454. package/i18n/languages/pt-BR.d.ts +5 -0
  455. package/i18n/languages/pt-BR.js +24 -0
  456. package/i18n/languages/pt-BR.mjs +14 -0
  457. package/i18n/languages/ru-RU.d.ts +5 -0
  458. package/i18n/languages/ru-RU.js +24 -0
  459. package/i18n/languages/ru-RU.mjs +14 -0
  460. package/i18n/languages/sr-SP.js +24 -0
  461. package/i18n/languages/sr-SP.mjs +14 -0
  462. package/i18n/languages/zh-CN.d.ts +5 -0
  463. package/i18n/languages/zh-CN.js +24 -0
  464. package/i18n/languages/zh-CN.mjs +14 -0
  465. package/i18n/languages/zh-TW.d.ts +5 -0
  466. package/i18n/languages/zh-TW.js +24 -0
  467. package/i18n/languages/zh-TW.mjs +14 -0
  468. package/i18n/phraseFormatters/index.js +31 -0
  469. package/i18n/phraseFormatters/index.mjs +26 -0
  470. package/i18n/phraseFormatters/pluralize.js +21 -0
  471. package/i18n/phraseFormatters/pluralize.mjs +17 -0
  472. package/i18n/phraseFormatters/substituteVariables.js +22 -0
  473. package/i18n/phraseFormatters/substituteVariables.mjs +18 -0
  474. package/i18n/registry.d.ts +13 -0
  475. package/i18n/registry.js +180 -0
  476. package/i18n/registry.mjs +155 -0
  477. package/i18n/utils.js +90 -0
  478. package/i18n/utils.mjs +83 -0
  479. package/index.d.ts +520 -0
  480. package/index.js +130 -0
  481. package/index.mjs +112 -0
  482. package/languages/all.js +583 -0
  483. package/languages/ar-AR.js +157 -0
  484. package/languages/ar-AR.mjs +17 -0
  485. package/languages/cs-CZ.js +157 -0
  486. package/languages/cs-CZ.mjs +16 -0
  487. package/languages/de-CH.js +158 -0
  488. package/languages/de-CH.mjs +16 -0
  489. package/languages/de-DE.js +159 -0
  490. package/languages/de-DE.mjs +16 -0
  491. package/languages/en-US.js +160 -0
  492. package/languages/en-US.mjs +16 -0
  493. package/languages/es-MX.js +161 -0
  494. package/languages/es-MX.mjs +15 -0
  495. package/languages/fr-FR.js +162 -0
  496. package/languages/fr-FR.mjs +16 -0
  497. package/languages/index.js +583 -0
  498. package/languages/index.mjs +20 -0
  499. package/languages/it-IT.js +164 -0
  500. package/languages/it-IT.mjs +16 -0
  501. package/languages/ja-JP.js +161 -0
  502. package/languages/ja-JP.mjs +16 -0
  503. package/languages/ko-KR.js +161 -0
  504. package/languages/ko-KR.mjs +16 -0
  505. package/languages/lv-LV.js +161 -0
  506. package/languages/lv-LV.mjs +16 -0
  507. package/languages/nb-NO.js +161 -0
  508. package/languages/nb-NO.mjs +16 -0
  509. package/languages/nl-NL.js +161 -0
  510. package/languages/nl-NL.mjs +16 -0
  511. package/languages/pl-PL.js +161 -0
  512. package/languages/pl-PL.mjs +16 -0
  513. package/languages/pt-BR.js +161 -0
  514. package/languages/pt-BR.mjs +16 -0
  515. package/languages/ru-RU.js +161 -0
  516. package/languages/ru-RU.mjs +16 -0
  517. package/languages/sr-SP.js +161 -0
  518. package/languages/sr-SP.mjs +16 -0
  519. package/languages/zh-CN.js +161 -0
  520. package/languages/zh-CN.mjs +16 -0
  521. package/languages/zh-TW.js +161 -0
  522. package/languages/zh-TW.mjs +16 -0
  523. package/mixins/hooksRefRegisterer.js +61 -0
  524. package/mixins/hooksRefRegisterer.mjs +56 -0
  525. package/mixins/localHooks.js +71 -0
  526. package/mixins/localHooks.mjs +66 -0
  527. package/package.json +751 -0
  528. package/pluginHooks.d.ts +256 -0
  529. package/pluginHooks.js +2750 -0
  530. package/pluginHooks.mjs +2744 -0
  531. package/plugins/autoColumnSize/autoColumnSize.d.ts +27 -0
  532. package/plugins/autoColumnSize/autoColumnSize.js +796 -0
  533. package/plugins/autoColumnSize/autoColumnSize.mjs +788 -0
  534. package/plugins/autoColumnSize/index.d.ts +1 -0
  535. package/plugins/autoColumnSize/index.js +8 -0
  536. package/plugins/autoColumnSize/index.mjs +1 -0
  537. package/plugins/autoRowSize/autoRowSize.d.ts +27 -0
  538. package/plugins/autoRowSize/autoRowSize.js +735 -0
  539. package/plugins/autoRowSize/autoRowSize.mjs +727 -0
  540. package/plugins/autoRowSize/index.d.ts +1 -0
  541. package/plugins/autoRowSize/index.js +8 -0
  542. package/plugins/autoRowSize/index.mjs +1 -0
  543. package/plugins/autofill/autofill.d.ts +18 -0
  544. package/plugins/autofill/autofill.js +694 -0
  545. package/plugins/autofill/autofill.mjs +687 -0
  546. package/plugins/autofill/index.d.ts +1 -0
  547. package/plugins/autofill/index.js +8 -0
  548. package/plugins/autofill/index.mjs +1 -0
  549. package/plugins/autofill/utils.js +134 -0
  550. package/plugins/autofill/utils.mjs +126 -0
  551. package/plugins/base/base.d.ts +27 -0
  552. package/plugins/base/base.js +345 -0
  553. package/plugins/base/base.mjs +339 -0
  554. package/plugins/base/index.d.ts +1 -0
  555. package/plugins/base/index.js +7 -0
  556. package/plugins/base/index.mjs +1 -0
  557. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.d.ts +9 -0
  558. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +169 -0
  559. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +161 -0
  560. package/plugins/bindRowsWithHeaders/index.d.ts +1 -0
  561. package/plugins/bindRowsWithHeaders/index.js +8 -0
  562. package/plugins/bindRowsWithHeaders/index.mjs +1 -0
  563. package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +80 -0
  564. package/plugins/bindRowsWithHeaders/maps/looseBindsMap.mjs +75 -0
  565. package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +103 -0
  566. package/plugins/bindRowsWithHeaders/maps/strictBindsMap.mjs +98 -0
  567. package/plugins/collapsibleColumns/collapsibleColumns.d.ts +22 -0
  568. package/plugins/collapsibleColumns/collapsibleColumns.js +592 -0
  569. package/plugins/collapsibleColumns/collapsibleColumns.mjs +584 -0
  570. package/plugins/collapsibleColumns/index.d.ts +1 -0
  571. package/plugins/collapsibleColumns/index.js +8 -0
  572. package/plugins/collapsibleColumns/index.mjs +1 -0
  573. package/plugins/columnSorting/columnSorting.d.ts +30 -0
  574. package/plugins/columnSorting/columnSorting.js +865 -0
  575. package/plugins/columnSorting/columnSorting.mjs +857 -0
  576. package/plugins/columnSorting/columnStatesManager.js +273 -0
  577. package/plugins/columnSorting/columnStatesManager.mjs +268 -0
  578. package/plugins/columnSorting/domHelpers.js +54 -0
  579. package/plugins/columnSorting/domHelpers.mjs +49 -0
  580. package/plugins/columnSorting/index.d.ts +1 -0
  581. package/plugins/columnSorting/index.js +8 -0
  582. package/plugins/columnSorting/index.mjs +1 -0
  583. package/plugins/columnSorting/rootComparator.js +52 -0
  584. package/plugins/columnSorting/rootComparator.mjs +48 -0
  585. package/plugins/columnSorting/sortFunction/checkbox.js +64 -0
  586. package/plugins/columnSorting/sortFunction/checkbox.mjs +58 -0
  587. package/plugins/columnSorting/sortFunction/date.js +61 -0
  588. package/plugins/columnSorting/sortFunction/date.mjs +54 -0
  589. package/plugins/columnSorting/sortFunction/default.js +65 -0
  590. package/plugins/columnSorting/sortFunction/default.mjs +59 -0
  591. package/plugins/columnSorting/sortFunction/numeric.js +49 -0
  592. package/plugins/columnSorting/sortFunction/numeric.mjs +43 -0
  593. package/plugins/columnSorting/sortService/engine.js +26 -0
  594. package/plugins/columnSorting/sortService/engine.mjs +18 -0
  595. package/plugins/columnSorting/sortService/index.js +13 -0
  596. package/plugins/columnSorting/sortService/index.mjs +3 -0
  597. package/plugins/columnSorting/sortService/registry.js +37 -0
  598. package/plugins/columnSorting/sortService/registry.mjs +30 -0
  599. package/plugins/columnSorting/utils.js +122 -0
  600. package/plugins/columnSorting/utils.mjs +110 -0
  601. package/plugins/columnSummary/columnSummary.d.ts +72 -0
  602. package/plugins/columnSummary/columnSummary.js +544 -0
  603. package/plugins/columnSummary/columnSummary.mjs +536 -0
  604. package/plugins/columnSummary/endpoints.js +557 -0
  605. package/plugins/columnSummary/endpoints.mjs +552 -0
  606. package/plugins/columnSummary/index.d.ts +1 -0
  607. package/plugins/columnSummary/index.js +8 -0
  608. package/plugins/columnSummary/index.mjs +1 -0
  609. package/plugins/columnSummary/utils.js +13 -0
  610. package/plugins/columnSummary/utils.mjs +9 -0
  611. package/plugins/comments/commentEditor.js +241 -0
  612. package/plugins/comments/commentEditor.mjs +236 -0
  613. package/plugins/comments/comments.d.ts +50 -0
  614. package/plugins/comments/comments.js +942 -0
  615. package/plugins/comments/comments.mjs +932 -0
  616. package/plugins/comments/displaySwitch.js +115 -0
  617. package/plugins/comments/displaySwitch.mjs +109 -0
  618. package/plugins/comments/index.d.ts +1 -0
  619. package/plugins/comments/index.js +8 -0
  620. package/plugins/comments/index.mjs +1 -0
  621. package/plugins/contextMenu/commandExecutor.js +113 -0
  622. package/plugins/contextMenu/commandExecutor.mjs +108 -0
  623. package/plugins/contextMenu/contextMenu.d.ts +65 -0
  624. package/plugins/contextMenu/contextMenu.js +445 -0
  625. package/plugins/contextMenu/contextMenu.mjs +437 -0
  626. package/plugins/contextMenu/cursor.js +126 -0
  627. package/plugins/contextMenu/cursor.mjs +121 -0
  628. package/plugins/contextMenu/index.d.ts +1 -0
  629. package/plugins/contextMenu/index.js +8 -0
  630. package/plugins/contextMenu/index.mjs +1 -0
  631. package/plugins/contextMenu/itemsFactory.js +136 -0
  632. package/plugins/contextMenu/itemsFactory.mjs +131 -0
  633. package/plugins/contextMenu/menu.js +1003 -0
  634. package/plugins/contextMenu/menu.mjs +997 -0
  635. package/plugins/contextMenu/predefinedItems/alignment.js +277 -0
  636. package/plugins/contextMenu/predefinedItems/alignment.mjs +259 -0
  637. package/plugins/contextMenu/predefinedItems/clearColumn.js +47 -0
  638. package/plugins/contextMenu/predefinedItems/clearColumn.mjs +29 -0
  639. package/plugins/contextMenu/predefinedItems/columnLeft.js +57 -0
  640. package/plugins/contextMenu/predefinedItems/columnLeft.mjs +39 -0
  641. package/plugins/contextMenu/predefinedItems/columnRight.js +55 -0
  642. package/plugins/contextMenu/predefinedItems/columnRight.mjs +37 -0
  643. package/plugins/contextMenu/predefinedItems/noItems.js +22 -0
  644. package/plugins/contextMenu/predefinedItems/noItems.mjs +16 -0
  645. package/plugins/contextMenu/predefinedItems/readOnly.js +69 -0
  646. package/plugins/contextMenu/predefinedItems/readOnly.mjs +51 -0
  647. package/plugins/contextMenu/predefinedItems/redo.js +42 -0
  648. package/plugins/contextMenu/predefinedItems/redo.mjs +24 -0
  649. package/plugins/contextMenu/predefinedItems/removeColumn.js +79 -0
  650. package/plugins/contextMenu/predefinedItems/removeColumn.mjs +68 -0
  651. package/plugins/contextMenu/predefinedItems/removeRow.js +78 -0
  652. package/plugins/contextMenu/predefinedItems/removeRow.mjs +67 -0
  653. package/plugins/contextMenu/predefinedItems/rowAbove.js +53 -0
  654. package/plugins/contextMenu/predefinedItems/rowAbove.mjs +35 -0
  655. package/plugins/contextMenu/predefinedItems/rowBelow.js +51 -0
  656. package/plugins/contextMenu/predefinedItems/rowBelow.mjs +33 -0
  657. package/plugins/contextMenu/predefinedItems/separator.js +16 -0
  658. package/plugins/contextMenu/predefinedItems/separator.mjs +10 -0
  659. package/plugins/contextMenu/predefinedItems/undo.js +42 -0
  660. package/plugins/contextMenu/predefinedItems/undo.mjs +24 -0
  661. package/plugins/contextMenu/predefinedItems.js +76 -0
  662. package/plugins/contextMenu/predefinedItems.mjs +57 -0
  663. package/plugins/contextMenu/utils.js +278 -0
  664. package/plugins/contextMenu/utils.mjs +261 -0
  665. package/plugins/copyPaste/clipboardData.js +29 -0
  666. package/plugins/copyPaste/clipboardData.mjs +25 -0
  667. package/plugins/copyPaste/contextMenuItem/copy.js +45 -0
  668. package/plugins/copyPaste/contextMenuItem/copy.mjs +29 -0
  669. package/plugins/copyPaste/contextMenuItem/cut.js +45 -0
  670. package/plugins/copyPaste/contextMenuItem/cut.mjs +29 -0
  671. package/plugins/copyPaste/copyPaste.d.ts +35 -0
  672. package/plugins/copyPaste/copyPaste.js +721 -0
  673. package/plugins/copyPaste/copyPaste.mjs +713 -0
  674. package/plugins/copyPaste/focusableElement.js +210 -0
  675. package/plugins/copyPaste/focusableElement.mjs +204 -0
  676. package/plugins/copyPaste/index.d.ts +1 -0
  677. package/plugins/copyPaste/index.js +8 -0
  678. package/plugins/copyPaste/index.mjs +1 -0
  679. package/plugins/copyPaste/pasteEvent.js +17 -0
  680. package/plugins/copyPaste/pasteEvent.mjs +12 -0
  681. package/plugins/customBorders/contextMenuItem/bottom.js +39 -0
  682. package/plugins/customBorders/contextMenuItem/bottom.mjs +23 -0
  683. package/plugins/customBorders/contextMenuItem/index.js +14 -0
  684. package/plugins/customBorders/contextMenuItem/index.mjs +6 -0
  685. package/plugins/customBorders/contextMenuItem/left.js +40 -0
  686. package/plugins/customBorders/contextMenuItem/left.mjs +24 -0
  687. package/plugins/customBorders/contextMenuItem/noBorders.js +36 -0
  688. package/plugins/customBorders/contextMenuItem/noBorders.mjs +20 -0
  689. package/plugins/customBorders/contextMenuItem/right.js +40 -0
  690. package/plugins/customBorders/contextMenuItem/right.mjs +24 -0
  691. package/plugins/customBorders/contextMenuItem/top.js +39 -0
  692. package/plugins/customBorders/contextMenuItem/top.mjs +23 -0
  693. package/plugins/customBorders/customBorders.d.ts +38 -0
  694. package/plugins/customBorders/customBorders.js +887 -0
  695. package/plugins/customBorders/customBorders.mjs +877 -0
  696. package/plugins/customBorders/index.d.ts +1 -0
  697. package/plugins/customBorders/index.js +8 -0
  698. package/plugins/customBorders/index.mjs +1 -0
  699. package/plugins/customBorders/utils.js +265 -0
  700. package/plugins/customBorders/utils.mjs +249 -0
  701. package/plugins/dragToScroll/dragToScroll.d.ts +15 -0
  702. package/plugins/dragToScroll/dragToScroll.js +335 -0
  703. package/plugins/dragToScroll/dragToScroll.mjs +327 -0
  704. package/plugins/dragToScroll/index.d.ts +1 -0
  705. package/plugins/dragToScroll/index.js +8 -0
  706. package/plugins/dragToScroll/index.mjs +1 -0
  707. package/plugins/dropdownMenu/dropdownMenu.d.ts +24 -0
  708. package/plugins/dropdownMenu/dropdownMenu.js +511 -0
  709. package/plugins/dropdownMenu/dropdownMenu.mjs +504 -0
  710. package/plugins/dropdownMenu/index.d.ts +1 -0
  711. package/plugins/dropdownMenu/index.js +8 -0
  712. package/plugins/dropdownMenu/index.mjs +1 -0
  713. package/plugins/exportFile/dataProvider.js +200 -0
  714. package/plugins/exportFile/dataProvider.mjs +195 -0
  715. package/plugins/exportFile/exportFile.d.ts +12 -0
  716. package/plugins/exportFile/exportFile.js +262 -0
  717. package/plugins/exportFile/exportFile.mjs +250 -0
  718. package/plugins/exportFile/index.d.ts +1 -0
  719. package/plugins/exportFile/index.js +8 -0
  720. package/plugins/exportFile/index.mjs +1 -0
  721. package/plugins/exportFile/typeFactory.js +30 -0
  722. package/plugins/exportFile/typeFactory.mjs +21 -0
  723. package/plugins/exportFile/types/_base.js +78 -0
  724. package/plugins/exportFile/types/_base.mjs +73 -0
  725. package/plugins/exportFile/types/csv.js +131 -0
  726. package/plugins/exportFile/types/csv.mjs +125 -0
  727. package/plugins/filters/component/_base.js +169 -0
  728. package/plugins/filters/component/_base.mjs +163 -0
  729. package/plugins/filters/component/actionBar.js +161 -0
  730. package/plugins/filters/component/actionBar.mjs +151 -0
  731. package/plugins/filters/component/condition.js +325 -0
  732. package/plugins/filters/component/condition.mjs +316 -0
  733. package/plugins/filters/component/operators.js +222 -0
  734. package/plugins/filters/component/operators.mjs +216 -0
  735. package/plugins/filters/component/value.js +278 -0
  736. package/plugins/filters/component/value.mjs +269 -0
  737. package/plugins/filters/condition/beginsWith.js +50 -0
  738. package/plugins/filters/condition/beginsWith.mjs +39 -0
  739. package/plugins/filters/condition/between.js +64 -0
  740. package/plugins/filters/condition/between.mjs +53 -0
  741. package/plugins/filters/condition/byValue.js +48 -0
  742. package/plugins/filters/condition/byValue.mjs +42 -0
  743. package/plugins/filters/condition/contains.js +50 -0
  744. package/plugins/filters/condition/contains.mjs +39 -0
  745. package/plugins/filters/condition/date/after.js +55 -0
  746. package/plugins/filters/condition/date/after.mjs +43 -0
  747. package/plugins/filters/condition/date/before.js +55 -0
  748. package/plugins/filters/condition/date/before.mjs +43 -0
  749. package/plugins/filters/condition/date/today.js +39 -0
  750. package/plugins/filters/condition/date/today.mjs +20 -0
  751. package/plugins/filters/condition/date/tomorrow.js +39 -0
  752. package/plugins/filters/condition/date/tomorrow.mjs +20 -0
  753. package/plugins/filters/condition/date/yesterday.js +39 -0
  754. package/plugins/filters/condition/date/yesterday.mjs +20 -0
  755. package/plugins/filters/condition/empty.js +35 -0
  756. package/plugins/filters/condition/empty.mjs +17 -0
  757. package/plugins/filters/condition/endsWith.js +50 -0
  758. package/plugins/filters/condition/endsWith.mjs +39 -0
  759. package/plugins/filters/condition/equal.js +49 -0
  760. package/plugins/filters/condition/equal.mjs +38 -0
  761. package/plugins/filters/condition/false.js +18 -0
  762. package/plugins/filters/condition/false.mjs +12 -0
  763. package/plugins/filters/condition/greaterThan.js +52 -0
  764. package/plugins/filters/condition/greaterThan.mjs +41 -0
  765. package/plugins/filters/condition/greaterThanOrEqual.js +52 -0
  766. package/plugins/filters/condition/greaterThanOrEqual.mjs +41 -0
  767. package/plugins/filters/condition/lessThan.js +52 -0
  768. package/plugins/filters/condition/lessThan.mjs +41 -0
  769. package/plugins/filters/condition/lessThanOrEqual.js +52 -0
  770. package/plugins/filters/condition/lessThanOrEqual.mjs +41 -0
  771. package/plugins/filters/condition/none.js +33 -0
  772. package/plugins/filters/condition/none.mjs +15 -0
  773. package/plugins/filters/condition/notBetween.js +36 -0
  774. package/plugins/filters/condition/notBetween.mjs +18 -0
  775. package/plugins/filters/condition/notContains.js +36 -0
  776. package/plugins/filters/condition/notContains.mjs +18 -0
  777. package/plugins/filters/condition/notEmpty.js +36 -0
  778. package/plugins/filters/condition/notEmpty.mjs +18 -0
  779. package/plugins/filters/condition/notEqual.js +36 -0
  780. package/plugins/filters/condition/notEqual.mjs +18 -0
  781. package/plugins/filters/condition/true.js +18 -0
  782. package/plugins/filters/condition/true.mjs +12 -0
  783. package/plugins/filters/conditionCollection.d.ts +32 -0
  784. package/plugins/filters/conditionCollection.js +343 -0
  785. package/plugins/filters/conditionCollection.mjs +337 -0
  786. package/plugins/filters/conditionRegisterer.js +61 -0
  787. package/plugins/filters/conditionRegisterer.mjs +53 -0
  788. package/plugins/filters/conditionUpdateObserver.d.ts +10 -0
  789. package/plugins/filters/conditionUpdateObserver.js +248 -0
  790. package/plugins/filters/conditionUpdateObserver.mjs +242 -0
  791. package/plugins/filters/constants.js +103 -0
  792. package/plugins/filters/constants.mjs +69 -0
  793. package/plugins/filters/dataFilter.js +98 -0
  794. package/plugins/filters/dataFilter.mjs +93 -0
  795. package/plugins/filters/filters.d.ts +56 -0
  796. package/plugins/filters/filters.js +1037 -0
  797. package/plugins/filters/filters.mjs +1026 -0
  798. package/plugins/filters/index.d.ts +1 -0
  799. package/plugins/filters/index.js +8 -0
  800. package/plugins/filters/index.mjs +1 -0
  801. package/plugins/filters/logicalOperationRegisterer.js +50 -0
  802. package/plugins/filters/logicalOperationRegisterer.mjs +42 -0
  803. package/plugins/filters/logicalOperations/conjunction.js +36 -0
  804. package/plugins/filters/logicalOperations/conjunction.mjs +18 -0
  805. package/plugins/filters/logicalOperations/disjunction.js +36 -0
  806. package/plugins/filters/logicalOperations/disjunction.mjs +18 -0
  807. package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +40 -0
  808. package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.mjs +22 -0
  809. package/plugins/filters/ui/_base.js +249 -0
  810. package/plugins/filters/ui/_base.mjs +231 -0
  811. package/plugins/filters/ui/input.js +140 -0
  812. package/plugins/filters/ui/input.mjs +134 -0
  813. package/plugins/filters/ui/link.js +86 -0
  814. package/plugins/filters/ui/link.mjs +80 -0
  815. package/plugins/filters/ui/multipleSelect.js +441 -0
  816. package/plugins/filters/ui/multipleSelect.mjs +434 -0
  817. package/plugins/filters/ui/radioInput.js +130 -0
  818. package/plugins/filters/ui/radioInput.mjs +124 -0
  819. package/plugins/filters/ui/select.js +269 -0
  820. package/plugins/filters/ui/select.mjs +261 -0
  821. package/plugins/filters/utils.js +143 -0
  822. package/plugins/filters/utils.mjs +134 -0
  823. package/plugins/formulas/engine/register.js +259 -0
  824. package/plugins/formulas/engine/register.mjs +247 -0
  825. package/plugins/formulas/engine/settings.js +115 -0
  826. package/plugins/formulas/engine/settings.mjs +107 -0
  827. package/plugins/formulas/formulas.d.ts +31 -0
  828. package/plugins/formulas/formulas.js +1229 -0
  829. package/plugins/formulas/formulas.mjs +1221 -0
  830. package/plugins/formulas/index.d.ts +1 -0
  831. package/plugins/formulas/index.js +8 -0
  832. package/plugins/formulas/index.mjs +1 -0
  833. package/plugins/formulas/utils.js +24 -0
  834. package/plugins/formulas/utils.mjs +19 -0
  835. package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +76 -0
  836. package/plugins/hiddenColumns/contextMenuItem/hideColumn.mjs +67 -0
  837. package/plugins/hiddenColumns/contextMenuItem/showColumn.js +124 -0
  838. package/plugins/hiddenColumns/contextMenuItem/showColumn.mjs +115 -0
  839. package/plugins/hiddenColumns/hiddenColumns.d.ts +21 -0
  840. package/plugins/hiddenColumns/hiddenColumns.js +620 -0
  841. package/plugins/hiddenColumns/hiddenColumns.mjs +612 -0
  842. package/plugins/hiddenColumns/index.d.ts +1 -0
  843. package/plugins/hiddenColumns/index.js +8 -0
  844. package/plugins/hiddenColumns/index.mjs +1 -0
  845. package/plugins/hiddenRows/contextMenuItem/hideRow.js +76 -0
  846. package/plugins/hiddenRows/contextMenuItem/hideRow.mjs +67 -0
  847. package/plugins/hiddenRows/contextMenuItem/showRow.js +124 -0
  848. package/plugins/hiddenRows/contextMenuItem/showRow.mjs +115 -0
  849. package/plugins/hiddenRows/hiddenRows.d.ts +21 -0
  850. package/plugins/hiddenRows/hiddenRows.js +612 -0
  851. package/plugins/hiddenRows/hiddenRows.mjs +604 -0
  852. package/plugins/hiddenRows/index.d.ts +1 -0
  853. package/plugins/hiddenRows/index.js +8 -0
  854. package/plugins/hiddenRows/index.mjs +1 -0
  855. package/plugins/index.d.ts +111 -0
  856. package/plugins/index.js +115 -0
  857. package/plugins/index.mjs +75 -0
  858. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +58 -0
  859. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +49 -0
  860. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +58 -0
  861. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +49 -0
  862. package/plugins/manualColumnFreeze/index.d.ts +1 -0
  863. package/plugins/manualColumnFreeze/index.js +8 -0
  864. package/plugins/manualColumnFreeze/index.mjs +1 -0
  865. package/plugins/manualColumnFreeze/manualColumnFreeze.d.ts +11 -0
  866. package/plugins/manualColumnFreeze/manualColumnFreeze.js +250 -0
  867. package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +242 -0
  868. package/plugins/manualColumnMove/index.d.ts +1 -0
  869. package/plugins/manualColumnMove/index.js +8 -0
  870. package/plugins/manualColumnMove/index.mjs +1 -0
  871. package/plugins/manualColumnMove/manualColumnMove.d.ts +14 -0
  872. package/plugins/manualColumnMove/manualColumnMove.js +775 -0
  873. package/plugins/manualColumnMove/manualColumnMove.mjs +767 -0
  874. package/plugins/manualColumnMove/ui/_base.js +209 -0
  875. package/plugins/manualColumnMove/ui/_base.mjs +204 -0
  876. package/plugins/manualColumnMove/ui/backlight.js +60 -0
  877. package/plugins/manualColumnMove/ui/backlight.mjs +54 -0
  878. package/plugins/manualColumnMove/ui/guideline.js +60 -0
  879. package/plugins/manualColumnMove/ui/guideline.mjs +54 -0
  880. package/plugins/manualColumnResize/index.d.ts +1 -0
  881. package/plugins/manualColumnResize/index.js +8 -0
  882. package/plugins/manualColumnResize/index.mjs +1 -0
  883. package/plugins/manualColumnResize/manualColumnResize.d.ts +30 -0
  884. package/plugins/manualColumnResize/manualColumnResize.js +690 -0
  885. package/plugins/manualColumnResize/manualColumnResize.mjs +680 -0
  886. package/plugins/manualRowMove/index.d.ts +1 -0
  887. package/plugins/manualRowMove/index.js +8 -0
  888. package/plugins/manualRowMove/index.mjs +1 -0
  889. package/plugins/manualRowMove/manualRowMove.d.ts +14 -0
  890. package/plugins/manualRowMove/manualRowMove.js +757 -0
  891. package/plugins/manualRowMove/manualRowMove.mjs +749 -0
  892. package/plugins/manualRowMove/ui/_base.js +196 -0
  893. package/plugins/manualRowMove/ui/_base.mjs +191 -0
  894. package/plugins/manualRowMove/ui/backlight.js +60 -0
  895. package/plugins/manualRowMove/ui/backlight.mjs +54 -0
  896. package/plugins/manualRowMove/ui/guideline.js +60 -0
  897. package/plugins/manualRowMove/ui/guideline.mjs +54 -0
  898. package/plugins/manualRowResize/index.d.ts +1 -0
  899. package/plugins/manualRowResize/index.js +8 -0
  900. package/plugins/manualRowResize/index.mjs +1 -0
  901. package/plugins/manualRowResize/manualRowResize.d.ts +29 -0
  902. package/plugins/manualRowResize/manualRowResize.js +652 -0
  903. package/plugins/manualRowResize/manualRowResize.mjs +642 -0
  904. package/plugins/mergeCells/calculations/autofill.js +464 -0
  905. package/plugins/mergeCells/calculations/autofill.mjs +459 -0
  906. package/plugins/mergeCells/calculations/selection.js +204 -0
  907. package/plugins/mergeCells/calculations/selection.mjs +199 -0
  908. package/plugins/mergeCells/cellCoords.js +347 -0
  909. package/plugins/mergeCells/cellCoords.mjs +342 -0
  910. package/plugins/mergeCells/cellsCollection.js +344 -0
  911. package/plugins/mergeCells/cellsCollection.mjs +338 -0
  912. package/plugins/mergeCells/contextMenuItem/toggleMerge.js +55 -0
  913. package/plugins/mergeCells/contextMenuItem/toggleMerge.mjs +38 -0
  914. package/plugins/mergeCells/index.d.ts +1 -0
  915. package/plugins/mergeCells/index.js +8 -0
  916. package/plugins/mergeCells/index.mjs +1 -0
  917. package/plugins/mergeCells/mergeCells.d.ts +22 -0
  918. package/plugins/mergeCells/mergeCells.js +1290 -0
  919. package/plugins/mergeCells/mergeCells.mjs +1282 -0
  920. package/plugins/mergeCells/utils.js +30 -0
  921. package/plugins/mergeCells/utils.mjs +26 -0
  922. package/plugins/multiColumnSorting/domHelpers.js +44 -0
  923. package/plugins/multiColumnSorting/domHelpers.mjs +39 -0
  924. package/plugins/multiColumnSorting/index.d.ts +1 -0
  925. package/plugins/multiColumnSorting/index.js +8 -0
  926. package/plugins/multiColumnSorting/index.mjs +1 -0
  927. package/plugins/multiColumnSorting/multiColumnSorting.d.ts +8 -0
  928. package/plugins/multiColumnSorting/multiColumnSorting.js +336 -0
  929. package/plugins/multiColumnSorting/multiColumnSorting.mjs +329 -0
  930. package/plugins/multiColumnSorting/rootComparator.js +55 -0
  931. package/plugins/multiColumnSorting/rootComparator.mjs +51 -0
  932. package/plugins/multiColumnSorting/utils.js +16 -0
  933. package/plugins/multiColumnSorting/utils.mjs +12 -0
  934. package/plugins/multipleSelectionHandles/index.d.ts +1 -0
  935. package/plugins/multipleSelectionHandles/index.js +8 -0
  936. package/plugins/multipleSelectionHandles/index.mjs +1 -0
  937. package/plugins/multipleSelectionHandles/multipleSelectionHandles.d.ts +21 -0
  938. package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +394 -0
  939. package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +386 -0
  940. package/plugins/nestedHeaders/index.d.ts +1 -0
  941. package/plugins/nestedHeaders/index.js +8 -0
  942. package/plugins/nestedHeaders/index.mjs +1 -0
  943. package/plugins/nestedHeaders/nestedHeaders.d.ts +17 -0
  944. package/plugins/nestedHeaders/nestedHeaders.js +666 -0
  945. package/plugins/nestedHeaders/nestedHeaders.mjs +658 -0
  946. package/plugins/nestedHeaders/stateManager/headersTree.js +288 -0
  947. package/plugins/nestedHeaders/stateManager/headersTree.mjs +283 -0
  948. package/plugins/nestedHeaders/stateManager/index.js +417 -0
  949. package/plugins/nestedHeaders/stateManager/index.mjs +412 -0
  950. package/plugins/nestedHeaders/stateManager/matrixGenerator.js +102 -0
  951. package/plugins/nestedHeaders/stateManager/matrixGenerator.mjs +99 -0
  952. package/plugins/nestedHeaders/stateManager/nodeModifiers/collapse.js +98 -0
  953. package/plugins/nestedHeaders/stateManager/nodeModifiers/collapse.mjs +94 -0
  954. package/plugins/nestedHeaders/stateManager/nodeModifiers/expand.js +95 -0
  955. package/plugins/nestedHeaders/stateManager/nodeModifiers/expand.mjs +91 -0
  956. package/plugins/nestedHeaders/stateManager/nodeModifiers/hideColumn.js +54 -0
  957. package/plugins/nestedHeaders/stateManager/nodeModifiers/hideColumn.mjs +50 -0
  958. package/plugins/nestedHeaders/stateManager/nodeModifiers/index.js +40 -0
  959. package/plugins/nestedHeaders/stateManager/nodeModifiers/index.mjs +35 -0
  960. package/plugins/nestedHeaders/stateManager/nodeModifiers/showColumn.js +55 -0
  961. package/plugins/nestedHeaders/stateManager/nodeModifiers/showColumn.mjs +51 -0
  962. package/plugins/nestedHeaders/stateManager/nodeModifiers/utils/tree.js +61 -0
  963. package/plugins/nestedHeaders/stateManager/nodeModifiers/utils/tree.mjs +55 -0
  964. package/plugins/nestedHeaders/stateManager/settingsNormalizer.js +122 -0
  965. package/plugins/nestedHeaders/stateManager/settingsNormalizer.mjs +119 -0
  966. package/plugins/nestedHeaders/stateManager/sourceSettings.js +250 -0
  967. package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +245 -0
  968. package/plugins/nestedHeaders/stateManager/utils.js +75 -0
  969. package/plugins/nestedHeaders/stateManager/utils.mjs +70 -0
  970. package/plugins/nestedHeaders/utils/ghostTable.js +167 -0
  971. package/plugins/nestedHeaders/utils/ghostTable.mjs +162 -0
  972. package/plugins/nestedRows/data/dataManager.js +809 -0
  973. package/plugins/nestedRows/data/dataManager.mjs +804 -0
  974. package/plugins/nestedRows/index.d.ts +1 -0
  975. package/plugins/nestedRows/index.js +8 -0
  976. package/plugins/nestedRows/index.mjs +1 -0
  977. package/plugins/nestedRows/nestedRows.d.ts +12 -0
  978. package/plugins/nestedRows/nestedRows.js +592 -0
  979. package/plugins/nestedRows/nestedRows.mjs +584 -0
  980. package/plugins/nestedRows/ui/_base.js +28 -0
  981. package/plugins/nestedRows/ui/_base.mjs +23 -0
  982. package/plugins/nestedRows/ui/collapsing.js +562 -0
  983. package/plugins/nestedRows/ui/collapsing.mjs +556 -0
  984. package/plugins/nestedRows/ui/contextMenu.js +147 -0
  985. package/plugins/nestedRows/ui/contextMenu.mjs +138 -0
  986. package/plugins/nestedRows/ui/headers.js +157 -0
  987. package/plugins/nestedRows/ui/headers.mjs +151 -0
  988. package/plugins/nestedRows/utils/rowMoveController.js +331 -0
  989. package/plugins/nestedRows/utils/rowMoveController.mjs +327 -0
  990. package/plugins/persistentState/index.d.ts +1 -0
  991. package/plugins/persistentState/index.js +8 -0
  992. package/plugins/persistentState/index.mjs +1 -0
  993. package/plugins/persistentState/persistentState.d.ts +13 -0
  994. package/plugins/persistentState/persistentState.js +207 -0
  995. package/plugins/persistentState/persistentState.mjs +199 -0
  996. package/plugins/persistentState/storage.js +138 -0
  997. package/plugins/persistentState/storage.mjs +133 -0
  998. package/plugins/registry.d.ts +9 -0
  999. package/plugins/registry.js +150 -0
  1000. package/plugins/registry.mjs +146 -0
  1001. package/plugins/search/index.d.ts +1 -0
  1002. package/plugins/search/index.js +8 -0
  1003. package/plugins/search/index.mjs +1 -0
  1004. package/plugins/search/search.d.ts +28 -0
  1005. package/plugins/search/search.js +377 -0
  1006. package/plugins/search/search.mjs +370 -0
  1007. package/plugins/touchScroll/index.d.ts +1 -0
  1008. package/plugins/touchScroll/index.js +8 -0
  1009. package/plugins/touchScroll/index.mjs +1 -0
  1010. package/plugins/touchScroll/touchScroll.d.ts +13 -0
  1011. package/plugins/touchScroll/touchScroll.js +250 -0
  1012. package/plugins/touchScroll/touchScroll.mjs +243 -0
  1013. package/plugins/trimRows/index.d.ts +1 -0
  1014. package/plugins/trimRows/index.js +8 -0
  1015. package/plugins/trimRows/index.mjs +1 -0
  1016. package/plugins/trimRows/trimRows.d.ts +17 -0
  1017. package/plugins/trimRows/trimRows.js +393 -0
  1018. package/plugins/trimRows/trimRows.mjs +386 -0
  1019. package/plugins/undoRedo/index.d.ts +1 -0
  1020. package/plugins/undoRedo/index.js +18 -0
  1021. package/plugins/undoRedo/index.mjs +2 -0
  1022. package/plugins/undoRedo/undoRedo.d.ts +49 -0
  1023. package/plugins/undoRedo/undoRedo.js +935 -0
  1024. package/plugins/undoRedo/undoRedo.mjs +928 -0
  1025. package/registry.d.ts +6 -0
  1026. package/registry.js +35 -0
  1027. package/registry.mjs +26 -0
  1028. package/renderers/autocompleteRenderer/autocompleteRenderer.d.ts +5 -0
  1029. package/renderers/autocompleteRenderer/autocompleteRenderer.js +59 -0
  1030. package/renderers/autocompleteRenderer/autocompleteRenderer.mjs +52 -0
  1031. package/renderers/autocompleteRenderer/index.d.ts +1 -0
  1032. package/renderers/autocompleteRenderer/index.js +7 -0
  1033. package/renderers/autocompleteRenderer/index.mjs +1 -0
  1034. package/renderers/base.d.ts +3 -0
  1035. package/renderers/baseRenderer/baseRenderer.d.ts +5 -0
  1036. package/renderers/baseRenderer/baseRenderer.js +46 -0
  1037. package/renderers/baseRenderer/baseRenderer.mjs +39 -0
  1038. package/renderers/baseRenderer/index.d.ts +1 -0
  1039. package/renderers/baseRenderer/index.js +7 -0
  1040. package/renderers/baseRenderer/index.mjs +1 -0
  1041. package/renderers/checkboxRenderer/checkboxRenderer.d.ts +5 -0
  1042. package/renderers/checkboxRenderer/checkboxRenderer.js +398 -0
  1043. package/renderers/checkboxRenderer/checkboxRenderer.mjs +391 -0
  1044. package/renderers/checkboxRenderer/index.d.ts +1 -0
  1045. package/renderers/checkboxRenderer/index.js +7 -0
  1046. package/renderers/checkboxRenderer/index.mjs +1 -0
  1047. package/renderers/htmlRenderer/htmlRenderer.d.ts +5 -0
  1048. package/renderers/htmlRenderer/htmlRenderer.js +25 -0
  1049. package/renderers/htmlRenderer/htmlRenderer.mjs +19 -0
  1050. package/renderers/htmlRenderer/index.d.ts +1 -0
  1051. package/renderers/htmlRenderer/index.js +7 -0
  1052. package/renderers/htmlRenderer/index.mjs +1 -0
  1053. package/renderers/index.d.ts +45 -0
  1054. package/renderers/index.js +48 -0
  1055. package/renderers/index.mjs +24 -0
  1056. package/renderers/numericRenderer/index.d.ts +1 -0
  1057. package/renderers/numericRenderer/index.js +7 -0
  1058. package/renderers/numericRenderer/index.mjs +1 -0
  1059. package/renderers/numericRenderer/numericRenderer.d.ts +5 -0
  1060. package/renderers/numericRenderer/numericRenderer.js +57 -0
  1061. package/renderers/numericRenderer/numericRenderer.mjs +50 -0
  1062. package/renderers/passwordRenderer/index.d.ts +1 -0
  1063. package/renderers/passwordRenderer/index.js +7 -0
  1064. package/renderers/passwordRenderer/index.mjs +1 -0
  1065. package/renderers/passwordRenderer/passwordRenderer.d.ts +5 -0
  1066. package/renderers/passwordRenderer/passwordRenderer.js +32 -0
  1067. package/renderers/passwordRenderer/passwordRenderer.mjs +26 -0
  1068. package/renderers/registry.d.ts +18 -0
  1069. package/renderers/registry.js +48 -0
  1070. package/renderers/registry.mjs +38 -0
  1071. package/renderers/textRenderer/index.d.ts +1 -0
  1072. package/renderers/textRenderer/index.js +7 -0
  1073. package/renderers/textRenderer/index.mjs +1 -0
  1074. package/renderers/textRenderer/textRenderer.d.ts +5 -0
  1075. package/renderers/textRenderer/textRenderer.js +48 -0
  1076. package/renderers/textRenderer/textRenderer.mjs +42 -0
  1077. package/renderers/timeRenderer/index.d.ts +1 -0
  1078. package/renderers/timeRenderer/index.js +7 -0
  1079. package/renderers/timeRenderer/index.mjs +1 -0
  1080. package/renderers/timeRenderer/timeRenderer.d.ts +5 -0
  1081. package/renderers/timeRenderer/timeRenderer.js +26 -0
  1082. package/renderers/timeRenderer/timeRenderer.mjs +20 -0
  1083. package/selection/highlight/constants.js +16 -0
  1084. package/selection/highlight/constants.mjs +6 -0
  1085. package/selection/highlight/highlight.js +330 -0
  1086. package/selection/highlight/highlight.mjs +325 -0
  1087. package/selection/highlight/types/activeHeader.js +38 -0
  1088. package/selection/highlight/types/activeHeader.mjs +32 -0
  1089. package/selection/highlight/types/area.js +49 -0
  1090. package/selection/highlight/types/area.mjs +43 -0
  1091. package/selection/highlight/types/cell.js +46 -0
  1092. package/selection/highlight/types/cell.mjs +40 -0
  1093. package/selection/highlight/types/customSelection.js +41 -0
  1094. package/selection/highlight/types/customSelection.mjs +35 -0
  1095. package/selection/highlight/types/fill.js +41 -0
  1096. package/selection/highlight/types/fill.mjs +35 -0
  1097. package/selection/highlight/types/header.js +49 -0
  1098. package/selection/highlight/types/header.mjs +43 -0
  1099. package/selection/highlight/types/index.js +43 -0
  1100. package/selection/highlight/types/index.mjs +39 -0
  1101. package/selection/highlight/visualSelection.js +277 -0
  1102. package/selection/highlight/visualSelection.mjs +272 -0
  1103. package/selection/index.d.ts +5 -0
  1104. package/selection/index.js +30 -0
  1105. package/selection/index.mjs +6 -0
  1106. package/selection/mouseEventHandler.js +135 -0
  1107. package/selection/mouseEventHandler.mjs +129 -0
  1108. package/selection/range.js +173 -0
  1109. package/selection/range.mjs +168 -0
  1110. package/selection/selection.js +802 -0
  1111. package/selection/selection.mjs +796 -0
  1112. package/selection/transformation.js +169 -0
  1113. package/selection/transformation.mjs +163 -0
  1114. package/selection/utils.js +256 -0
  1115. package/selection/utils.mjs +242 -0
  1116. package/settings.d.ts +210 -0
  1117. package/shortcuts/context.d.ts +20 -0
  1118. package/shortcuts/context.js +241 -0
  1119. package/shortcuts/context.mjs +236 -0
  1120. package/shortcuts/index.d.ts +1 -0
  1121. package/shortcuts/index.js +6 -0
  1122. package/shortcuts/index.mjs +1 -0
  1123. package/shortcuts/keyObserver.js +58 -0
  1124. package/shortcuts/keyObserver.mjs +54 -0
  1125. package/shortcuts/manager.d.ts +10 -0
  1126. package/shortcuts/manager.js +165 -0
  1127. package/shortcuts/manager.mjs +159 -0
  1128. package/shortcuts/recorder.js +165 -0
  1129. package/shortcuts/recorder.mjs +161 -0
  1130. package/shortcuts/utils.js +58 -0
  1131. package/shortcuts/utils.mjs +51 -0
  1132. package/tableView.js +1313 -0
  1133. package/tableView.mjs +1307 -0
  1134. package/translations/changesObservable/observable.js +175 -0
  1135. package/translations/changesObservable/observable.mjs +170 -0
  1136. package/translations/changesObservable/observer.js +100 -0
  1137. package/translations/changesObservable/observer.mjs +94 -0
  1138. package/translations/changesObservable/utils.js +50 -0
  1139. package/translations/changesObservable/utils.mjs +46 -0
  1140. package/translations/index.d.ts +1 -0
  1141. package/translations/index.js +29 -0
  1142. package/translations/index.mjs +4 -0
  1143. package/translations/indexMapper.d.ts +48 -0
  1144. package/translations/indexMapper.js +865 -0
  1145. package/translations/indexMapper.mjs +859 -0
  1146. package/translations/mapCollections/aggregatedCollection.js +139 -0
  1147. package/translations/mapCollections/aggregatedCollection.mjs +134 -0
  1148. package/translations/mapCollections/index.js +18 -0
  1149. package/translations/mapCollections/index.mjs +2 -0
  1150. package/translations/mapCollections/mapCollection.js +164 -0
  1151. package/translations/mapCollections/mapCollection.mjs +156 -0
  1152. package/translations/maps/hidingMap.js +63 -0
  1153. package/translations/maps/hidingMap.mjs +58 -0
  1154. package/translations/maps/index.js +59 -0
  1155. package/translations/maps/index.mjs +29 -0
  1156. package/translations/maps/indexMap.d.ts +10 -0
  1157. package/translations/maps/indexMap.js +203 -0
  1158. package/translations/maps/indexMap.mjs +197 -0
  1159. package/translations/maps/indexesSequence.js +82 -0
  1160. package/translations/maps/indexesSequence.mjs +77 -0
  1161. package/translations/maps/linkedPhysicalIndexToValueMap.js +216 -0
  1162. package/translations/maps/linkedPhysicalIndexToValueMap.mjs +211 -0
  1163. package/translations/maps/physicalIndexToValueMap.js +76 -0
  1164. package/translations/maps/physicalIndexToValueMap.mjs +71 -0
  1165. package/translations/maps/trimmingMap.js +63 -0
  1166. package/translations/maps/trimmingMap.mjs +58 -0
  1167. package/translations/maps/utils/actionsOnIndexes.js +42 -0
  1168. package/translations/maps/utils/actionsOnIndexes.mjs +37 -0
  1169. package/translations/maps/utils/index.js +28 -0
  1170. package/translations/maps/utils/index.mjs +22 -0
  1171. package/translations/maps/utils/indexesSequence.js +52 -0
  1172. package/translations/maps/utils/indexesSequence.mjs +47 -0
  1173. package/translations/maps/utils/physicallyIndexed.js +61 -0
  1174. package/translations/maps/utils/physicallyIndexed.mjs +56 -0
  1175. package/utils/dataStructures/linkedList.js +263 -0
  1176. package/utils/dataStructures/linkedList.mjs +258 -0
  1177. package/utils/dataStructures/priorityMap.js +106 -0
  1178. package/utils/dataStructures/priorityMap.mjs +99 -0
  1179. package/utils/dataStructures/queue.js +83 -0
  1180. package/utils/dataStructures/queue.mjs +78 -0
  1181. package/utils/dataStructures/stack.js +83 -0
  1182. package/utils/dataStructures/stack.mjs +78 -0
  1183. package/utils/dataStructures/tree.js +254 -0
  1184. package/utils/dataStructures/tree.mjs +246 -0
  1185. package/utils/dataStructures/uniqueMap.js +144 -0
  1186. package/utils/dataStructures/uniqueMap.mjs +140 -0
  1187. package/utils/dataStructures/uniqueSet.js +78 -0
  1188. package/utils/dataStructures/uniqueSet.mjs +74 -0
  1189. package/utils/ghostTable.js +536 -0
  1190. package/utils/ghostTable.mjs +531 -0
  1191. package/utils/interval.js +134 -0
  1192. package/utils/interval.mjs +129 -0
  1193. package/utils/parseTable.d.ts +5 -0
  1194. package/utils/parseTable.js +305 -0
  1195. package/utils/parseTable.mjs +299 -0
  1196. package/utils/rootInstance.js +48 -0
  1197. package/utils/rootInstance.mjs +38 -0
  1198. package/utils/samplesGenerator.js +210 -0
  1199. package/utils/samplesGenerator.mjs +205 -0
  1200. package/utils/staticRegister.js +92 -0
  1201. package/utils/staticRegister.mjs +86 -0
  1202. package/validators/autocompleteValidator/autocompleteValidator.d.ts +5 -0
  1203. package/validators/autocompleteValidator/autocompleteValidator.js +56 -0
  1204. package/validators/autocompleteValidator/autocompleteValidator.mjs +50 -0
  1205. package/validators/autocompleteValidator/index.d.ts +1 -0
  1206. package/validators/autocompleteValidator/index.js +7 -0
  1207. package/validators/autocompleteValidator/index.mjs +1 -0
  1208. package/validators/base.d.ts +6 -0
  1209. package/validators/dateValidator/dateValidator.d.ts +5 -0
  1210. package/validators/dateValidator/dateValidator.js +77 -0
  1211. package/validators/dateValidator/dateValidator.mjs +69 -0
  1212. package/validators/dateValidator/index.d.ts +1 -0
  1213. package/validators/dateValidator/index.js +8 -0
  1214. package/validators/dateValidator/index.mjs +1 -0
  1215. package/validators/index.d.ts +33 -0
  1216. package/validators/index.js +32 -0
  1217. package/validators/index.mjs +16 -0
  1218. package/validators/numericValidator/index.d.ts +1 -0
  1219. package/validators/numericValidator/index.js +7 -0
  1220. package/validators/numericValidator/index.mjs +1 -0
  1221. package/validators/numericValidator/numericValidator.d.ts +5 -0
  1222. package/validators/numericValidator/numericValidator.js +30 -0
  1223. package/validators/numericValidator/numericValidator.mjs +24 -0
  1224. package/validators/registry.d.ts +18 -0
  1225. package/validators/registry.js +48 -0
  1226. package/validators/registry.mjs +38 -0
  1227. package/validators/timeValidator/index.d.ts +1 -0
  1228. package/validators/timeValidator/index.js +7 -0
  1229. package/validators/timeValidator/index.mjs +1 -0
  1230. package/validators/timeValidator/timeValidator.d.ts +5 -0
  1231. package/validators/timeValidator/timeValidator.js +66 -0
  1232. package/validators/timeValidator/timeValidator.mjs +60 -0
@@ -0,0 +1,2744 @@
1
+ import "core-js/modules/es.array.slice.js";
2
+ import "core-js/modules/es.object.freeze.js";
3
+ var _templateObject;
4
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
5
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
6
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
7
+ import "core-js/modules/es.array.iterator.js";
8
+ import "core-js/modules/es.map.js";
9
+ import "core-js/modules/es.object.to-string.js";
10
+ import "core-js/modules/es.string.iterator.js";
11
+ import "core-js/modules/web.dom-collections.iterator.js";
12
+ import "core-js/modules/es.array.index-of.js";
13
+ import "core-js/modules/es.array.splice.js";
14
+ function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
15
+ import { arrayEach } from "./helpers/array.mjs";
16
+ import { objectEach } from "./helpers/object.mjs";
17
+ import { substitute } from "./helpers/string.mjs";
18
+ import { warn } from "./helpers/console.mjs";
19
+ import { toSingleLine } from "./helpers/templateLiteralTag.mjs";
20
+ import { fastCall } from "./helpers/function.mjs";
21
+ /* eslint-disable jsdoc/require-description-complete-sentence */
22
+ /**
23
+ * @description
24
+ *
25
+ * ::: only-for javascript
26
+ * Handsontable events are the common interface that function in 2 ways: as __callbacks__ and as __hooks__.
27
+ * :::
28
+ *
29
+ * ::: only-for react
30
+ * This page lists all the **Handsontable hooks** – callbacks that let you react before or after an action occurs.
31
+ *
32
+ * Read more on the [Events and hooks](@/guides/getting-started/events-and-hooks.md) page.
33
+ * :::
34
+ *
35
+ * @example
36
+ *
37
+ * ::: only-for javascript
38
+ * ```js
39
+ * // using events as callbacks
40
+ * ...
41
+ * const hot1 = new Handsontable(document.getElementById('example1'), {
42
+ * afterChange: function(changes, source) {
43
+ * $.ajax({
44
+ * url: "save.php',
45
+ * data: change
46
+ * });
47
+ * }
48
+ * });
49
+ * ...
50
+ * ```
51
+ * :::
52
+ *
53
+ * ::: only-for react
54
+ * ```jsx
55
+ * <HotTable
56
+ * afterChange={(changes, source) => {
57
+ * fetch('save.php', {
58
+ * method: 'POST',
59
+ * headers: {
60
+ * 'Accept': 'application/json',
61
+ * 'Content-Type': 'application/json'
62
+ * },
63
+ * body: JSON.stringify(changes)
64
+ * });
65
+ * }}
66
+ * />
67
+ * :::
68
+ *
69
+ * ::: only-for javascript
70
+ * ```js
71
+ * // using events as plugin hooks
72
+ * ...
73
+ * const hot1 = new Handsontable(document.getElementById('example1'), {
74
+ * myPlugin: true
75
+ * });
76
+ *
77
+ * const hot2 = new Handsontable(document.getElementById('example2'), {
78
+ * myPlugin: false
79
+ * });
80
+ *
81
+ * // global hook
82
+ * Handsontable.hooks.add('afterChange', function() {
83
+ * // Fired twice - for hot1 and hot2
84
+ * if (this.getSettings().myPlugin) {
85
+ * // function body - will only run for hot1
86
+ * }
87
+ * });
88
+ *
89
+ * // local hook (has same effect as a callback)
90
+ * hot2.addHook('afterChange', function() {
91
+ * // function body - will only run in #example2
92
+ * });
93
+ * ```
94
+ * :::
95
+ *
96
+ * ::: only-for react
97
+ * ```jsx
98
+ * const hotRef1 = useRef(null);
99
+ * const hotRef2 = useRef(null);
100
+ *
101
+ * // Using events as plugin hooks:
102
+ * ...
103
+ *
104
+ * <HotTable
105
+ * ref={hotRef1}
106
+ * myPlugin={true}
107
+ * });
108
+ *
109
+ * <HotTable
110
+ * ref={hotRef2}
111
+ * myPlugin={false}
112
+ * });
113
+ *
114
+ * ...
115
+ *
116
+ * const hot2 = hotRef2.current.hotInstance;
117
+ * // local hook (has same effect as a callback)
118
+ * hot2.addHook('afterChange', function() {
119
+ * // function body - will only run in #example2
120
+ * });
121
+ *
122
+ * // global hook
123
+ * Handsontable.hooks.add('afterChange', function() {
124
+ * // Fired twice - for hot1 and hot2
125
+ * if (this.getSettings().myPlugin) {
126
+ * // function body - will only run for first instance
127
+ * }
128
+ * });
129
+ * :::
130
+ * ...
131
+ */
132
+ // @TODO: Move plugin description hooks to plugin?
133
+ var REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-sentence */
134
+ /**
135
+ * Fired after resetting a cell's meta. This happens when the {@link Core#updateSettings} method is called.
136
+ *
137
+ * @event Hooks#afterCellMetaReset
138
+ */
139
+ 'afterCellMetaReset',
140
+ /**
141
+ * Fired after one or more cells has been changed. The changes are triggered in any situation when the
142
+ * value is entered using an editor or changed using API (e.q setDataAtCell).
143
+ *
144
+ * __Note:__ For performance reasons, the `changes` array is null for `"loadData"` source.
145
+ *
146
+ * @event Hooks#afterChange
147
+ * @param {Array[]} changes 2D array containing information about each of the edited cells `[[row, prop, oldVal, newVal], ...]`. `row` is a visual row index.
148
+ * @param {string} [source] String that identifies source of hook call ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
149
+ * @example
150
+ * ::: only-for javascript
151
+ * ```js
152
+ * new Handsontable(element, {
153
+ * afterChange: (changes) => {
154
+ * changes?.forEach(([row, prop, oldValue, newValue]) => {
155
+ * // Some logic...
156
+ * });
157
+ * }
158
+ * })
159
+ * ```
160
+ * :::
161
+ *
162
+ * ::: only-for react
163
+ * ```jsx
164
+ * <HotTable
165
+ * afterChange={(changes, source) => {
166
+ * changes?.forEach(([row, prop, oldValue, newValue]) => {
167
+ * // Some logic...
168
+ * });
169
+ * }}
170
+ * />
171
+ * ```
172
+ * :::
173
+ */
174
+ 'afterChange',
175
+ /**
176
+ * Fired each time user opens {@link ContextMenu} and after setting up the Context Menu's default options. These options are a collection
177
+ * which user can select by setting an array of keys or an array of objects in {@link Options#contextMenu} option.
178
+ *
179
+ * @event Hooks#afterContextMenuDefaultOptions
180
+ * @param {Array} predefinedItems An array of objects containing information about the pre-defined Context Menu items.
181
+ */
182
+ 'afterContextMenuDefaultOptions',
183
+ /**
184
+ * Fired each time user opens {@link ContextMenu} plugin before setting up the Context Menu's items but after filtering these options by
185
+ * user (`contextMenu` option). This hook can by helpful to determine if user use specified menu item or to set up
186
+ * one of the menu item to by always visible.
187
+ *
188
+ * @event Hooks#beforeContextMenuSetItems
189
+ * @param {object[]} menuItems An array of objects containing information about to generated Context Menu items.
190
+ */
191
+ 'beforeContextMenuSetItems',
192
+ /**
193
+ * Fired by {@link DropdownMenu} plugin after setting up the Dropdown Menu's default options. These options are a
194
+ * collection which user can select by setting an array of keys or an array of objects in {@link Options#dropdownMenu}
195
+ * option.
196
+ *
197
+ * @event Hooks#afterDropdownMenuDefaultOptions
198
+ * @param {object[]} predefinedItems An array of objects containing information about the pre-defined Context Menu items.
199
+ */
200
+ 'afterDropdownMenuDefaultOptions',
201
+ /**
202
+ * Fired by {@link DropdownMenu} plugin before setting up the Dropdown Menu's items but after filtering these options
203
+ * by user (`dropdownMenu` option). This hook can by helpful to determine if user use specified menu item or to set
204
+ * up one of the menu item to by always visible.
205
+ *
206
+ * @event Hooks#beforeDropdownMenuSetItems
207
+ * @param {object[]} menuItems An array of objects containing information about to generated Dropdown Menu items.
208
+ */
209
+ 'beforeDropdownMenuSetItems',
210
+ /**
211
+ * Fired by {@link ContextMenu} plugin after hiding the Context Menu. This hook is fired when {@link Options#contextMenu}
212
+ * option is enabled.
213
+ *
214
+ * @event Hooks#afterContextMenuHide
215
+ * @param {object} context The Context Menu plugin instance.
216
+ */
217
+ 'afterContextMenuHide',
218
+ /**
219
+ * Fired by {@link ContextMenu} plugin before opening the Context Menu. This hook is fired when {@link Options#contextMenu}
220
+ * option is enabled.
221
+ *
222
+ * @event Hooks#beforeContextMenuShow
223
+ * @param {object} context The Context Menu instance.
224
+ */
225
+ 'beforeContextMenuShow',
226
+ /**
227
+ * Fired by {@link ContextMenu} plugin after opening the Context Menu. This hook is fired when {@link Options#contextMenu}
228
+ * option is enabled.
229
+ *
230
+ * @event Hooks#afterContextMenuShow
231
+ * @param {object} context The Context Menu plugin instance.
232
+ */
233
+ 'afterContextMenuShow',
234
+ /**
235
+ * Fired by {@link CopyPaste} plugin after reaching the copy limit while copying data. This hook is fired when
236
+ * {@link Options#copyPaste} option is enabled.
237
+ *
238
+ * @event Hooks#afterCopyLimit
239
+ * @param {number} selectedRows Count of selected copyable rows.
240
+ * @param {number} selectedColumns Count of selected copyable columns.
241
+ * @param {number} copyRowsLimit Current copy rows limit.
242
+ * @param {number} copyColumnsLimit Current copy columns limit.
243
+ */
244
+ 'afterCopyLimit',
245
+ /**
246
+ * Fired before created a new column.
247
+ *
248
+ * @event Hooks#beforeCreateCol
249
+ * @param {number} index Represents the visual index of first newly created column in the data source array.
250
+ * @param {number} amount Number of newly created columns in the data source array.
251
+ * @param {string} [source] String that identifies source of hook call
252
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
253
+ * @returns {*} If `false` then creating columns is cancelled.
254
+ * @example
255
+ * ::: only-for javascript
256
+ * ```js
257
+ * // Return `false` to cancel column inserting.
258
+ * new Handsontable(element, {
259
+ * beforeCreateCol: function(data, coords) {
260
+ * return false;
261
+ * }
262
+ * });
263
+ * ```
264
+ * :::
265
+ *
266
+ * ::: only-for react
267
+ * ```jsx
268
+ * // Return `false` to cancel column inserting.
269
+ * <HotTable
270
+ * beforeCreateCol={(data, coords) => {
271
+ * return false;
272
+ * }}
273
+ * />
274
+ * ```
275
+ * :::
276
+ */
277
+ 'beforeCreateCol',
278
+ /**
279
+ * Fired after created a new column.
280
+ *
281
+ * @event Hooks#afterCreateCol
282
+ * @param {number} index Represents the visual index of first newly created column in the data source.
283
+ * @param {number} amount Number of newly created columns in the data source.
284
+ * @param {string} [source] String that identifies source of hook call
285
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
286
+ */
287
+ 'afterCreateCol',
288
+ /**
289
+ * Fired before created a new row.
290
+ *
291
+ * @event Hooks#beforeCreateRow
292
+ * @param {number} index Represents the visual index of first newly created row in the data source array.
293
+ * @param {number} amount Number of newly created rows in the data source array.
294
+ * @param {string} [source] String that identifies source of hook call
295
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
296
+ * @returns {*|boolean} If false is returned the action is canceled.
297
+ */
298
+ 'beforeCreateRow',
299
+ /**
300
+ * Fired after created a new row.
301
+ *
302
+ * @event Hooks#afterCreateRow
303
+ * @param {number} index Represents the visual index of first newly created row in the data source array.
304
+ * @param {number} amount Number of newly created rows in the data source array.
305
+ * @param {string} [source] String that identifies source of hook call
306
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
307
+ */
308
+ 'afterCreateRow',
309
+ /**
310
+ * Fired after all selected cells are deselected.
311
+ *
312
+ * @event Hooks#afterDeselect
313
+ */
314
+ 'afterDeselect',
315
+ /**
316
+ * Fired after destroying the Handsontable instance.
317
+ *
318
+ * @event Hooks#afterDestroy
319
+ */
320
+ 'afterDestroy',
321
+ /**
322
+ * Hook fired after keydown event is handled.
323
+ *
324
+ * @event Hooks#afterDocumentKeyDown
325
+ * @param {Event} event A native `keydown` event object.
326
+ */
327
+ 'afterDocumentKeyDown',
328
+ /**
329
+ * Fired inside the Walkontable's selection `draw` method. Can be used to add additional class names to cells, depending on the current selection.
330
+ *
331
+ * @event Hooks#afterDrawSelection
332
+ * @param {number} currentRow Row index of the currently processed cell.
333
+ * @param {number} currentColumn Column index of the currently cell.
334
+ * @param {number[]} cornersOfSelection Array of the current selection in a form of `[startRow, startColumn, endRow, endColumn]`.
335
+ * @param {number|undefined} layerLevel Number indicating which layer of selection is currently processed.
336
+ * @since 0.38.1
337
+ * @returns {string|undefined} Can return a `String`, which will act as an additional `className` to be added to the currently processed cell.
338
+ */
339
+ 'afterDrawSelection',
340
+ /**
341
+ * Fired inside the Walkontable's `refreshSelections` method. Can be used to remove additional class names from all cells in the table.
342
+ *
343
+ * @event Hooks#beforeRemoveCellClassNames
344
+ * @since 0.38.1
345
+ * @returns {string[]|undefined} Can return an `Array` of `String`s. Each of these strings will act like class names to be removed from all the cells in the table.
346
+ */
347
+ 'beforeRemoveCellClassNames',
348
+ /**
349
+ * Fired after getting the cell settings.
350
+ *
351
+ * @event Hooks#afterGetCellMeta
352
+ * @param {number} row Visual row index.
353
+ * @param {number} column Visual column index.
354
+ * @param {object} cellProperties Object containing the cell properties.
355
+ */
356
+ 'afterGetCellMeta',
357
+ /**
358
+ * Fired after retrieving information about a column header and appending it to the table header.
359
+ *
360
+ * Since the 12.2 the hook is triggered with the 3rd `headerLevel` argument.
361
+ *
362
+ * @event Hooks#afterGetColHeader
363
+ * @param {number} column Visual column index.
364
+ * @param {HTMLTableCellElement} TH Header's TH element.
365
+ * @param {number} [headerLevel=0] The index of header level counting from the top (positive
366
+ * values counting from 0 to N).
367
+ */
368
+ 'afterGetColHeader',
369
+ /**
370
+ * Fired after retrieving information about a row header and appending it to the table header.
371
+ *
372
+ * @event Hooks#afterGetRowHeader
373
+ * @param {number} row Visual row index.
374
+ * @param {HTMLTableCellElement} TH Header's TH element.
375
+ */
376
+ 'afterGetRowHeader',
377
+ /**
378
+ * Fired after the Handsontable instance is initiated.
379
+ *
380
+ * @event Hooks#afterInit
381
+ */
382
+ 'afterInit',
383
+ /**
384
+ * Fired after Handsontable's [`data`](@/api/options.md#data)
385
+ * gets modified by the [`loadData()`](@/api/core.md#loaddata) method
386
+ * or the [`updateSettings()`](@/api/core.md#updatesettings) method.
387
+ *
388
+ * Read more:
389
+ * - [Binding to data](@/guides/getting-started/binding-to-data.md)
390
+ * - [Saving data](@/guides/getting-started/saving-data.md)
391
+ *
392
+ * @event Hooks#afterLoadData
393
+ * @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data.md#array-of-objects), that contains Handsontable's data
394
+ * @param {boolean} initialLoad A flag that indicates whether the data was loaded at Handsontable's initialization (`true`) or later (`false`)
395
+ * @param {string} source The source of the call
396
+ */
397
+ 'afterLoadData',
398
+ /**
399
+ * Fired after the [`updateData()`](@/api/core.md#updatedata) method
400
+ * modifies Handsontable's [`data`](@/api/options.md#data).
401
+ *
402
+ * Read more:
403
+ * - [Binding to data](@/guides/getting-started/binding-to-data.md)
404
+ * - [Saving data](@/guides/getting-started/saving-data.md)
405
+ *
406
+ * @event Hooks#afterUpdateData
407
+ * @since 11.1.0
408
+ * @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data.md#array-of-objects), that contains Handsontable's data
409
+ * @param {boolean} initialLoad A flag that indicates whether the data was loaded at Handsontable's initialization (`true`) or later (`false`)
410
+ * @param {string} source The source of the call
411
+ */
412
+ 'afterUpdateData',
413
+ /**
414
+ * Fired after a scroll event, which is identified as a momentum scroll (e.g. On an iPad).
415
+ *
416
+ * @event Hooks#afterMomentumScroll
417
+ */
418
+ 'afterMomentumScroll',
419
+ /**
420
+ * Fired after a `mousedown` event is triggered on the cell corner (the drag handle).
421
+ *
422
+ * @event Hooks#afterOnCellCornerMouseDown
423
+ * @param {Event} event `mousedown` event object.
424
+ */
425
+ 'afterOnCellCornerMouseDown',
426
+ /**
427
+ * Fired after a `dblclick` event is triggered on the cell corner (the drag handle).
428
+ *
429
+ * @event Hooks#afterOnCellCornerDblClick
430
+ * @param {Event} event `dblclick` event object.
431
+ */
432
+ 'afterOnCellCornerDblClick',
433
+ /**
434
+ * Fired after clicking on a cell or row/column header. In case the row/column header was clicked, the coordinate
435
+ * indexes are negative.
436
+ *
437
+ * For example clicking on the row header of cell (0, 0) results with `afterOnCellMouseDown` called
438
+ * with coordinates `{row: 0, col: -1}`.
439
+ *
440
+ * @event Hooks#afterOnCellMouseDown
441
+ * @param {Event} event `mousedown` event object.
442
+ * @param {CellCoords} coords Coordinates object containing the visual row and visual column indexes of the clicked cell.
443
+ * @param {HTMLTableCellElement} TD Cell's TD (or TH) element.
444
+ */
445
+ 'afterOnCellMouseDown',
446
+ /**
447
+ * Fired after clicking on a cell or row/column header. In case the row/column header was clicked, the coordinate
448
+ * indexes are negative.
449
+ *
450
+ * For example clicking on the row header of cell (0, 0) results with `afterOnCellMouseUp` called
451
+ * with coordinates `{row: 0, col: -1}`.
452
+ *
453
+ * @event Hooks#afterOnCellMouseUp
454
+ * @param {Event} event `mouseup` event object.
455
+ * @param {CellCoords} coords Coordinates object containing the visual row and visual column indexes of the clicked cell.
456
+ * @param {HTMLTableCellElement} TD Cell's TD (or TH) element.
457
+ */
458
+ 'afterOnCellMouseUp',
459
+ /**
460
+ * Fired after clicking right mouse button on a cell or row/column header.
461
+ *
462
+ * For example clicking on the row header of cell (0, 0) results with `afterOnCellContextMenu` called
463
+ * with coordinates `{row: 0, col: -1}`.
464
+ *
465
+ * @event Hooks#afterOnCellContextMenu
466
+ * @since 4.1.0
467
+ * @param {Event} event `contextmenu` event object.
468
+ * @param {CellCoords} coords Coordinates object containing the visual row and visual column indexes of the clicked cell.
469
+ * @param {HTMLTableCellElement} TD Cell's TD (or TH) element.
470
+ */
471
+ 'afterOnCellContextMenu',
472
+ /**
473
+ * Fired after hovering a cell or row/column header with the mouse cursor. In case the row/column header was
474
+ * hovered, the index is negative.
475
+ *
476
+ * For example, hovering over the row header of cell (0, 0) results with `afterOnCellMouseOver` called
477
+ * with coords `{row: 0, col: -1}`.
478
+ *
479
+ * @event Hooks#afterOnCellMouseOver
480
+ * @param {Event} event `mouseover` event object.
481
+ * @param {CellCoords} coords Hovered cell's visual coordinate object.
482
+ * @param {HTMLTableCellElement} TD Cell's TD (or TH) element.
483
+ */
484
+ 'afterOnCellMouseOver',
485
+ /**
486
+ * Fired after leaving a cell or row/column header with the mouse cursor.
487
+ *
488
+ * @event Hooks#afterOnCellMouseOut
489
+ * @param {Event} event `mouseout` event object.
490
+ * @param {CellCoords} coords Leaved cell's visual coordinate object.
491
+ * @param {HTMLTableCellElement} TD Cell's TD (or TH) element.
492
+ */
493
+ 'afterOnCellMouseOut',
494
+ /**
495
+ * Fired after one or more columns are removed.
496
+ *
497
+ * @event Hooks#afterRemoveCol
498
+ * @param {number} index Visual index of starter column.
499
+ * @param {number} amount An amount of removed columns.
500
+ * @param {number[]} physicalColumns An array of physical columns removed from the data source.
501
+ * @param {string} [source] String that identifies source of hook call
502
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
503
+ */
504
+ 'afterRemoveCol',
505
+ /**
506
+ * Fired after one or more rows are removed.
507
+ *
508
+ * @event Hooks#afterRemoveRow
509
+ * @param {number} index Visual index of starter row.
510
+ * @param {number} amount An amount of removed rows.
511
+ * @param {number[]} physicalRows An array of physical rows removed from the data source.
512
+ * @param {string} [source] String that identifies source of hook call
513
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
514
+ */
515
+ 'afterRemoveRow',
516
+ /**
517
+ * Fired before starting rendering the cell.
518
+ *
519
+ * @event Hooks#beforeRenderer
520
+ * @param {HTMLTableCellElement} TD Currently rendered cell's TD element.
521
+ * @param {number} row Visual row index.
522
+ * @param {number} column Visual column index.
523
+ * @param {string|number} prop Column property name or a column index, if datasource is an array of arrays.
524
+ * @param {*} value Value of the rendered cell.
525
+ * @param {object} cellProperties Object containing the cell's properties.
526
+ */
527
+ 'beforeRenderer',
528
+ /**
529
+ * Fired after finishing rendering the cell (after the renderer finishes).
530
+ *
531
+ * @event Hooks#afterRenderer
532
+ * @param {HTMLTableCellElement} TD Currently rendered cell's TD element.
533
+ * @param {number} row Visual row index.
534
+ * @param {number} column Visual column index.
535
+ * @param {string|number} prop Column property name or a column index, if datasource is an array of arrays.
536
+ * @param {*} value Value of the rendered cell.
537
+ * @param {object} cellProperties Object containing the cell's properties.
538
+ */
539
+ 'afterRenderer',
540
+ /**
541
+ * Fired after the horizontal scroll event.
542
+ *
543
+ * @event Hooks#afterScrollHorizontally
544
+ */
545
+ 'afterScrollHorizontally',
546
+ /**
547
+ * Fired after the vertical scroll event.
548
+ *
549
+ * @event Hooks#afterScrollVertically
550
+ */
551
+ 'afterScrollVertically',
552
+ /**
553
+ * Fired after one or more cells are selected (e.g. During mouse move).
554
+ *
555
+ * @event Hooks#afterSelection
556
+ * @param {number} row Selection start visual row index.
557
+ * @param {number} column Selection start visual column index.
558
+ * @param {number} row2 Selection end visual row index.
559
+ * @param {number} column2 Selection end visual column index.
560
+ * @param {object} preventScrolling A reference to the observable object with the `value` property.
561
+ * Property `preventScrolling.value` expects a boolean value that
562
+ * Handsontable uses to control scroll behavior after selection.
563
+ * @param {object} preventScrolling Object with `value` property where its value change will be observed.
564
+ * @param {number} selectionLayerLevel The number which indicates what selection layer is currently modified.
565
+ * @example
566
+ * ::: only-for javascript
567
+ * ```js
568
+ * new Handsontable(element, {
569
+ * afterSelection: (row, column, row2, column2, preventScrolling, selectionLayerLevel) => {
570
+ * // If set to `false` (default): when cell selection is outside the viewport,
571
+ * // Handsontable scrolls the viewport to cell selection's end corner.
572
+ * // If set to `true`: when cell selection is outside the viewport,
573
+ * // Handsontable doesn't scroll to cell selection's end corner.
574
+ * preventScrolling.value = true;
575
+ * }
576
+ * })
577
+ * ```
578
+ * :::
579
+ *
580
+ * ::: only-for react
581
+ * ```jsx
582
+ * <HotTable
583
+ * afterSelection={(row, column, row2, column2, preventScrolling, selectionLayerLevel) => {
584
+ * // If set to `false` (default): when cell selection is outside the viewport,
585
+ * // Handsontable scrolls the viewport to cell selection's end corner.
586
+ * // If set to `true`: when cell selection is outside the viewport,
587
+ * // Handsontable doesn't scroll to cell selection's end corner.
588
+ * preventScrolling.value = true;
589
+ * }}
590
+ * />
591
+ * ```
592
+ * :::
593
+ */
594
+ 'afterSelection',
595
+ /**
596
+ * Fired after one or more cells are selected.
597
+ *
598
+ * The `prop` and `prop2` arguments represent the source object property name instead of the column number.
599
+ *
600
+ * @event Hooks#afterSelectionByProp
601
+ * @param {number} row Selection start visual row index.
602
+ * @param {string} prop Selection start data source object property name.
603
+ * @param {number} row2 Selection end visual row index.
604
+ * @param {string} prop2 Selection end data source object property name.
605
+ * @param {object} preventScrolling Object with `value` property where its value change will be observed.
606
+ * @param {number} selectionLayerLevel The number which indicates what selection layer is currently modified.
607
+ * @example
608
+ * ```js
609
+ * ::: only-for javascript
610
+ * new Handsontable(element, {
611
+ * afterSelectionByProp: (row, column, row2, column2, preventScrolling, selectionLayerLevel) => {
612
+ * // setting if prevent scrolling after selection
613
+ * preventScrolling.value = true;
614
+ * }
615
+ * })
616
+ * ```
617
+ * :::
618
+ *
619
+ * ::: only-for react
620
+ * ```jsx
621
+ * <HotTable
622
+ * afterSelectionByProp={(row, column, row2, column2, preventScrolling, selectionLayerLevel) => {
623
+ * // setting if prevent scrolling after selection
624
+ * preventScrolling.value = true;
625
+ * }}
626
+ * />
627
+ * ```
628
+ * :::
629
+ */
630
+ 'afterSelectionByProp',
631
+ /**
632
+ * Fired after one or more cells are selected (e.g. On mouse up).
633
+ *
634
+ * @event Hooks#afterSelectionEnd
635
+ * @param {number} row Selection start visual row index.
636
+ * @param {number} column Selection start visual column index.
637
+ * @param {number} row2 Selection end visual row index.
638
+ * @param {number} column2 Selection end visual column index.
639
+ * @param {number} selectionLayerLevel The number which indicates what selection layer is currently modified.
640
+ */
641
+ 'afterSelectionEnd',
642
+ /**
643
+ * Fired after one or more cells are selected (e.g. On mouse up).
644
+ *
645
+ * The `prop` and `prop2` arguments represent the source object property name instead of the column number.
646
+ *
647
+ * @event Hooks#afterSelectionEndByProp
648
+ * @param {number} row Selection start visual row index.
649
+ * @param {string} prop Selection start data source object property index.
650
+ * @param {number} row2 Selection end visual row index.
651
+ * @param {string} prop2 Selection end data source object property index.
652
+ * @param {number} selectionLayerLevel The number which indicates what selection layer is currently modified.
653
+ */
654
+ 'afterSelectionEndByProp',
655
+ /**
656
+ * Fired after cell meta is changed.
657
+ *
658
+ * @event Hooks#afterSetCellMeta
659
+ * @param {number} row Visual row index.
660
+ * @param {number} column Visual column index.
661
+ * @param {string} key The updated meta key.
662
+ * @param {*} value The updated meta value.
663
+ */
664
+ 'afterSetCellMeta',
665
+ /**
666
+ * Fired after cell meta is removed.
667
+ *
668
+ * @event Hooks#afterRemoveCellMeta
669
+ * @param {number} row Visual row index.
670
+ * @param {number} column Visual column index.
671
+ * @param {string} key The removed meta key.
672
+ * @param {*} value Value which was under removed key of cell meta.
673
+ */
674
+ 'afterRemoveCellMeta',
675
+ /**
676
+ * Fired after cell data was changed.
677
+ *
678
+ * @event Hooks#afterSetDataAtCell
679
+ * @param {Array} changes An array of changes in format `[[row, column, oldValue, value], ...]`.
680
+ * @param {string} [source] String that identifies source of hook call
681
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
682
+ */
683
+ 'afterSetDataAtCell',
684
+ /**
685
+ * Fired after cell data was changed.
686
+ * Called only when `setDataAtRowProp` was executed.
687
+ *
688
+ * @event Hooks#afterSetDataAtRowProp
689
+ * @param {Array} changes An array of changes in format `[[row, prop, oldValue, value], ...]`.
690
+ * @param {string} [source] String that identifies source of hook call
691
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
692
+ */
693
+ 'afterSetDataAtRowProp',
694
+ /**
695
+ * Fired after cell source data was changed.
696
+ *
697
+ * @event Hooks#afterSetSourceDataAtCell
698
+ * @since 8.0.0
699
+ * @param {Array} changes An array of changes in format `[[row, column, oldValue, value], ...]`.
700
+ * @param {string} [source] String that identifies source of hook call.
701
+ */
702
+ 'afterSetSourceDataAtCell',
703
+ /**
704
+ * Fired after calling the `updateSettings` method.
705
+ *
706
+ * @event Hooks#afterUpdateSettings
707
+ * @param {object} newSettings New settings object.
708
+ */
709
+ 'afterUpdateSettings',
710
+ /**
711
+ * @description
712
+ * A plugin hook executed after validator function, only if validator function is defined.
713
+ * Validation result is the first parameter. This can be used to determinate if validation passed successfully or not.
714
+ *
715
+ * __Returning false from the callback will mark the cell as invalid__.
716
+ *
717
+ * @event Hooks#afterValidate
718
+ * @param {boolean} isValid `true` if valid, `false` if not.
719
+ * @param {*} value The value in question.
720
+ * @param {number} row Visual row index.
721
+ * @param {string|number} prop Property name / visual column index.
722
+ * @param {string} [source] String that identifies source of hook call
723
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
724
+ * @returns {undefined | boolean} If `false` the cell will be marked as invalid, `true` otherwise.
725
+ */
726
+ 'afterValidate',
727
+ /**
728
+ * Fired before successful change of language (when proper language code was set).
729
+ *
730
+ * @event Hooks#beforeLanguageChange
731
+ * @since 0.35.0
732
+ * @param {string} languageCode New language code.
733
+ */
734
+ 'beforeLanguageChange',
735
+ /**
736
+ * Fired after successful change of language (when proper language code was set).
737
+ *
738
+ * @event Hooks#afterLanguageChange
739
+ * @since 0.35.0
740
+ * @param {string} languageCode New language code.
741
+ */
742
+ 'afterLanguageChange',
743
+ /**
744
+ * Fired by {@link Autofill} plugin before populating the data in the autofill feature. This hook is fired when
745
+ * {@link Options#fillHandle} option is enabled.
746
+ *
747
+ * @event Hooks#beforeAutofill
748
+ * @param {Array[]} selectionData Data the autofill operation will start from.
749
+ * @param {CellRange} sourceRange The range values will be filled from.
750
+ * @param {CellRange} targetRange The range new values will be filled into.
751
+ * @param {string} direction Declares the direction of the autofill. Possible values: `up`, `down`, `left`, `right`.
752
+ *
753
+ * @returns {boolean|Array[]} If false, the operation is cancelled. If array of arrays, the returned data
754
+ * will be passed into `populateFromArray` instead of the default autofill
755
+ * algorithm's result.
756
+ */
757
+ 'beforeAutofill',
758
+ /**
759
+ * Fired by {@link Autofill} plugin after populating the data in the autofill feature. This hook is fired when
760
+ * {@link Options#fillHandle} option is enabled.
761
+ *
762
+ * @event Hooks#afterAutofill
763
+ * @since 8.0.0
764
+ * @param {Array[]} fillData The data that was used to fill the `targetRange`. If `beforeAutofill` was used
765
+ * and returned `[[]]`, this will be the same object that was returned from `beforeAutofill`.
766
+ * @param {CellRange} sourceRange The range values will be filled from.
767
+ * @param {CellRange} targetRange The range new values will be filled into.
768
+ * @param {string} direction Declares the direction of the autofill. Possible values: `up`, `down`, `left`, `right`.
769
+ */
770
+ 'afterAutofill',
771
+ /**
772
+ * Fired before aligning the cell contents.
773
+ *
774
+ * @event Hooks#beforeCellAlignment
775
+ * @param {object} stateBefore An object with class names defining the cell alignment.
776
+ * @param {CellRange[]} range An array of CellRange coordinates where the alignment will be applied.
777
+ * @param {string} type Type of the alignment - either `horizontal` or `vertical`.
778
+ * @param {string} alignmentClass String defining the alignment class added to the cell.
779
+ * Possible values:
780
+ * * `htLeft`
781
+ * * `htCenter`
782
+ * * `htRight`
783
+ * * `htJustify`
784
+ * * `htTop`
785
+ * * `htMiddle`
786
+ * * `htBottom`.
787
+ */
788
+ 'beforeCellAlignment',
789
+ /**
790
+ * Fired before one or more cells are changed.
791
+ *
792
+ * Use this hook to silently alter the user's changes before Handsontable re-renders.
793
+ *
794
+ * To ignore the user's changes, use a nullified array or return `false`.
795
+ *
796
+ * @event Hooks#beforeChange
797
+ * @param {Array[]} changes 2D array containing information about each of the edited cells `[[row, prop, oldVal, newVal], ...]`. `row` is a visual row index.
798
+ * @param {string} [source] String that identifies source of hook call
799
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
800
+ * @returns {undefined | boolean} If `false` all changes were cancelled, `true` otherwise.
801
+ * @example
802
+ * ::: only-for javascript
803
+ * ```js
804
+ * // to alter a single change, overwrite the value with `changes[i][3]`
805
+ * new Handsontable(element, {
806
+ * beforeChange: (changes, source) => {
807
+ * // [[row, prop, oldVal, newVal], ...]
808
+ * changes[0][3] = 10;
809
+ * }
810
+ * });
811
+ *
812
+ * // to ignore a single change, set `changes[i]` to `null`
813
+ * // or remove `changes[i]` from the array, by using `changes.splice(i, 1)`
814
+ * new Handsontable(element, {
815
+ * beforeChange: (changes, source) => {
816
+ * // [[row, prop, oldVal, newVal], ...]
817
+ * changes[0] = null;
818
+ * }
819
+ * });
820
+ *
821
+ * // to ignore all changes, return `false`
822
+ * // or set the array's length to 0, by using `changes.length = 0`
823
+ * new Handsontable(element, {
824
+ * beforeChange: (changes, source) => {
825
+ * // [[row, prop, oldVal, newVal], ...]
826
+ * return false;
827
+ * }
828
+ * });
829
+ * ```
830
+ * :::
831
+ *
832
+ * ::: only-for react
833
+ * ```jsx
834
+ * // to alter a single change, overwrite the desired value with `changes[i][3]`
835
+ * <HotTable
836
+ * beforeChange={(changes, source) => {
837
+ * // [[row, prop, oldVal, newVal], ...]
838
+ * changes[0][3] = 10;
839
+ * }}
840
+ * />
841
+ *
842
+ * // to ignore a single change, set `changes[i]` to `null`
843
+ * // or remove `changes[i]` from the array, by using changes.splice(i, 1).
844
+ * <HotTable
845
+ * beforeChange={(changes, source) => {
846
+ * // [[row, prop, oldVal, newVal], ...]
847
+ * changes[0] = null;
848
+ * }}
849
+ * />
850
+ *
851
+ * // to ignore all changes, return `false`
852
+ * // or set the array's length to 0 (`changes.length = 0`)
853
+ * <HotTable
854
+ * beforeChange={(changes, source) => {
855
+ * // [[row, prop, oldVal, newVal], ...]
856
+ * return false;
857
+ * }}
858
+ * />
859
+ * ```
860
+ * :::
861
+ */
862
+ 'beforeChange',
863
+ /**
864
+ * Fired right before rendering the changes.
865
+ *
866
+ * @event Hooks#beforeChangeRender
867
+ * @param {Array[]} changes Array in form of `[row, prop, oldValue, newValue]`.
868
+ * @param {string} [source] String that identifies source of hook call
869
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
870
+ */
871
+ 'beforeChangeRender',
872
+ /**
873
+ * Fired before drawing the borders.
874
+ *
875
+ * @event Hooks#beforeDrawBorders
876
+ * @param {Array} corners Array specifying the current selection borders.
877
+ * @param {string} borderClassName Specifies the border class name.
878
+ */
879
+ 'beforeDrawBorders',
880
+ /**
881
+ * Fired before getting cell settings.
882
+ *
883
+ * @event Hooks#beforeGetCellMeta
884
+ * @param {number} row Visual row index.
885
+ * @param {number} column Visual column index.
886
+ * @param {object} cellProperties Object containing the cell's properties.
887
+ */
888
+ 'beforeGetCellMeta',
889
+ /**
890
+ * Fired before cell meta is removed.
891
+ *
892
+ * @event Hooks#beforeRemoveCellMeta
893
+ * @param {number} row Visual row index.
894
+ * @param {number} column Visual column index.
895
+ * @param {string} key The removed meta key.
896
+ * @param {*} value Value which is under removed key of cell meta.
897
+ * @returns {*|boolean} If false is returned the action is canceled.
898
+ */
899
+ 'beforeRemoveCellMeta',
900
+ /**
901
+ * Fired before the Handsontable instance is initiated.
902
+ *
903
+ * @event Hooks#beforeInit
904
+ */
905
+ 'beforeInit',
906
+ /**
907
+ * Fired before the Walkontable instance is initiated.
908
+ *
909
+ * @event Hooks#beforeInitWalkontable
910
+ * @param {object} walkontableConfig Walkontable configuration object.
911
+ */
912
+ 'beforeInitWalkontable',
913
+ /**
914
+ * Fired before Handsontable's [`data`](@/api/options.md#data)
915
+ * gets modified by the [`loadData()`](@/api/core.md#loaddata) method
916
+ * or the [`updateSettings()`](@/api/core.md#updatesettings) method.
917
+ *
918
+ * Read more:
919
+ * - [Binding to data](@/guides/getting-started/binding-to-data.md)
920
+ * - [Saving data](@/guides/getting-started/saving-data.md)
921
+ *
922
+ * @event Hooks#beforeLoadData
923
+ * @since 8.0.0
924
+ * @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data.md#array-of-objects), that contains Handsontable's data
925
+ * @param {boolean} initialLoad A flag that indicates whether the data was loaded at Handsontable's initialization (`true`) or later (`false`)
926
+ * @param {string} source The source of the call
927
+ * @returns {Array} The returned array will be used as Handsontable's new dataset.
928
+ */
929
+ 'beforeLoadData',
930
+ /**
931
+ * Fired before the [`updateData()`](@/api/core.md#updatedata) method
932
+ * modifies Handsontable's [`data`](@/api/options.md#data).
933
+ *
934
+ * Read more:
935
+ * - [Binding to data](@/guides/getting-started/binding-to-data.md)
936
+ * - [Saving data](@/guides/getting-started/saving-data.md)
937
+ *
938
+ * @event Hooks#beforeUpdateData
939
+ * @since 11.1.0
940
+ * @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data.md#array-of-objects), that contains Handsontable's data
941
+ * @param {boolean} initialLoad A flag that indicates whether the data was loaded at Handsontable's initialization (`true`) or later (`false`)
942
+ * @param {string} source The source of the call
943
+ * @returns {Array} The returned array will be used as Handsontable's new dataset.
944
+ */
945
+ 'beforeUpdateData',
946
+ /**
947
+ * Hook fired before keydown event is handled. It can be used to stop default key bindings.
948
+ *
949
+ * __Note__: To prevent default behavior you need to call `false` in your `beforeKeyDown` handler.
950
+ *
951
+ * @event Hooks#beforeKeyDown
952
+ * @param {Event} event Original DOM event.
953
+ */
954
+ 'beforeKeyDown',
955
+ /**
956
+ * Fired after the user clicked a cell, but before all the calculations related with it.
957
+ *
958
+ * @event Hooks#beforeOnCellMouseDown
959
+ * @param {Event} event The `mousedown` event object.
960
+ * @param {CellCoords} coords Cell coords object containing the visual coordinates of the clicked cell.
961
+ * @param {HTMLTableCellElement} TD TD element.
962
+ * @param {object} controller An object with properties `row`, `column` and `cell`. Each property contains
963
+ * a boolean value that allows or disallows changing the selection for that particular area.
964
+ */
965
+ 'beforeOnCellMouseDown',
966
+ /**
967
+ * Fired after the user clicked a cell.
968
+ *
969
+ * @event Hooks#beforeOnCellMouseUp
970
+ * @param {Event} event The `mouseup` event object.
971
+ * @param {CellCoords} coords Cell coords object containing the visual coordinates of the clicked cell.
972
+ * @param {HTMLTableCellElement} TD TD element.
973
+ */
974
+ 'beforeOnCellMouseUp',
975
+ /**
976
+ * Fired after the user clicked a cell, but before all the calculations related with it.
977
+ *
978
+ * @event Hooks#beforeOnCellContextMenu
979
+ * @since 4.1.0
980
+ * @param {Event} event The `contextmenu` event object.
981
+ * @param {CellCoords} coords Cell coords object containing the visual coordinates of the clicked cell.
982
+ * @param {HTMLTableCellElement} TD TD element.
983
+ */
984
+ 'beforeOnCellContextMenu',
985
+ /**
986
+ * Fired after the user moved cursor over a cell, but before all the calculations related with it.
987
+ *
988
+ * @event Hooks#beforeOnCellMouseOver
989
+ * @param {Event} event The `mouseover` event object.
990
+ * @param {CellCoords} coords CellCoords object containing the visual coordinates of the clicked cell.
991
+ * @param {HTMLTableCellElement} TD TD element.
992
+ * @param {object} controller An object with properties `row`, `column` and `cell`. Each property contains
993
+ * a boolean value that allows or disallows changing the selection for that particular area.
994
+ */
995
+ 'beforeOnCellMouseOver',
996
+ /**
997
+ * Fired after the user moved cursor out from a cell, but before all the calculations related with it.
998
+ *
999
+ * @event Hooks#beforeOnCellMouseOut
1000
+ * @param {Event} event The `mouseout` event object.
1001
+ * @param {CellCoords} coords CellCoords object containing the visual coordinates of the leaved cell.
1002
+ * @param {HTMLTableCellElement} TD TD element.
1003
+ */
1004
+ 'beforeOnCellMouseOut',
1005
+ /**
1006
+ * Fired before one or more columns are about to be removed.
1007
+ *
1008
+ * @event Hooks#beforeRemoveCol
1009
+ * @param {number} index Visual index of starter column.
1010
+ * @param {number} amount Amount of columns to be removed.
1011
+ * @param {number[]} physicalColumns An array of physical columns removed from the data source.
1012
+ * @param {string} [source] String that identifies source of hook call
1013
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
1014
+ * @returns {*|boolean} If false is returned the action is canceled.
1015
+ */
1016
+ 'beforeRemoveCol',
1017
+ /**
1018
+ * Fired when one or more rows are about to be removed.
1019
+ *
1020
+ * @event Hooks#beforeRemoveRow
1021
+ * @param {number} index Visual index of starter row.
1022
+ * @param {number} amount Amount of rows to be removed.
1023
+ * @param {number[]} physicalRows An array of physical rows removed from the data source.
1024
+ * @param {string} [source] String that identifies source of hook call
1025
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
1026
+ * @returns {*|boolean} If false is returned the action is canceled.
1027
+ */
1028
+ 'beforeRemoveRow',
1029
+ /**
1030
+ * Fired before Handsontable's view-rendering engine is rendered.
1031
+ *
1032
+ * __Note:__ In Handsontable 9.x and earlier, the `beforeViewRender` hook was named `beforeRender`.
1033
+ *
1034
+ * @event Hooks#beforeViewRender
1035
+ * @since 10.0.0
1036
+ * @param {boolean} isForced If set to `true`, the rendering gets triggered by a change of settings, a change of
1037
+ * data, or a logic that needs a full Handsontable render cycle.
1038
+ * If set to `false`, the rendering gets triggered by scrolling or moving the selection.
1039
+ * @param {object} skipRender Object with `skipRender` property, if it is set to `true ` the next rendering cycle will be skipped.
1040
+ */
1041
+ 'beforeViewRender',
1042
+ /**
1043
+ * Fired after Handsontable's view-rendering engine is rendered,
1044
+ * but before redrawing the selection borders and before scroll syncing.
1045
+ *
1046
+ * __Note:__ In Handsontable 9.x and earlier, the `afterViewRender` hook was named `afterRender`.
1047
+ *
1048
+ * @event Hooks#afterViewRender
1049
+ * @since 10.0.0
1050
+ * @param {boolean} isForced If set to `true`, the rendering gets triggered by a change of settings, a change of
1051
+ * data, or a logic that needs a full Handsontable render cycle.
1052
+ * If set to `false`, the rendering gets triggered by scrolling or moving the selection.
1053
+ */
1054
+ 'afterViewRender',
1055
+ /**
1056
+ * Fired before Handsontable's view-rendering engine updates the view.
1057
+ *
1058
+ * The `beforeRender` event is fired right after the Handsontable
1059
+ * business logic is executed and right before the rendering engine starts calling
1060
+ * the Core logic, renderers, cell meta objects etc. to update the view.
1061
+ *
1062
+ * @event Hooks#beforeRender
1063
+ * @param {boolean} isForced If set to `true`, the rendering gets triggered by a change of settings, a change of
1064
+ * data, or a logic that needs a full Handsontable render cycle.
1065
+ * If set to `false`, the rendering gets triggered by scrolling or moving the selection.
1066
+ */
1067
+ 'beforeRender',
1068
+ /**
1069
+ * Fired after Handsontable's view-rendering engine updates the view.
1070
+ *
1071
+ * @event Hooks#afterRender
1072
+ * @param {boolean} isForced If set to `true`, the rendering gets triggered by a change of settings, a change of
1073
+ * data, or a logic that needs a full Handsontable render cycle.
1074
+ * If set to `false`, the rendering gets triggered by scrolling or moving the selection.
1075
+ */
1076
+ 'afterRender',
1077
+ /**
1078
+ * Fired before cell meta is changed.
1079
+ *
1080
+ * @event Hooks#beforeSetCellMeta
1081
+ * @since 8.0.0
1082
+ * @param {number} row Visual row index.
1083
+ * @param {number} column Visual column index.
1084
+ * @param {string} key The updated meta key.
1085
+ * @param {*} value The updated meta value.
1086
+ * @returns {boolean|undefined} If false is returned the action is canceled.
1087
+ */
1088
+ 'beforeSetCellMeta',
1089
+ /**
1090
+ * Fired before setting range is started but not finished yet.
1091
+ *
1092
+ * @event Hooks#beforeSetRangeStartOnly
1093
+ * @param {CellCoords} coords CellCoords instance.
1094
+ */
1095
+ 'beforeSetRangeStartOnly',
1096
+ /**
1097
+ * Fired before setting range is started.
1098
+ *
1099
+ * @event Hooks#beforeSetRangeStart
1100
+ * @param {CellCoords} coords CellCoords instance.
1101
+ */
1102
+ 'beforeSetRangeStart',
1103
+ /**
1104
+ * Fired before setting range is ended.
1105
+ *
1106
+ * @event Hooks#beforeSetRangeEnd
1107
+ * @param {CellCoords} coords CellCoords instance.
1108
+ */
1109
+ 'beforeSetRangeEnd',
1110
+ /**
1111
+ * Fired before the logic of handling a touch scroll, when user started scrolling on a touch-enabled device.
1112
+ *
1113
+ * @event Hooks#beforeTouchScroll
1114
+ */
1115
+ 'beforeTouchScroll',
1116
+ /**
1117
+ * Fired before cell validation, only if validator function is defined. This can be used to manipulate the value
1118
+ * of changed cell before it is applied to the validator function.
1119
+ *
1120
+ * __Note:__ this will not affect values of changes. This will change value *ONLY* for validation.
1121
+ *
1122
+ * @event Hooks#beforeValidate
1123
+ * @param {*} value Value of the cell.
1124
+ * @param {number} row Visual row index.
1125
+ * @param {string|number} prop Property name / column index.
1126
+ * @param {string} [source] String that identifies source of hook call
1127
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
1128
+ */
1129
+ 'beforeValidate',
1130
+ /**
1131
+ * Fired before cell value is rendered into the DOM (through renderer function). This can be used to manipulate the
1132
+ * value which is passed to the renderer without modifying the renderer itself.
1133
+ *
1134
+ * @event Hooks#beforeValueRender
1135
+ * @param {*} value Cell value to render.
1136
+ * @param {object} cellProperties An object containing the cell properties.
1137
+ */
1138
+ 'beforeValueRender',
1139
+ /**
1140
+ * Fired after Handsontable instance is constructed (using `new` operator).
1141
+ *
1142
+ * @event Hooks#construct
1143
+ */
1144
+ 'construct',
1145
+ /**
1146
+ * Fired after Handsontable instance is initiated but before table is rendered.
1147
+ *
1148
+ * @event Hooks#init
1149
+ */
1150
+ 'init',
1151
+ /**
1152
+ * Fired when a column header index is about to be modified by a callback function.
1153
+ *
1154
+ * @event Hooks#modifyColHeader
1155
+ * @param {number} column Visual column header index.
1156
+ */
1157
+ 'modifyColHeader',
1158
+ /**
1159
+ * Fired when a column width is about to be modified by a callback function.
1160
+ *
1161
+ * @event Hooks#modifyColWidth
1162
+ * @param {number} width Current column width.
1163
+ * @param {number} column Visual column index.
1164
+ */
1165
+ 'modifyColWidth',
1166
+ /**
1167
+ * Fired when a row header index is about to be modified by a callback function.
1168
+ *
1169
+ * @event Hooks#modifyRowHeader
1170
+ * @param {number} row Visual row header index.
1171
+ */
1172
+ 'modifyRowHeader',
1173
+ /**
1174
+ * Fired when a row height is about to be modified by a callback function.
1175
+ *
1176
+ * @event Hooks#modifyRowHeight
1177
+ * @param {number} height Row height.
1178
+ * @param {number} row Visual row index.
1179
+ */
1180
+ 'modifyRowHeight',
1181
+ /**
1182
+ * Fired when a data was retrieved or modified.
1183
+ *
1184
+ * @event Hooks#modifyData
1185
+ * @param {number} row Physical row height.
1186
+ * @param {number} column Physical column index.
1187
+ * @param {object} valueHolder Object which contains original value which can be modified by overwriting `.value` property.
1188
+ * @param {string} ioMode String which indicates for what operation hook is fired (`get` or `set`).
1189
+ */
1190
+ 'modifyData',
1191
+ /**
1192
+ * Fired when a data was retrieved or modified from the source data set.
1193
+ *
1194
+ * @event Hooks#modifySourceData
1195
+ * @since 8.0.0
1196
+ * @param {number} row Physical row index.
1197
+ * @param {number} column Physical column index.
1198
+ * @param {object} valueHolder Object which contains original value which can be modified by overwriting `.value` property.
1199
+ * @param {string} ioMode String which indicates for what operation hook is fired (`get` or `set`).
1200
+ */
1201
+ 'modifySourceData',
1202
+ /**
1203
+ * Fired when a data was retrieved or modified.
1204
+ *
1205
+ * @event Hooks#modifyRowData
1206
+ * @param {number} row Physical row index.
1207
+ */
1208
+ 'modifyRowData',
1209
+ /**
1210
+ * Used to modify the cell coordinates when using the `getCell` method, opening editor, getting value from the editor
1211
+ * and saving values from the closed editor.
1212
+ *
1213
+ * @event Hooks#modifyGetCellCoords
1214
+ * @since 0.36.0
1215
+ * @param {number} row Visual row index.
1216
+ * @param {number} column Visual column index.
1217
+ * @param {boolean} topmost If set to `true`, it returns the TD element from the topmost overlay. For example,
1218
+ * if the wanted cell is in the range of fixed rows, it will return a TD element
1219
+ * from the `top` overlay.
1220
+ * @returns {undefined|number[]}
1221
+ */
1222
+ 'modifyGetCellCoords',
1223
+ /**
1224
+ * Allows modify the visual row index that is used to retrieve the row header element (TH) before it's
1225
+ * highlighted (proper CSS class names are added). Modifying the visual row index allows building a custom
1226
+ * implementation of the nested headers feature or other features that require highlighting other DOM
1227
+ * elements than that the rendering engine, by default, would have highlighted.
1228
+ *
1229
+ * @event Hooks#beforeHighlightingRowHeader
1230
+ * @since 8.4.0
1231
+ * @param {number} row Visual row index.
1232
+ * @param {number} headerLevel Column header level (0 = most distant to the table).
1233
+ * @param {object} highlightMeta An object that contains additional information about processed selection.
1234
+ * @returns {number|undefined}
1235
+ */
1236
+ 'beforeHighlightingRowHeader',
1237
+ /**
1238
+ * Allows modify the visual column index that is used to retrieve the column header element (TH) before it's
1239
+ * highlighted (proper CSS class names are added). Modifying the visual column index allows building a custom
1240
+ * implementation of the nested headers feature or other features that require highlighting other DOM
1241
+ * elements than that the rendering engine, by default, would have highlighted.
1242
+ *
1243
+ * @event Hooks#beforeHighlightingColumnHeader
1244
+ * @since 8.4.0
1245
+ * @param {number} column Visual column index.
1246
+ * @param {number} headerLevel Row header level (0 = most distant to the table).
1247
+ * @param {object} highlightMeta An object that contains additional information about processed selection.
1248
+ * @returns {number|undefined}
1249
+ */
1250
+ 'beforeHighlightingColumnHeader',
1251
+ /**
1252
+ * Fired by {@link PersistentState} plugin, after loading value, saved under given key, from browser local storage.
1253
+ *
1254
+ * The `persistentStateLoad` hook is fired even when the {@link Options#persistentState} option is disabled.
1255
+ *
1256
+ * @event Hooks#persistentStateLoad
1257
+ * @param {string} key Key.
1258
+ * @param {object} valuePlaceholder Object containing the loaded value under `valuePlaceholder.value` (if no value have been saved, `value` key will be undefined).
1259
+ */
1260
+ 'persistentStateLoad',
1261
+ /**
1262
+ * Fired by {@link PersistentState} plugin after resetting data from local storage. If no key is given, all values associated with table will be cleared.
1263
+ * This hook is fired when {@link Options#persistentState} option is enabled.
1264
+ *
1265
+ * @event Hooks#persistentStateReset
1266
+ * @param {string} [key] Key.
1267
+ */
1268
+ 'persistentStateReset',
1269
+ /**
1270
+ * Fired by {@link PersistentState} plugin, after saving value under given key in browser local storage.
1271
+ *
1272
+ * The `persistentStateSave` hook is fired even when the {@link Options#persistentState} option is disabled.
1273
+ *
1274
+ * @event Hooks#persistentStateSave
1275
+ * @param {string} key Key.
1276
+ * @param {Mixed} value Value to save.
1277
+ */
1278
+ 'persistentStateSave',
1279
+ /**
1280
+ * Fired by {@link ColumnSorting} and {@link MultiColumnSorting} plugins before sorting the column. If you return `false` value inside callback for hook, then sorting
1281
+ * will be not applied by the Handsontable (useful for server-side sorting).
1282
+ *
1283
+ * This hook is fired when {@link Options#columnSorting} or {@link Options#multiColumnSorting} option is enabled.
1284
+ *
1285
+ * @event Hooks#beforeColumnSort
1286
+ * @param {Array} currentSortConfig Current sort configuration (for all sorted columns).
1287
+ * @param {Array} destinationSortConfigs Destination sort configuration (for all sorted columns).
1288
+ * @returns {boolean | undefined} If `false` the column will not be sorted, `true` otherwise.
1289
+ */
1290
+ 'beforeColumnSort',
1291
+ /**
1292
+ * Fired by {@link ColumnSorting} and {@link MultiColumnSorting} plugins after sorting the column. This hook is fired when {@link Options#columnSorting}
1293
+ * or {@link Options#multiColumnSorting} option is enabled.
1294
+ *
1295
+ * @event Hooks#afterColumnSort
1296
+ * @param {Array} currentSortConfig Current sort configuration (for all sorted columns).
1297
+ * @param {Array} destinationSortConfigs Destination sort configuration (for all sorted columns).
1298
+ */
1299
+ 'afterColumnSort',
1300
+ /**
1301
+ * Fired by {@link Autofill} plugin after setting range of autofill. This hook is fired when {@link Options#fillHandle}
1302
+ * option is enabled.
1303
+ *
1304
+ * @event Hooks#modifyAutofillRange
1305
+ * @param {Array} startArea Array of visual coordinates of the starting point for the drag-down operation (`[startRow, startColumn, endRow, endColumn]`).
1306
+ * @param {Array} entireArea Array of visual coordinates of the entire area of the drag-down operation (`[startRow, startColumn, endRow, endColumn]`).
1307
+ */
1308
+ 'modifyAutofillRange',
1309
+ /**
1310
+ * Fired to allow modifying the copyable range with a callback function.
1311
+ *
1312
+ * @event Hooks#modifyCopyableRange
1313
+ * @param {Array[]} copyableRanges Array of objects defining copyable cells.
1314
+ */
1315
+ 'modifyCopyableRange',
1316
+ /**
1317
+ * Fired by {@link CopyPaste} plugin before copying the values into clipboard and before clearing values of
1318
+ * the selected cells. This hook is fired when {@link Options#copyPaste} option is enabled.
1319
+ *
1320
+ * @event Hooks#beforeCut
1321
+ * @param {Array[]} data An array of arrays which contains data to cut.
1322
+ * @param {object[]} coords An array of objects with ranges of the visual indexes (`startRow`, `startCol`, `endRow`, `endCol`)
1323
+ * which will be cut out.
1324
+ * @returns {*} If returns `false` then operation of the cutting out is canceled.
1325
+ * @example
1326
+ * ::: only-for javascript
1327
+ * ```js
1328
+ * // To disregard a single row, remove it from the array using data.splice(i, 1).
1329
+ * new Handsontable(element, {
1330
+ * beforeCut: function(data, coords) {
1331
+ * // data -> [[1, 2, 3], [4, 5, 6]]
1332
+ * data.splice(0, 1);
1333
+ * // data -> [[4, 5, 6]]
1334
+ * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
1335
+ * }
1336
+ * });
1337
+ * // To cancel a cutting action, just return `false`.
1338
+ * new Handsontable(element, {
1339
+ * beforeCut: function(data, coords) {
1340
+ * return false;
1341
+ * }
1342
+ * });
1343
+ * ```
1344
+ * :::
1345
+ *
1346
+ * ::: only-for react
1347
+ * ```jsx
1348
+ * // To disregard a single row, remove it from the array using data.splice(i, 1).
1349
+ * <HotTable
1350
+ * beforeCut={(data, coords) => {
1351
+ * // data -> [[1, 2, 3], [4, 5, 6]]
1352
+ * data.splice(0, 1);
1353
+ * // data -> [[4, 5, 6]]
1354
+ * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
1355
+ * }}
1356
+ * />
1357
+ * // To cancel a cutting action, just return `false`.
1358
+ * <HotTable
1359
+ * beforeCut={(data, coords) => {
1360
+ * return false;
1361
+ * }}
1362
+ * />
1363
+ * ```
1364
+ * :::
1365
+ */
1366
+ 'beforeCut',
1367
+ /**
1368
+ * Fired by {@link CopyPaste} plugin after data was cut out from the table. This hook is fired when
1369
+ * {@link Options#copyPaste} option is enabled.
1370
+ *
1371
+ * @event Hooks#afterCut
1372
+ * @param {Array[]} data An array of arrays which contains the cutted out data.
1373
+ * @param {object[]} coords An array of objects with ranges of the visual indexes (`startRow`, `startCol`, `endRow`, `endCol`)
1374
+ * which was cut out.
1375
+ */
1376
+ 'afterCut',
1377
+ /**
1378
+ * Fired before values are copied into clipboard.
1379
+ *
1380
+ * @event Hooks#beforeCopy
1381
+ * @param {Array[]} data An array of arrays which contains data to copied.
1382
+ * @param {object[]} coords An array of objects with ranges of the visual indexes (`startRow`, `startCol`, `endRow`, `endCol`)
1383
+ * which will copied.
1384
+ * @returns {*} If returns `false` then copying is canceled.
1385
+ *
1386
+ * @example
1387
+ * ::: only-for javascript
1388
+ * ```js
1389
+ * // To disregard a single row, remove it from array using data.splice(i, 1).
1390
+ * ...
1391
+ * new Handsontable(document.getElementById('example'), {
1392
+ * beforeCopy: (data, coords) => {
1393
+ * // data -> [[1, 2, 3], [4, 5, 6]]
1394
+ * data.splice(0, 1);
1395
+ * // data -> [[4, 5, 6]]
1396
+ * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
1397
+ * }
1398
+ * });
1399
+ * ...
1400
+ *
1401
+ * // To cancel copying, return false from the callback.
1402
+ * ...
1403
+ * new Handsontable(document.getElementById('example'), {
1404
+ * beforeCopy: (data, coords) => {
1405
+ * return false;
1406
+ * }
1407
+ * });
1408
+ * ...
1409
+ * ```
1410
+ * :::
1411
+ *
1412
+ * ::: only-for react
1413
+ * ```jsx
1414
+ * // To disregard a single row, remove it from array using data.splice(i, 1).
1415
+ * ...
1416
+ * <HotTable
1417
+ * beforeCopy={(data, coords) => {
1418
+ * // data -> [[1, 2, 3], [4, 5, 6]]
1419
+ * data.splice(0, 1);
1420
+ * // data -> [[4, 5, 6]]
1421
+ * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
1422
+ * }}
1423
+ * />
1424
+ * ...
1425
+ *
1426
+ * // To cancel copying, return false from the callback.
1427
+ * ...
1428
+ * <HotTable
1429
+ * beforeCopy={(data, coords) => {
1430
+ * return false;
1431
+ * }}
1432
+ * />
1433
+ * ...
1434
+ * ```
1435
+ * :::
1436
+ */
1437
+ 'beforeCopy',
1438
+ /**
1439
+ * Fired by {@link CopyPaste} plugin after data are pasted into table. This hook is fired when {@link Options#copyPaste}
1440
+ * option is enabled.
1441
+ *
1442
+ * @event Hooks#afterCopy
1443
+ * @param {Array[]} data An array of arrays which contains the copied data.
1444
+ * @param {object[]} coords An array of objects with ranges of the visual indexes (`startRow`, `startCol`, `endRow`, `endCol`)
1445
+ * which was copied.
1446
+ */
1447
+ 'afterCopy',
1448
+ /**
1449
+ * Fired by {@link CopyPaste} plugin before values are pasted into table. This hook is fired when
1450
+ * {@link Options#copyPaste} option is enabled.
1451
+ *
1452
+ * @event Hooks#beforePaste
1453
+ * @param {Array[]} data An array of arrays which contains data to paste.
1454
+ * @param {object[]} coords An array of objects with ranges of the visual indexes (`startRow`, `startCol`, `endRow`, `endCol`)
1455
+ * that correspond to the previously selected area.
1456
+ * @returns {*} If returns `false` then pasting is canceled.
1457
+ * @example
1458
+ * ```js
1459
+ * ::: only-for javascript
1460
+ * // To disregard a single row, remove it from array using data.splice(i, 1).
1461
+ * new Handsontable(example, {
1462
+ * beforePaste: (data, coords) => {
1463
+ * // data -> [[1, 2, 3], [4, 5, 6]]
1464
+ * data.splice(0, 1);
1465
+ * // data -> [[4, 5, 6]]
1466
+ * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
1467
+ * }
1468
+ * });
1469
+ * // To cancel pasting, return false from the callback.
1470
+ * new Handsontable(example, {
1471
+ * beforePaste: (data, coords) => {
1472
+ * return false;
1473
+ * }
1474
+ * });
1475
+ * ```
1476
+ * :::
1477
+ *
1478
+ * ::: only-for react
1479
+ * ```jsx
1480
+ * // To disregard a single row, remove it from array using data.splice(i, 1).
1481
+ * <HotTable
1482
+ * beforePaste={(data, coords) => {
1483
+ * // data -> [[1, 2, 3], [4, 5, 6]]
1484
+ * data.splice(0, 1);
1485
+ * // data -> [[4, 5, 6]]
1486
+ * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
1487
+ * }}
1488
+ * />
1489
+ * // To cancel pasting, return false from the callback.
1490
+ * <HotTable
1491
+ * beforePaste={(data, coords) => {
1492
+ * return false;
1493
+ * }}
1494
+ * />
1495
+ * ```
1496
+ * :::
1497
+ */
1498
+ 'beforePaste',
1499
+ /**
1500
+ * Fired by {@link CopyPaste} plugin after values are pasted into table. This hook is fired when
1501
+ * {@link Options#copyPaste} option is enabled.
1502
+ *
1503
+ * @event Hooks#afterPaste
1504
+ * @param {Array[]} data An array of arrays which contains the pasted data.
1505
+ * @param {object[]} coords An array of objects with ranges of the visual indexes (`startRow`, `startCol`, `endRow`, `endCol`)
1506
+ * that correspond to the previously selected area.
1507
+ */
1508
+ 'afterPaste',
1509
+ /**
1510
+ * Fired by the {@link ManualColumnFreeze} plugin, before freezing a column.
1511
+ *
1512
+ * @event Hooks#beforeColumnFreeze
1513
+ * @since 12.1.0
1514
+ * @param {number} column The visual index of the column that is going to freeze.
1515
+ * @param {boolean} freezePerformed If `true`: the column is going to freeze. If `false`: the column is not going to freeze (which might happen if the column is already frozen).
1516
+ * @returns {boolean|undefined} If `false`: the column is not going to freeze, and the `afterColumnFreeze` hook won't fire.
1517
+ */
1518
+ 'beforeColumnFreeze',
1519
+ /**
1520
+ * Fired by the {@link ManualColumnFreeze} plugin, right after freezing a column.
1521
+ *
1522
+ * @event Hooks#afterColumnFreeze
1523
+ * @since 12.1.0
1524
+ * @param {number} column The visual index of the frozen column.
1525
+ * @param {boolean} freezePerformed If `true`: the column got successfully frozen. If `false`: the column didn't get frozen.
1526
+ */
1527
+ 'afterColumnFreeze',
1528
+ /**
1529
+ * Fired by {@link ManualColumnMove} plugin before change order of the visual indexes. This hook is fired when
1530
+ * {@link Options#manualColumnMove} option is enabled.
1531
+ *
1532
+ * @event Hooks#beforeColumnMove
1533
+ * @param {Array} movedColumns Array of visual column indexes to be moved.
1534
+ * @param {number} finalIndex Visual column index, being a start index for the moved columns.
1535
+ * Points to where the elements will be placed after the moving action.
1536
+ * To check visualization of final index please take a look at
1537
+ * [documentation](@/guides/columns/column-moving.md).
1538
+ * @param {number|undefined} dropIndex Visual column index, being a drop index for the moved columns.
1539
+ * Points to where we are going to drop the moved elements. To check
1540
+ * visualization of drop index please take a look at
1541
+ * [documentation](@/guides/columns/column-moving.md).
1542
+ * It's `undefined` when `dragColumns` function wasn't called.
1543
+ * @param {boolean} movePossible Indicates if it's possible to move rows to the desired position.
1544
+ * @returns {undefined | boolean} If `false` the column will not be moved, `true` otherwise.
1545
+ */
1546
+ 'beforeColumnMove',
1547
+ /**
1548
+ * Fired by {@link ManualColumnMove} plugin after changing order of the visual indexes.
1549
+ * This hook is fired when {@link Options#manualColumnMove} option is enabled.
1550
+ *
1551
+ * @event Hooks#afterColumnMove
1552
+ * @param {Array} movedColumns Array of visual column indexes to be moved.
1553
+ * @param {number} finalIndex Visual column index, being a start index for the moved columns.
1554
+ * Points to where the elements will be placed after the moving action.
1555
+ * To check visualization of final index please take a look at
1556
+ * [documentation](@/guides/columns/column-moving.md).
1557
+ * @param {number|undefined} dropIndex Visual column index, being a drop index for the moved columns.
1558
+ * Points to where we are going to drop the moved elements.
1559
+ * To check visualization of drop index please take a look at
1560
+ * [documentation](@/guides/columns/column-moving.md).
1561
+ * It's `undefined` when `dragColumns` function wasn't called.
1562
+ * @param {boolean} movePossible Indicates if it was possible to move columns to the desired position.
1563
+ * @param {boolean} orderChanged Indicates if order of columns was changed by move.
1564
+ */
1565
+ 'afterColumnMove',
1566
+ /**
1567
+ * Fired by the {@link ManualColumnFreeze} plugin, before unfreezing a column.
1568
+ *
1569
+ * @event Hooks#beforeColumnUnfreeze
1570
+ * @since 12.1.0
1571
+ * @param {number} column The visual index of the column that is going to unfreeze.
1572
+ * @param {boolean} unfreezePerformed If `true`: the column is going to unfreeze. If `false`: the column is not going to unfreeze (which might happen if the column is already unfrozen).
1573
+ * @returns {boolean|undefined} If `false`: the column is not going to unfreeze, and the `afterColumnUnfreeze` hook won't fire.
1574
+ */
1575
+ 'beforeColumnUnfreeze',
1576
+ /**
1577
+ * Fired by the {@link ManualColumnFreeze} plugin, right after unfreezing a column.
1578
+ *
1579
+ * @event Hooks#afterColumnUnfreeze
1580
+ * @since 12.1.0
1581
+ * @param {number} column The visual index of the unfrozen column.
1582
+ * @param {boolean} unfreezePerformed If `true`: the column got successfully unfrozen. If `false`: the column didn't get unfrozen.
1583
+ */
1584
+ 'afterColumnUnfreeze',
1585
+ /**
1586
+ * Fired by {@link ManualRowMove} plugin before changing the order of the visual indexes. This hook is fired when
1587
+ * {@link Options#manualRowMove} option is enabled.
1588
+ *
1589
+ * @event Hooks#beforeRowMove
1590
+ * @param {Array} movedRows Array of visual row indexes to be moved.
1591
+ * @param {number} finalIndex Visual row index, being a start index for the moved rows.
1592
+ * Points to where the elements will be placed after the moving action.
1593
+ * To check visualization of final index please take a look at
1594
+ * [documentation](@/guides/rows/row-moving.md).
1595
+ * @param {number|undefined} dropIndex Visual row index, being a drop index for the moved rows.
1596
+ * Points to where we are going to drop the moved elements.
1597
+ * To check visualization of drop index please take a look at
1598
+ * [documentation](@/guides/rows/row-moving.md).
1599
+ * It's `undefined` when `dragRows` function wasn't called.
1600
+ * @param {boolean} movePossible Indicates if it's possible to move rows to the desired position.
1601
+ * @returns {*|boolean} If false is returned the action is canceled.
1602
+ */
1603
+ 'beforeRowMove',
1604
+ /**
1605
+ * Fired by {@link ManualRowMove} plugin after changing the order of the visual indexes.
1606
+ * This hook is fired when {@link Options#manualRowMove} option is enabled.
1607
+ *
1608
+ * @event Hooks#afterRowMove
1609
+ * @param {Array} movedRows Array of visual row indexes to be moved.
1610
+ * @param {number} finalIndex Visual row index, being a start index for the moved rows.
1611
+ * Points to where the elements will be placed after the moving action.
1612
+ * To check visualization of final index please take a look at
1613
+ * [documentation](@/guides/rows/row-moving.md).
1614
+ * @param {number|undefined} dropIndex Visual row index, being a drop index for the moved rows.
1615
+ * Points to where we are going to drop the moved elements.
1616
+ * To check visualization of drop index please take a look at
1617
+ * [documentation](@/guides/rows/row-moving.md).
1618
+ * It's `undefined` when `dragRows` function wasn't called.
1619
+ * @param {boolean} movePossible Indicates if it was possible to move rows to the desired position.
1620
+ * @param {boolean} orderChanged Indicates if order of rows was changed by move.
1621
+ */
1622
+ 'afterRowMove',
1623
+ /**
1624
+ * Fired by {@link ManualColumnResize} plugin before rendering the table with modified column sizes. This hook is
1625
+ * fired when {@link Options#manualColumnResize} option is enabled.
1626
+ *
1627
+ * @event Hooks#beforeColumnResize
1628
+ * @param {number} newSize Calculated new column width.
1629
+ * @param {number} column Visual index of the resized column.
1630
+ * @param {boolean} isDoubleClick Flag that determines whether there was a double-click.
1631
+ * @returns {number} Returns a new column size or `undefined`, if column size should be calculated automatically.
1632
+ */
1633
+ 'beforeColumnResize',
1634
+ /**
1635
+ * Fired by {@link ManualColumnResize} plugin after rendering the table with modified column sizes. This hook is
1636
+ * fired when {@link Options#manualColumnResize} option is enabled.
1637
+ *
1638
+ * @event Hooks#afterColumnResize
1639
+ * @param {number} newSize Calculated new column width.
1640
+ * @param {number} column Visual index of the resized column.
1641
+ * @param {boolean} isDoubleClick Flag that determines whether there was a double-click.
1642
+ */
1643
+ 'afterColumnResize',
1644
+ /**
1645
+ * Fired by {@link ManualRowResize} plugin before rendering the table with modified row sizes. This hook is
1646
+ * fired when {@link Options#manualRowResize} option is enabled.
1647
+ *
1648
+ * @event Hooks#beforeRowResize
1649
+ * @param {number} newSize Calculated new row height.
1650
+ * @param {number} row Visual index of the resized row.
1651
+ * @param {boolean} isDoubleClick Flag that determines whether there was a double-click.
1652
+ * @returns {number|undefined} Returns the new row size or `undefined` if row size should be calculated automatically.
1653
+ */
1654
+ 'beforeRowResize',
1655
+ /**
1656
+ * Fired by {@link ManualRowResize} plugin after rendering the table with modified row sizes. This hook is
1657
+ * fired when {@link Options#manualRowResize} option is enabled.
1658
+ *
1659
+ * @event Hooks#afterRowResize
1660
+ * @param {number} newSize Calculated new row height.
1661
+ * @param {number} row Visual index of the resized row.
1662
+ * @param {boolean} isDoubleClick Flag that determines whether there was a double-click.
1663
+ */
1664
+ 'afterRowResize',
1665
+ /**
1666
+ * Fired after getting the column header renderers.
1667
+ *
1668
+ * @event Hooks#afterGetColumnHeaderRenderers
1669
+ * @param {Function[]} renderers An array of the column header renderers.
1670
+ */
1671
+ 'afterGetColumnHeaderRenderers',
1672
+ /**
1673
+ * Fired after getting the row header renderers.
1674
+ *
1675
+ * @event Hooks#afterGetRowHeaderRenderers
1676
+ * @param {Function[]} renderers An array of the row header renderers.
1677
+ */
1678
+ 'afterGetRowHeaderRenderers',
1679
+ /**
1680
+ * Fired before applying stretched column width to column.
1681
+ *
1682
+ * @event Hooks#beforeStretchingColumnWidth
1683
+ * @param {number} stretchedWidth Calculated width.
1684
+ * @param {number} column Visual column index.
1685
+ * @returns {number|undefined} Returns new width which will be applied to the column element.
1686
+ */
1687
+ 'beforeStretchingColumnWidth',
1688
+ /**
1689
+ * Fired by {@link Filters} plugin before applying [filtering](@/guides/columns/column-filter.md).
1690
+ * This hook is fired when {@link Options#filters} option is enabled.
1691
+ *
1692
+ * @event Hooks#beforeFilter
1693
+ * @param {object[]} conditionsStack An array of objects with added formulas.
1694
+ * ```js
1695
+ * // Example format of the conditionsStack argument:
1696
+ * [
1697
+ * {
1698
+ * column: 2,
1699
+ * conditions: [
1700
+ * {name: 'begins_with', args: [['S']]}
1701
+ * ],
1702
+ * operation: 'conjunction'
1703
+ * },
1704
+ * {
1705
+ * column: 4,
1706
+ * conditions: [
1707
+ * {name: 'not_empty', args: []}
1708
+ * ],
1709
+ * operation: 'conjunction'
1710
+ * },
1711
+ * ]
1712
+ * ```
1713
+ * @returns {boolean} If hook returns `false` value then filtering won't be applied on the UI side (server-side filtering).
1714
+ */
1715
+ 'beforeFilter',
1716
+ /**
1717
+ * Fired by {@link Filters} plugin after applying [filtering](@/guides/columns/column-filter.md).
1718
+ * This hook is fired when {@link Options#filters} option is enabled.
1719
+ *
1720
+ * @event Hooks#afterFilter
1721
+ * @param {object[]} conditionsStack An array of objects with added conditions.
1722
+ * ```js
1723
+ * // Example format of the conditionsStack argument:
1724
+ * [
1725
+ * {
1726
+ * column: 2,
1727
+ * conditions: [
1728
+ * {name: 'begins_with', args: [['S']]}
1729
+ * ],
1730
+ * operation: 'conjunction'
1731
+ * },
1732
+ * {
1733
+ * column: 4,
1734
+ * conditions: [
1735
+ * {name: 'not_empty', args: []}
1736
+ * ],
1737
+ * operation: 'conjunction'
1738
+ * },
1739
+ * ]
1740
+ * ```
1741
+ */
1742
+ 'afterFilter',
1743
+ /**
1744
+ * Fired by the {@link Formulas} plugin, when any cell value changes.
1745
+ *
1746
+ * Returns an array of objects that contains:
1747
+ * - The addresses (`sheet`, `row`, `col`) and new values (`newValue`) of the changed cells.
1748
+ * - The addresses and new values of any cells that had to be recalculated (because their formulas depend on the cells that changed).
1749
+ *
1750
+ * This hook gets also fired on Handsontable's initialization, returning the addresses and values of all cells.
1751
+ *
1752
+ * Read more:
1753
+ * - [Guides: Formula calculation](@/guides/formulas/formula-calculation.md)
1754
+ * - [HyperFormula documentation: `valuesUpdated`](https://hyperformula.handsontable.com/api/interfaces/listeners.html#valuesupdated)
1755
+ *
1756
+ * @since 9.0.0
1757
+ * @event Hooks#afterFormulasValuesUpdate
1758
+ * @param {Array} changes The addresses and new values of all the changed and recalculated cells.
1759
+ */
1760
+ 'afterFormulasValuesUpdate',
1761
+ /**
1762
+ * Fired when a named expression is added to the Formulas' engine instance.
1763
+ *
1764
+ * @since 9.0.0
1765
+ * @event Hooks#afterNamedExpressionAdded
1766
+ * @param {string} namedExpressionName The name of the added expression.
1767
+ * @param {Array} changes The values and location of applied changes.
1768
+ */
1769
+ 'afterNamedExpressionAdded',
1770
+ /**
1771
+ * Fired when a named expression is removed from the Formulas' engine instance.
1772
+ *
1773
+ * @since 9.0.0
1774
+ * @event Hooks#afterNamedExpressionRemoved
1775
+ * @param {string} namedExpressionName The name of the removed expression.
1776
+ * @param {Array} changes The values and location of applied changes.
1777
+ */
1778
+ 'afterNamedExpressionRemoved',
1779
+ /**
1780
+ * Fired when a new sheet is added to the Formulas' engine instance.
1781
+ *
1782
+ * @since 9.0.0
1783
+ * @event Hooks#afterSheetAdded
1784
+ * @param {string} addedSheetDisplayName The name of the added sheet.
1785
+ */
1786
+ 'afterSheetAdded',
1787
+ /**
1788
+ * Fired when a sheet in the Formulas' engine instance is renamed.
1789
+ *
1790
+ * @since 9.0.0
1791
+ * @event Hooks#afterSheetRenamed
1792
+ * @param {string} oldDisplayName The old name of the sheet.
1793
+ * @param {string} newDisplayName The new name of the sheet.
1794
+ */
1795
+ 'afterSheetRenamed',
1796
+ /**
1797
+ * Fired when a sheet is removed from the Formulas' engine instance.
1798
+ *
1799
+ * @since 9.0.0
1800
+ * @event Hooks#afterSheetRemoved
1801
+ * @param {string} removedSheetDisplayName The removed sheet name.
1802
+ * @param {Array} changes The values and location of applied changes.
1803
+ */
1804
+ 'afterSheetRemoved',
1805
+ /**
1806
+ * Fired while retrieving the column header height.
1807
+ *
1808
+ * @event Hooks#modifyColumnHeaderHeight
1809
+ */
1810
+ 'modifyColumnHeaderHeight',
1811
+ /**
1812
+ * Fired by {@link UndoRedo} plugin before the undo action. Contains information about the action that is being undone.
1813
+ * This hook is fired when {@link Options#undo} option is enabled.
1814
+ *
1815
+ * @event Hooks#beforeUndo
1816
+ * @param {object} action The action object. Contains information about the action being undone. The `actionType`
1817
+ * property of the object specifies the type of the action in a String format. (e.g. `'remove_row'`).
1818
+ * @returns {*|boolean} If false is returned the action is canceled.
1819
+ */
1820
+ 'beforeUndo',
1821
+ /**
1822
+ * Fired by {@link UndoRedo} plugin before changing undo stack.
1823
+ *
1824
+ * @event Hooks#beforeUndoStackChange
1825
+ * @since 8.4.0
1826
+ * @param {Array} doneActions Stack of actions which may be undone.
1827
+ * @param {string} [source] String that identifies source of action
1828
+ * ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
1829
+ * @returns {*|boolean} If false is returned the action of changing undo stack is canceled.
1830
+ */
1831
+ 'beforeUndoStackChange',
1832
+ /**
1833
+ * Fired by {@link UndoRedo} plugin after the undo action. Contains information about the action that is being undone.
1834
+ * This hook is fired when {@link Options#undo} option is enabled.
1835
+ *
1836
+ * @event Hooks#afterUndo
1837
+ * @param {object} action The action object. Contains information about the action being undone. The `actionType`
1838
+ * property of the object specifies the type of the action in a String format. (e.g. `'remove_row'`).
1839
+ */
1840
+ 'afterUndo',
1841
+ /**
1842
+ * Fired by {@link UndoRedo} plugin after changing undo stack.
1843
+ *
1844
+ * @event Hooks#afterUndoStackChange
1845
+ * @since 8.4.0
1846
+ * @param {Array} doneActionsBefore Stack of actions which could be undone before performing new action.
1847
+ * @param {Array} doneActionsAfter Stack of actions which can be undone after performing new action.
1848
+ */
1849
+ 'afterUndoStackChange',
1850
+ /**
1851
+ * Fired by {@link UndoRedo} plugin before the redo action. Contains information about the action that is being redone.
1852
+ * This hook is fired when {@link Options#undo} option is enabled.
1853
+ *
1854
+ * @event Hooks#beforeRedo
1855
+ * @param {object} action The action object. Contains information about the action being redone. The `actionType`
1856
+ * property of the object specifies the type of the action in a String format (e.g. `'remove_row'`).
1857
+ * @returns {*|boolean} If false is returned the action is canceled.
1858
+ */
1859
+ 'beforeRedo',
1860
+ /**
1861
+ * Fired by {@link UndoRedo} plugin before changing redo stack.
1862
+ *
1863
+ * @event Hooks#beforeRedoStackChange
1864
+ * @since 8.4.0
1865
+ * @param {Array} undoneActions Stack of actions which may be redone.
1866
+ */
1867
+ 'beforeRedoStackChange',
1868
+ /**
1869
+ * Fired by {@link UndoRedo} plugin after the redo action. Contains information about the action that is being redone.
1870
+ * This hook is fired when {@link Options#undo} option is enabled.
1871
+ *
1872
+ * @event Hooks#afterRedo
1873
+ * @param {object} action The action object. Contains information about the action being redone. The `actionType`
1874
+ * property of the object specifies the type of the action in a String format (e.g. `'remove_row'`).
1875
+ */
1876
+ 'afterRedo',
1877
+ /**
1878
+ * Fired by {@link UndoRedo} plugin after changing redo stack.
1879
+ *
1880
+ * @event Hooks#afterRedoStackChange
1881
+ * @since 8.4.0
1882
+ * @param {Array} undoneActionsBefore Stack of actions which could be redone before performing new action.
1883
+ * @param {Array} undoneActionsAfter Stack of actions which can be redone after performing new action.
1884
+ */
1885
+ 'afterRedoStackChange',
1886
+ /**
1887
+ * Fired while retrieving the row header width.
1888
+ *
1889
+ * @event Hooks#modifyRowHeaderWidth
1890
+ * @param {number} rowHeaderWidth Row header width.
1891
+ */
1892
+ 'modifyRowHeaderWidth',
1893
+ /**
1894
+ * Fired from the `populateFromArray` method during the `autofill` process. Fired for each "autofilled" cell individually.
1895
+ *
1896
+ * @deprecated
1897
+ * @event Hooks#beforeAutofillInsidePopulate
1898
+ * @param {object} index Object containing `row` and `col` properties, defining the number of rows/columns from the initial cell of the autofill.
1899
+ * @param {string} direction Declares the direction of the autofill. Possible values: `up`, `down`, `left`, `right`.
1900
+ * @param {Array[]} input Contains an array of rows with data being used in the autofill.
1901
+ * @param {Array} deltas The deltas array passed to the `populateFromArray` method.
1902
+ */
1903
+ 'beforeAutofillInsidePopulate',
1904
+ /**
1905
+ * Fired when the start of the selection is being modified (e.g. Moving the selection with the arrow keys).
1906
+ *
1907
+ * @event Hooks#modifyTransformStart
1908
+ * @param {CellCoords} delta Cell coords object declaring the delta of the new selection relative to the previous one.
1909
+ */
1910
+ 'modifyTransformStart',
1911
+ /**
1912
+ * Fired when the end of the selection is being modified (e.g. Moving the selection with the arrow keys).
1913
+ *
1914
+ * @event Hooks#modifyTransformEnd
1915
+ * @param {CellCoords} delta Cell coords object declaring the delta of the new selection relative to the previous one.
1916
+ */
1917
+ 'modifyTransformEnd',
1918
+ /**
1919
+ * Fired after the start of the selection is being modified (e.g. Moving the selection with the arrow keys).
1920
+ *
1921
+ * @event Hooks#afterModifyTransformStart
1922
+ * @param {CellCoords} coords Coords of the freshly selected cell.
1923
+ * @param {number} rowTransformDir `-1` if trying to select a cell with a negative row index. `0` otherwise.
1924
+ * @param {number} colTransformDir `-1` if trying to select a cell with a negative column index. `0` otherwise.
1925
+ */
1926
+ 'afterModifyTransformStart',
1927
+ /**
1928
+ * Fired after the end of the selection is being modified (e.g. Moving the selection with the arrow keys).
1929
+ *
1930
+ * @event Hooks#afterModifyTransformEnd
1931
+ * @param {CellCoords} coords Visual coords of the freshly selected cell.
1932
+ * @param {number} rowTransformDir `-1` if trying to select a cell with a negative row index. `0` otherwise.
1933
+ * @param {number} colTransformDir `-1` if trying to select a cell with a negative column index. `0` otherwise.
1934
+ */
1935
+ 'afterModifyTransformEnd',
1936
+ /**
1937
+ * Fired inside the `viewportRowCalculatorOverride` method. Allows modifying the row calculator parameters.
1938
+ *
1939
+ * @event Hooks#afterViewportRowCalculatorOverride
1940
+ * @param {object} calc The row calculator.
1941
+ */
1942
+ 'afterViewportRowCalculatorOverride',
1943
+ /**
1944
+ * Fired inside the `viewportColumnCalculatorOverride` method. Allows modifying the row calculator parameters.
1945
+ *
1946
+ * @event Hooks#afterViewportColumnCalculatorOverride
1947
+ * @param {object} calc The row calculator.
1948
+ */
1949
+ 'afterViewportColumnCalculatorOverride',
1950
+ /**
1951
+ * Fired after initializing all the plugins.
1952
+ * This hook should be added before Handsontable is initialized.
1953
+ *
1954
+ * @event Hooks#afterPluginsInitialized
1955
+ *
1956
+ * @example
1957
+ * ```js
1958
+ * Handsontable.hooks.add('afterPluginsInitialized', myCallback);
1959
+ * ```
1960
+ */
1961
+ 'afterPluginsInitialized',
1962
+ /**
1963
+ * Fired by {@link HiddenRows} plugin before marking the rows as hidden. Fired only if the {@link Options#hiddenRows} option is enabled.
1964
+ * Returning `false` in the callback will prevent the hiding action from completing.
1965
+ *
1966
+ * @event Hooks#beforeHideRows
1967
+ * @param {Array} currentHideConfig Current hide configuration - a list of hidden physical row indexes.
1968
+ * @param {Array} destinationHideConfig Destination hide configuration - a list of hidden physical row indexes.
1969
+ * @param {boolean} actionPossible `true`, if provided row indexes are valid, `false` otherwise.
1970
+ * @returns {undefined|boolean} If the callback returns `false`, the hiding action will not be completed.
1971
+ */
1972
+ 'beforeHideRows',
1973
+ /**
1974
+ * Fired by {@link HiddenRows} plugin after marking the rows as hidden. Fired only if the {@link Options#hiddenRows} option is enabled.
1975
+ *
1976
+ * @event Hooks#afterHideRows
1977
+ * @param {Array} currentHideConfig Current hide configuration - a list of hidden physical row indexes.
1978
+ * @param {Array} destinationHideConfig Destination hide configuration - a list of hidden physical row indexes.
1979
+ * @param {boolean} actionPossible `true`, if provided row indexes are valid, `false` otherwise.
1980
+ * @param {boolean} stateChanged `true`, if the action affected any non-hidden rows, `false` otherwise.
1981
+ */
1982
+ 'afterHideRows',
1983
+ /**
1984
+ * Fired by {@link HiddenRows} plugin before marking the rows as not hidden. Fired only if the {@link Options#hiddenRows} option is enabled.
1985
+ * Returning `false` in the callback will prevent the row revealing action from completing.
1986
+ *
1987
+ * @event Hooks#beforeUnhideRows
1988
+ * @param {Array} currentHideConfig Current hide configuration - a list of hidden physical row indexes.
1989
+ * @param {Array} destinationHideConfig Destination hide configuration - a list of hidden physical row indexes.
1990
+ * @param {boolean} actionPossible `true`, if provided row indexes are valid, `false` otherwise.
1991
+ * @returns {undefined|boolean} If the callback returns `false`, the revealing action will not be completed.
1992
+ */
1993
+ 'beforeUnhideRows',
1994
+ /**
1995
+ * Fired by {@link HiddenRows} plugin after marking the rows as not hidden. Fired only if the {@link Options#hiddenRows} option is enabled.
1996
+ *
1997
+ * @event Hooks#afterUnhideRows
1998
+ * @param {Array} currentHideConfig Current hide configuration - a list of hidden physical row indexes.
1999
+ * @param {Array} destinationHideConfig Destination hide configuration - a list of hidden physical row indexes.
2000
+ * @param {boolean} actionPossible `true`, if provided row indexes are valid, `false` otherwise.
2001
+ * @param {boolean} stateChanged `true`, if the action affected any hidden rows, `false` otherwise.
2002
+ */
2003
+ 'afterUnhideRows',
2004
+ /**
2005
+ * Fired by {@link HiddenColumns} plugin before marking the columns as hidden. Fired only if the {@link Options#hiddenColumns} option is enabled.
2006
+ * Returning `false` in the callback will prevent the hiding action from completing.
2007
+ *
2008
+ * @event Hooks#beforeHideColumns
2009
+ * @param {Array} currentHideConfig Current hide configuration - a list of hidden physical column indexes.
2010
+ * @param {Array} destinationHideConfig Destination hide configuration - a list of hidden physical column indexes.
2011
+ * @param {boolean} actionPossible `true`, if the provided column indexes are valid, `false` otherwise.
2012
+ * @returns {undefined|boolean} If the callback returns `false`, the hiding action will not be completed.
2013
+ */
2014
+ 'beforeHideColumns',
2015
+ /**
2016
+ * Fired by {@link HiddenColumns} plugin after marking the columns as hidden. Fired only if the {@link Options#hiddenColumns} option is enabled.
2017
+ *
2018
+ * @event Hooks#afterHideColumns
2019
+ * @param {Array} currentHideConfig Current hide configuration - a list of hidden physical column indexes.
2020
+ * @param {Array} destinationHideConfig Destination hide configuration - a list of hidden physical column indexes.
2021
+ * @param {boolean} actionPossible `true`, if the provided column indexes are valid, `false` otherwise.
2022
+ * @param {boolean} stateChanged `true`, if the action affected any non-hidden columns, `false` otherwise.
2023
+ */
2024
+ 'afterHideColumns',
2025
+ /**
2026
+ * Fired by {@link HiddenColumns} plugin before marking the columns as not hidden. Fired only if the {@link Options#hiddenColumns} option is enabled.
2027
+ * Returning `false` in the callback will prevent the column revealing action from completing.
2028
+ *
2029
+ * @event Hooks#beforeUnhideColumns
2030
+ * @param {Array} currentHideConfig Current hide configuration - a list of hidden physical column indexes.
2031
+ * @param {Array} destinationHideConfig Destination hide configuration - a list of hidden physical column indexes.
2032
+ * @param {boolean} actionPossible `true`, if the provided column indexes are valid, `false` otherwise.
2033
+ * @returns {undefined|boolean} If the callback returns `false`, the hiding action will not be completed.
2034
+ */
2035
+ 'beforeUnhideColumns',
2036
+ /**
2037
+ * Fired by {@link HiddenColumns} plugin after marking the columns as not hidden. Fired only if the {@link Options#hiddenColumns} option is enabled.
2038
+ *
2039
+ * @event Hooks#afterUnhideColumns
2040
+ * @param {Array} currentHideConfig Current hide configuration - a list of hidden physical column indexes.
2041
+ * @param {Array} destinationHideConfig Destination hide configuration - a list of hidden physical column indexes.
2042
+ * @param {boolean} actionPossible `true`, if the provided column indexes are valid, `false` otherwise.
2043
+ * @param {boolean} stateChanged `true`, if the action affected any hidden columns, `false` otherwise.
2044
+ */
2045
+ 'afterUnhideColumns',
2046
+ /**
2047
+ * Fired by {@link TrimRows} plugin before trimming rows. This hook is fired when {@link Options#trimRows} option is enabled.
2048
+ *
2049
+ * @event Hooks#beforeTrimRow
2050
+ * @param {Array} currentTrimConfig Current trim configuration - a list of trimmed physical row indexes.
2051
+ * @param {Array} destinationTrimConfig Destination trim configuration - a list of trimmed physical row indexes.
2052
+ * @param {boolean} actionPossible `true`, if all of the row indexes are withing the bounds of the table, `false` otherwise.
2053
+ * @returns {undefined|boolean} If the callback returns `false`, the trimming action will not be completed.
2054
+ */
2055
+ 'beforeTrimRow',
2056
+ /**
2057
+ * Fired by {@link TrimRows} plugin after trimming rows. This hook is fired when {@link Options#trimRows} option is enabled.
2058
+ *
2059
+ * @event Hooks#afterTrimRow
2060
+ * @param {Array} currentTrimConfig Current trim configuration - a list of trimmed physical row indexes.
2061
+ * @param {Array} destinationTrimConfig Destination trim configuration - a list of trimmed physical row indexes.
2062
+ * @param {boolean} actionPossible `true`, if all of the row indexes are withing the bounds of the table, `false` otherwise.
2063
+ * @param {boolean} stateChanged `true`, if the action affected any non-trimmed rows, `false` otherwise.
2064
+ * @returns {undefined|boolean} If the callback returns `false`, the trimming action will not be completed.
2065
+ */
2066
+ 'afterTrimRow',
2067
+ /**
2068
+ * Fired by {@link TrimRows} plugin before untrimming rows. This hook is fired when {@link Options#trimRows} option is enabled.
2069
+ *
2070
+ * @event Hooks#beforeUntrimRow
2071
+ * @param {Array} currentTrimConfig Current trim configuration - a list of trimmed physical row indexes.
2072
+ * @param {Array} destinationTrimConfig Destination trim configuration - a list of trimmed physical row indexes.
2073
+ * @param {boolean} actionPossible `true`, if all of the row indexes are withing the bounds of the table, `false` otherwise.
2074
+ * @returns {undefined|boolean} If the callback returns `false`, the untrimming action will not be completed.
2075
+ */
2076
+ 'beforeUntrimRow',
2077
+ /**
2078
+ * Fired by {@link TrimRows} plugin after untrimming rows. This hook is fired when {@link Options#trimRows} option is enabled.
2079
+ *
2080
+ * @event Hooks#afterUntrimRow
2081
+ * @param {Array} currentTrimConfig Current trim configuration - a list of trimmed physical row indexes.
2082
+ * @param {Array} destinationTrimConfig Destination trim configuration - a list of trimmed physical row indexes.
2083
+ * @param {boolean} actionPossible `true`, if all of the row indexes are withing the bounds of the table, `false` otherwise.
2084
+ * @param {boolean} stateChanged `true`, if the action affected any trimmed rows, `false` otherwise.
2085
+ * @returns {undefined|boolean} If the callback returns `false`, the untrimming action will not be completed.
2086
+ */
2087
+ 'afterUntrimRow',
2088
+ /**
2089
+ * Fired by {@link DropdownMenu} plugin before opening the dropdown menu. This hook is fired when {@link Options#dropdownMenu}
2090
+ * option is enabled.
2091
+ *
2092
+ * @event Hooks#beforeDropdownMenuShow
2093
+ * @param {DropdownMenu} dropdownMenu The DropdownMenu instance.
2094
+ */
2095
+ 'beforeDropdownMenuShow',
2096
+ /**
2097
+ * Fired by {@link DropdownMenu} plugin after opening the Dropdown Menu. This hook is fired when {@link Options#dropdownMenu}
2098
+ * option is enabled.
2099
+ *
2100
+ * @event Hooks#afterDropdownMenuShow
2101
+ * @param {DropdownMenu} dropdownMenu The DropdownMenu instance.
2102
+ */
2103
+ 'afterDropdownMenuShow',
2104
+ /**
2105
+ * Fired by {@link DropdownMenu} plugin after hiding the Dropdown Menu. This hook is fired when {@link Options#dropdownMenu}
2106
+ * option is enabled.
2107
+ *
2108
+ * @event Hooks#afterDropdownMenuHide
2109
+ * @param {DropdownMenu} instance The DropdownMenu instance.
2110
+ */
2111
+ 'afterDropdownMenuHide',
2112
+ /**
2113
+ * Fired by {@link NestedRows} plugin before adding a children to the NestedRows structure. This hook is fired when
2114
+ * {@link Options#nestedRows} option is enabled.
2115
+ *
2116
+ * @event Hooks#beforeAddChild
2117
+ * @param {object} parent The parent object.
2118
+ * @param {object|undefined} element The element added as a child. If `undefined`, a blank child was added.
2119
+ * @param {number|undefined} index The index within the parent where the new child was added. If `undefined`, the element was added as the last child.
2120
+ */
2121
+ 'beforeAddChild',
2122
+ /**
2123
+ * Fired by {@link NestedRows} plugin after adding a children to the NestedRows structure. This hook is fired when
2124
+ * {@link Options#nestedRows} option is enabled.
2125
+ *
2126
+ * @event Hooks#afterAddChild
2127
+ * @param {object} parent The parent object.
2128
+ * @param {object|undefined} element The element added as a child. If `undefined`, a blank child was added.
2129
+ * @param {number|undefined} index The index within the parent where the new child was added. If `undefined`, the element was added as the last child.
2130
+ */
2131
+ 'afterAddChild',
2132
+ /**
2133
+ * Fired by {@link NestedRows} plugin before detaching a child from its parent. This hook is fired when
2134
+ * {@link Options#nestedRows} option is enabled.
2135
+ *
2136
+ * @event Hooks#beforeDetachChild
2137
+ * @param {object} parent An object representing the parent from which the element is to be detached.
2138
+ * @param {object} element The detached element.
2139
+ */
2140
+ 'beforeDetachChild',
2141
+ /**
2142
+ * Fired by {@link NestedRows} plugin after detaching a child from its parent. This hook is fired when
2143
+ * {@link Options#nestedRows} option is enabled.
2144
+ *
2145
+ * @event Hooks#afterDetachChild
2146
+ * @param {object} parent An object representing the parent from which the element was detached.
2147
+ * @param {object} element The detached element.
2148
+ * @param {number} finalElementPosition The final row index of the detached element.
2149
+ */
2150
+ 'afterDetachChild',
2151
+ /**
2152
+ * Fired after the editor is opened and rendered.
2153
+ *
2154
+ * @event Hooks#afterBeginEditing
2155
+ * @param {number} row Visual row index of the edited cell.
2156
+ * @param {number} column Visual column index of the edited cell.
2157
+ */
2158
+ 'afterBeginEditing',
2159
+ /**
2160
+ * Fired by {@link MergeCells} plugin before cell merging. This hook is fired when {@link Options#mergeCells}
2161
+ * option is enabled.
2162
+ *
2163
+ * @event Hooks#beforeMergeCells
2164
+ * @param {CellRange} cellRange Selection cell range.
2165
+ * @param {boolean} [auto=false] `true` if called automatically by the plugin.
2166
+ */
2167
+ 'beforeMergeCells',
2168
+ /**
2169
+ * Fired by {@link MergeCells} plugin after cell merging. This hook is fired when {@link Options#mergeCells}
2170
+ * option is enabled.
2171
+ *
2172
+ * @event Hooks#afterMergeCells
2173
+ * @param {CellRange} cellRange Selection cell range.
2174
+ * @param {object} mergeParent The parent collection of the provided cell range.
2175
+ * @param {boolean} [auto=false] `true` if called automatically by the plugin.
2176
+ */
2177
+ 'afterMergeCells',
2178
+ /**
2179
+ * Fired by {@link MergeCells} plugin before unmerging the cells. This hook is fired when {@link Options#mergeCells}
2180
+ * option is enabled.
2181
+ *
2182
+ * @event Hooks#beforeUnmergeCells
2183
+ * @param {CellRange} cellRange Selection cell range.
2184
+ * @param {boolean} [auto=false] `true` if called automatically by the plugin.
2185
+ */
2186
+ 'beforeUnmergeCells',
2187
+ /**
2188
+ * Fired by {@link MergeCells} plugin after unmerging the cells. This hook is fired when {@link Options#mergeCells}
2189
+ * option is enabled.
2190
+ *
2191
+ * @event Hooks#afterUnmergeCells
2192
+ * @param {CellRange} cellRange Selection cell range.
2193
+ * @param {boolean} [auto=false] `true` if called automatically by the plugin.
2194
+ */
2195
+ 'afterUnmergeCells',
2196
+ /**
2197
+ * Fired after the table was switched into listening mode. This allows Handsontable to capture keyboard events and
2198
+ * respond in the right way.
2199
+ *
2200
+ * @event Hooks#afterListen
2201
+ */
2202
+ 'afterListen',
2203
+ /**
2204
+ * Fired after the table was switched off from the listening mode. This makes the Handsontable inert for any
2205
+ * keyboard events.
2206
+ *
2207
+ * @event Hooks#afterUnlisten
2208
+ */
2209
+ 'afterUnlisten',
2210
+ /**
2211
+ * Fired after the window was resized or the size of the Handsontable root element was changed.
2212
+ *
2213
+ * @event Hooks#afterRefreshDimensions
2214
+ * @param {object} previousDimensions Previous dimensions of the container.
2215
+ * @param {object} currentDimensions Current dimensions of the container.
2216
+ * @param {boolean} stateChanged `true`, if the container was re-render, `false` otherwise.
2217
+ */
2218
+ 'afterRefreshDimensions',
2219
+ /**
2220
+ * Cancellable hook, called after resizing a window or after detecting size change of the
2221
+ * Handsontable root element, but before redrawing a table.
2222
+ *
2223
+ * @event Hooks#beforeRefreshDimensions
2224
+ * @param {object} previousDimensions Previous dimensions of the container.
2225
+ * @param {object} currentDimensions Current dimensions of the container.
2226
+ * @param {boolean} actionPossible `true`, if current and previous dimensions are different, `false` otherwise.
2227
+ * @returns {undefined|boolean} If the callback returns `false`, the refresh action will not be completed.
2228
+ */
2229
+ 'beforeRefreshDimensions',
2230
+ /**
2231
+ * Fired by {@link CollapsibleColumns} plugin before columns collapse. This hook is fired when {@link Options#collapsibleColumns} option is enabled.
2232
+ *
2233
+ * @event Hooks#beforeColumnCollapse
2234
+ * @since 8.0.0
2235
+ * @param {Array} currentCollapsedColumns Current collapsible configuration - a list of collapsible physical column indexes.
2236
+ * @param {Array} destinationCollapsedColumns Destination collapsible configuration - a list of collapsible physical column indexes.
2237
+ * @param {boolean} collapsePossible `true`, if all of the column indexes are withing the bounds of the collapsed sections, `false` otherwise.
2238
+ * @returns {undefined|boolean} If the callback returns `false`, the collapsing action will not be completed.
2239
+ */
2240
+ 'beforeColumnCollapse',
2241
+ /**
2242
+ * Fired by {@link CollapsibleColumns} plugin before columns collapse. This hook is fired when {@link Options#collapsibleColumns} option is enabled.
2243
+ *
2244
+ * @event Hooks#afterColumnCollapse
2245
+ * @since 8.0.0
2246
+ * @param {Array} currentCollapsedColumns Current collapsible configuration - a list of collapsible physical column indexes.
2247
+ * @param {Array} destinationCollapsedColumns Destination collapsible configuration - a list of collapsible physical column indexes.
2248
+ * @param {boolean} collapsePossible `true`, if all of the column indexes are withing the bounds of the collapsed sections, `false` otherwise.
2249
+ * @param {boolean} successfullyCollapsed `true`, if the action affected any non-collapsible column, `false` otherwise.
2250
+ */
2251
+ 'afterColumnCollapse',
2252
+ /**
2253
+ * Fired by {@link CollapsibleColumns} plugin before columns expand. This hook is fired when {@link Options#collapsibleColumns} option is enabled.
2254
+ *
2255
+ * @event Hooks#beforeColumnExpand
2256
+ * @since 8.0.0
2257
+ * @param {Array} currentCollapsedColumns Current collapsible configuration - a list of collapsible physical column indexes.
2258
+ * @param {Array} destinationCollapsedColumns Destination collapsible configuration - a list of collapsible physical column indexes.
2259
+ * @param {boolean} expandPossible `true`, if all of the column indexes are withing the bounds of the collapsed sections, `false` otherwise.
2260
+ * @returns {undefined|boolean} If the callback returns `false`, the expanding action will not be completed.
2261
+ */
2262
+ 'beforeColumnExpand',
2263
+ /**
2264
+ * Fired by {@link CollapsibleColumns} plugin before columns expand. This hook is fired when {@link Options#collapsibleColumns} option is enabled.
2265
+ *
2266
+ * @event Hooks#afterColumnExpand
2267
+ * @since 8.0.0
2268
+ * @param {Array} currentCollapsedColumns Current collapsible configuration - a list of collapsible physical column indexes.
2269
+ * @param {Array} destinationCollapsedColumns Destination collapsible configuration - a list of collapsible physical column indexes.
2270
+ * @param {boolean} expandPossible `true`, if all of the column indexes are withing the bounds of the collapsed sections, `false` otherwise.
2271
+ * @param {boolean} successfullyExpanded `true`, if the action affected any non-collapsible column, `false` otherwise.
2272
+ */
2273
+ 'afterColumnExpand',
2274
+ /**
2275
+ * Fired by {@link AutoColumnSize} plugin within SampleGenerator utility.
2276
+ *
2277
+ * @event Hooks#modifyAutoColumnSizeSeed
2278
+ * @since 8.4.0
2279
+ * @param {string|undefined} seed Seed ID, unique name to categorize samples.
2280
+ * @param {object} cellProperties Object containing the cell properties.
2281
+ * @param {*} cellValue Value of the cell.
2282
+ */
2283
+ 'modifyAutoColumnSizeSeed'];
2284
+
2285
+ /**
2286
+ * Template warning message for removed hooks.
2287
+ *
2288
+ * @type {string}
2289
+ */
2290
+ var REMOVED_MESSAGE = toSingleLine(_templateObject || (_templateObject = _taggedTemplateLiteral(["The plugin hook \"[hookName]\" was removed in Handsontable [removedInVersion]. \n Please consult release notes https://github.com/handsontable/handsontable/releases/tag/[removedInVersion] to \n learn about the migration path."], ["The plugin hook \"[hookName]\" was removed in Handsontable [removedInVersion].\\x20\n Please consult release notes https://github.com/handsontable/handsontable/releases/tag/[removedInVersion] to\\x20\n learn about the migration path."])));
2291
+
2292
+ /**
2293
+ * The list of the hooks which are removed from the API. The warning message is printed out in
2294
+ * the developer console when the hook is used.
2295
+ *
2296
+ * The Map key is represented by hook name and its value points to the Handsontable version
2297
+ * in which it was removed.
2298
+ *
2299
+ * @type {Map<string, string>}
2300
+ */
2301
+ var REMOVED_HOOKS = new Map([['modifyRow', '8.0.0'], ['modifyCol', '8.0.0'], ['unmodifyRow', '8.0.0'], ['unmodifyCol', '8.0.0'], ['skipLengthCache', '8.0.0'], ['hiddenColumn', '8.0.0'], ['hiddenRow', '8.0.0']]);
2302
+
2303
+ /* eslint-disable jsdoc/require-description-complete-sentence */
2304
+ /**
2305
+ * The list of the hooks which are deprecated. The warning message is printed out in
2306
+ * the developer console when the hook is used.
2307
+ *
2308
+ * The Map key is represented by hook name and its value keeps message which whould be
2309
+ * printed out when the hook is used.
2310
+ *
2311
+ * Usage:
2312
+ * ```js
2313
+ * ...
2314
+ * New Map([
2315
+ * ['beforeColumnExpand', 'The plugin hook "beforeColumnExpand" is deprecated. Use "beforeColumnExpand2" instead.'],
2316
+ * ])
2317
+ * ...
2318
+ * ```
2319
+ *
2320
+ *
2321
+ * @type {Map<string, string>}
2322
+ */
2323
+ /* eslint-enable jsdoc/require-description-complete-sentence */
2324
+ var DEPRECATED_HOOKS = new Map([['beforeAutofillInsidePopulate', 'The plugin hook "beforeAutofillInsidePopulate" is deprecated and will be removed in the next major release.']]);
2325
+ var Hooks = /*#__PURE__*/function () {
2326
+ /**
2327
+ *
2328
+ */
2329
+ function Hooks() {
2330
+ _classCallCheck(this, Hooks);
2331
+ this.globalBucket = this.createEmptyBucket();
2332
+ }
2333
+
2334
+ /**
2335
+ * Returns a new object with empty handlers related to every registered hook name.
2336
+ *
2337
+ * @returns {object} The empty bucket object.
2338
+ *
2339
+ * @example
2340
+ * ```js
2341
+ * Handsontable.hooks.createEmptyBucket();
2342
+ * // Results:
2343
+ * {
2344
+ * ...
2345
+ * afterCreateCol: [],
2346
+ * afterCreateRow: [],
2347
+ * beforeInit: [],
2348
+ * ...
2349
+ * }
2350
+ * ```
2351
+ */
2352
+ _createClass(Hooks, [{
2353
+ key: "createEmptyBucket",
2354
+ value: function createEmptyBucket() {
2355
+ var bucket = Object.create(null);
2356
+
2357
+ // eslint-disable-next-line no-return-assign
2358
+ arrayEach(REGISTERED_HOOKS, function (hook) {
2359
+ return bucket[hook] = [];
2360
+ });
2361
+ return bucket;
2362
+ }
2363
+
2364
+ /**
2365
+ * Get hook bucket based on the context of the object or if argument is `undefined`, get the global hook bucket.
2366
+ *
2367
+ * @param {object} [context=null] A Handsontable instance.
2368
+ * @returns {object} Returns a global or Handsontable instance bucket.
2369
+ */
2370
+ }, {
2371
+ key: "getBucket",
2372
+ value: function getBucket() {
2373
+ var context = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
2374
+ if (context) {
2375
+ if (!context.pluginHookBucket) {
2376
+ context.pluginHookBucket = this.createEmptyBucket();
2377
+ }
2378
+ return context.pluginHookBucket;
2379
+ }
2380
+ return this.globalBucket;
2381
+ }
2382
+
2383
+ /**
2384
+ * Adds a listener (globally or locally) to a specified hook name.
2385
+ * If the `context` parameter is provided, the hook will be added only to the instance it references.
2386
+ * Otherwise, the callback will be used everytime the hook fires on any Handsontable instance.
2387
+ * You can provide an array of callback functions as the `callback` argument, this way they will all be fired
2388
+ * once the hook is triggered.
2389
+ *
2390
+ * @see Core#addHook
2391
+ * @param {string} key Hook name.
2392
+ * @param {Function|Array} callback Callback function or an array of functions.
2393
+ * @param {object} [context=null] The context for the hook callback to be added - a Handsontable instance or leave empty.
2394
+ * @returns {Hooks} Instance of Hooks.
2395
+ *
2396
+ * @example
2397
+ * ```js
2398
+ * // single callback, added locally
2399
+ * Handsontable.hooks.add('beforeInit', myCallback, hotInstance);
2400
+ *
2401
+ * // single callback, added globally
2402
+ * Handsontable.hooks.add('beforeInit', myCallback);
2403
+ *
2404
+ * // multiple callbacks, added locally
2405
+ * Handsontable.hooks.add('beforeInit', [myCallback, anotherCallback], hotInstance);
2406
+ *
2407
+ * // multiple callbacks, added globally
2408
+ * Handsontable.hooks.add('beforeInit', [myCallback, anotherCallback]);
2409
+ * ```
2410
+ */
2411
+ }, {
2412
+ key: "add",
2413
+ value: function add(key, callback) {
2414
+ var _this = this;
2415
+ var context = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
2416
+ if (Array.isArray(callback)) {
2417
+ arrayEach(callback, function (c) {
2418
+ return _this.add(key, c, context);
2419
+ });
2420
+ } else {
2421
+ if (REMOVED_HOOKS.has(key)) {
2422
+ warn(substitute(REMOVED_MESSAGE, {
2423
+ hookName: key,
2424
+ removedInVersion: REMOVED_HOOKS.get(key)
2425
+ }));
2426
+ }
2427
+ if (DEPRECATED_HOOKS.has(key)) {
2428
+ warn(DEPRECATED_HOOKS.get(key));
2429
+ }
2430
+ var bucket = this.getBucket(context);
2431
+ if (typeof bucket[key] === 'undefined') {
2432
+ this.register(key);
2433
+ bucket[key] = [];
2434
+ }
2435
+ callback.skip = false;
2436
+ if (bucket[key].indexOf(callback) === -1) {
2437
+ // only add a hook if it has not already been added (adding the same hook twice is now silently ignored)
2438
+ var foundInitialHook = false;
2439
+ if (callback.initialHook) {
2440
+ arrayEach(bucket[key], function (cb, i) {
2441
+ if (cb.initialHook) {
2442
+ bucket[key][i] = callback;
2443
+ foundInitialHook = true;
2444
+ return false;
2445
+ }
2446
+ });
2447
+ }
2448
+ if (!foundInitialHook) {
2449
+ bucket[key].push(callback);
2450
+ }
2451
+ }
2452
+ }
2453
+ return this;
2454
+ }
2455
+
2456
+ /**
2457
+ * Adds a listener to a specified hook. After the hook runs this listener will be automatically removed from the bucket.
2458
+ *
2459
+ * @see Core#addHookOnce
2460
+ * @param {string} key Hook/Event name.
2461
+ * @param {Function|Array} callback Callback function.
2462
+ * @param {object} [context=null] A Handsontable instance.
2463
+ *
2464
+ * @example
2465
+ * ```js
2466
+ * Handsontable.hooks.once('beforeInit', myCallback, hotInstance);
2467
+ * ```
2468
+ */
2469
+ }, {
2470
+ key: "once",
2471
+ value: function once(key, callback) {
2472
+ var _this2 = this;
2473
+ var context = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
2474
+ if (Array.isArray(callback)) {
2475
+ arrayEach(callback, function (c) {
2476
+ return _this2.once(key, c, context);
2477
+ });
2478
+ } else {
2479
+ callback.runOnce = true;
2480
+ this.add(key, callback, context);
2481
+ }
2482
+ }
2483
+
2484
+ /**
2485
+ * Removes a listener from a hook with a given name. If the `context` argument is provided, it removes a listener from a local hook assigned to the given Handsontable instance.
2486
+ *
2487
+ * @see Core#removeHook
2488
+ * @param {string} key Hook/Event name.
2489
+ * @param {Function} callback Callback function (needs the be the function that was previously added to the hook).
2490
+ * @param {object} [context=null] Handsontable instance.
2491
+ * @returns {boolean} Returns `true` if hook was removed, `false` otherwise.
2492
+ *
2493
+ * @example
2494
+ * ```js
2495
+ * Handsontable.hooks.remove('beforeInit', myCallback);
2496
+ * ```
2497
+ */
2498
+ }, {
2499
+ key: "remove",
2500
+ value: function remove(key, callback) {
2501
+ var context = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
2502
+ var bucket = this.getBucket(context);
2503
+ if (typeof bucket[key] !== 'undefined') {
2504
+ if (bucket[key].indexOf(callback) >= 0) {
2505
+ callback.skip = true;
2506
+ return true;
2507
+ }
2508
+ }
2509
+ return false;
2510
+ }
2511
+
2512
+ /**
2513
+ * Checks whether there are any registered listeners for the provided hook name.
2514
+ * If the `context` parameter is provided, it only checks for listeners assigned to the given Handsontable instance.
2515
+ *
2516
+ * @param {string} key Hook name.
2517
+ * @param {object} [context=null] A Handsontable instance.
2518
+ * @returns {boolean} `true` for success, `false` otherwise.
2519
+ */
2520
+ }, {
2521
+ key: "has",
2522
+ value: function has(key) {
2523
+ var context = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
2524
+ var bucket = this.getBucket(context);
2525
+ return !!(bucket[key] !== void 0 && bucket[key].length);
2526
+ }
2527
+
2528
+ /**
2529
+ * Runs all local and global callbacks assigned to the hook identified by the `key` parameter.
2530
+ * It returns either a return value from the last called callback or the first parameter (`p1`) passed to the `run` function.
2531
+ *
2532
+ * @see Core#runHooks
2533
+ * @param {object} context Handsontable instance.
2534
+ * @param {string} key Hook/Event name.
2535
+ * @param {*} [p1] Parameter to be passed as an argument to the callback function.
2536
+ * @param {*} [p2] Parameter to be passed as an argument to the callback function.
2537
+ * @param {*} [p3] Parameter to be passed as an argument to the callback function.
2538
+ * @param {*} [p4] Parameter to be passed as an argument to the callback function.
2539
+ * @param {*} [p5] Parameter to be passed as an argument to the callback function.
2540
+ * @param {*} [p6] Parameter to be passed as an argument to the callback function.
2541
+ * @returns {*} Either a return value from the last called callback or `p1`.
2542
+ *
2543
+ * @example
2544
+ * ```js
2545
+ * Handsontable.hooks.run(hot, 'beforeInit');
2546
+ * ```
2547
+ */
2548
+ }, {
2549
+ key: "run",
2550
+ value: function run(context, key, p1, p2, p3, p4, p5, p6) {
2551
+ {
2552
+ var globalHandlers = this.globalBucket[key];
2553
+ var length = globalHandlers ? globalHandlers.length : 0;
2554
+ var index = 0;
2555
+ if (length) {
2556
+ // Do not optimise this loop with arrayEach or arrow function! If you do You'll decrease perf because of GC.
2557
+ while (index < length) {
2558
+ if (!globalHandlers[index] || globalHandlers[index].skip) {
2559
+ index += 1;
2560
+ /* eslint-disable no-continue */
2561
+ continue;
2562
+ }
2563
+ var res = fastCall(globalHandlers[index], context, p1, p2, p3, p4, p5, p6);
2564
+ if (res !== void 0) {
2565
+ // eslint-disable-next-line no-param-reassign
2566
+ p1 = res;
2567
+ }
2568
+ if (globalHandlers[index] && globalHandlers[index].runOnce) {
2569
+ this.remove(key, globalHandlers[index]);
2570
+ }
2571
+ index += 1;
2572
+ }
2573
+ }
2574
+ }
2575
+ {
2576
+ var localHandlers = this.getBucket(context)[key];
2577
+ var _length = localHandlers ? localHandlers.length : 0;
2578
+ var _index = 0;
2579
+ if (_length) {
2580
+ // Do not optimise this loop with arrayEach or arrow function! If you do You'll decrease perf because of GC.
2581
+ while (_index < _length) {
2582
+ if (!localHandlers[_index] || localHandlers[_index].skip) {
2583
+ _index += 1;
2584
+ /* eslint-disable no-continue */
2585
+ continue;
2586
+ }
2587
+ var _res = fastCall(localHandlers[_index], context, p1, p2, p3, p4, p5, p6);
2588
+ if (_res !== void 0) {
2589
+ // eslint-disable-next-line no-param-reassign
2590
+ p1 = _res;
2591
+ }
2592
+ if (localHandlers[_index] && localHandlers[_index].runOnce) {
2593
+ this.remove(key, localHandlers[_index], context);
2594
+ }
2595
+ _index += 1;
2596
+ }
2597
+ }
2598
+ }
2599
+ return p1;
2600
+ }
2601
+
2602
+ /**
2603
+ * Destroy all listeners connected to the context. If no context is provided, the global listeners will be destroyed.
2604
+ *
2605
+ * @param {object} [context=null] A Handsontable instance.
2606
+ * @example
2607
+ * ```js
2608
+ * // destroy the global listeners
2609
+ * Handsontable.hooks.destroy();
2610
+ *
2611
+ * // destroy the local listeners
2612
+ * Handsontable.hooks.destroy(hotInstance);
2613
+ * ```
2614
+ */
2615
+ }, {
2616
+ key: "destroy",
2617
+ value: function destroy() {
2618
+ var context = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
2619
+ // eslint-disable-next-line no-return-assign
2620
+ objectEach(this.getBucket(context), function (value, key, bucket) {
2621
+ return bucket[key].length = 0;
2622
+ });
2623
+ }
2624
+
2625
+ /**
2626
+ * Registers a hook name (adds it to the list of the known hook names). Used by plugins.
2627
+ * It is not necessary to call register, but if you use it, your plugin hook will be used returned by
2628
+ * the `getRegistered` method. (which itself is used in the [demo](@/guides/getting-started/events-and-hooks.md)).
2629
+ *
2630
+ * @param {string} key The hook name.
2631
+ *
2632
+ * @example
2633
+ * ```js
2634
+ * Handsontable.hooks.register('myHook');
2635
+ * ```
2636
+ */
2637
+ }, {
2638
+ key: "register",
2639
+ value: function register(key) {
2640
+ if (!this.isRegistered(key)) {
2641
+ REGISTERED_HOOKS.push(key);
2642
+ }
2643
+ }
2644
+
2645
+ /**
2646
+ * Deregisters a hook name (removes it from the list of known hook names).
2647
+ *
2648
+ * @param {string} key The hook name.
2649
+ *
2650
+ * @example
2651
+ * ```js
2652
+ * Handsontable.hooks.deregister('myHook');
2653
+ * ```
2654
+ */
2655
+ }, {
2656
+ key: "deregister",
2657
+ value: function deregister(key) {
2658
+ if (this.isRegistered(key)) {
2659
+ REGISTERED_HOOKS.splice(REGISTERED_HOOKS.indexOf(key), 1);
2660
+ }
2661
+ }
2662
+
2663
+ /**
2664
+ * Returns a boolean value depending on if a hook by such name has been removed or deprecated.
2665
+ *
2666
+ * @param {string} hookName The hook name to check.
2667
+ * @returns {boolean} Returns `true` if the provided hook name was marked as deprecated or
2668
+ * removed from API, `false` otherwise.
2669
+ * @example
2670
+ * ```js
2671
+ * Handsontable.hooks.isDeprecated('skipLengthCache');
2672
+ *
2673
+ * // Results:
2674
+ * true
2675
+ * ```
2676
+ */
2677
+ }, {
2678
+ key: "isDeprecated",
2679
+ value: function isDeprecated(hookName) {
2680
+ return DEPRECATED_HOOKS.has(hookName) || REMOVED_HOOKS.has(hookName);
2681
+ }
2682
+
2683
+ /**
2684
+ * Returns a boolean depending on if a hook by such name has been registered.
2685
+ *
2686
+ * @param {string} hookName The hook name to check.
2687
+ * @returns {boolean} `true` for success, `false` otherwise.
2688
+ * @example
2689
+ * ```js
2690
+ * Handsontable.hooks.isRegistered('beforeInit');
2691
+ *
2692
+ * // Results:
2693
+ * true
2694
+ * ```
2695
+ */
2696
+ }, {
2697
+ key: "isRegistered",
2698
+ value: function isRegistered(hookName) {
2699
+ return REGISTERED_HOOKS.indexOf(hookName) >= 0;
2700
+ }
2701
+
2702
+ /**
2703
+ * Returns an array of registered hooks.
2704
+ *
2705
+ * @returns {Array} An array of registered hooks.
2706
+ *
2707
+ * @example
2708
+ * ```js
2709
+ * Handsontable.hooks.getRegistered();
2710
+ *
2711
+ * // Results:
2712
+ * [
2713
+ * ...
2714
+ * 'beforeInit',
2715
+ * 'beforeRender',
2716
+ * 'beforeSetRangeEnd',
2717
+ * 'beforeDrawBorders',
2718
+ * 'beforeChange',
2719
+ * ...
2720
+ * ]
2721
+ * ```
2722
+ */
2723
+ }, {
2724
+ key: "getRegistered",
2725
+ value: function getRegistered() {
2726
+ return REGISTERED_HOOKS;
2727
+ }
2728
+ }], [{
2729
+ key: "getSingleton",
2730
+ value: function getSingleton() {
2731
+ return getGlobalSingleton();
2732
+ }
2733
+ }]);
2734
+ return Hooks;
2735
+ }();
2736
+ var globalSingleton = new Hooks();
2737
+
2738
+ /**
2739
+ * @returns {Hooks}
2740
+ */
2741
+ function getGlobalSingleton() {
2742
+ return globalSingleton;
2743
+ }
2744
+ export default Hooks;