handsontable 0.0.0-next-fc6b71a-20231129 → 0.0.0-next-f76fee2-20231130

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (360) hide show
  1. package/3rdparty/walkontable/src/calculator/constants.js +3 -6
  2. package/3rdparty/walkontable/src/calculator/viewportColumns.js +1 -2
  3. package/3rdparty/walkontable/src/calculator/viewportRows.js +1 -2
  4. package/3rdparty/walkontable/src/cell/coords.js +1 -2
  5. package/3rdparty/walkontable/src/cell/range.js +1 -2
  6. package/3rdparty/walkontable/src/event.js +1 -2
  7. package/3rdparty/walkontable/src/filter/column.js +1 -2
  8. package/3rdparty/walkontable/src/filter/row.js +1 -2
  9. package/3rdparty/walkontable/src/index.js +2 -2
  10. package/3rdparty/walkontable/src/overlay/constants.js +7 -14
  11. package/3rdparty/walkontable/src/overlays.js +1 -2
  12. package/3rdparty/walkontable/src/scroll.js +1 -2
  13. package/3rdparty/walkontable/src/selection/border/border.js +1 -2
  14. package/3rdparty/walkontable/src/selection/border/constants.js +2 -3
  15. package/3rdparty/walkontable/src/selection/constants.js +8 -16
  16. package/3rdparty/walkontable/src/selection/selection.js +1 -2
  17. package/3rdparty/walkontable/src/table/bottom.js +1 -2
  18. package/3rdparty/walkontable/src/table/bottomInlineStartCorner.js +1 -2
  19. package/3rdparty/walkontable/src/table/inlineStart.js +1 -2
  20. package/3rdparty/walkontable/src/table/master.js +1 -2
  21. package/3rdparty/walkontable/src/table/mixin/calculatedColumns.js +1 -2
  22. package/3rdparty/walkontable/src/table/mixin/calculatedRows.js +1 -2
  23. package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.js +1 -2
  24. package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.js +1 -2
  25. package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.js +1 -2
  26. package/3rdparty/walkontable/src/table/top.js +1 -2
  27. package/3rdparty/walkontable/src/table/topInlineStartCorner.js +1 -2
  28. package/3rdparty/walkontable/src/table.js +1 -2
  29. package/3rdparty/walkontable/src/utils/orderView/constants.js +3 -6
  30. package/3rdparty/walkontable/src/viewport.js +1 -2
  31. package/CHANGELOG.md +84 -15
  32. package/base.js +3 -4
  33. package/base.mjs +2 -2
  34. package/cellTypes/autocompleteType/autocompleteType.js +3 -5
  35. package/cellTypes/checkboxType/checkboxType.js +3 -5
  36. package/cellTypes/dateType/dateType.js +3 -5
  37. package/cellTypes/dropdownType/dropdownType.js +3 -5
  38. package/cellTypes/handsontableType/handsontableType.js +3 -5
  39. package/cellTypes/numericType/numericType.js +3 -5
  40. package/cellTypes/passwordType/passwordType.js +3 -5
  41. package/cellTypes/selectType/selectType.js +3 -5
  42. package/cellTypes/textType/textType.js +3 -5
  43. package/cellTypes/timeType/timeType.js +3 -5
  44. package/core.js +19 -9
  45. package/core.mjs +19 -9
  46. package/dataMap/dataMap.js +1 -2
  47. package/dataMap/dataSource.js +1 -2
  48. package/dataMap/metaManager/metaSchema.js +11 -11
  49. package/dataMap/metaManager/metaSchema.mjs +11 -11
  50. package/dist/handsontable.css +2 -2
  51. package/dist/handsontable.full.css +2 -2
  52. package/dist/handsontable.full.js +5147 -5188
  53. package/dist/handsontable.full.min.css +2 -2
  54. package/dist/handsontable.full.min.js +160 -150
  55. package/dist/handsontable.js +627 -1038
  56. package/dist/handsontable.min.css +2 -2
  57. package/dist/handsontable.min.js +31 -31
  58. package/dist/languages/all.js +19 -38
  59. package/dist/languages/all.min.js +1 -1
  60. package/dist/languages/ar-AR.js +1 -2
  61. package/dist/languages/cs-CZ.js +1 -2
  62. package/dist/languages/de-CH.js +1 -2
  63. package/dist/languages/de-DE.js +1 -2
  64. package/dist/languages/en-US.js +1 -2
  65. package/dist/languages/es-MX.js +1 -2
  66. package/dist/languages/fr-FR.js +1 -2
  67. package/dist/languages/it-IT.js +1 -2
  68. package/dist/languages/ja-JP.js +1 -2
  69. package/dist/languages/ko-KR.js +1 -2
  70. package/dist/languages/lv-LV.js +1 -2
  71. package/dist/languages/nb-NO.js +1 -2
  72. package/dist/languages/nl-NL.js +1 -2
  73. package/dist/languages/pl-PL.js +1 -2
  74. package/dist/languages/pt-BR.js +1 -2
  75. package/dist/languages/ru-RU.js +1 -2
  76. package/dist/languages/sr-SP.js +1 -2
  77. package/dist/languages/zh-CN.js +1 -2
  78. package/dist/languages/zh-TW.js +1 -2
  79. package/editorManager.js +2 -4
  80. package/editors/autocompleteEditor/autocompleteEditor.js +1 -2
  81. package/editors/baseEditor/baseEditor.js +3 -6
  82. package/editors/checkboxEditor/checkboxEditor.js +1 -2
  83. package/editors/dateEditor/dateEditor.js +1 -2
  84. package/editors/dropdownEditor/dropdownEditor.js +1 -2
  85. package/editors/handsontableEditor/handsontableEditor.js +1 -2
  86. package/editors/numericEditor/numericEditor.js +1 -2
  87. package/editors/passwordEditor/passwordEditor.js +1 -2
  88. package/editors/selectEditor/selectEditor.js +1 -2
  89. package/editors/textEditor/textEditor.js +1 -2
  90. package/editors/timeEditor/timeEditor.js +1 -2
  91. package/eventManager.js +1 -2
  92. package/helpers/dom/element.js +1 -2
  93. package/helpers/mixed.js +2 -2
  94. package/helpers/mixed.mjs +2 -2
  95. package/helpers/unicode.js +1 -2
  96. package/i18n/constants.js +84 -166
  97. package/i18n/languages/ar-AR.js +3 -4
  98. package/i18n/languages/cs-CZ.js +3 -4
  99. package/i18n/languages/de-CH.js +3 -4
  100. package/i18n/languages/de-DE.js +3 -4
  101. package/i18n/languages/en-US.js +3 -4
  102. package/i18n/languages/es-MX.js +3 -4
  103. package/i18n/languages/fr-FR.js +3 -4
  104. package/i18n/languages/it-IT.js +3 -4
  105. package/i18n/languages/ja-JP.js +3 -4
  106. package/i18n/languages/ko-KR.js +3 -4
  107. package/i18n/languages/lv-LV.js +3 -4
  108. package/i18n/languages/nb-NO.js +3 -4
  109. package/i18n/languages/nl-NL.js +3 -4
  110. package/i18n/languages/pl-PL.js +3 -4
  111. package/i18n/languages/pt-BR.js +3 -4
  112. package/i18n/languages/ru-RU.js +3 -4
  113. package/i18n/languages/sr-SP.js +3 -4
  114. package/i18n/languages/zh-CN.js +3 -4
  115. package/i18n/languages/zh-TW.js +3 -4
  116. package/i18n/registry.js +4 -6
  117. package/index.js +3 -4
  118. package/languages/all.js +19 -38
  119. package/languages/ar-AR.js +1 -2
  120. package/languages/cs-CZ.js +1 -2
  121. package/languages/de-CH.js +1 -2
  122. package/languages/de-DE.js +1 -2
  123. package/languages/en-US.js +1 -2
  124. package/languages/es-MX.js +1 -2
  125. package/languages/fr-FR.js +1 -2
  126. package/languages/index.js +19 -38
  127. package/languages/it-IT.js +1 -2
  128. package/languages/ja-JP.js +1 -2
  129. package/languages/ko-KR.js +1 -2
  130. package/languages/lv-LV.js +1 -2
  131. package/languages/nb-NO.js +1 -2
  132. package/languages/nl-NL.js +1 -2
  133. package/languages/pl-PL.js +1 -2
  134. package/languages/pt-BR.js +1 -2
  135. package/languages/ru-RU.js +1 -2
  136. package/languages/sr-SP.js +1 -2
  137. package/languages/zh-CN.js +1 -2
  138. package/languages/zh-TW.js +1 -2
  139. package/mixins/hooksRefRegisterer.js +1 -2
  140. package/mixins/localHooks.js +1 -2
  141. package/package.json +1 -1
  142. package/pluginHooks.js +6 -5
  143. package/pluginHooks.mjs +5 -3
  144. package/plugins/autoColumnSize/autoColumnSize.js +2 -4
  145. package/plugins/autoRowSize/autoRowSize.js +2 -4
  146. package/plugins/autofill/autofill.js +2 -4
  147. package/plugins/autofill/utils.js +1 -2
  148. package/plugins/base/base.js +1 -2
  149. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +2 -4
  150. package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +1 -2
  151. package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +1 -2
  152. package/plugins/collapsibleColumns/collapsibleColumns.js +2 -4
  153. package/plugins/columnSorting/columnSorting.js +4 -8
  154. package/plugins/columnSorting/sortFunction/checkbox.js +1 -2
  155. package/plugins/columnSorting/sortFunction/date.js +1 -2
  156. package/plugins/columnSorting/sortFunction/default.js +1 -2
  157. package/plugins/columnSorting/sortFunction/numeric.js +1 -2
  158. package/plugins/columnSorting/sortService/engine.js +3 -6
  159. package/plugins/columnSorting/utils.js +3 -6
  160. package/plugins/columnSummary/columnSummary.js +2 -4
  161. package/plugins/columnSummary/endpoints.js +1 -2
  162. package/plugins/comments/commentEditor.js +1 -2
  163. package/plugins/comments/comments.js +6 -12
  164. package/plugins/comments/contextMenuItem/addEditComment.js +2 -2
  165. package/plugins/comments/contextMenuItem/readOnlyComment.js +2 -2
  166. package/plugins/comments/contextMenuItem/removeComment.js +2 -2
  167. package/plugins/comments/displaySwitch.js +1 -2
  168. package/plugins/contextMenu/contextMenu.js +2 -4
  169. package/plugins/contextMenu/predefinedItems/alignment.js +3 -4
  170. package/plugins/contextMenu/predefinedItems/clearColumn.js +3 -4
  171. package/plugins/contextMenu/predefinedItems/columnLeft.js +3 -4
  172. package/plugins/contextMenu/predefinedItems/columnRight.js +3 -4
  173. package/plugins/contextMenu/predefinedItems/index.js +3 -4
  174. package/plugins/contextMenu/predefinedItems/noItems.js +1 -2
  175. package/plugins/contextMenu/predefinedItems/readOnly.js +3 -4
  176. package/plugins/contextMenu/predefinedItems/redo.js +3 -4
  177. package/plugins/contextMenu/predefinedItems/removeColumn.js +3 -4
  178. package/plugins/contextMenu/predefinedItems/removeRow.js +3 -4
  179. package/plugins/contextMenu/predefinedItems/rowAbove.js +3 -4
  180. package/plugins/contextMenu/predefinedItems/rowBelow.js +3 -4
  181. package/plugins/contextMenu/predefinedItems/separator.js +1 -2
  182. package/plugins/contextMenu/predefinedItems/undo.js +3 -4
  183. package/plugins/copyPaste/contextMenuItem/cut.js +2 -2
  184. package/plugins/copyPaste/copyPaste.js +2 -4
  185. package/plugins/customBorders/contextMenuItem/bottom.js +2 -2
  186. package/plugins/customBorders/contextMenuItem/left.js +2 -2
  187. package/plugins/customBorders/contextMenuItem/noBorders.js +2 -2
  188. package/plugins/customBorders/contextMenuItem/right.js +2 -2
  189. package/plugins/customBorders/contextMenuItem/top.js +2 -2
  190. package/plugins/customBorders/customBorders.js +4 -6
  191. package/plugins/dragToScroll/dragToScroll.js +2 -4
  192. package/plugins/dropdownMenu/dropdownMenu.js +2 -4
  193. package/plugins/exportFile/dataProvider.js +1 -2
  194. package/plugins/exportFile/exportFile.js +4 -6
  195. package/plugins/exportFile/typeFactory.js +5 -8
  196. package/plugins/exportFile/types/_base.js +1 -2
  197. package/plugins/exportFile/types/csv.js +1 -2
  198. package/plugins/filters/component/actionBar.js +2 -2
  199. package/plugins/filters/component/condition.js +2 -2
  200. package/plugins/filters/component/value.js +2 -2
  201. package/plugins/filters/condition/beginsWith.js +3 -4
  202. package/plugins/filters/condition/between.js +3 -4
  203. package/plugins/filters/condition/byValue.js +1 -2
  204. package/plugins/filters/condition/contains.js +3 -4
  205. package/plugins/filters/condition/date/after.js +3 -4
  206. package/plugins/filters/condition/date/before.js +3 -4
  207. package/plugins/filters/condition/date/today.js +3 -4
  208. package/plugins/filters/condition/date/tomorrow.js +3 -4
  209. package/plugins/filters/condition/date/yesterday.js +3 -4
  210. package/plugins/filters/condition/empty.js +3 -4
  211. package/plugins/filters/condition/endsWith.js +3 -4
  212. package/plugins/filters/condition/equal.js +3 -4
  213. package/plugins/filters/condition/false.js +1 -2
  214. package/plugins/filters/condition/greaterThan.js +3 -4
  215. package/plugins/filters/condition/greaterThanOrEqual.js +3 -4
  216. package/plugins/filters/condition/lessThan.js +3 -4
  217. package/plugins/filters/condition/lessThanOrEqual.js +3 -4
  218. package/plugins/filters/condition/none.js +3 -4
  219. package/plugins/filters/condition/notBetween.js +3 -4
  220. package/plugins/filters/condition/notContains.js +3 -4
  221. package/plugins/filters/condition/notEmpty.js +3 -4
  222. package/plugins/filters/condition/notEqual.js +3 -4
  223. package/plugins/filters/condition/true.js +1 -2
  224. package/plugins/filters/conditionCollection.js +1 -2
  225. package/plugins/filters/conditionRegisterer.js +1 -2
  226. package/plugins/filters/conditionUpdateObserver.js +1 -2
  227. package/plugins/filters/constants.js +4 -8
  228. package/plugins/filters/dataFilter.js +1 -2
  229. package/plugins/filters/filters.js +4 -6
  230. package/plugins/filters/logicalOperationRegisterer.js +1 -2
  231. package/plugins/filters/logicalOperations/conjunction.js +4 -6
  232. package/plugins/filters/logicalOperations/disjunction.js +4 -6
  233. package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +4 -6
  234. package/plugins/filters/ui/_base.js +2 -2
  235. package/plugins/filters/ui/multipleSelect.js +3 -4
  236. package/plugins/filters/ui/select.js +2 -2
  237. package/plugins/formulas/engine/settings.js +2 -4
  238. package/plugins/formulas/formulas.js +3 -6
  239. package/plugins/formulas/indexSyncer/axisSyncer.js +1 -2
  240. package/plugins/formulas/indexSyncer/index.js +1 -2
  241. package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +2 -2
  242. package/plugins/hiddenColumns/contextMenuItem/showColumn.js +2 -2
  243. package/plugins/hiddenColumns/hiddenColumns.js +2 -4
  244. package/plugins/hiddenRows/contextMenuItem/hideRow.js +2 -2
  245. package/plugins/hiddenRows/contextMenuItem/showRow.js +2 -2
  246. package/plugins/hiddenRows/hiddenRows.js +2 -4
  247. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +2 -2
  248. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +2 -2
  249. package/plugins/manualColumnFreeze/manualColumnFreeze.js +2 -4
  250. package/plugins/manualColumnMove/manualColumnMove.js +2 -4
  251. package/plugins/manualColumnMove/ui/_base.js +1 -2
  252. package/plugins/manualColumnMove/ui/backlight.js +1 -2
  253. package/plugins/manualColumnMove/ui/guideline.js +1 -2
  254. package/plugins/manualColumnResize/manualColumnResize.js +2 -4
  255. package/plugins/manualRowMove/manualRowMove.js +2 -4
  256. package/plugins/manualRowMove/ui/_base.js +1 -2
  257. package/plugins/manualRowMove/ui/backlight.js +1 -2
  258. package/plugins/manualRowMove/ui/guideline.js +1 -2
  259. package/plugins/manualRowResize/manualRowResize.js +2 -4
  260. package/plugins/mergeCells/calculations/autofill.js +1 -2
  261. package/plugins/mergeCells/calculations/selection.js +1 -2
  262. package/plugins/mergeCells/cellCoords.js +1 -2
  263. package/plugins/mergeCells/cellsCollection.js +1 -2
  264. package/plugins/mergeCells/contextMenuItem/toggleMerge.js +2 -2
  265. package/plugins/mergeCells/mergeCells.js +3 -5
  266. package/plugins/mergeCells/mergeCells.mjs +1 -1
  267. package/plugins/multiColumnSorting/multiColumnSorting.js +2 -4
  268. package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +2 -4
  269. package/plugins/nestedHeaders/nestedHeaders.js +2 -4
  270. package/plugins/nestedHeaders/stateManager/sourceSettings.js +1 -2
  271. package/plugins/nestedHeaders/utils/ghostTable.js +1 -2
  272. package/plugins/nestedRows/data/dataManager.js +1 -2
  273. package/plugins/nestedRows/nestedRows.js +2 -4
  274. package/plugins/nestedRows/ui/_base.js +1 -2
  275. package/plugins/nestedRows/ui/collapsing.js +1 -2
  276. package/plugins/nestedRows/ui/contextMenu.js +3 -4
  277. package/plugins/nestedRows/ui/headers.js +1 -2
  278. package/plugins/persistentState/persistentState.js +2 -4
  279. package/plugins/persistentState/storage.js +1 -2
  280. package/plugins/search/search.js +2 -4
  281. package/plugins/touchScroll/touchScroll.js +2 -4
  282. package/plugins/trimRows/trimRows.js +2 -4
  283. package/plugins/undoRedo/index.js +2 -2
  284. package/plugins/undoRedo/undoRedo.js +2 -4
  285. package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -2
  286. package/renderers/baseRenderer/baseRenderer.js +1 -2
  287. package/renderers/checkboxRenderer/checkboxRenderer.js +1 -2
  288. package/renderers/dateRenderer/dateRenderer.js +1 -2
  289. package/renderers/handsontableRenderer/handsontableRenderer.js +1 -2
  290. package/renderers/htmlRenderer/htmlRenderer.js +1 -2
  291. package/renderers/numericRenderer/numericRenderer.js +1 -2
  292. package/renderers/passwordRenderer/passwordRenderer.js +1 -2
  293. package/renderers/selectRenderer/selectRenderer.js +1 -2
  294. package/renderers/textRenderer/textRenderer.js +1 -2
  295. package/renderers/timeRenderer/timeRenderer.js +1 -2
  296. package/selection/highlight/highlight.js +1 -2
  297. package/selection/highlight/visualSelection.js +1 -2
  298. package/selection/range.js +1 -2
  299. package/selection/selection.js +3 -4
  300. package/selection/transformation.js +1 -2
  301. package/selection/utils.js +5 -10
  302. package/shortcutContexts/commands/editor/closeAndSave.js +2 -3
  303. package/shortcutContexts/commands/editor/closeWithoutSaving.js +2 -3
  304. package/shortcutContexts/commands/editor/fastOpen.js +2 -3
  305. package/shortcutContexts/commands/editor/open.js +2 -3
  306. package/shortcutContexts/commands/emptySelectedCells.js +2 -3
  307. package/shortcutContexts/commands/extendCellsSelection/down.js +2 -3
  308. package/shortcutContexts/commands/extendCellsSelection/downByViewportHeight.js +2 -3
  309. package/shortcutContexts/commands/extendCellsSelection/left.js +2 -3
  310. package/shortcutContexts/commands/extendCellsSelection/right.js +2 -3
  311. package/shortcutContexts/commands/extendCellsSelection/toColumns.js +2 -3
  312. package/shortcutContexts/commands/extendCellsSelection/toMostBottom.js +2 -3
  313. package/shortcutContexts/commands/extendCellsSelection/toMostInlineEnd.js +2 -3
  314. package/shortcutContexts/commands/extendCellsSelection/toMostInlineStart.js +2 -3
  315. package/shortcutContexts/commands/extendCellsSelection/toMostLeft.js +2 -3
  316. package/shortcutContexts/commands/extendCellsSelection/toMostRight.js +2 -3
  317. package/shortcutContexts/commands/extendCellsSelection/toMostTop.js +2 -3
  318. package/shortcutContexts/commands/extendCellsSelection/toRows.js +2 -3
  319. package/shortcutContexts/commands/extendCellsSelection/up.js +2 -3
  320. package/shortcutContexts/commands/extendCellsSelection/upByViewportHeight.js +2 -3
  321. package/shortcutContexts/commands/moveCellSelection/down.js +2 -3
  322. package/shortcutContexts/commands/moveCellSelection/downByViewportHeight.js +2 -3
  323. package/shortcutContexts/commands/moveCellSelection/inlineEnd.js +2 -3
  324. package/shortcutContexts/commands/moveCellSelection/inlineStart.js +2 -3
  325. package/shortcutContexts/commands/moveCellSelection/left.js +2 -3
  326. package/shortcutContexts/commands/moveCellSelection/right.js +2 -3
  327. package/shortcutContexts/commands/moveCellSelection/toMostBottom.js +2 -3
  328. package/shortcutContexts/commands/moveCellSelection/toMostBottomInlineEnd.js +2 -3
  329. package/shortcutContexts/commands/moveCellSelection/toMostInlineEnd.js +2 -3
  330. package/shortcutContexts/commands/moveCellSelection/toMostInlineStart.js +2 -3
  331. package/shortcutContexts/commands/moveCellSelection/toMostLeft.js +2 -3
  332. package/shortcutContexts/commands/moveCellSelection/toMostRight.js +2 -3
  333. package/shortcutContexts/commands/moveCellSelection/toMostTop.js +2 -3
  334. package/shortcutContexts/commands/moveCellSelection/toMostTopInlineStart.js +2 -3
  335. package/shortcutContexts/commands/moveCellSelection/up.js +2 -3
  336. package/shortcutContexts/commands/moveCellSelection/upByViewportHeight.js +2 -3
  337. package/shortcutContexts/commands/populateSelectedCellsData.js +2 -3
  338. package/shortcutContexts/commands/scrollToFocusedCell.js +2 -3
  339. package/shortcutContexts/commands/selectAllCells.js +2 -3
  340. package/shortcutContexts/commands/selectAllCellsAndHeaders.js +2 -3
  341. package/shortcutContexts/constants.js +2 -4
  342. package/shortcuts/context.js +1 -1
  343. package/shortcuts/context.mjs +1 -1
  344. package/shortcuts/manager.js +2 -2
  345. package/shortcuts/manager.mjs +2 -2
  346. package/tableView.js +1 -2
  347. package/utils/dataStructures/linkedList.js +1 -2
  348. package/utils/dataStructures/priorityMap.js +2 -4
  349. package/utils/dataStructures/queue.js +1 -2
  350. package/utils/dataStructures/stack.js +1 -2
  351. package/utils/dataStructures/tree.js +3 -6
  352. package/utils/ghostTable.js +1 -2
  353. package/utils/interval.js +1 -2
  354. package/utils/rootInstance.js +2 -4
  355. package/utils/samplesGenerator.js +1 -2
  356. package/utils/staticRegister.js +1 -2
  357. package/validators/autocompleteValidator/autocompleteValidator.js +1 -2
  358. package/validators/dateValidator/dateValidator.js +1 -2
  359. package/validators/numericValidator/numericValidator.js +1 -2
  360. package/validators/timeValidator/timeValidator.js +1 -2
