handsontable 11.1.0 → 12.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (461) hide show
  1. package/3rdparty/walkontable/src/border.js +120 -98
  2. package/3rdparty/walkontable/src/border.mjs +120 -94
  3. package/3rdparty/walkontable/src/cell/coords.js +59 -17
  4. package/3rdparty/walkontable/src/cell/coords.mjs +55 -17
  5. package/3rdparty/walkontable/src/cell/range.d.ts +10 -2
  6. package/3rdparty/walkontable/src/cell/range.js +278 -99
  7. package/3rdparty/walkontable/src/cell/range.mjs +273 -99
  8. package/3rdparty/walkontable/src/core/_base.js +452 -0
  9. package/3rdparty/walkontable/src/core/_base.mjs +440 -0
  10. package/3rdparty/walkontable/src/core/clone.js +97 -0
  11. package/3rdparty/walkontable/src/core/clone.mjs +80 -0
  12. package/3rdparty/walkontable/src/core/core.js +183 -0
  13. package/3rdparty/walkontable/src/core/core.mjs +160 -0
  14. package/3rdparty/walkontable/src/event.js +99 -66
  15. package/3rdparty/walkontable/src/event.mjs +99 -63
  16. package/3rdparty/walkontable/src/facade/core.js +251 -0
  17. package/3rdparty/walkontable/src/facade/core.mjs +243 -0
  18. package/3rdparty/walkontable/src/index.js +2 -46
  19. package/3rdparty/walkontable/src/index.mjs +3 -13
  20. package/3rdparty/walkontable/src/overlay/_base.js +124 -57
  21. package/3rdparty/walkontable/src/overlay/_base.mjs +124 -57
  22. package/3rdparty/walkontable/src/overlay/bottom.js +96 -80
  23. package/3rdparty/walkontable/src/overlay/bottom.mjs +96 -80
  24. package/3rdparty/walkontable/src/overlay/{bottomLeftCorner.js → bottomInlineStartCorner.js} +45 -62
  25. package/3rdparty/walkontable/src/overlay/{bottomLeftCorner.mjs → bottomInlineStartCorner.mjs} +44 -61
  26. package/3rdparty/walkontable/src/overlay/constants.js +25 -9
  27. package/3rdparty/walkontable/src/overlay/constants.mjs +14 -4
  28. package/3rdparty/walkontable/src/overlay/index.js +10 -19
  29. package/3rdparty/walkontable/src/overlay/index.mjs +4 -5
  30. package/3rdparty/walkontable/src/overlay/{left.js → inlineStart.js} +113 -82
  31. package/3rdparty/walkontable/src/overlay/{left.mjs → inlineStart.mjs} +112 -81
  32. package/3rdparty/walkontable/src/overlay/top.js +93 -68
  33. package/3rdparty/walkontable/src/overlay/top.mjs +93 -68
  34. package/3rdparty/walkontable/src/overlay/{topLeftCorner.js → topInlineStartCorner.js} +56 -57
  35. package/3rdparty/walkontable/src/overlay/{topLeftCorner.mjs → topInlineStartCorner.mjs} +51 -52
  36. package/3rdparty/walkontable/src/overlays.js +225 -156
  37. package/3rdparty/walkontable/src/overlays.mjs +224 -154
  38. package/3rdparty/walkontable/src/renderer/cells.js +4 -3
  39. package/3rdparty/walkontable/src/renderer/cells.mjs +4 -3
  40. package/3rdparty/walkontable/src/renderer/colGroup.js +2 -2
  41. package/3rdparty/walkontable/src/renderer/colGroup.mjs +2 -2
  42. package/3rdparty/walkontable/src/renderer/columnHeaders.js +2 -2
  43. package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +2 -2
  44. package/3rdparty/walkontable/src/renderer/rowHeaders.js +2 -2
  45. package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +2 -2
  46. package/3rdparty/walkontable/src/renderer/rows.js +2 -2
  47. package/3rdparty/walkontable/src/renderer/rows.mjs +2 -2
  48. package/3rdparty/walkontable/src/scroll.js +125 -104
  49. package/3rdparty/walkontable/src/scroll.mjs +124 -104
  50. package/3rdparty/walkontable/src/selection.js +10 -14
  51. package/3rdparty/walkontable/src/selection.mjs +10 -12
  52. package/3rdparty/walkontable/src/settings.js +235 -126
  53. package/3rdparty/walkontable/src/settings.mjs +235 -125
  54. package/3rdparty/walkontable/src/table/bottom.js +16 -5
  55. package/3rdparty/walkontable/src/table/bottom.mjs +15 -5
  56. package/3rdparty/walkontable/src/table/{bottomLeftCorner.js → bottomInlineStartCorner.js} +27 -15
  57. package/3rdparty/walkontable/src/table/{bottomLeftCorner.mjs → bottomInlineStartCorner.mjs} +26 -15
  58. package/3rdparty/walkontable/src/table/{left.js → inlineStart.js} +23 -15
  59. package/3rdparty/walkontable/src/table/{left.mjs → inlineStart.mjs} +22 -15
  60. package/3rdparty/walkontable/src/table/master.js +22 -12
  61. package/3rdparty/walkontable/src/table/master.mjs +22 -12
  62. package/3rdparty/walkontable/src/table/mixin/calculatedColumns.js +12 -6
  63. package/3rdparty/walkontable/src/table/mixin/calculatedColumns.mjs +12 -6
  64. package/3rdparty/walkontable/src/table/mixin/calculatedRows.js +12 -6
  65. package/3rdparty/walkontable/src/table/mixin/calculatedRows.mjs +12 -6
  66. package/3rdparty/walkontable/src/table/mixin/{stickyColumnsLeft.js → stickyColumnsStart.js} +13 -7
  67. package/3rdparty/walkontable/src/table/mixin/{stickyColumnsLeft.mjs → stickyColumnsStart.mjs} +13 -7
  68. package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.js +11 -5
  69. package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.mjs +11 -5
  70. package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.js +9 -3
  71. package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.mjs +9 -3
  72. package/3rdparty/walkontable/src/table/top.js +16 -5
  73. package/3rdparty/walkontable/src/table/top.mjs +15 -5
  74. package/3rdparty/walkontable/src/table/{topLeftCorner.js → topInlineStartCorner.js} +27 -15
  75. package/3rdparty/walkontable/src/table/{topLeftCorner.mjs → topInlineStartCorner.mjs} +26 -15
  76. package/3rdparty/walkontable/src/table.js +235 -140
  77. package/3rdparty/walkontable/src/table.mjs +231 -134
  78. package/3rdparty/walkontable/src/types.js +103 -0
  79. package/3rdparty/walkontable/src/types.mjs +102 -0
  80. package/3rdparty/walkontable/src/utils/column.js +22 -33
  81. package/3rdparty/walkontable/src/utils/column.mjs +22 -30
  82. package/3rdparty/walkontable/src/utils/orderView/sharedView.js +2 -2
  83. package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +2 -2
  84. package/3rdparty/walkontable/src/utils/row.js +9 -4
  85. package/3rdparty/walkontable/src/utils/row.mjs +9 -4
  86. package/3rdparty/walkontable/src/viewport.js +89 -100
  87. package/3rdparty/walkontable/src/viewport.mjs +89 -97
  88. package/CHANGELOG.md +92 -0
  89. package/LICENSE.txt +1 -1
  90. package/README.md +0 -1
  91. package/base.js +2 -2
  92. package/base.mjs +2 -2
  93. package/cellTypes/timeType/timeType.d.ts +6 -6
  94. package/cellTypes/timeType/timeType.js +4 -5
  95. package/cellTypes/timeType/timeType.mjs +4 -5
  96. package/core.d.ts +6 -1
  97. package/core.js +508 -80
  98. package/core.mjs +517 -92
  99. package/dataMap/index.js +4 -0
  100. package/dataMap/index.mjs +2 -1
  101. package/dataMap/metaManager/index.js +2 -2
  102. package/dataMap/metaManager/index.mjs +2 -2
  103. package/dataMap/metaManager/metaLayers/globalMeta.js +4 -0
  104. package/dataMap/metaManager/metaLayers/globalMeta.mjs +4 -0
  105. package/dataMap/metaManager/metaLayers/tableMeta.js +2 -2
  106. package/dataMap/metaManager/metaLayers/tableMeta.mjs +2 -2
  107. package/dataMap/metaManager/metaSchema.js +282 -187
  108. package/dataMap/metaManager/metaSchema.mjs +282 -187
  109. package/dataMap/metaManager/mods/extendMetaProperties.js +126 -0
  110. package/dataMap/metaManager/mods/extendMetaProperties.mjs +113 -0
  111. package/dataMap/replaceData.js +3 -17
  112. package/dataMap/replaceData.mjs +3 -17
  113. package/dist/handsontable.css +268 -92
  114. package/dist/handsontable.full.css +269 -103
  115. package/dist/handsontable.full.js +41990 -35658
  116. package/dist/handsontable.full.min.css +9 -9
  117. package/dist/handsontable.full.min.js +144 -144
  118. package/dist/handsontable.js +29561 -25597
  119. package/dist/handsontable.min.css +8 -8
  120. package/dist/handsontable.min.js +4 -4
  121. package/dist/languages/all.js +131 -34
  122. package/dist/languages/all.min.js +1 -1
  123. package/dist/languages/ar-AR.js +167 -0
  124. package/dist/languages/ar-AR.min.js +1 -0
  125. package/dist/languages/cs-CZ.js +167 -0
  126. package/dist/languages/cs-CZ.min.js +1 -0
  127. package/dist/languages/de-CH.js +31 -29
  128. package/dist/languages/de-CH.min.js +1 -1
  129. package/dist/languages/de-DE.js +4 -2
  130. package/dist/languages/de-DE.min.js +1 -1
  131. package/dist/languages/en-US.js +4 -2
  132. package/dist/languages/en-US.min.js +1 -1
  133. package/dist/languages/es-MX.js +4 -2
  134. package/dist/languages/es-MX.min.js +1 -1
  135. package/dist/languages/fr-FR.js +4 -2
  136. package/dist/languages/fr-FR.min.js +1 -1
  137. package/dist/languages/it-IT.js +4 -2
  138. package/dist/languages/it-IT.min.js +1 -1
  139. package/dist/languages/ja-JP.js +36 -38
  140. package/dist/languages/ja-JP.min.js +1 -1
  141. package/dist/languages/ko-KR.js +36 -39
  142. package/dist/languages/ko-KR.min.js +1 -1
  143. package/dist/languages/lv-LV.js +2 -2
  144. package/dist/languages/lv-LV.min.js +1 -1
  145. package/dist/languages/nb-NO.js +2 -2
  146. package/dist/languages/nb-NO.min.js +1 -1
  147. package/dist/languages/nl-NL.js +2 -2
  148. package/dist/languages/nl-NL.min.js +1 -1
  149. package/dist/languages/pl-PL.js +2 -2
  150. package/dist/languages/pl-PL.min.js +1 -1
  151. package/dist/languages/pt-BR.js +2 -2
  152. package/dist/languages/pt-BR.min.js +1 -1
  153. package/dist/languages/ru-RU.js +2 -2
  154. package/dist/languages/ru-RU.min.js +1 -1
  155. package/dist/languages/sr-SP.js +171 -0
  156. package/dist/languages/sr-SP.min.js +1 -0
  157. package/dist/languages/zh-CN.js +24 -24
  158. package/dist/languages/zh-CN.min.js +1 -1
  159. package/dist/languages/zh-TW.js +24 -24
  160. package/dist/languages/zh-TW.min.js +1 -1
  161. package/editorManager.js +120 -267
  162. package/editorManager.mjs +128 -278
  163. package/editors/autocompleteEditor/autocompleteEditor.js +22 -25
  164. package/editors/autocompleteEditor/autocompleteEditor.mjs +22 -25
  165. package/editors/baseEditor/baseEditor.js +205 -34
  166. package/editors/baseEditor/baseEditor.mjs +200 -32
  167. package/editors/checkboxEditor/checkboxEditor.js +2 -2
  168. package/editors/checkboxEditor/checkboxEditor.mjs +2 -2
  169. package/editors/dateEditor/dateEditor.js +21 -8
  170. package/editors/dateEditor/dateEditor.mjs +22 -9
  171. package/editors/dropdownEditor/dropdownEditor.js +3 -3
  172. package/editors/dropdownEditor/dropdownEditor.mjs +3 -3
  173. package/editors/handsontableEditor/handsontableEditor.js +106 -55
  174. package/editors/handsontableEditor/handsontableEditor.mjs +106 -55
  175. package/editors/index.d.ts +3 -0
  176. package/editors/index.js +6 -0
  177. package/editors/index.mjs +3 -1
  178. package/editors/numericEditor/numericEditor.js +2 -2
  179. package/editors/numericEditor/numericEditor.mjs +2 -2
  180. package/editors/passwordEditor/passwordEditor.js +3 -3
  181. package/editors/passwordEditor/passwordEditor.mjs +3 -3
  182. package/editors/selectEditor/selectEditor.js +65 -110
  183. package/editors/selectEditor/selectEditor.mjs +66 -109
  184. package/editors/textEditor/caretPositioner.js +49 -0
  185. package/editors/textEditor/caretPositioner.mjs +42 -0
  186. package/editors/textEditor/textEditor.js +205 -181
  187. package/editors/textEditor/textEditor.mjs +199 -179
  188. package/editors/timeEditor/index.d.ts +1 -0
  189. package/editors/timeEditor/index.js +9 -0
  190. package/editors/timeEditor/index.mjs +1 -0
  191. package/editors/timeEditor/timeEditor.d.ts +7 -0
  192. package/editors/timeEditor/timeEditor.js +105 -0
  193. package/editors/timeEditor/timeEditor.mjs +84 -0
  194. package/eventManager.js +4 -2
  195. package/eventManager.mjs +4 -2
  196. package/helpers/mixed.js +2 -2
  197. package/helpers/mixed.mjs +2 -2
  198. package/i18n/languages/ar-AR.js +41 -0
  199. package/i18n/languages/ar-AR.mjs +17 -0
  200. package/i18n/languages/cs-CZ.js +40 -0
  201. package/i18n/languages/cs-CZ.mjs +16 -0
  202. package/i18n/languages/index.js +12 -0
  203. package/i18n/languages/index.mjs +4 -1
  204. package/i18n/languages/sr-SP.js +40 -0
  205. package/i18n/languages/sr-SP.mjs +16 -0
  206. package/index.d.ts +4 -0
  207. package/languages/all.js +131 -34
  208. package/languages/ar-AR.js +167 -0
  209. package/languages/ar-AR.mjs +19 -0
  210. package/languages/cs-CZ.js +167 -0
  211. package/languages/cs-CZ.mjs +18 -0
  212. package/languages/de-CH.js +31 -29
  213. package/languages/de-DE.js +4 -2
  214. package/languages/en-US.js +4 -2
  215. package/languages/es-MX.js +4 -2
  216. package/languages/fr-FR.js +4 -2
  217. package/languages/index.js +131 -34
  218. package/languages/index.mjs +4 -1
  219. package/languages/it-IT.js +4 -2
  220. package/languages/ja-JP.js +36 -38
  221. package/languages/ko-KR.js +36 -39
  222. package/languages/lv-LV.js +2 -2
  223. package/languages/nb-NO.js +2 -2
  224. package/languages/nl-NL.js +2 -2
  225. package/languages/pl-PL.js +2 -2
  226. package/languages/pt-BR.js +2 -2
  227. package/languages/ru-RU.js +2 -2
  228. package/languages/sr-SP.js +171 -0
  229. package/languages/sr-SP.mjs +18 -0
  230. package/languages/zh-CN.js +24 -24
  231. package/languages/zh-TW.js +24 -24
  232. package/package.json +44 -4
  233. package/pluginHooks.js +49 -13
  234. package/pluginHooks.mjs +49 -13
  235. package/plugins/autoColumnSize/autoColumnSize.js +15 -10
  236. package/plugins/autoColumnSize/autoColumnSize.mjs +15 -10
  237. package/plugins/autoRowSize/autoRowSize.js +14 -9
  238. package/plugins/autoRowSize/autoRowSize.mjs +14 -9
  239. package/plugins/autofill/autofill.js +49 -33
  240. package/plugins/autofill/autofill.mjs +49 -32
  241. package/plugins/autofill/utils.js +10 -11
  242. package/plugins/autofill/utils.mjs +10 -10
  243. package/plugins/base/base.d.ts +8 -2
  244. package/plugins/base/base.js +67 -4
  245. package/plugins/base/base.mjs +66 -4
  246. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +3 -3
  247. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +3 -3
  248. package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +3 -3
  249. package/plugins/bindRowsWithHeaders/maps/looseBindsMap.mjs +3 -3
  250. package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +3 -3
  251. package/plugins/bindRowsWithHeaders/maps/strictBindsMap.mjs +3 -3
  252. package/plugins/collapsibleColumns/collapsibleColumns.js +27 -9
  253. package/plugins/collapsibleColumns/collapsibleColumns.mjs +27 -9
  254. package/plugins/columnSorting/columnSorting.js +5 -7
  255. package/plugins/columnSorting/columnSorting.mjs +5 -6
  256. package/plugins/columnSummary/columnSummary.js +3 -3
  257. package/plugins/columnSummary/columnSummary.mjs +3 -3
  258. package/plugins/comments/commentEditor.js +18 -2
  259. package/plugins/comments/commentEditor.mjs +19 -3
  260. package/plugins/comments/comments.js +57 -46
  261. package/plugins/comments/comments.mjs +58 -46
  262. package/plugins/contextMenu/contextMenu.js +10 -6
  263. package/plugins/contextMenu/contextMenu.mjs +10 -6
  264. package/plugins/contextMenu/menu.js +222 -110
  265. package/plugins/contextMenu/menu.mjs +219 -111
  266. package/plugins/contextMenu/predefinedItems/columnLeft.js +12 -4
  267. package/plugins/contextMenu/predefinedItems/columnLeft.mjs +11 -4
  268. package/plugins/contextMenu/predefinedItems/columnRight.js +9 -9
  269. package/plugins/contextMenu/predefinedItems/columnRight.mjs +9 -9
  270. package/plugins/contextMenu/utils.js +2 -2
  271. package/plugins/contextMenu/utils.mjs +2 -2
  272. package/plugins/copyPaste/copyPaste.js +31 -21
  273. package/plugins/copyPaste/copyPaste.mjs +30 -21
  274. package/plugins/customBorders/contextMenuItem/left.js +4 -3
  275. package/plugins/customBorders/contextMenuItem/left.mjs +4 -3
  276. package/plugins/customBorders/contextMenuItem/right.js +4 -3
  277. package/plugins/customBorders/contextMenuItem/right.mjs +4 -3
  278. package/plugins/customBorders/customBorders.js +144 -87
  279. package/plugins/customBorders/customBorders.mjs +143 -85
  280. package/plugins/customBorders/utils.js +131 -27
  281. package/plugins/customBorders/utils.mjs +115 -27
  282. package/plugins/dragToScroll/dragToScroll.js +10 -5
  283. package/plugins/dragToScroll/dragToScroll.mjs +10 -5
  284. package/plugins/dropdownMenu/dropdownMenu.js +9 -7
  285. package/plugins/dropdownMenu/dropdownMenu.mjs +9 -7
  286. package/plugins/exportFile/exportFile.js +2 -2
  287. package/plugins/exportFile/exportFile.mjs +2 -2
  288. package/plugins/exportFile/types/csv.js +2 -2
  289. package/plugins/exportFile/types/csv.mjs +2 -2
  290. package/plugins/filters/component/actionBar.js +2 -2
  291. package/plugins/filters/component/actionBar.mjs +2 -2
  292. package/plugins/filters/component/condition.js +3 -3
  293. package/plugins/filters/component/condition.mjs +3 -3
  294. package/plugins/filters/component/operators.js +2 -2
  295. package/plugins/filters/component/operators.mjs +2 -2
  296. package/plugins/filters/component/value.js +3 -3
  297. package/plugins/filters/component/value.mjs +3 -3
  298. package/plugins/filters/filters.js +11 -8
  299. package/plugins/filters/filters.mjs +11 -8
  300. package/plugins/filters/ui/input.js +3 -3
  301. package/plugins/filters/ui/input.mjs +3 -3
  302. package/plugins/filters/ui/link.js +3 -3
  303. package/plugins/filters/ui/link.mjs +3 -3
  304. package/plugins/filters/ui/multipleSelect.js +18 -31
  305. package/plugins/filters/ui/multipleSelect.mjs +18 -31
  306. package/plugins/filters/ui/radioInput.js +3 -3
  307. package/plugins/filters/ui/radioInput.mjs +3 -3
  308. package/plugins/filters/ui/select.js +4 -4
  309. package/plugins/filters/ui/select.mjs +4 -4
  310. package/plugins/formulas/formulas.js +14 -9
  311. package/plugins/formulas/formulas.mjs +14 -9
  312. package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +2 -4
  313. package/plugins/hiddenColumns/contextMenuItem/hideColumn.mjs +2 -4
  314. package/plugins/hiddenColumns/contextMenuItem/showColumn.js +5 -5
  315. package/plugins/hiddenColumns/contextMenuItem/showColumn.mjs +5 -5
  316. package/plugins/hiddenColumns/hiddenColumns.js +9 -4
  317. package/plugins/hiddenColumns/hiddenColumns.mjs +9 -4
  318. package/plugins/hiddenRows/contextMenuItem/hideRow.js +2 -4
  319. package/plugins/hiddenRows/contextMenuItem/hideRow.mjs +2 -4
  320. package/plugins/hiddenRows/contextMenuItem/showRow.js +5 -5
  321. package/plugins/hiddenRows/contextMenuItem/showRow.mjs +5 -5
  322. package/plugins/hiddenRows/hiddenRows.js +9 -4
  323. package/plugins/hiddenRows/hiddenRows.mjs +9 -4
  324. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +1 -1
  325. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +1 -1
  326. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +1 -1
  327. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +1 -1
  328. package/plugins/manualColumnFreeze/manualColumnFreeze.js +54 -15
  329. package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +49 -15
  330. package/plugins/manualColumnMove/manualColumnMove.js +70 -70
  331. package/plugins/manualColumnMove/manualColumnMove.mjs +71 -71
  332. package/plugins/manualColumnMove/ui/_base.js +25 -12
  333. package/plugins/manualColumnMove/ui/_base.mjs +24 -12
  334. package/plugins/manualColumnMove/ui/backlight.js +3 -3
  335. package/plugins/manualColumnMove/ui/backlight.mjs +3 -3
  336. package/plugins/manualColumnMove/ui/guideline.js +3 -3
  337. package/plugins/manualColumnMove/ui/guideline.mjs +3 -3
  338. package/plugins/manualColumnResize/manualColumnResize.js +37 -21
  339. package/plugins/manualColumnResize/manualColumnResize.mjs +37 -21
  340. package/plugins/manualRowMove/manualRowMove.js +26 -34
  341. package/plugins/manualRowMove/manualRowMove.mjs +26 -34
  342. package/plugins/manualRowMove/ui/backlight.js +3 -3
  343. package/plugins/manualRowMove/ui/backlight.mjs +3 -3
  344. package/plugins/manualRowMove/ui/guideline.js +3 -3
  345. package/plugins/manualRowMove/ui/guideline.mjs +3 -3
  346. package/plugins/manualRowResize/manualRowResize.js +34 -19
  347. package/plugins/manualRowResize/manualRowResize.mjs +34 -19
  348. package/plugins/mergeCells/calculations/autofill.js +6 -5
  349. package/plugins/mergeCells/calculations/autofill.mjs +6 -4
  350. package/plugins/mergeCells/calculations/selection.js +9 -4
  351. package/plugins/mergeCells/calculations/selection.mjs +9 -4
  352. package/plugins/mergeCells/cellCoords.js +16 -4
  353. package/plugins/mergeCells/cellCoords.mjs +16 -3
  354. package/plugins/mergeCells/cellsCollection.js +30 -23
  355. package/plugins/mergeCells/cellsCollection.mjs +30 -22
  356. package/plugins/mergeCells/mergeCells.js +94 -61
  357. package/plugins/mergeCells/mergeCells.mjs +94 -59
  358. package/plugins/multiColumnSorting/multiColumnSorting.js +4 -6
  359. package/plugins/multiColumnSorting/multiColumnSorting.mjs +4 -5
  360. package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +51 -57
  361. package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +52 -57
  362. package/plugins/nestedHeaders/nestedHeaders.js +31 -20
  363. package/plugins/nestedHeaders/nestedHeaders.mjs +31 -20
  364. package/plugins/nestedHeaders/stateManager/utils.js +3 -4
  365. package/plugins/nestedHeaders/stateManager/utils.mjs +3 -4
  366. package/plugins/nestedHeaders/utils/ghostTable.js +114 -75
  367. package/plugins/nestedHeaders/utils/ghostTable.mjs +114 -74
  368. package/plugins/nestedRows/nestedRows.js +9 -4
  369. package/plugins/nestedRows/nestedRows.mjs +9 -4
  370. package/plugins/nestedRows/ui/collapsing.js +2 -2
  371. package/plugins/nestedRows/ui/collapsing.mjs +2 -2
  372. package/plugins/nestedRows/ui/contextMenu.js +2 -2
  373. package/plugins/nestedRows/ui/contextMenu.mjs +2 -2
  374. package/plugins/nestedRows/ui/headers.js +2 -2
  375. package/plugins/nestedRows/ui/headers.mjs +2 -2
  376. package/plugins/nestedRows/utils/rowMoveController.js +2 -4
  377. package/plugins/nestedRows/utils/rowMoveController.mjs +2 -3
  378. package/plugins/persistentState/persistentState.js +9 -4
  379. package/plugins/persistentState/persistentState.mjs +9 -4
  380. package/plugins/search/search.js +9 -4
  381. package/plugins/search/search.mjs +9 -4
  382. package/plugins/touchScroll/touchScroll.js +27 -21
  383. package/plugins/touchScroll/touchScroll.mjs +27 -21
  384. package/plugins/trimRows/trimRows.js +9 -4
  385. package/plugins/trimRows/trimRows.mjs +9 -4
  386. package/plugins/undoRedo/undoRedo.js +53 -47
  387. package/plugins/undoRedo/undoRedo.mjs +53 -46
  388. package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -3
  389. package/renderers/autocompleteRenderer/autocompleteRenderer.mjs +1 -2
  390. package/renderers/checkboxRenderer/checkboxRenderer.js +48 -43
  391. package/renderers/checkboxRenderer/checkboxRenderer.mjs +48 -41
  392. package/renderers/index.d.ts +4 -1
  393. package/renderers/index.js +6 -0
  394. package/renderers/index.mjs +3 -1
  395. package/renderers/numericRenderer/numericRenderer.js +1 -0
  396. package/renderers/numericRenderer/numericRenderer.mjs +1 -0
  397. package/renderers/timeRenderer/index.d.ts +1 -0
  398. package/renderers/timeRenderer/index.js +9 -0
  399. package/renderers/timeRenderer/index.mjs +1 -0
  400. package/renderers/timeRenderer/timeRenderer.d.ts +5 -0
  401. package/renderers/timeRenderer/timeRenderer.js +31 -0
  402. package/renderers/timeRenderer/timeRenderer.mjs +20 -0
  403. package/selection/highlight/visualSelection.js +94 -220
  404. package/selection/highlight/visualSelection.mjs +91 -213
  405. package/selection/mouseEventHandler.js +15 -10
  406. package/selection/mouseEventHandler.mjs +15 -9
  407. package/selection/range.js +4 -5
  408. package/selection/range.mjs +4 -5
  409. package/selection/selection.js +35 -22
  410. package/selection/selection.mjs +35 -20
  411. package/selection/transformation.js +4 -6
  412. package/selection/transformation.mjs +4 -5
  413. package/settings.d.ts +3 -1
  414. package/shortcuts/context.d.ts +20 -0
  415. package/shortcuts/context.js +296 -0
  416. package/shortcuts/context.mjs +268 -0
  417. package/shortcuts/index.d.ts +1 -0
  418. package/shortcuts/index.js +8 -0
  419. package/shortcuts/index.mjs +1 -0
  420. package/shortcuts/keyObserver.js +67 -0
  421. package/shortcuts/keyObserver.mjs +58 -0
  422. package/shortcuts/manager.d.ts +10 -0
  423. package/shortcuts/manager.js +185 -0
  424. package/shortcuts/manager.mjs +176 -0
  425. package/shortcuts/recorder.js +192 -0
  426. package/shortcuts/recorder.mjs +180 -0
  427. package/shortcuts/utils.js +77 -0
  428. package/shortcuts/utils.mjs +54 -0
  429. package/tableView.js +164 -84
  430. package/tableView.mjs +164 -74
  431. package/translations/changesObservable/observer.js +0 -1
  432. package/translations/changesObservable/observer.mjs +0 -1
  433. package/translations/indexMapper.d.ts +3 -1
  434. package/translations/indexMapper.js +89 -11
  435. package/translations/indexMapper.mjs +91 -20
  436. package/translations/mapCollections/aggregatedCollection.js +2 -2
  437. package/translations/mapCollections/aggregatedCollection.mjs +2 -2
  438. package/translations/maps/hidingMap.js +4 -2
  439. package/translations/maps/hidingMap.mjs +4 -2
  440. package/translations/maps/indexMap.js +2 -0
  441. package/translations/maps/indexMap.mjs +2 -0
  442. package/translations/maps/indexesSequence.js +5 -3
  443. package/translations/maps/indexesSequence.mjs +5 -3
  444. package/translations/maps/linkedPhysicalIndexToValueMap.js +5 -3
  445. package/translations/maps/linkedPhysicalIndexToValueMap.mjs +5 -3
  446. package/translations/maps/physicalIndexToValueMap.js +5 -3
  447. package/translations/maps/physicalIndexToValueMap.mjs +5 -3
  448. package/translations/maps/trimmingMap.js +4 -2
  449. package/translations/maps/trimmingMap.mjs +4 -2
  450. package/utils/dataStructures/uniqueMap.js +14 -1
  451. package/utils/dataStructures/uniqueMap.mjs +14 -1
  452. package/utils/dataStructures/uniqueSet.js +9 -0
  453. package/utils/dataStructures/uniqueSet.mjs +9 -0
  454. package/utils/ghostTable.js +1 -1
  455. package/utils/ghostTable.mjs +1 -1
  456. package/3rdparty/walkontable/src/core.js +0 -309
  457. package/3rdparty/walkontable/src/core.mjs +0 -293
  458. package/3rdparty/walkontable/src/overlay/registerer.js +0 -70
  459. package/3rdparty/walkontable/src/overlay/registerer.mjs +0 -57
  460. package/utils/keyStateObserver.js +0 -121
  461. package/utils/keyStateObserver.mjs +0 -103
