handsontable 15.1.0 → 15.2.0-next-9a1a15b-20250314

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/3rdparty/walkontable/src/selection/border/border.js +16 -3
  2. package/3rdparty/walkontable/src/selection/border/border.mjs +17 -4
  3. package/3rdparty/walkontable/src/selection/scanner.js +1 -1
  4. package/3rdparty/walkontable/src/selection/scanner.mjs +2 -2
  5. package/3rdparty/walkontable/src/table.js +3 -2
  6. package/3rdparty/walkontable/src/table.mjs +4 -3
  7. package/3rdparty/walkontable/src/utils/orderView/viewDiffer/viewOrder.js +1 -0
  8. package/3rdparty/walkontable/src/utils/orderView/viewDiffer/viewOrder.mjs +1 -0
  9. package/3rdparty/walkontable/src/viewport.js +30 -3
  10. package/3rdparty/walkontable/src/viewport.mjs +30 -3
  11. package/CHANGELOG.md +40 -0
  12. package/base.js +2 -2
  13. package/base.mjs +2 -2
  14. package/core.js +2 -37
  15. package/core.mjs +2 -37
  16. package/dataMap/dataMap.js +4 -12
  17. package/dataMap/dataMap.mjs +4 -12
  18. package/dataMap/dataSource.js +2 -2
  19. package/dataMap/dataSource.mjs +2 -2
  20. package/dataMap/metaManager/metaSchema.js +2 -2
  21. package/dataMap/metaManager/metaSchema.mjs +2 -2
  22. package/dist/handsontable.css +2 -2
  23. package/dist/handsontable.full.css +2 -2
  24. package/dist/handsontable.full.js +500 -412
  25. package/dist/handsontable.full.min.css +2 -2
  26. package/dist/handsontable.full.min.js +73 -73
  27. package/dist/handsontable.js +500 -412
  28. package/dist/handsontable.min.css +2 -2
  29. package/dist/handsontable.min.js +43 -43
  30. package/dist/languages/all.js +139 -28
  31. package/dist/languages/all.min.js +1 -1
  32. package/dist/languages/fa-IR.js +167 -0
  33. package/dist/languages/fa-IR.min.js +1 -0
  34. package/dist/languages/it-IT.js +3 -0
  35. package/dist/languages/it-IT.min.js +1 -1
  36. package/dist/languages/sr-SP.js +3 -0
  37. package/dist/languages/sr-SP.min.js +1 -1
  38. package/editors/autocompleteEditor/autocompleteEditor.js +25 -20
  39. package/editors/autocompleteEditor/autocompleteEditor.mjs +25 -20
  40. package/editors/dateEditor/dateEditor.d.ts +0 -2
  41. package/editors/dateEditor/dateEditor.js +18 -7
  42. package/editors/dateEditor/dateEditor.mjs +17 -6
  43. package/editors/textEditor/textEditor.js +1 -1
  44. package/editors/textEditor/textEditor.mjs +2 -2
  45. package/focusManager.js +5 -3
  46. package/focusManager.mjs +6 -4
  47. package/helpers/dom/element.d.ts +1 -0
  48. package/helpers/dom/element.js +23 -4
  49. package/helpers/dom/element.mjs +21 -3
  50. package/helpers/dom/event.js +2 -1
  51. package/helpers/dom/event.mjs +2 -1
  52. package/helpers/mixed.js +2 -2
  53. package/helpers/mixed.mjs +2 -2
  54. package/helpers/number.js +1 -0
  55. package/helpers/number.mjs +1 -0
  56. package/i18n/languages/fa-IR.d.ts +5 -0
  57. package/i18n/languages/fa-IR.js +96 -0
  58. package/i18n/languages/fa-IR.mjs +90 -0
  59. package/i18n/languages/index.d.ts +2 -0
  60. package/i18n/languages/index.js +2 -0
  61. package/i18n/languages/index.mjs +2 -1
  62. package/i18n/languages/it-IT.js +3 -0
  63. package/i18n/languages/it-IT.mjs +3 -0
  64. package/i18n/languages/sr-SP.js +3 -0
  65. package/i18n/languages/sr-SP.mjs +3 -0
  66. package/i18n/phraseFormatters/substituteVariables.js +1 -0
  67. package/i18n/phraseFormatters/substituteVariables.mjs +1 -0
  68. package/languages/all.js +139 -28
  69. package/languages/fa-IR.js +167 -0
  70. package/languages/fa-IR.mjs +92 -0
  71. package/languages/index.js +139 -28
  72. package/languages/index.mjs +2 -1
  73. package/languages/it-IT.js +3 -0
  74. package/languages/it-IT.mjs +3 -0
  75. package/languages/sr-SP.js +3 -0
  76. package/languages/sr-SP.mjs +3 -0
  77. package/package.json +13 -2
  78. package/plugins/columnSorting/columnSorting.js +17 -1
  79. package/plugins/columnSorting/columnSorting.mjs +18 -2
  80. package/plugins/columnSorting/columnStatesManager.js +1 -0
  81. package/plugins/columnSorting/columnStatesManager.mjs +1 -0
  82. package/plugins/columnSorting/utils.js +14 -0
  83. package/plugins/columnSorting/utils.mjs +13 -0
  84. package/plugins/comments/comments.js +5 -2
  85. package/plugins/comments/comments.mjs +6 -3
  86. package/plugins/contextMenu/menu/menu.js +9 -3
  87. package/plugins/contextMenu/menu/menu.mjs +9 -3
  88. package/plugins/contextMenu/predefinedItems/columnLeft.js +3 -8
  89. package/plugins/contextMenu/predefinedItems/columnLeft.mjs +3 -8
  90. package/plugins/contextMenu/predefinedItems/columnRight.js +2 -9
  91. package/plugins/contextMenu/predefinedItems/columnRight.mjs +2 -9
  92. package/plugins/contextMenu/predefinedItems/rowAbove.js +3 -8
  93. package/plugins/contextMenu/predefinedItems/rowAbove.mjs +3 -8
  94. package/plugins/contextMenu/predefinedItems/rowBelow.js +2 -9
  95. package/plugins/contextMenu/predefinedItems/rowBelow.mjs +2 -9
  96. package/plugins/copyPaste/copyPaste.js +6 -12
  97. package/plugins/copyPaste/copyPaste.mjs +7 -13
  98. package/plugins/exportFile/types/csv.js +1 -0
  99. package/plugins/exportFile/types/csv.mjs +1 -0
  100. package/plugins/filters/conditionCollection.js +0 -26
  101. package/plugins/filters/conditionCollection.mjs +0 -26
  102. package/plugins/filters/filters.d.ts +2 -0
  103. package/plugins/filters/filters.js +77 -8
  104. package/plugins/filters/filters.mjs +77 -8
  105. package/plugins/mergeCells/mergeCells.js +9 -6
  106. package/plugins/mergeCells/mergeCells.mjs +9 -6
  107. package/plugins/multiColumnSorting/multiColumnSorting.js +1 -21
  108. package/plugins/multiColumnSorting/multiColumnSorting.mjs +1 -21
  109. package/plugins/nestedHeaders/nestedHeaders.js +5 -3
  110. package/plugins/nestedHeaders/nestedHeaders.mjs +5 -3
  111. package/plugins/nestedHeaders/stateManager/index.js +1 -0
  112. package/plugins/nestedHeaders/stateManager/index.mjs +1 -0
  113. package/plugins/undoRedo/actions/_base.js +10 -0
  114. package/plugins/undoRedo/actions/_base.mjs +10 -0
  115. package/plugins/undoRedo/actions/cellAlignment.js +1 -1
  116. package/plugins/undoRedo/actions/cellAlignment.mjs +1 -1
  117. package/plugins/undoRedo/actions/columnMove.js +1 -1
  118. package/plugins/undoRedo/actions/columnMove.mjs +1 -1
  119. package/plugins/undoRedo/actions/columnSort.js +1 -1
  120. package/plugins/undoRedo/actions/columnSort.mjs +1 -1
  121. package/plugins/undoRedo/actions/createColumn.js +1 -1
  122. package/plugins/undoRedo/actions/createColumn.mjs +1 -1
  123. package/plugins/undoRedo/actions/createRow.js +1 -1
  124. package/plugins/undoRedo/actions/createRow.mjs +1 -1
  125. package/plugins/undoRedo/actions/dataChange.js +1 -1
  126. package/plugins/undoRedo/actions/dataChange.mjs +1 -1
  127. package/plugins/undoRedo/actions/filters.js +3 -3
  128. package/plugins/undoRedo/actions/filters.mjs +3 -3
  129. package/plugins/undoRedo/actions/mergeCells.js +4 -1
  130. package/plugins/undoRedo/actions/mergeCells.mjs +4 -1
  131. package/plugins/undoRedo/actions/removeColumn.js +4 -2
  132. package/plugins/undoRedo/actions/removeColumn.mjs +4 -2
  133. package/plugins/undoRedo/actions/removeRow.js +1 -1
  134. package/plugins/undoRedo/actions/removeRow.mjs +1 -1
  135. package/plugins/undoRedo/actions/rowMove.js +1 -1
  136. package/plugins/undoRedo/actions/rowMove.mjs +1 -1
  137. package/plugins/undoRedo/actions/unmergeCells.js +4 -1
  138. package/plugins/undoRedo/actions/unmergeCells.mjs +4 -1
  139. package/plugins/undoRedo/undoRedo.d.ts +48 -17
  140. package/renderers/checkboxRenderer/checkboxRenderer.js +1 -1
  141. package/renderers/checkboxRenderer/checkboxRenderer.mjs +2 -2
  142. package/renderers/numericRenderer/numericRenderer.js +10 -2
  143. package/renderers/numericRenderer/numericRenderer.mjs +10 -2
  144. package/renderers/textRenderer/textRenderer.js +3 -12
  145. package/renderers/textRenderer/textRenderer.mjs +4 -13
  146. package/shortcuts/utils.js +1 -0
  147. package/shortcuts/utils.mjs +1 -0
  148. package/styles/handsontable.css +83 -99
  149. package/styles/handsontable.min.css +3 -3
  150. package/styles/ht-theme-horizon.css +14 -2
  151. package/styles/ht-theme-horizon.min.css +3 -3
  152. package/styles/ht-theme-main.css +14 -2
  153. package/styles/ht-theme-main.min.css +3 -3
  154. package/tableView.js +9 -0
  155. package/tableView.mjs +9 -0
  156. package/translations/maps/linkedPhysicalIndexToValueMap.js +1 -0
  157. package/translations/maps/linkedPhysicalIndexToValueMap.mjs +1 -0
  158. package/translations/maps/utils/physicallyIndexed.js +1 -0
  159. package/translations/maps/utils/physicallyIndexed.mjs +1 -0
  160. package/utils/dataStructures/priorityMap.js +1 -0
  161. package/utils/dataStructures/priorityMap.mjs +1 -0
  162. package/plugins/multiColumnSorting/utils.js +0 -13
  163. package/plugins/multiColumnSorting/utils.mjs +0 -9

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


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

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