@@ -7,15 +7,14 @@ exports.__esModule = true;
7
7
  *
8
8
  * @type {number}
9
9
  */
10
- const RENDER_TYPE = 1;
10
+ const RENDER_TYPE = exports.RENDER_TYPE = 1;
11
11
  /**
12
12
  * Fully visible type calculation calculates rows that are fully visible in the viewport.
13
13
  * This type of calculation is used in scrolling by arrow keys navigation.
14
14
  *
15
15
  * @type {number}
16
16
  */
17
- exports.RENDER_TYPE = RENDER_TYPE;
18
- const FULLY_VISIBLE_TYPE = 2;
17
+ const FULLY_VISIBLE_TYPE = exports.FULLY_VISIBLE_TYPE = 2;
19
18
  /**
20
19
  * Partially visible type calculation calculates rows that are fully and partially visible in
21
20
  * the viewport. This type of calculation is used to check `endRow` (or `startRow`) with properties
@@ -24,6 +23,4 @@ const FULLY_VISIBLE_TYPE = 2;
24
23
  *
25
24
  * @type {number}
26
25
  */
27
- exports.FULLY_VISIBLE_TYPE = FULLY_VISIBLE_TYPE;
28
- const PARTIALLY_VISIBLE_TYPE = 3;
29
- exports.PARTIALLY_VISIBLE_TYPE = PARTIALLY_VISIBLE_TYPE;
26
+ const PARTIALLY_VISIBLE_TYPE = exports.PARTIALLY_VISIBLE_TYPE = 3;
@@ -312,5 +312,4 @@ class ViewportColumnsCalculator {
312
312
  return width;
313
313
  }
