handsontable 17.0.0-rc3 → 17.0.0-rc4

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 (56) hide show
  1. package/CHANGELOG.md +26 -26
  2. package/base.js +2 -2
  3. package/base.mjs +2 -2
  4. package/dist/handsontable.full.js +6 -6
  5. package/dist/handsontable.full.min.js +5 -5
  6. package/dist/handsontable.js +6 -6
  7. package/dist/handsontable.min.js +5 -5
  8. package/dist/themes/classic.js +2 -2
  9. package/dist/themes/classic.min.js +2 -2
  10. package/dist/themes/horizon.js +2 -2
  11. package/dist/themes/horizon.min.js +2 -2
  12. package/dist/themes/main.js +2 -2
  13. package/dist/themes/main.min.js +2 -2
  14. package/dist/themes/static/variables/colors/ant.js +2 -2
  15. package/dist/themes/static/variables/colors/ant.min.js +2 -2
  16. package/dist/themes/static/variables/colors/classic.js +2 -2
  17. package/dist/themes/static/variables/colors/classic.min.js +2 -2
  18. package/dist/themes/static/variables/colors/horizon.js +2 -2
  19. package/dist/themes/static/variables/colors/horizon.min.js +2 -2
  20. package/dist/themes/static/variables/colors/main.js +2 -2
  21. package/dist/themes/static/variables/colors/main.min.js +2 -2
  22. package/dist/themes/static/variables/colors/material.js +2 -2
  23. package/dist/themes/static/variables/colors/material.min.js +2 -2
  24. package/dist/themes/static/variables/colors/shadcn.js +2 -2
  25. package/dist/themes/static/variables/colors/shadcn.min.js +2 -2
  26. package/dist/themes/static/variables/density.js +2 -2
  27. package/dist/themes/static/variables/density.min.js +2 -2
  28. package/dist/themes/static/variables/helpers/iconsMap.js +2 -2
  29. package/dist/themes/static/variables/helpers/iconsMap.min.js +2 -2
  30. package/dist/themes/static/variables/icons/horizon.js +2 -2
  31. package/dist/themes/static/variables/icons/horizon.min.js +2 -2
  32. package/dist/themes/static/variables/icons/main.js +2 -2
  33. package/dist/themes/static/variables/icons/main.min.js +2 -2
  34. package/dist/themes/static/variables/sizing.js +2 -2
  35. package/dist/themes/static/variables/sizing.min.js +2 -2
  36. package/dist/themes/static/variables/tokens/classic.js +2 -2
  37. package/dist/themes/static/variables/tokens/classic.min.js +2 -2
  38. package/dist/themes/static/variables/tokens/horizon.js +2 -2
  39. package/dist/themes/static/variables/tokens/horizon.min.js +2 -2
  40. package/dist/themes/static/variables/tokens/main.js +2 -2
  41. package/dist/themes/static/variables/tokens/main.min.js +2 -2
  42. package/helpers/mixed.js +1 -1
  43. package/helpers/mixed.mjs +1 -1
  44. package/package.json +1 -1
  45. package/styles/handsontable.css +2 -2
  46. package/styles/handsontable.min.css +2 -2
  47. package/styles/handsontableStyles.js +1 -1
  48. package/styles/handsontableStyles.mjs +1 -1
  49. package/styles/ht-icons-horizon.min.css +2 -2
  50. package/styles/ht-icons-main.min.css +2 -2
  51. package/styles/ht-theme-classic-no-icons.min.css +2 -2
  52. package/styles/ht-theme-classic.min.css +2 -2
  53. package/styles/ht-theme-horizon-no-icons.min.css +2 -2
  54. package/styles/ht-theme-horizon.min.css +2 -2
  55. package/styles/ht-theme-main-no-icons.min.css +2 -2
  56. package/styles/ht-theme-main.min.css +2 -2
package/CHANGELOG.md CHANGED
@@ -9,40 +9,40 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
 
10
10
  <!-- UNVERSIONED -->
11
11
 
12
- ## [17.0.0-rc2] - 2026-02-24
12
+ ## [17.0.0-rc3] - 2026-02-24
13
13
 
14
14
  ### Added
