handsontable 0.0.0-next-fd9f817-20241125 → 0.0.0-next-fcb9b77-20241126

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (114) hide show
  1. package/3rdparty/walkontable/src/calculator/index.js +2 -1
  2. package/3rdparty/walkontable/src/calculator/index.mjs +2 -2
  3. package/3rdparty/walkontable/src/calculator/viewportRows.js +3 -3
  4. package/3rdparty/walkontable/src/calculator/viewportRows.mjs +3 -3
  5. package/3rdparty/walkontable/src/core/_base.js +19 -26
  6. package/3rdparty/walkontable/src/core/_base.mjs +19 -26
  7. package/3rdparty/walkontable/src/core/clone.js +0 -1
  8. package/3rdparty/walkontable/src/core/clone.mjs +0 -1
  9. package/3rdparty/walkontable/src/core/core.js +0 -2
  10. package/3rdparty/walkontable/src/core/core.mjs +0 -2
  11. package/3rdparty/walkontable/src/facade/core.js +6 -9
  12. package/3rdparty/walkontable/src/facade/core.mjs +6 -9
  13. package/3rdparty/walkontable/src/index.js +1 -0
  14. package/3rdparty/walkontable/src/index.mjs +2 -2
  15. package/3rdparty/walkontable/src/overlay/_base.js +1 -3
  16. package/3rdparty/walkontable/src/overlay/_base.mjs +1 -3
  17. package/3rdparty/walkontable/src/overlay/bottom.js +2 -2
  18. package/3rdparty/walkontable/src/overlay/bottom.mjs +2 -2
  19. package/3rdparty/walkontable/src/overlay/top.js +1 -1
  20. package/3rdparty/walkontable/src/overlay/top.mjs +1 -1
  21. package/3rdparty/walkontable/src/renderer/index.js +2 -4
  22. package/3rdparty/walkontable/src/renderer/index.mjs +2 -4
  23. package/3rdparty/walkontable/src/renderer/table.js +3 -12
  24. package/3rdparty/walkontable/src/renderer/table.mjs +3 -12
  25. package/3rdparty/walkontable/src/scroll.js +46 -37
  26. package/3rdparty/walkontable/src/scroll.mjs +46 -37
  27. package/3rdparty/walkontable/src/settings.js +2 -0
  28. package/3rdparty/walkontable/src/settings.mjs +2 -0
  29. package/3rdparty/walkontable/src/table.js +9 -17
  30. package/3rdparty/walkontable/src/table.mjs +9 -17
  31. package/3rdparty/walkontable/src/types.js +0 -1
  32. package/3rdparty/walkontable/src/types.mjs +0 -1
  33. package/3rdparty/walkontable/src/utils/column.js +1 -1
  34. package/3rdparty/walkontable/src/utils/column.mjs +1 -1
  35. package/3rdparty/walkontable/src/viewport.js +0 -1
  36. package/3rdparty/walkontable/src/viewport.mjs +0 -1
  37. package/base.js +2 -2
  38. package/base.mjs +2 -2
  39. package/core/hooks/constants.js +7 -9
  40. package/core/hooks/constants.mjs +7 -9
  41. package/core/hooks/index.d.ts +2 -3
  42. package/core.d.ts +0 -2
  43. package/core.js +3 -64
  44. package/core.mjs +3 -64
  45. package/dataMap/metaManager/metaSchema.js +3 -23
  46. package/dataMap/metaManager/metaSchema.mjs +3 -23
  47. package/dist/handsontable.css +9 -17
  48. package/dist/handsontable.full.css +240 -249
  49. package/dist/handsontable.full.js +4386 -4760
  50. package/dist/handsontable.full.min.css +9 -11
  51. package/dist/handsontable.full.min.js +53 -53
  52. package/dist/handsontable.js +4087 -4467
  53. package/dist/handsontable.min.css +4 -5
  54. package/dist/handsontable.min.js +33 -33
  55. package/editors/autocompleteEditor/autocompleteEditor.js +1 -1
  56. package/editors/autocompleteEditor/autocompleteEditor.mjs +1 -1
  57. package/editors/baseEditor/baseEditor.js +1 -1
  58. package/editors/baseEditor/baseEditor.mjs +1 -1
  59. package/editors/dateEditor/dateEditor.js +0 -9
  60. package/editors/dateEditor/dateEditor.mjs +1 -10
  61. package/editors/handsontableEditor/handsontableEditor.js +1 -7
  62. package/editors/handsontableEditor/handsontableEditor.mjs +1 -7
  63. package/editors/selectEditor/selectEditor.js +9 -20
  64. package/editors/selectEditor/selectEditor.mjs +9 -20
  65. package/editors/textEditor/textEditor.js +11 -4
  66. package/editors/textEditor/textEditor.mjs +11 -4
  67. package/helpers/dom/element.js +1 -32
  68. package/helpers/dom/element.mjs +1 -31
  69. package/helpers/mixed.js +2 -2
  70. package/helpers/mixed.mjs +2 -2
  71. package/package.json +3 -10
  72. package/plugins/comments/commentEditor.js +0 -9
  73. package/plugins/comments/commentEditor.mjs +0 -9
  74. package/plugins/comments/comments.js +0 -14
  75. package/plugins/comments/comments.mjs +1 -15
  76. package/plugins/contextMenu/menu/menu.js +4 -9
  77. package/plugins/contextMenu/menu/menu.mjs +4 -9
  78. package/plugins/contextMenu/predefinedItems/alignment.js +7 -84
  79. package/plugins/contextMenu/predefinedItems/alignment.mjs +8 -85
  80. package/plugins/contextMenu/utils.js +0 -10
  81. package/plugins/contextMenu/utils.mjs +0 -9
  82. package/plugins/filters/ui/multipleSelect.js +0 -6
  83. package/plugins/filters/ui/multipleSelect.mjs +0 -6
  84. package/plugins/manualRowMove/manualRowMove.js +1 -1
  85. package/plugins/manualRowMove/manualRowMove.mjs +1 -1
  86. package/plugins/manualRowResize/manualRowResize.js +2 -1
  87. package/plugins/manualRowResize/manualRowResize.mjs +3 -2
  88. package/plugins/mergeCells/mergeCells.js +1 -1
  89. package/plugins/mergeCells/mergeCells.mjs +1 -1
  90. package/plugins/nestedHeaders/nestedHeaders.js +60 -15
  91. package/plugins/nestedHeaders/nestedHeaders.mjs +60 -15
  92. package/plugins/nestedRows/ui/headers.js +1 -7
  93. package/plugins/nestedRows/ui/headers.mjs +1 -7
  94. package/plugins/stretchColumns/calculator.js +1 -2
  95. package/plugins/stretchColumns/calculator.mjs +2 -3
  96. package/selection/selection.js +4 -2
  97. package/selection/selection.mjs +4 -2
  98. package/settings.d.ts +0 -1
  99. package/tableView.js +23 -64
  100. package/tableView.mjs +24 -65
  101. package/utils/autoResize.js +1 -4
  102. package/utils/autoResize.mjs +1 -4
  103. package/utils/ghostTable.js +3 -5
  104. package/utils/ghostTable.mjs +3 -5
  105. package/3rdparty/walkontable/src/utils/stylesHandler.js +0 -287
  106. package/3rdparty/walkontable/src/utils/stylesHandler.mjs +0 -283
  107. package/helpers/themes.js +0 -17
  108. package/helpers/themes.mjs +0 -13
  109. package/styles/handsontable.css +0 -2187
  110. package/styles/handsontable.min.css +0 -30
  111. package/styles/ht-theme-horizon.css +0 -607
  112. package/styles/ht-theme-horizon.min.css +0 -30
  113. package/styles/ht-theme-main.css +0 -613
  114. package/styles/ht-theme-main.min.css +0 -30

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.