314
314
  }
315
- var _default = ViewportColumnsCalculator;
316
- exports.default = _default;
315
+ var _default = exports.default = ViewportColumnsCalculator;
@@ -181,5 +181,4 @@ class ViewportRowsCalculator {
181
181
  }
182
182
  }
183
183
  }
184
- var _default = ViewportRowsCalculator;
185
- exports.default = _default;
184
+ var _default = exports.default = ViewportRowsCalculator;
@@ -250,5 +250,4 @@ class CellCoords {
250
250
  };
251
251
  }
252
252
  }
253
- var _default = CellCoords;
254
- exports.default = _default;
253
+ var _default = exports.default = CellCoords;
@@ -879,5 +879,4 @@ class CellRange {
879
879
  return new _coords.default(row, column, _classPrivateFieldGet(this, _isRtl));
880
880
  }
881
881
  }
882
- var _default = CellRange;
883
- exports.default = _default;
882
+ var _default = exports.default = CellRange;
@@ -397,5 +397,4 @@ class Event {
397
397
  _classPrivateFieldGet(this, _eventManager).destroy();
398
398
  }
399
399
  }
400
- var _default = Event;
401
- exports.default = _default;
400
+ var _default = exports.default = Event;
@@ -96,5 +96,4 @@ class ColumnFilter {
96
96
  return this.unOffsettedTH(this.sourceToRendered(index));
97
97
  }