15
- - **Breaking change**: Added Theme API [#11950](https://github.com/handsontable/handsontable/pull/11950)
16
- - Simple definition of custom editors using new `BaseEditor.factory` [#11899](https://github.com/handsontable/handsontable/pull/11899)
17
- - Implement a new cell type (editor, renderer and validator) - MultiSelect. [#11981](https://github.com/handsontable/handsontable/pull/11981)
18
- - Added support for Intl.NumericFormat options [#11997](https://github.com/handsontable/handsontable/pull/11997)
19
- - Added support for Intl.DateTimeFormat options [#11999](https://github.com/handsontable/handsontable/pull/11999)
20
- - Added copy as markdown button to the documentation pages [#12009](https://github.com/handsontable/handsontable/pull/12009)
21
- - Added a new `sanitizer` table option [#12016](https://github.com/handsontable/handsontable/pull/12016)
22
- - React: Reacts Simple definition of custom editors using new `ComponentEditor` [#11978](https://github.com/handsontable/handsontable/pull/11978)
15
+ - **Breaking change**: Added the Theme API. [#11950](https://github.com/handsontable/handsontable/pull/11950)
16
+ - Introduced a simple way to define custom editors using the new `BaseEditor.factory` method. [#11899](https://github.com/handsontable/handsontable/pull/11899)
17
+ - Implemented a new MultiSelect cell type with a dedicated editor, renderer, and validator. [#11981](https://github.com/handsontable/handsontable/pull/11981)
18
+ - Added support for `Intl.NumberFormat` options. [#11997](https://github.com/handsontable/handsontable/pull/11997)
19
+ - Added support for `Intl.DateTimeFormat` options. [#11999](https://github.com/handsontable/handsontable/pull/11999)
20
+ - Added a copy-as-Markdown button to the documentation pages. [#12009](https://github.com/handsontable/handsontable/pull/12009)
21
+ - Added a new `sanitizer` table option. [#12016](https://github.com/handsontable/handsontable/pull/12016)
22
+ - React: Introduced a simple way to define custom editors using the new `ComponentEditor`. [#11978](https://github.com/handsontable/handsontable/pull/11978)
23
23
 
24
24
  ### Changed
25
- - differentiate between Handsontable errors and other errors [#11780](https://github.com/handsontable/handsontable/pull/11780)
26
- - Revert the editors' `updateChoicesList` method typing [#11943](https://github.com/handsontable/handsontable/pull/11943)
27
- - Add hit area to fill handle [#11952](https://github.com/handsontable/handsontable/pull/11952)
28
- - Add a new `parsePastedValue` option - which fixes the issue with pasting object-based values [#12020](https://github.com/handsontable/handsontable/pull/12020)
29
- - Introduce a new publishing flow for versions 17.0.0+. [#12028](https://github.com/handsontable/handsontable/pull/12028)
25
+ - Improved differentiation between Handsontable errors and other errors. [#11780](https://github.com/handsontable/handsontable/pull/11780)
26
+ - Reverted the editors' `updateChoicesList` method type change. [#11943](https://github.com/handsontable/handsontable/pull/11943)
27
+ - Added a hit area to the fill handle. [#11952](https://github.com/handsontable/handsontable/pull/11952)
28
+ - Added a new `parsePastedValue` option to fix issues with pasting object-based values. [#12020](https://github.com/handsontable/handsontable/pull/12020)
29
+ - Introduced a new publishing flow for versions 17.0.0 and above. [#12028](https://github.com/handsontable/handsontable/pull/12028)
30
30
 
31
31
  ### Removed
32
- - **Breaking change**: Removed deprecated packages Angular, React, Vue wrapper, persistentState plugin and hot undo redo methods [#12015](https://github.com/handsontable/handsontable/pull/12015)
33
- - **Breaking change**: Removed `core-js` from dependencies [#12017](https://github.com/handsontable/handsontable/pull/12017)
32
+ - **Breaking change**: Removed deprecated wrapper packages for Angular, React, and Vue, the `PersistentState` plugin, and the legacy undo/redo methods. [#12015](https://github.com/handsontable/handsontable/pull/12015)
33
+ - **Breaking change**: Removed `core-js` from dependencies. [#12017](https://github.com/handsontable/handsontable/pull/12017)
34
34
 
35
35
  ### Fixed
36
- - Fixed errors that could happen on some keyboard shortcuts [#11951](https://github.com/handsontable/handsontable/pull/11951)
37
- - Fix unwanted layout shifts caused by the editor [#11955](https://github.com/handsontable/handsontable/pull/11955)
38
- - Fixed an issue with scrolling in Firefox [#11962](https://github.com/handsontable/handsontable/pull/11962)
39
- - Fixed an issue with viewport scroll after loadData/updateData method call [#11985](https://github.com/handsontable/handsontable/pull/11985)
40
- - Fixed a bug where the pasted value cannot be changed [#11989](https://github.com/handsontable/handsontable/pull/11989)
41
- - Fixed misalignment issues for CSS transform: scale() [#11990](https://github.com/handsontable/handsontable/pull/11990)
42
- - Fixed a bug that made it impossible to delete values from a key/value-based autocomplete/dropdown cells. [#12010](https://github.com/handsontable/handsontable/pull/12010)
43
- - Fixed a Data Factory for filters that could cause zero results even when they should exist [#12031](https://github.com/handsontable/handsontable/pull/12031)
44
- - Change the element type for focus catchers [#12032](https://github.com/handsontable/handsontable/pull/12032)
45
- - Fixed wrong scrollbar width calculation for scaled environments [#12035](https://github.com/handsontable/handsontable/pull/12035)
36
+ - Fixed errors triggered by certain keyboard shortcuts. [#11951](https://github.com/handsontable/handsontable/pull/11951)
37
+ - Fixed unwanted layout shifts caused by the editor. [#11955](https://github.com/handsontable/handsontable/pull/11955)
38
+ - Fixed an issue with scrolling in Firefox. [#11962](https://github.com/handsontable/handsontable/pull/11962)
39
+ - Fixed an issue with viewport scroll after calling `loadData()`/`updateData()`. [#11985](https://github.com/handsontable/handsontable/pull/11985)
40
+ - Fixed a bug where the pasted value could not be changed. [#11989](https://github.com/handsontable/handsontable/pull/11989)
41
+ - Fixed misalignment issues when using `CSS transform: scale()`. [#11990](https://github.com/handsontable/handsontable/pull/11990)
42
+ - Fixed a bug that made it impossible to delete values from key/value-based autocomplete and dropdown cells. [#12010](https://github.com/handsontable/handsontable/pull/12010)
43
+ - Fixed a Data Factory issue in filters that could return zero results even when matches exist. [#12031](https://github.com/handsontable/handsontable/pull/12031)
44
+ - Changed the element type for focus catchers. [#12032](https://github.com/handsontable/handsontable/pull/12032)
45
+ - Fixed incorrect scrollbar width calculation for scaled environments. [#12035](https://github.com/handsontable/handsontable/pull/12035)
46
46
 
47
47
  ## [16.2.0] - 2025-11-25
48
48
 
package/base.js CHANGED
@@ -49,8 +49,8 @@ Handsontable.hooks = _hooks.Hooks.getSingleton();
49
49
  Handsontable.CellCoords = _src.CellCoords;
50
50
  Handsontable.CellRange = _src.CellRange;
51
51
  Handsontable.packageName = 'handsontable';
52
- Handsontable.buildDate = "24/02/2026 09:26:59";
53
- Handsontable.version = "17.0.0-rc3";
52
+ Handsontable.buildDate = "24/02/2026 10:26:22";
53
+ Handsontable.version = "17.0.0-rc4";
54
54
  Handsontable.languages = {
55
55
  dictionaryKeys: _registry.dictionaryKeys,
56
56
  getLanguageDictionary: _registry.getLanguageDictionary,
package/base.mjs CHANGED
@@ -39,8 +39,8 @@ Handsontable.hooks = Hooks.getSingleton();
39
39
  Handsontable.CellCoords = CellCoords;
40
40
  Handsontable.CellRange = CellRange;
41
41
  Handsontable.packageName = 'handsontable';
42
- Handsontable.buildDate = "24/02/2026 09:27:08";
43
- Handsontable.version = "17.0.0-rc3";
42
+ Handsontable.buildDate = "24/02/2026 10:26:30";
43
+ Handsontable.version = "17.0.0-rc4";
44
44
  Handsontable.languages = {
45
45
  dictionaryKeys,
46
46
  getLanguageDictionary,