@@ -1,6 +1,15 @@
1
+ import "core-js/modules/es.array.concat.js";
1
2
  import "core-js/modules/es.object.to-string.js";
2
3
  import "core-js/modules/web.dom-collections.for-each.js";
3
4
  import "core-js/modules/web.timers.js";
5
+ import "core-js/modules/es.object.set-prototype-of.js";
6
+ import "core-js/modules/es.reflect.construct.js";
7
+
8
+ function _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _construct = Reflect.construct.bind(); } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); }
9
+
10
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
11
+
12
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
4
13
 
5
14
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
6
15
 
@@ -8,60 +17,118 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
8
17
 
9
18
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
10
19
 
11
- import { getScrollableElement, getScrollbarWidth } from "./../../../helpers/dom/element.mjs";
12
- import { arrayEach } from "./../../../helpers/array.mjs";
13
- import { isKey } from "./../../../helpers/unicode.mjs";
14
- import { isChrome } from "./../../../helpers/browser.mjs";
15
- import EventManager from "./../../../eventManager.mjs";
16
- import { CLONE_BOTTOM_LEFT_CORNER, CLONE_BOTTOM, CLONE_LEFT, CLONE_TOP_LEFT_CORNER, CLONE_TOP, LeftOverlay, TopOverlay, TopLeftCornerOverlay, BottomOverlay, BottomLeftCornerOverlay, registerOverlayOnce, createOverlay, hasOverlay } from "./overlay/index.mjs";
17
- registerOverlayOnce(BottomLeftCornerOverlay);
18
- registerOverlayOnce(BottomOverlay);
19
- registerOverlayOnce(LeftOverlay);
20
- registerOverlayOnce(TopLeftCornerOverlay);
21
- registerOverlayOnce(TopOverlay);
20
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
21
+
22
+ import { getScrollableElement, getScrollbarWidth } from "../../../helpers/dom/element.mjs";
23
+ import { arrayEach } from "../../../helpers/array.mjs";
24
+ import { isKey } from "../../../helpers/unicode.mjs";
25
+ import { isChrome } from "../../../helpers/browser.mjs";
26
+ import { InlineStartOverlay, TopOverlay, TopInlineStartCornerOverlay, BottomOverlay, BottomInlineStartCornerOverlay } from "./overlay/index.mjs";
22
27
  /**
23
28
  * @class Overlays
24
29
  */