98
98
  }
99
- var _default = ColumnFilter;
100
- exports.default = _default;
99
+ var _default = exports.default = ColumnFilter;
@@ -96,5 +96,4 @@ class RowFilter {
96
96
  return this.unOffsettedTH(this.sourceToRendered(index));
97
97
  }
98
98
  }
99
- var _default = RowFilter;
100
- exports.default = _default;
99
+ var _default = exports.default = RowFilter;
@@ -29,6 +29,6 @@ exports.OrderView = _orderView.OrderView;
29
29
  exports.SharedOrderView = _orderView.SharedOrderView;
30
30
  var _eventManager = require("../../../eventManager");
31
31
  exports.getListenersCounter = _eventManager.getListenersCounter;
32
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
33
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
32
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
33
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
34
34
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
@@ -4,17 +4,10 @@ exports.__esModule = true;
4
4
  /**
5
5
  * @typedef {'top'|'bottom'|'inline_start'|'top_inline_start_corner'|'bottom_inline_start_corner'} CLONE_TYPES_ENUM
6
6
  */
7
- const CLONE_TOP = 'top';
8
- exports.CLONE_TOP = CLONE_TOP;
9
- const CLONE_BOTTOM = 'bottom';
10
- exports.CLONE_BOTTOM = CLONE_BOTTOM;
11
- const CLONE_INLINE_START = 'inline_start';
12
- exports.CLONE_INLINE_START = CLONE_INLINE_START;
13
- const CLONE_TOP_INLINE_START_CORNER = 'top_inline_start_corner';
14
- exports.CLONE_TOP_INLINE_START_CORNER = CLONE_TOP_INLINE_START_CORNER;
15
- const CLONE_BOTTOM_INLINE_START_CORNER = 'bottom_inline_start_corner';
16
- exports.CLONE_BOTTOM_INLINE_START_CORNER = CLONE_BOTTOM_INLINE_START_CORNER;
17
- const CLONE_TYPES = [CLONE_TOP, CLONE_BOTTOM, CLONE_INLINE_START, CLONE_TOP_INLINE_START_CORNER, CLONE_BOTTOM_INLINE_START_CORNER];
18
- exports.CLONE_TYPES = CLONE_TYPES;
19
- const CLONE_CLASS_NAMES = new Map([[CLONE_TOP, `ht_clone_${CLONE_TOP}`], [CLONE_BOTTOM, `ht_clone_${CLONE_BOTTOM}`], [CLONE_INLINE_START, `ht_clone_${CLONE_INLINE_START} ht_clone_left`], [CLONE_TOP_INLINE_START_CORNER, `ht_clone_${CLONE_TOP_INLINE_START_CORNER} ht_clone_top_left_corner`], [CLONE_BOTTOM_INLINE_START_CORNER, `ht_clone_${CLONE_BOTTOM_INLINE_START_CORNER} ht_clone_bottom_left_corner`]]);
20
- exports.CLONE_CLASS_NAMES = CLONE_CLASS_NAMES;
7
+ const CLONE_TOP = exports.CLONE_TOP = 'top';
8
+ const CLONE_BOTTOM = exports.CLONE_BOTTOM = 'bottom';
9
+ const CLONE_INLINE_START = exports.CLONE_INLINE_START = 'inline_start';
10
+ const CLONE_TOP_INLINE_START_CORNER = exports.CLONE_TOP_INLINE_START_CORNER = 'top_inline_start_corner';
11
+ const CLONE_BOTTOM_INLINE_START_CORNER = exports.CLONE_BOTTOM_INLINE_START_CORNER = 'bottom_inline_start_corner';
12
+ const CLONE_TYPES = exports.CLONE_TYPES = [CLONE_TOP, CLONE_BOTTOM, CLONE_INLINE_START, CLONE_TOP_INLINE_START_CORNER, CLONE_BOTTOM_INLINE_START_CORNER];
13
+ const CLONE_CLASS_NAMES = exports.CLONE_CLASS_NAMES = new Map([[CLONE_TOP, `ht_clone_${CLONE_TOP}`], [CLONE_BOTTOM, `ht_clone_${CLONE_BOTTOM}`], [CLONE_INLINE_START, `ht_clone_${CLONE_INLINE_START} ht_clone_left`], [CLONE_TOP_INLINE_START_CORNER, `ht_clone_${CLONE_TOP_INLINE_START_CORNER} ht_clone_top_left_corner`], [CLONE_BOTTOM_INLINE_START_CORNER, `ht_clone_${CLONE_BOTTOM_INLINE_START_CORNER} ht_clone_bottom_left_corner`]]);
@@ -648,5 +648,4 @@ class Overlays {
648
648
  });
649
649
  }
650
650
  }
651
- var _default = Overlays;
652
- exports.default = _default;
651
+ var _default = exports.default = Overlays;
@@ -310,5 +310,4 @@ class Scroll {
310
310
  return lastVisibleColumn;
311
311
  }
312
312
  }
313
- var _default = Scroll;
314
- exports.default = _default;
313
+ var _default = exports.default = Scroll;
@@ -668,5 +668,4 @@ class Border {
668
668
  this.main.parentNode.removeChild(this.main);
669
669
  }
670
670
  }
671
- var _default = Border;
672
- exports.default = _default;
671
+ var _default = exports.default = Border;
@@ -6,11 +6,10 @@ exports.__esModule = true;
6
6
  *
7
7
  * @type {object}
8
8
  */
9
- const CORNER_DEFAULT_STYLE = Object.freeze({
9
+ const CORNER_DEFAULT_STYLE = exports.CORNER_DEFAULT_STYLE = Object.freeze({
10
10
  width: '6px',
11
11
  height: '6px',
12
12
  borderWidth: '1px',
13
13
  borderStyle: 'solid',
14
14
  borderColor: '#FFF'
15
- });
16
- exports.CORNER_DEFAULT_STYLE = CORNER_DEFAULT_STYLE;
15
+ });
@@ -7,56 +7,48 @@ exports.__esModule = true;
7
7
  *
8
8
  * @type {string}
9
9
  */
10
- const ACTIVE_HEADER_TYPE = 'active-header';
10
+ const ACTIVE_HEADER_TYPE = exports.ACTIVE_HEADER_TYPE = 'active-header';
11
11
  /**
12
12
  * Selection type that is visible only if the a cell or cells are clicked. If that happened
13
13
  * only the most closest to the cells row or column header is highlighted.
14
14
  *
15
15
  * @type {string}
16
16
  */
17
- exports.ACTIVE_HEADER_TYPE = ACTIVE_HEADER_TYPE;
18
- const HEADER_TYPE = 'header';
17
+ const HEADER_TYPE = exports.HEADER_TYPE = 'header';
19
18
  /**
20
19
  * Selection type that is visible when a cell or cells are clicked. The selected cells are
21
20
  * highlighted.
22
21
  *
23
22
  * @type {string}
24
23
  */
25
- exports.HEADER_TYPE = HEADER_TYPE;
26
- const AREA_TYPE = 'area';
24
+ const AREA_TYPE = exports.AREA_TYPE = 'area';
27
25
  /**
28
26
  * Selection type defines a cell that follows the user (keyboard navigation).
29
27
  *
30
28
  * @type {string}
31
29
  */
32
- exports.AREA_TYPE = AREA_TYPE;
33
- const FOCUS_TYPE = 'focus';
30
+ const FOCUS_TYPE = exports.FOCUS_TYPE = 'focus';
34
31
  /**
35
32
  * Selection type defines borders for the autofill functionality.
36
33
  *
37
34
  * @type {string}
38
35
  */
39
- exports.FOCUS_TYPE = FOCUS_TYPE;
40
- const FILL_TYPE = 'fill';
36
+ const FILL_TYPE = exports.FILL_TYPE = 'fill';
41
37
  /**
42
38
  * Selection type defines highlights for the `currentRowClassName` option.
43
39
  *
44
40
  * @type {string}
45
41
  */
46
- exports.FILL_TYPE = FILL_TYPE;
47
- const ROW_TYPE = 'row';
42
+ const ROW_TYPE = exports.ROW_TYPE = 'row';
48
43
  /**
49
44
  * Selection type defines highlights for the `currentColumnClassName` option.
50
45
  *
51
46
  * @type {string}
52
47
  */
53
- exports.ROW_TYPE = ROW_TYPE;
54
- const COLUMN_TYPE = 'column';
48
+ const COLUMN_TYPE = exports.COLUMN_TYPE = 'column';
55
49
  /**
56
50
  * Selection type defines highlights managed by the CustomBorders plugin.
57
51
  *
58
52
  * @type {string}
59
53
  */
60
- exports.COLUMN_TYPE = COLUMN_TYPE;
61
- const CUSTOM_SELECTION_TYPE = 'custom-selection';
62
- exports.CUSTOM_SELECTION_TYPE = CUSTOM_SELECTION_TYPE;
54
+ const CUSTOM_SELECTION_TYPE = exports.CUSTOM_SELECTION_TYPE = 'custom-selection';
@@ -97,5 +97,4 @@ class Selection {
97
97
  }
98
98
  }
99
99
  (0, _object.mixin)(Selection, _localHooks.default);
100
- var _default = Selection;
101
- exports.default = _default;
100
+ var _default = exports.default = Selection;
@@ -26,5 +26,4 @@ class BottomOverlayTable extends _table.default {
26
26
  }
27
27
  (0, _object.mixin)(BottomOverlayTable, _stickyRowsBottom.default);
28
28
  (0, _object.mixin)(BottomOverlayTable, _calculatedColumns.default);
29
- var _default = BottomOverlayTable;
30
- exports.default = _default;
29
+ var _default = exports.default = BottomOverlayTable;
@@ -27,5 +27,4 @@ class BottomInlineStartCornerOverlayTable extends _table.default {
27
27
  }
28
28
  (0, _object.mixin)(BottomInlineStartCornerOverlayTable, _stickyRowsBottom.default);
29
29
  (0, _object.mixin)(BottomInlineStartCornerOverlayTable, _stickyColumnsStart.default);
30
- var _default = BottomInlineStartCornerOverlayTable;
31
- exports.default = _default;
30
+ var _default = exports.default = BottomInlineStartCornerOverlayTable;
@@ -23,5 +23,4 @@ class InlineStartOverlayTable extends _table.default {
23
23
  }
24
24
  (0, _object.mixin)(InlineStartOverlayTable, _calculatedRows.default);
25
25
  (0, _object.mixin)(InlineStartOverlayTable, _stickyColumnsStart.default);
26
- var _default = InlineStartOverlayTable;
27
- exports.default = _default;
26
+ var _default = exports.default = InlineStartOverlayTable;
@@ -103,5 +103,4 @@ class MasterTable extends _table.default {
103
103
  }
104
104
  (0, _object.mixin)(MasterTable, _calculatedRows.default);
105
105
  (0, _object.mixin)(MasterTable, _calculatedColumns.default);
106
- var _default = MasterTable;
107
- exports.default = _default;
106
+ var _default = exports.default = MasterTable;
@@ -97,5 +97,4 @@ const calculatedColumns = {
97
97
  writable: false,
98
98
  enumerable: false
99
99
  });
100
- var _default = calculatedColumns;
101
- exports.default = _default;
100
+ var _default = exports.default = calculatedColumns;
@@ -97,5 +97,4 @@ const calculatedRows = {
97
97
  writable: false,
98
98
  enumerable: false
99
99
  });