25
30
 
26
31
  var Overlays = /*#__PURE__*/function () {
27
32
  /**
28
- * @param {Walkontable} wotInstance The Walkontable instance.
33
+ * Walkontable instance's reference.
34
+ *
35
+ * @protected
36
+ * @type {Walkontable}
37
+ */
38
+
39
+ /**
40
+ * Refer to the TopOverlay instance.
41
+ *
42
+ * @protected
43
+ * @type {TopOverlay}
44
+ */
45
+
46
+ /**
47
+ * Refer to the BottomOverlay instance.
48
+ *
49
+ * @protected
50
+ * @type {BottomOverlay}
51
+ */
52
+
53
+ /**
54
+ * Refer to the InlineStartOverlay or instance.
55
+ *
56
+ * @protected
57
+ * @type {InlineStartOverlay}
58
+ */
59
+
60
+ /**
61
+ * Refer to the TopInlineStartCornerOverlay instance.
62
+ *
63
+ * @protected
64
+ * @type {TopInlineStartCornerOverlay}
29
65
  */
30
- function Overlays(wotInstance) {
66
+
67
+ /**
68
+ * Refer to the BottomInlineStartCornerOverlay instance.
69
+ *
70
+ * @protected
71
+ * @type {BottomInlineStartCornerOverlay}
72
+ */
73
+
74
+ /**
75
+ * Browser line height for purposes of translating mouse wheel.
76
+ *
77
+ * @private
78
+ * @type {number}
79
+ */
80
+
81
+ /**
82
+ * The walkontable settings.
83
+ *
84
+ * @protected
85
+ * @type {Settings}
86
+ */
87
+
88
+ /**
89
+ * @param {Walkontable} wotInstance The Walkontable instance. @todo refactoring remove.
90
+ * @param {FacadeGetter} facadeGetter Function which return proper facade.
91
+ * @param {DomBindings} domBindings Bindings into DOM.
92
+ * @param {Settings} wtSettings The Walkontable settings.
93
+ * @param {EventManager} eventManager The walkontable event manager.
94
+ * @param {MasterTable} wtTable The master table.
95
+ */
96
+ function Overlays(wotInstance, facadeGetter, domBindings, wtSettings, eventManager, wtTable) {
31
97
  _classCallCheck(this, Overlays);
32
98
 
33
- /**
34
- * Walkontable instance's reference.
35
- *
36
- * @private
37
- * @type {Walkontable}
38
- */
99
+ _defineProperty(this, "wot", null);
100
+
101
+ _defineProperty(this, "topOverlay", null);
102
+
103
+ _defineProperty(this, "bottomOverlay", null);
104
+
105
+ _defineProperty(this, "inlineStartOverlay", null);
106
+
107
+ _defineProperty(this, "topInlineStartCornerOverlay", null);
108
+
109
+ _defineProperty(this, "bottomInlineStartCornerOverlay", null);
110
+
111
+ _defineProperty(this, "browserLineHeight", undefined);
112
+
113
+ _defineProperty(this, "wtSettings", null);
114
+
39
115
  this.wot = wotInstance;
40
- var _this$wot = this.wot,
41
- rootDocument = _this$wot.rootDocument,
42
- rootWindow = _this$wot.rootWindow,
43
- wtTable = _this$wot.wtTable;
44
- /**
45
- * Sometimes `line-height` might be set to 'normal'. In that case, a default `font-size` should be multiplied by roughly 1.2.
46
- * Https://developer.mozilla.org/pl/docs/Web/CSS/line-height#Values.
47
- */
116
+ this.wtSettings = wtSettings;
117
+ this.domBindings = domBindings;
118
+ this.facadeGetter = facadeGetter;
119
+ this.wtTable = wtTable;
120
+ var _this$domBindings = this.domBindings,
121
+ rootDocument = _this$domBindings.rootDocument,
122
+ rootWindow = _this$domBindings.rootWindow; // legacy support
123
+
124
+ this.instance = this.wot; // todo refactoring: move to facade
48
125
 
49
- var BODY_LINE_HEIGHT = parseInt(rootWindow.getComputedStyle(rootDocument.body).lineHeight, 10);
50
- var FALLBACK_BODY_LINE_HEIGHT = parseInt(rootWindow.getComputedStyle(rootDocument.body).fontSize, 10) * 1.2; // legacy support
126
+ this.eventManager = eventManager; // TODO refactoring: probably invalid place to this logic
51
127
 
52
- this.instance = this.wot;
53
- this.eventManager = new EventManager(this.wot);
54
128
  this.scrollbarSize = getScrollbarWidth(rootDocument);
55
- this.wot.update('scrollbarWidth', this.scrollbarSize);
56
- this.wot.update('scrollbarHeight', this.scrollbarSize);
57
129
  var isOverflowHidden = rootWindow.getComputedStyle(wtTable.wtRootElement.parentNode).getPropertyValue('overflow') === 'hidden';
58
130
  this.scrollableElement = isOverflowHidden ? wtTable.holder : getScrollableElement(wtTable.TABLE);
59
- this.topOverlay = void 0;
60
- this.bottomOverlay = void 0;
61
- this.leftOverlay = void 0;
62
- this.topLeftCornerOverlay = void 0;
63
- this.bottomLeftCornerOverlay = void 0;
64
- this.prepareOverlays();
131
+ this.initOverlays();
65
132
  this.hasScrollbarBottom = false;
66
133
  this.hasScrollbarRight = false;
67
134
  this.destroyed = false;
@@ -72,72 +139,75 @@ var Overlays = /*#__PURE__*/function () {
72
139
  };
73
140
  this.verticalScrolling = false;
74
141
  this.horizontalScrolling = false;
75
- this.browserLineHeight = BODY_LINE_HEIGHT || FALLBACK_BODY_LINE_HEIGHT;
142
+ this.initBrowserLineHeight();
76
143
  this.registerListeners();
77
144
  this.lastScrollX = rootWindow.scrollX;
78
145
  this.lastScrollY = rootWindow.scrollY;
79
146
  }
80
147
  /**
81
- * Prepare overlays based on user settings.
148
+ * Retrieve browser line height and apply its value to `browserLineHeight`.
82
149
  *
83
- * @returns {boolean} Returns `true` if changes applied to overlay needs scroll synchronization.
150
+ * @private
84
151
  */
85
152
 
86
153
 
87
154
  _createClass(Overlays, [{
88
- key: "prepareOverlays",
89
- value: function prepareOverlays() {
90
- var syncScroll = false;
91
-
92
- if (this.topOverlay) {
93
- syncScroll = this.topOverlay.updateStateOfRendering() || syncScroll;
94
- } else {
95
- this.topOverlay = createOverlay(CLONE_TOP, this.wot);
96
- }
97
-
98
- if (!hasOverlay(CLONE_BOTTOM)) {
99
- this.bottomOverlay = {
100
- needFullRender: false,
101
- updateStateOfRendering: function updateStateOfRendering() {
102
- return false;
103
- }
104
- };
105
- }
106
-
107
- if (!hasOverlay(CLONE_BOTTOM_LEFT_CORNER)) {
108
- this.bottomLeftCornerOverlay = {
109
- needFullRender: false,
110
- updateStateOfRendering: function updateStateOfRendering() {
111
- return false;
112
- }
113
- };
114
- }
115
-
116
- if (this.bottomOverlay) {
117
- syncScroll = this.bottomOverlay.updateStateOfRendering() || syncScroll;
118
- } else {
119
- this.bottomOverlay = createOverlay(CLONE_BOTTOM, this.wot);
120
- }
155
+ key: "initBrowserLineHeight",
156
+ value: function initBrowserLineHeight() {
157
+ var _this$domBindings2 = this.domBindings,
158
+ rootWindow = _this$domBindings2.rootWindow,
159
+ rootDocument = _this$domBindings2.rootDocument;
160
+ var computedStyle = rootWindow.getComputedStyle(rootDocument.body);
161
+ /**
162
+ * Sometimes `line-height` might be set to 'normal'. In that case, a default `font-size` should be multiplied by roughly 1.2.
163
+ * Https://developer.mozilla.org/pl/docs/Web/CSS/line-height#Values.
164
+ */
165
+
166
+ var lineHeight = parseInt(computedStyle.lineHeight, 10);
167
+ var lineHeightFalback = parseInt(computedStyle.fontSize, 10) * 1.2;
168
+ this.browserLineHeight = lineHeight || lineHeightFalback;
169
+ }
170
+ /**
171
+ * Prepare overlays based on user settings.
172
+ *
173
+ * @private
174
+ */
121
175
 
122
- if (this.leftOverlay) {
123
- syncScroll = this.leftOverlay.updateStateOfRendering() || syncScroll;
124
- } else {
125
- this.leftOverlay = createOverlay(CLONE_LEFT, this.wot);
126
- }
176
+ }, {
177
+ key: "initOverlays",
178
+ value: function initOverlays() {
179
+ var args = [this.wot, this.facadeGetter, this.wtSettings, this.domBindings]; // todo refactoring: IOC, collection or factories.
180
+ // TODO refactoring, conceive about using generic collection of overlays.
181
+
182
+ this.topOverlay = _construct(TopOverlay, args);
183
+ this.bottomOverlay = _construct(BottomOverlay, args);
184
+ this.inlineStartOverlay = _construct(InlineStartOverlay, args); // TODO discuss, the controversial here would be removing the lazy creation mechanism for corners.
185
+ // TODO cond. Has no any visual impact. They're initially hidden in same way like left, top, and bottom overlays.
186
+
187
+ this.topInlineStartCornerOverlay = _construct(TopInlineStartCornerOverlay, args.concat([this.topOverlay, this.inlineStartOverlay]));
188
+ this.bottomInlineStartCornerOverlay = _construct(BottomInlineStartCornerOverlay, args.concat([this.bottomOverlay, this.inlineStartOverlay]));
189
+ }
190
+ /**
191
+ * Update state of rendering, check if changed.
192
+ *
193
+ * @package
194
+ * @returns {boolean} Returns `true` if changes applied to overlay needs scroll synchronization.
195
+ */
127
196
 
128
- if (this.topOverlay.needFullRender && this.leftOverlay.needFullRender) {
129
- if (this.topLeftCornerOverlay) {
130
- syncScroll = this.topLeftCornerOverlay.updateStateOfRendering() || syncScroll;
131
- } else {
132
- this.topLeftCornerOverlay = createOverlay(CLONE_TOP_LEFT_CORNER, this.wot);
197
+ }, {
198
+ key: "updateStateOfRendering",
199
+ value: function updateStateOfRendering() {
200
+ var syncScroll = this.topOverlay.updateStateOfRendering();
201
+ syncScroll = this.bottomOverlay.updateStateOfRendering() || syncScroll;
202
+ syncScroll = this.inlineStartOverlay.updateStateOfRendering() || syncScroll; // todo refactoring: move conditions into updateStateOfRendering(),
203
+
204
+ if (this.inlineStartOverlay.needFullRender) {
205
+ if (this.topOverlay.needFullRender) {
206
+ syncScroll = this.topInlineStartCornerOverlay.updateStateOfRendering() || syncScroll;
133
207
  }
134
- }
135
208
 
136
- if (this.bottomOverlay.needFullRender && this.leftOverlay.needFullRender) {
137
- if (this.bottomLeftCornerOverlay) {
138
- syncScroll = this.bottomLeftCornerOverlay.updateStateOfRendering() || syncScroll;
139
- } else {
140
- this.bottomLeftCornerOverlay = createOverlay(CLONE_BOTTOM_LEFT_CORNER, this.wot);
209
+ if (this.bottomOverlay.needFullRender) {
210
+ syncScroll = this.bottomInlineStartCornerOverlay.updateStateOfRendering() || syncScroll;
141
211
  }
142
212
  }
143
213
 
@@ -154,7 +224,7 @@ var Overlays = /*#__PURE__*/function () {
154
224
  return;
155
225
  }
156
226
 
157
- if (!this.wot.wtTable.holder.parentNode) {
227
+ if (!this.wtTable.holder.parentNode) {
158
228
  // Walkontable was detached from DOM, but this handler was not removed
159
229
  this.destroy();
160
230
  return;
@@ -163,7 +233,7 @@ var Overlays = /*#__PURE__*/function () {
163
233
  this.wot.draw(true);
164
234
 
165
235
  if (this.verticalScrolling) {
166
- this.leftOverlay.onScroll();
236
+ this.inlineStartOverlay.onScroll(); // todo the inlineStartOverlay.onScroll() fires hook. Why is it needed there, not in any another place?
167
237
  }
168
238
 
169
239
  if (this.horizontalScrolling) {
@@ -182,11 +252,11 @@ var Overlays = /*#__PURE__*/function () {
182
252
  value: function registerListeners() {
183
253
  var _this = this;
184
254
 
185
- var _this$wot2 = this.wot,
186
- rootDocument = _this$wot2.rootDocument,
187
- rootWindow = _this$wot2.rootWindow;
255
+ var _this$domBindings3 = this.domBindings,
256
+ rootDocument = _this$domBindings3.rootDocument,
257
+ rootWindow = _this$domBindings3.rootWindow;
188
258
  var topOverlayScrollableElement = this.topOverlay.mainTableScrollableElement;
189
- var leftOverlayScrollableElement = this.leftOverlay.mainTableScrollableElement;
259
+ var inlineStartOverlayScrollableElement = this.inlineStartOverlay.mainTableScrollableElement;
190
260
  this.eventManager.addEventListener(rootDocument.documentElement, 'keydown', function (event) {
191
261
  return _this.onKeyDown(event);
192
262
  });
@@ -202,8 +272,8 @@ var Overlays = /*#__PURE__*/function () {
202
272
  passive: true
203
273
  });
204
274
 
205
- if (topOverlayScrollableElement !== leftOverlayScrollableElement) {
206
- this.eventManager.addEventListener(leftOverlayScrollableElement, 'scroll', function (event) {
275
+ if (topOverlayScrollableElement !== inlineStartOverlayScrollableElement) {
276
+ this.eventManager.addEventListener(inlineStartOverlayScrollableElement, 'scroll', function (event) {
207
277
  return _this.onTableScroll(event);
208
278
  }, {
209
279
  passive: true
@@ -212,21 +282,21 @@ var Overlays = /*#__PURE__*/function () {
212
282
 
213
283
  var isHighPixelRatio = rootWindow.devicePixelRatio && rootWindow.devicePixelRatio > 1;
214
284
  var isScrollOnWindow = this.scrollableElement === rootWindow;
215
- var preventWheel = this.wot.wtSettings.getSetting('preventWheel');
285
+ var preventWheel = this.wtSettings.getSetting('preventWheel');
216
286
  var wheelEventOptions = {
217
287
  passive: isScrollOnWindow
218
288
  };
219
289
 
220
290
  if (preventWheel || isHighPixelRatio || !isChrome()) {
221
- this.eventManager.addEventListener(this.wot.wtTable.wtRootElement, 'wheel', function (event) {
291
+ this.eventManager.addEventListener(this.wtTable.wtRootElement, 'wheel', function (event) {
222
292
  return _this.onCloneWheel(event, preventWheel);
223
293
  }, wheelEventOptions);
224
294
  }
225
295
 
226
- var overlays = [this.topOverlay, this.bottomOverlay, this.leftOverlay, this.topLeftCornerOverlay, this.bottomLeftCornerOverlay];
296
+ var overlays = [this.topOverlay, this.bottomOverlay, this.inlineStartOverlay, this.topInlineStartCornerOverlay, this.bottomInlineStartCornerOverlay];
227
297
  overlays.forEach(function (overlay) {
228
298
  if (overlay && overlay.needFullRender) {
229
- var holder = overlay.clone.wtTable.holder;
299
+ var holder = overlay.clone.wtTable.holder; // todo rethink, maybe: overlay.getHolder()
230
300
 
231
301
  _this.eventManager.addEventListener(holder, 'wheel', function (event) {
232
302
  return _this.onCloneWheel(event, preventWheel);
@@ -237,7 +307,7 @@ var Overlays = /*#__PURE__*/function () {
237
307
  this.eventManager.addEventListener(rootWindow, 'resize', function () {
238
308
  clearTimeout(resizeTimeout);
239
309
  resizeTimeout = setTimeout(function () {
240
- _this.wot.getSetting('onWindowResize');
310
+ _this.wtSettings.getSetting('onWindowResize');
241
311
  }, 200);
242
312
  });
243
313
  }
@@ -261,8 +331,8 @@ var Overlays = /*#__PURE__*/function () {
261
331
  value: function onTableScroll(event) {
262
332
  // There was if statement which controlled flow of this function. It avoided the execution of the next lines
263
333
  // on mobile devices. It was changed. Broader description of this case is included within issue #4856.
264
- var rootWindow = this.wot.rootWindow;
265
- var masterHorizontal = this.leftOverlay.mainTableScrollableElement;
334
+ var rootWindow = this.domBindings.rootWindow;
335
+ var masterHorizontal = this.inlineStartOverlay.mainTableScrollableElement;
266
336
  var masterVertical = this.topOverlay.mainTableScrollableElement;
267
337
  var target = event.target; // For key press, sync only master -> overlay position because while pressing Walkontable.render is triggered
268
338
  // by hot.refreshBorder
@@ -285,10 +355,10 @@ var Overlays = /*#__PURE__*/function () {
285
355
  }, {
286
356
  key: "onCloneWheel",
287
357
  value: function onCloneWheel(event, preventDefault) {
288
- var rootWindow = this.wot.rootWindow; // There was if statement which controlled flow of this function. It avoided the execution of the next lines
358
+ var rootWindow = this.domBindings.rootWindow; // There was if statement which controlled flow of this function. It avoided the execution of the next lines
289
359
  // on mobile devices. It was changed. Broader description of this case is included within issue #4856.
290
360
 
291
- var masterHorizontal = this.leftOverlay.mainTableScrollableElement;
361
+ var masterHorizontal = this.inlineStartOverlay.mainTableScrollableElement;
292
362
  var masterVertical = this.topOverlay.mainTableScrollableElement;
293
363
  var target = event.target; // For key press, sync only master -> overlay position because while pressing Walkontable.render is triggered
294
364
  // by hot.refreshBorder
@@ -337,13 +407,12 @@ var Overlays = /*#__PURE__*/function () {
337
407
  }, {
338
408
  key: "translateMouseWheelToScroll",
339
409
  value: function translateMouseWheelToScroll(event) {
340
- var browserLineHeight = this.browserLineHeight;
341
410
  var deltaY = isNaN(event.deltaY) ? -1 * event.wheelDeltaY : event.deltaY;
342
411
  var deltaX = isNaN(event.deltaX) ? -1 * event.wheelDeltaX : event.deltaX;
343
412
 
344
413
  if (event.deltaMode === 1) {
345
- deltaX += deltaX * browserLineHeight;
346
- deltaY += deltaY * browserLineHeight;
414
+ deltaX += deltaX * this.browserLineHeight;
415
+ deltaY += deltaY * this.browserLineHeight;
347
416
  }
348
417
 
349
418
  var isScrollVerticallyPossible = this.scrollVertically(deltaY);
@@ -391,9 +460,11 @@ var Overlays = /*#__PURE__*/function () {
391
460
  return;
392
461
  }
393
462
 
394
- var rootWindow = this.wot.rootWindow;
395
- var topHolder = this.topOverlay.clone.wtTable.holder;
396
- var leftHolder = this.leftOverlay.clone.wtTable.holder;
463
+ var rootWindow = this.domBindings.rootWindow;
464
+ var topHolder = this.topOverlay.clone.wtTable.holder; // todo rethink
465
+
466
+ var leftHolder = this.inlineStartOverlay.clone.wtTable.holder; // todo rethink
467
+
397
468
  var _ref = [this.scrollableElement.scrollLeft, this.scrollableElement.scrollTop],
398
469
  scrollLeft = _ref[0],
399
470
  scrollTop = _ref[1];
@@ -404,7 +475,7 @@ var Overlays = /*#__PURE__*/function () {
404
475
 
405
476
  if (this.horizontalScrolling) {
406
477
  topHolder.scrollLeft = scrollLeft;
407
- var bottomHolder = this.bottomOverlay.needFullRender ? this.bottomOverlay.clone.wtTable.holder : null;
478
+ var bottomHolder = this.bottomOverlay.needFullRender ? this.bottomOverlay.clone.wtTable.holder : null; // todo rethink
408
479
 
409
480
  if (bottomHolder) {
410
481
  bottomHolder.scrollLeft = scrollLeft;
@@ -429,15 +500,15 @@ var Overlays = /*#__PURE__*/function () {
429
500
  scrollTop = master.scrollTop;
430
501
 
431
502
  if (this.topOverlay.needFullRender) {
432
- this.topOverlay.clone.wtTable.holder.scrollLeft = scrollLeft;
503
+ this.topOverlay.clone.wtTable.holder.scrollLeft = scrollLeft; // todo rethink, *overlay.setScroll*()
433
504
  }
434
505
 
435
506
  if (this.bottomOverlay.needFullRender) {
436
- this.bottomOverlay.clone.wtTable.holder.scrollLeft = scrollLeft;
507
+ this.bottomOverlay.clone.wtTable.holder.scrollLeft = scrollLeft; // todo rethink, *overlay.setScroll*()
437
508
  }
438
509
 
439
- if (this.leftOverlay.needFullRender) {
440
- this.leftOverlay.clone.wtTable.holder.scrollTop = scrollTop;
510
+ if (this.inlineStartOverlay.needFullRender) {
511
+ this.inlineStartOverlay.clone.wtTable.holder.scrollTop = scrollTop; // todo rethink, *overlay.setScroll*()
441
512
  }
442
513
  }
443
514
  /**
@@ -448,16 +519,15 @@ var Overlays = /*#__PURE__*/function () {
448
519
  key: "updateMainScrollableElements",
449
520
  value: function updateMainScrollableElements() {
450
521
  this.deregisterListeners();
451
- this.leftOverlay.updateMainScrollableElement();
522
+ this.inlineStartOverlay.updateMainScrollableElement();
452
523
  this.topOverlay.updateMainScrollableElement();
453
524
 
454
525
  if (this.bottomOverlay.needFullRender) {
455
526
  this.bottomOverlay.updateMainScrollableElement();
456
527
  }
457
528
 
458
- var _this$wot3 = this.wot,
459
- rootWindow = _this$wot3.rootWindow,
460
- wtTable = _this$wot3.wtTable;
529
+ var wtTable = this.wtTable;
530
+ var rootWindow = this.domBindings.rootWindow;
461
531
 
462
532
  if (rootWindow.getComputedStyle(wtTable.wtRootElement.parentNode).getPropertyValue('overflow') === 'hidden') {
463
533
  this.scrollableElement = wtTable.holder;
@@ -474,21 +544,22 @@ var Overlays = /*#__PURE__*/function () {
474
544
  }, {
475
545
  key: "destroy",
476
546
  value: function destroy() {
477
- this.eventManager.destroy();
547
+ this.eventManager.destroy(); // todo, probably all below `destory` calls has no sense. To analyze
548
+
478
549
  this.topOverlay.destroy();
479
550
 
480
551
  if (this.bottomOverlay.clone) {
481
552
  this.bottomOverlay.destroy();
482
553
  }
483
554
 
484
- this.leftOverlay.destroy();
555
+ this.inlineStartOverlay.destroy();
485
556
 
486
- if (this.topLeftCornerOverlay) {
487
- this.topLeftCornerOverlay.destroy();
557
+ if (this.topInlineStartCornerOverlay) {
558
+ this.topInlineStartCornerOverlay.destroy();
488
559
  }
489
560
 
490
- if (this.bottomLeftCornerOverlay && this.bottomLeftCornerOverlay.clone) {
491
- this.bottomLeftCornerOverlay.destroy();
561
+ if (this.bottomInlineStartCornerOverlay && this.bottomInlineStartCornerOverlay.clone) {
562
+ this.bottomInlineStartCornerOverlay.destroy();
492
563
  }
493
564
 
494
565
  this.destroyed = true;
@@ -503,7 +574,7 @@ var Overlays = /*#__PURE__*/function () {
503
574
  key: "refresh",
504
575
  value: function refresh() {
505
576
  var fastDraw = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
506
- var spreader = this.wot.wtTable.spreader;
577
+ var spreader = this.wtTable.spreader;
507
578
  var width = spreader.clientWidth;
508
579
  var height = spreader.clientHeight;
509
580
 
@@ -517,15 +588,15 @@ var Overlays = /*#__PURE__*/function () {
517
588
  this.bottomOverlay.refresh(fastDraw);
518
589
  }
519
590
 
520
- this.leftOverlay.refresh(fastDraw);
591
+ this.inlineStartOverlay.refresh(fastDraw);
521
592
  this.topOverlay.refresh(fastDraw);
522
593
 
523
- if (this.topLeftCornerOverlay) {
524
- this.topLeftCornerOverlay.refresh(fastDraw);
594
+ if (this.topInlineStartCornerOverlay) {
595
+ this.topInlineStartCornerOverlay.refresh(fastDraw);
525
596
  }
526
597
 
527
- if (this.bottomLeftCornerOverlay && this.bottomLeftCornerOverlay.clone) {
528
- this.bottomLeftCornerOverlay.refresh(fastDraw);
598
+ if (this.bottomInlineStartCornerOverlay && this.bottomInlineStartCornerOverlay.clone) {
599
+ this.bottomInlineStartCornerOverlay.refresh(fastDraw);
529
600
  }
530
601
  }
531
602
  /**
@@ -538,18 +609,18 @@ var Overlays = /*#__PURE__*/function () {
538
609
  key: "adjustElementsSize",
539
610
  value: function adjustElementsSize() {
540
611
  var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
541
- var _this$wot4 = this.wot,
542
- wtViewport = _this$wot4.wtViewport,
543
- wtTable = _this$wot4.wtTable;
544
- var totalColumns = this.wot.getSetting('totalColumns');
545
- var totalRows = this.wot.getSetting('totalRows');
612
+ var wtViewport = this.wot.wtViewport;
613
+ var wtTable = this.wtTable;
614
+ var totalColumns = this.wtSettings.getSetting('totalColumns');
615
+ var totalRows = this.wtSettings.getSetting('totalRows');
546
616
  var headerRowSize = wtViewport.getRowHeaderWidth();
547
617
  var headerColumnSize = wtViewport.getColumnHeaderHeight();
548
618
  var hiderStyle = wtTable.hider.style;
549
- hiderStyle.width = "".concat(headerRowSize + this.leftOverlay.sumCellSizes(0, totalColumns), "px");
619
+ hiderStyle.width = "".concat(headerRowSize + this.inlineStartOverlay.sumCellSizes(0, totalColumns), "px");
550
620
  hiderStyle.height = "".concat(headerColumnSize + this.topOverlay.sumCellSizes(0, totalRows) + 1, "px");
551
621
 
552
622
  if (this.scrollbarSize > 0) {
623
+ // todo refactoring, looking as a part of logic which should be moved outside the class
553
624
  var _wtTable$wtRootElemen = wtTable.wtRootElement,
554
625
  rootElemScrollHeight = _wtTable$wtRootElemen.scrollHeight,
555
626
  rootElemScrollWidth = _wtTable$wtRootElemen.scrollWidth;
@@ -567,7 +638,7 @@ var Overlays = /*#__PURE__*/function () {
567
638
  }
568
639
 
569
640
  this.topOverlay.adjustElementsSize(force);
570
- this.leftOverlay.adjustElementsSize(force);
641
+ this.inlineStartOverlay.adjustElementsSize(force);
571
642
  this.bottomOverlay.adjustElementsSize(force);
572
643
  }
573
644
  /**
@@ -577,9 +648,7 @@ var Overlays = /*#__PURE__*/function () {
577
648
  }, {
578
649
  key: "applyToDOM",
579
650
  value: function applyToDOM() {
580
- var wtTable = this.wot.wtTable;
581
-
582
- if (!wtTable.isVisible()) {
651
+ if (!this.wtTable.isVisible()) {
583
652
  return;
584
653
  }
585
654
 
@@ -589,7 +658,7 @@ var Overlays = /*#__PURE__*/function () {
589
658
  this.bottomOverlay.applyToDOM();
590
659
  }
591
660
 
592
- this.leftOverlay.applyToDOM();
661
+ this.inlineStartOverlay.applyToDOM();
593
662
  }
594
663
  /**
595
664
  * Get the parent overlay of the provided element.
@@ -605,15 +674,16 @@ var Overlays = /*#__PURE__*/function () {
605
674
  return null;
606
675
  }
607
676
 
608
- var overlays = [this.topOverlay, this.leftOverlay, this.bottomOverlay, this.topLeftCornerOverlay, this.bottomLeftCornerOverlay];
677
+ var overlays = [this.topOverlay, this.inlineStartOverlay, this.bottomOverlay, this.topInlineStartCornerOverlay, this.bottomInlineStartCornerOverlay];
609
678
  var result = null;
610
- arrayEach(overlays, function (elem) {
611
- if (!elem) {
679
+ arrayEach(overlays, function (overlay) {
680
+ if (!overlay) {
612
681
  return;
613
682
  }
614
683
 
615
- if (elem.clone && elem.clone.wtTable.TABLE.contains(element)) {
616
- result = elem.clone;
684
+ if (overlay.clone && overlay.clone.wtTable.TABLE.contains(element)) {
685
+ // todo demeter
686
+ result = overlay.clone;
617
687
  }
618
688
  });
619
689
  return result;
@@ -626,14 +696,14 @@ var Overlays = /*#__PURE__*/function () {
626
696
  }, {
627
697
  key: "syncOverlayTableClassNames",
628
698
  value: function syncOverlayTableClassNames() {
629
- var masterTable = this.instance.wtTable.TABLE;
630
- var overlays = [this.topOverlay, this.leftOverlay, this.bottomOverlay, this.topLeftCornerOverlay, this.bottomLeftCornerOverlay];
699
+ var masterTable = this.wtTable.TABLE;
700
+ var overlays = [this.topOverlay, this.inlineStartOverlay, this.bottomOverlay, this.topInlineStartCornerOverlay, this.bottomInlineStartCornerOverlay];
631
701
  arrayEach(overlays, function (elem) {
632
702
  if (!elem) {
633
703
  return;
634
704
  }
635
705
 
636
- elem.clone.wtTable.TABLE.className = masterTable.className;
706
+ elem.clone.wtTable.TABLE.className = masterTable.className; // todo demeter
637
707
  });
638
708
  }
639
709
  }]);