100
- var _default = calculatedRows;
101
- exports.default = _default;
100
+ var _default = exports.default = calculatedRows;
@@ -89,5 +89,4 @@ const stickyColumnsStart = {
89
89
  writable: false,
90
90
  enumerable: false
91
91
  });
92
- var _default = stickyColumnsStart;
93
- exports.default = _default;
92
+ var _default = exports.default = stickyColumnsStart;
@@ -94,5 +94,4 @@ const stickyRowsBottom = {
94
94
  writable: false,
95
95
  enumerable: false
96
96
  });
97
- var _default = stickyRowsBottom;
98
- exports.default = _default;
97
+ var _default = exports.default = stickyRowsBottom;
@@ -89,5 +89,4 @@ const stickyRowsTop = {
89
89
  writable: false,
90
90
  enumerable: false
91
91
  });
92
- var _default = stickyRowsTop;
93
- exports.default = _default;
92
+ var _default = exports.default = stickyRowsTop;
@@ -26,5 +26,4 @@ class TopOverlayTable extends _table.default {
26
26
  }
27
27
  (0, _object.mixin)(TopOverlayTable, _stickyRowsTop.default);
28
28
  (0, _object.mixin)(TopOverlayTable, _calculatedColumns.default);
29
- var _default = TopOverlayTable;
30
- exports.default = _default;
29
+ var _default = exports.default = TopOverlayTable;
@@ -27,5 +27,4 @@ class TopInlineStartCornerOverlayTable extends _table.default {
27
27
  }
28
28
  (0, _object.mixin)(TopInlineStartCornerOverlayTable, _stickyRowsTop.default);
29
29
  (0, _object.mixin)(TopInlineStartCornerOverlayTable, _stickyColumnsStart.default);
30
- var _default = TopInlineStartCornerOverlayTable;
31
- exports.default = _default;
30
+ var _default = exports.default = TopInlineStartCornerOverlayTable;
@@ -1026,5 +1026,4 @@ class Table {
1026
1026
  return rowHeaderWidth;
1027
1027
  }
1028
1028
  }
1029
- var _default = Table;
1030
- exports.default = _default;
1029
+ var _default = exports.default = Table;
@@ -7,7 +7,7 @@ exports.__esModule = true;
7
7
  *
8
8
  * @type {number}
9
9
  */
10
- const WORKING_SPACE_ALL = 0;
10
+ const WORKING_SPACE_ALL = exports.WORKING_SPACE_ALL = 0;
11
11
  /**
12
12
  * Describes that ViewSizeSet instance share sizes with another instance and
13
13
  * set working space for this instance to 'top' (root node can contain multiple
@@ -15,8 +15,7 @@ const WORKING_SPACE_ALL = 0;
15
15
  *
16
16
  * @type {number}
17
17
  */
18
- exports.WORKING_SPACE_ALL = WORKING_SPACE_ALL;
19
- const WORKING_SPACE_TOP = 1;
18
+ const WORKING_SPACE_TOP = exports.WORKING_SPACE_TOP = 1;
20
19
  /**
21
20
  * Describes that ViewSizeSet instance share sizes with another instance and
22
21
  * set working space for this instance to 'bottom' (root node can contain multiple
@@ -24,6 +23,4 @@ const WORKING_SPACE_TOP = 1;
24
23
  *
25
24
  * @type {number}
26
25
  */
27
- exports.WORKING_SPACE_TOP = WORKING_SPACE_TOP;
28
- const WORKING_SPACE_BOTTOM = 2;
29
- exports.WORKING_SPACE_BOTTOM = WORKING_SPACE_BOTTOM;
26
+ const WORKING_SPACE_BOTTOM = exports.WORKING_SPACE_BOTTOM = 2;
@@ -449,5 +449,4 @@ class Viewport {
449
449
  });
450
450
  }
451
451
  }
452
- var _default = Viewport;
453
- exports.default = _default;
452
+ var _default = exports.default = Viewport;
package/CHANGELOG.md CHANGED
@@ -9,6 +9,75 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
 
10
10
  <!-- UNVERSIONED -->
11
11
 
12
+ ## [14.0.0] - 2023-11-22
13
+
14
+ ### Added
15
+ - Added a `Ctrl/Cmd + Shift + Space` keyboard shortcut for selecting all cells. [#10237](https://github.com/handsontable/handsontable/pull/10237)
16
+ - Added support for keyboard navigation in the headers. [#10265](https://github.com/handsontable/handsontable/pull/10265)
17
+ - Added keyboard shortcuts for selecting all rows and columns along with 4 new hooks. [#10389](https://github.com/handsontable/handsontable/pull/10389)
18
+ - Added support for collapsing/expanding columns using a keyboard shortcut. [#10404](https://github.com/handsontable/handsontable/pull/10404)
19
+ - Added support for collapsing/expanding nested rows using a keyboard shortcut. [#10405](https://github.com/handsontable/handsontable/pull/10405)
20
+ - Added support for column sorting using a keyboard shortcut. [#10410](https://github.com/handsontable/handsontable/pull/10410)
21
+ - Added keyboard shortcuts for opening the column menu. [#10413](https://github.com/handsontable/handsontable/pull/10413)
22
+ - Added a keyboard shortcut for opening the context menu. [#10417](https://github.com/handsontable/handsontable/pull/10417)
23
+ - Added a keyboard shortcut for scrolling the viewport [#10419](https://github.com/handsontable/handsontable/pull/10419)
24
+ - Added a keyboard shortcut for clearing the filters. [#10420](https://github.com/handsontable/handsontable/pull/10420)
25
+ - Added a keyboard shortcut for managing cell comments. [#10421](https://github.com/handsontable/handsontable/pull/10421)
26
+ - Added the ability to traverse the grid within a webpage using the `TAB` key and introduced a new `tabNavigation` option. [#10430](https://github.com/handsontable/handsontable/pull/10430) [#10585](https://github.com/handsontable/handsontable/pull/10585)
27
+ - Added ARIA tags to the table elements. [#10463](https://github.com/handsontable/handsontable/pull/10463)
28
+ - Added ARIA tags to the autocomplete editor. [#10524](https://github.com/handsontable/handsontable/pull/10524)
29
+ - Added test cases to ensure the dropdown editor's ARIA tags are correct. [#10526](https://github.com/handsontable/handsontable/pull/10526)
30
+ - Added the `aria-label` attribute to the checkbox renderer. [#10539](https://github.com/handsontable/handsontable/pull/10539)
31
+ - Added keyboard shortcuts and `role` attributes to the filtering menu's links. [#10548](https://github.com/handsontable/handsontable/pull/10548)
32
+ - Added ARIA tags and improved accessibility of the dropdown menu. [#10541](https://github.com/handsontable/handsontable/pull/10541)
33
+ - Added the ability to navigate the headers with the keyboard by introducing a new `navigableHeaders` option along with other changes. [#10301](https://github.com/handsontable/handsontable/pull/10301)
34
+ - Added a new `beforeSelectionHighlightSet` hook that allows modifying logical selection coordinates before they are applied to the rendering engine. [#10513](https://github.com/handsontable/handsontable/pull/10513)
35
+ - Implemented the `select` renderer and cell type. [#10529](https://github.com/handsontable/handsontable/pull/10529)
36
+ - Added an accessibility demo for javascript and React. [#10532](https://github.com/handsontable/handsontable/pull/10532)
37
+ - Added `handsontable` and `date` renderers for their respective cell types to allow adding the a11y attributes. [#10535](https://github.com/handsontable/handsontable/pull/10535)
38
+ - Added new `beforeColumnWrap` and `beforeRowWrap` hooks. [#10550](https://github.com/handsontable/handsontable/pull/10550)
39
+ - Add a set of `angular@17` examples to ensure Handsontable works with that Angular version. [#10584](https://github.com/handsontable/handsontable/pull/10584)
40
+
41
+ ### Changed
42
+ - **Breaking change**: Changed the way the table reacts to using the "select all cells" methods and shortcuts. [#10461](https://github.com/handsontable/handsontable/pull/10461)
43
+ - **Breaking change**: Changed the colors of the invalid cells and the arrow buttons of the autocomplete-typed cells. [#10520](https://github.com/handsontable/handsontable/pull/10520)
44
+ - **Breaking change**: Improved the navigation and accessibility of the Filtering Dropdown Menu. [#10530](https://github.com/handsontable/handsontable/pull/10530)
45
+ - **Breaking change**: Changed the way Handsontable handles focus by focusing the browser on cell elements. Introduced a new `imeFastEdit` option to minimize the negative effects affecting the "fast edit" feature for the IME users. [#10342](https://github.com/handsontable/handsontable/pull/10342)
46
+ - Extended the Core's `scrollViewportTo` method to allow disabling of cell auto-snapping. [#10508](https://github.com/handsontable/handsontable/pull/10508)
47
+ - Improved the keyboard navigation for the context and dropdown menus and added a new `forwardToContext` option to the ShortcutManager. [#10519](https://github.com/handsontable/handsontable/pull/10519)
48
+ - Upgraded the monorepo to utilize Node 20. [#10468](https://github.com/handsontable/handsontable/pull/10468)
49
+ - Improved DX by adding an exception to be thrown when trying to activate a shortcut context that has been not yet registered. [#10476](https://github.com/handsontable/handsontable/pull/10476)
50
+ - Improved the performance of the table for cases when the table is hidden. [#10490](https://github.com/handsontable/handsontable/pull/10490)
51
+ - Updated the TS definitions for the HiddenRows and HiddenColumns plugins. [#10492](https://github.com/handsontable/handsontable/pull/10492)
52
+ - Updated the TS definitions for the AutoRowSize and AutoColumnSize plugins. [#10493](https://github.com/handsontable/handsontable/pull/10493)
53
+ - Updated the TS definitions for the Filters plugin and the Core methods. [#10494](https://github.com/handsontable/handsontable/pull/10494)
54
+ - Fixed the typescript type definitions in the packages' `package.json` files. [#10509](https://github.com/handsontable/handsontable/issues/10509)
55
+ - Changed the default styling of the "OK" button in the Filtering Dropdown when it's focus. [#10558](https://github.com/handsontable/handsontable/issues/10558)
56
+
57
+ ### Fixed
58
+ - Fixed an issue where copying values containing an ampersand resulted in a wrong values being pasted. [#10472](https://github.com/handsontable/handsontable/pull/10472)
59
+ - Fixed an issue related to the backlight position misalignment for the `ManualRowMove` and `ManualColumnMove` plugins. [#10475](https://github.com/handsontable/handsontable/pull/10475)
60
+ - Fixed a problem with row header widths changing sizes after adding/deleting rows. [#10479](https://github.com/handsontable/handsontable/pull/10479)
61
+ - Fixed a problem with the `offset` helper for elements placed in foreign object contexts. [#10480](https://github.com/handsontable/handsontable/issues/10480)
62
+ - Fixed problems with size and alignment of the table when placed under elements with the CSS `transform: scale` attribute applied. [#10482](https://github.com/handsontable/handsontable/pull/10482)
63
+ - Added the missing `updateData` value to the `ChangeSource` type. [#10488](https://github.com/handsontable/handsontable/pull/10488)
64
+ - Fixed a bug where pressing `Ctrl/Cmd` does not trigger non-contiguous selection. [#10502](https://github.com/handsontable/handsontable/pull/10502)
65
+ - Fixed a problem with the editor having incorrect width and height. [#10504](https://github.com/handsontable/handsontable/pull/10504)
66
+ - Fixed visual glitches (unwanted pixels) of the `Autocomplete` editor's list in cases when there were no items. [#10506](https://github.com/handsontable/handsontable/pull/10506)
67
+ - Fixed the Vue and React demo's dependencies to be able to use the demos with Stackblitz. [#10523](https://github.com/handsontable/handsontable/pull/10523)
68
+ - Fixed a problem with the merged cells having wrong row heights. [#10500](https://github.com/handsontable/handsontable/pull/10500)
69
+ - Fixed the accessibility issues in the documentation. [#10574](https://github.com/handsontable/handsontable/pull/10574)
70
+ - Updated the demos for better accessibility. [#10563](https://github.com/handsontable/handsontable/pull/10563)
71
+ - Fixed a problem with the text editor's width being calculated incorrectly. [#10590](https://github.com/handsontable/handsontable/pull/10590)
72
+ - Fixed a problem with two cells being selected after `Ctrl/Cmd + Shift` key combination. [#10622](https://github.com/handsontable/handsontable/pull/10622)
73
+
74
+ For more information on Handsontable 14.0.0, see:
75
+
76
+ - [Blog post (14.0.0)](https://handsontable.com/blog/whats-new-in-handsontable-14-improvements-to-accessibility)
77
+ - [Documentation (14.0)](https://handsontable.com/docs/14.0)
78
+ - [Release notes (14.0.0)](https://handsontable.com/docs/release-notes/#_14-0-0)
79
+ - [Migration guide (13.1 → 14.0)](https://handsontable.com/docs/migration-from-13.1.0-to-14.0/)
80
+
12
81
  ## [13.1.0] - 2023-08-31
13
82
 
14
83
  ### Changed
@@ -387,7 +456,7 @@ For more information on Handsontable 12.0.1, see:
387
456
  - Added an Arabic translation. [#9208](https://github.com/handsontable/handsontable/issues/9208)
388
457
  - Added a new configuration option: `fixedColumnsStart`.
389
458
  [#8760](https://github.com/handsontable/handsontable/issues/8760)
390
- - Added a new keyboard shortcut (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Enter</kbd>) for filling the
459
+ - Added a new keyboard shortcut (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Enter</kbd>) for filling the
391
460
  selected range of cells with the value of the active cell.
392
461
  [#9366](https://github.com/handsontable/handsontable/issues/9366)
393
462
  - Added support for the <kbd>Home</kbd> and <kbd>End</kbd> keys inside cell editors, for moving the
@@ -418,23 +487,23 @@ For more information on Handsontable 12.0.1, see:
418
487
  [keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/#default-keyboard-shortcuts)
419
488
  guide. However, some shortcuts that were not defined explicitly, and were not listed in the
420
489
  documentation, don't work anymore (e.g., <kbd>Enter</kbd> opens a cell's editor, but
421
- <kbd>Ctrl</kbd> + <kbd>Enter</kbd> doesn't). This change doesn't affect custom keyboard shortcuts.
490
+ <kbd>Ctrl</kbd>+<kbd>Enter</kbd> doesn't). This change doesn't affect custom keyboard shortcuts.
422
491
  [#8942](https://github.com/handsontable/handsontable/issues/8942)
423
492
  - **Breaking change**: Split a cross-platform modifier key (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>) into two
424
493
  separate keys, to improve keyboard navigation consistency. Now, the <kbd>Cmd</kbd> key triggers
425
494
  actions on macOS where the <kbd>Ctrl</kbd> key triggers actions on Windows. For example, on macOS,
426
- <kbd>Ctrl</kbd> + <kbd>A</kbd> doesn't work anymore: <kbd>Cmd</kbd> + <kbd>A</kbd> is used
495
+ <kbd>Ctrl</kbd>+<kbd>A</kbd> doesn't work anymore: <kbd>Cmd</kbd>+<kbd>A</kbd> is used
427
496
  instead. [#9369](https://github.com/handsontable/handsontable/issues/9369)
428
497
  - **Breaking change**: Changed the actions of the following
429
498
  [keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/#default-keyboard-shortcuts),
430
499
  to match the usual spreadsheet software behavior, and provide a more intuitive user experience:
431
- <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> +
432
- <kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
433
- <kbd>Shift</kbd> + <kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>←</kbd>,
434
- <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>←</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
435
- <kbd>→</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>→</kbd>, <kbd>Home</kbd>,
436
- <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Home</kbd>, <kbd>End</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
437
- <kbd>End</kbd>, <kbd>Shift</kbd> + <kbd>Page Up</kbd>, and <kbd>Shift</kbd> + <kbd>Page
500
+ <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Shift</kbd> +
501
+ <kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
502
+ <kbd>Shift</kbd>+<kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>←</kbd>,
503
+ <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>←</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
504
+ <kbd>→</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>→</kbd>, <kbd>Home</kbd>,
505
+ <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Home</kbd>, <kbd>End</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
506
+ <kbd>End</kbd>, <kbd>Shift</kbd>+<kbd>Page Up</kbd>, and <kbd>Shift</kbd>+<kbd>Page
438
507
  Down</kbd>. [#9363](https://github.com/handsontable/handsontable/issues/9363)
439
508
  [#9364](https://github.com/handsontable/handsontable/issues/9364)
440
509
  [#9365](https://github.com/handsontable/handsontable/issues/9365)
@@ -453,11 +522,11 @@ For more information on Handsontable 12.0.1, see:
453
522
 
454
523
  ### Removed
455
524
 
456
- - **Breaking change**: Removed the <kbd>Cmd</kbd> + <kbd>M</kbd> keyboard shortcut (used for cell
457
- merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd> + <kbd>M</kbd>
525
+ - **Breaking change**: Removed the <kbd>Cmd</kbd>+<kbd>M</kbd> keyboard shortcut (used for cell
526
+ merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd>+<kbd>M</kbd>
458
527
  keyboard shortcut works the same as before.
459
528
  [#9368](https://github.com/handsontable/handsontable/issues/9368)
460
- - **Breaking change**: Removed the <kbd>Shift</kbd> + <kbd>Page Up</kbd>/<kbd>Page Down</kbd>
529
+ - **Breaking change**: Removed the <kbd>Shift</kbd>+<kbd>Page Up</kbd>/<kbd>Page Down</kbd>
461
530
  keyboard shortcuts from the cell editing context.
462
531
  [#9401](https://github.com/handsontable/handsontable/issues/9401)
463
532
  - Dropped support for Internet Explorer 11 and Edge Legacy (the non-Chromium version of Edge).
@@ -488,8 +557,8 @@ For more information on Handsontable 12.0.1, see:
488
557
  [#5455](https://github.com/handsontable/handsontable/issues/5455)
489
558
  - Fixed a wrong TypeScript definition in the `BasePlugin` class.
490
559
  [#9175](https://github.com/handsontable/handsontable/issues/9175)
491
- - Fixed an issue where the <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Z</kbd> and
492
- <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> keyboard shortcuts didn't behave
560
+ - Fixed an issue where the <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Z</kbd> and
561
+ <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>Z</kbd> keyboard shortcuts didn't behave
493
562
  properly inside cell editors. [#9367](https://github.com/handsontable/handsontable/issues/9367)
494
563
  - Fixed an issue where the dropdown menu contained unwanted rectangle elements.
495
564
  [#9240](https://github.com/handsontable/handsontable/issues/9240)
package/base.js CHANGED
@@ -43,8 +43,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
43
43
  Handsontable.CellCoords = _src.CellCoords;
44
44
  Handsontable.CellRange = _src.CellRange;
45
45
  Handsontable.packageName = 'handsontable';
46
- Handsontable.buildDate = "29/11/2023 14:08:42";
47
- Handsontable.version = "0.0.0-next-fc6b71a-20231129";
46
+ Handsontable.buildDate = "30/11/2023 11:40:50";
47
+ Handsontable.version = "0.0.0-next-f76fee2-20231130";
48
48
  Handsontable.languages = {
49
49
  dictionaryKeys: _registry.dictionaryKeys,
50
50
  getLanguageDictionary: _registry.getLanguageDictionary,
@@ -52,5 +52,4 @@ Handsontable.languages = {
52
52
  registerLanguageDictionary: _registry.registerLanguageDictionary,
53
53
  getTranslatedPhrase: _registry.getTranslatedPhrase
54
54
  };
55
- var _default = Handsontable;
56
- exports.default = _default;
55
+ var _default = exports.default = Handsontable;
package/base.mjs CHANGED
@@ -35,8 +35,8 @@ Handsontable.hooks = Hooks.getSingleton();
35
35
  Handsontable.CellCoords = CellCoords;
36
36
  Handsontable.CellRange = CellRange;
37
37
  Handsontable.packageName = 'handsontable';
38
- Handsontable.buildDate = "29/11/2023 14:08:48";
39
- Handsontable.version = "0.0.0-next-fc6b71a-20231129";
38
+ Handsontable.buildDate = "30/11/2023 11:40:57";
39
+ Handsontable.version = "0.0.0-next-f76fee2-20231130";
40
40
  Handsontable.languages = {
41
41
  dictionaryKeys,
42
42
  getLanguageDictionary,
@@ -4,12 +4,10 @@ exports.__esModule = true;
4
4
  var _autocompleteEditor = require("../../editors/autocompleteEditor");
5
5
  var _autocompleteRenderer = require("../../renderers/autocompleteRenderer");
6
6
  var _autocompleteValidator = require("../../validators/autocompleteValidator");
7
- const CELL_TYPE = 'autocomplete';
8
- exports.CELL_TYPE = CELL_TYPE;
9
- const AutocompleteCellType = {
7
+ const CELL_TYPE = exports.CELL_TYPE = 'autocomplete';
8
+ const AutocompleteCellType = exports.AutocompleteCellType = {
10
9
  CELL_TYPE,
11
10
  editor: _autocompleteEditor.AutocompleteEditor,
12
11
  renderer: _autocompleteRenderer.autocompleteRenderer,
13
12
  validator: _autocompleteValidator.autocompleteValidator
14
- };
15
- exports.AutocompleteCellType = AutocompleteCellType;
13
+ };
@@ -3,11 +3,9 @@
3
3
  exports.__esModule = true;
4
4
  var _checkboxEditor = require("../../editors/checkboxEditor");
5
5
  var _checkboxRenderer = require("../../renderers/checkboxRenderer");
6
- const CELL_TYPE = 'checkbox';
7
- exports.CELL_TYPE = CELL_TYPE;
8
- const CheckboxCellType = {
6
+ const CELL_TYPE = exports.CELL_TYPE = 'checkbox';
7
+ const CheckboxCellType = exports.CheckboxCellType = {
9
8
  CELL_TYPE,
10
9
  editor: _checkboxEditor.CheckboxEditor,
11
10
  renderer: _checkboxRenderer.checkboxRenderer
12
- };
13
- exports.CheckboxCellType = CheckboxCellType;
11
+ };
@@ -4,13 +4,11 @@ exports.__esModule = true;
4
4
  var _dateEditor = require("../../editors/dateEditor");
5
5
  var _dateRenderer = require("../../renderers/dateRenderer");
6
6
  var _dateValidator = require("../../validators/dateValidator");
7
- const CELL_TYPE = 'date';
8
- exports.CELL_TYPE = CELL_TYPE;
9
- const DateCellType = {
7
+ const CELL_TYPE = exports.CELL_TYPE = 'date';
8
+ const DateCellType = exports.DateCellType = {
10
9
  CELL_TYPE,
11
10
  editor: _dateEditor.DateEditor,
12
11
  // displays small gray arrow on right side of the cell
13
12
  renderer: _dateRenderer.dateRenderer,
14
13
  validator: _dateValidator.dateValidator
15
- };
16
- exports.DateCellType = DateCellType;
14
+ };