handsontable 17.0.0-rc13 → 17.0.0-rc15

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 (58) hide show
  1. package/CHANGELOG.md +10 -9
  2. package/base.js +2 -2
  3. package/base.mjs +2 -2
  4. package/core.js +1 -1
  5. package/core.mjs +1 -1
  6. package/dist/handsontable.full.js +7 -7
  7. package/dist/handsontable.full.min.js +5 -5
  8. package/dist/handsontable.js +7 -7
  9. package/dist/handsontable.min.js +5 -5
  10. package/dist/themes/classic.js +2 -2
  11. package/dist/themes/classic.min.js +2 -2
  12. package/dist/themes/horizon.js +2 -2
  13. package/dist/themes/horizon.min.js +2 -2
  14. package/dist/themes/main.js +2 -2
  15. package/dist/themes/main.min.js +2 -2
  16. package/dist/themes/static/variables/colors/ant.js +2 -2
  17. package/dist/themes/static/variables/colors/ant.min.js +2 -2
  18. package/dist/themes/static/variables/colors/classic.js +2 -2
  19. package/dist/themes/static/variables/colors/classic.min.js +2 -2
  20. package/dist/themes/static/variables/colors/horizon.js +2 -2
  21. package/dist/themes/static/variables/colors/horizon.min.js +2 -2
  22. package/dist/themes/static/variables/colors/main.js +2 -2
  23. package/dist/themes/static/variables/colors/main.min.js +2 -2
  24. package/dist/themes/static/variables/colors/material.js +2 -2
  25. package/dist/themes/static/variables/colors/material.min.js +2 -2
  26. package/dist/themes/static/variables/colors/shadcn.js +2 -2
  27. package/dist/themes/static/variables/colors/shadcn.min.js +2 -2
  28. package/dist/themes/static/variables/density.js +2 -2
  29. package/dist/themes/static/variables/density.min.js +2 -2
  30. package/dist/themes/static/variables/helpers/iconsMap.js +2 -2
  31. package/dist/themes/static/variables/helpers/iconsMap.min.js +2 -2
  32. package/dist/themes/static/variables/icons/horizon.js +2 -2
  33. package/dist/themes/static/variables/icons/horizon.min.js +2 -2
  34. package/dist/themes/static/variables/icons/main.js +2 -2
  35. package/dist/themes/static/variables/icons/main.min.js +2 -2
  36. package/dist/themes/static/variables/sizing.js +2 -2
  37. package/dist/themes/static/variables/sizing.min.js +2 -2
  38. package/dist/themes/static/variables/tokens/classic.js +2 -2
  39. package/dist/themes/static/variables/tokens/classic.min.js +2 -2
  40. package/dist/themes/static/variables/tokens/horizon.js +2 -2
  41. package/dist/themes/static/variables/tokens/horizon.min.js +2 -2
  42. package/dist/themes/static/variables/tokens/main.js +2 -2
  43. package/dist/themes/static/variables/tokens/main.min.js +2 -2
  44. package/helpers/mixed.js +1 -1
  45. package/helpers/mixed.mjs +1 -1
  46. package/package.json +1 -1
  47. package/styles/handsontable.css +2 -2
  48. package/styles/handsontable.min.css +2 -2
  49. package/styles/handsontableStyles.js +1 -1
  50. package/styles/handsontableStyles.mjs +1 -1
  51. package/styles/ht-icons-horizon.min.css +2 -2
  52. package/styles/ht-icons-main.min.css +2 -2
  53. package/styles/ht-theme-classic-no-icons.min.css +2 -2
  54. package/styles/ht-theme-classic.min.css +2 -2
  55. package/styles/ht-theme-horizon-no-icons.min.css +2 -2
  56. package/styles/ht-theme-horizon.min.css +2 -2
  57. package/styles/ht-theme-main-no-icons.min.css +2 -2
  58. package/styles/ht-theme-main.min.css +2 -2
package/CHANGELOG.md CHANGED
@@ -9,7 +9,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
 
10
10
  <!-- UNVERSIONED -->
11
11
 
12
- ## [17.0.0-rc12] - 2026-03-03
12
+ ## [17.0.0-rc14] - 2026-03-05
13
13
 
14
14
  ### Added
15
15
  - **Breaking change**: Added the Theme API. [#11950](https://github.com/handsontable/handsontable/pull/11950)
@@ -28,6 +28,14 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
28
28
  - Added a new `parsePastedValue` option to fix issues with pasting object-based values. [#12020](https://github.com/handsontable/handsontable/pull/12020)
29
29
  - Introduced a new publishing flow for versions 17.0.0 and above. [#12028](https://github.com/handsontable/handsontable/pull/12028)
30
30
 
31
+ ### Deprecated
32
+ - Deprecated **numbro.js** for numeric formatting. Copy it to your project or replace it with the `Intl.NumberFormat` API. [Migration guide](https://handsontable.com/docs/javascript-data-grid/migration-from-16.2-to-17.0#_3-migrate-from-numbro-format-to-intl-numberformat)
33
+ - Deprecated **Pikaday** for date picking. Switch to native date input. [Migration guide](https://handsontable.com/docs/javascript-data-grid/recipes/cell-types/pikaday)
34
+ - Deprecated **moment.js** for date parsing and display. Replace it with the `Intl.DateTimeFormat` API. [Migration guide](https://handsontable.com/docs/javascript-data-grid/migration-from-16.2-to-17.0#_4-migrate-from-moment-js-format-to-intl-datetimeformat)
35
+ - Deprecated **DOMPurify** as a built-in XSS sanitizer. Use the new `sanitizer` option or convert content to plain text. [Migration guide](https://handsontable.com/docs/javascript-data-grid/migration-from-16.2-to-17.0#_5-migrate-from-built-in-dompurify-to-the-sanitizer-option)
36
+ - Deprecated **core-js** polyfills for ECMAScript features. [Migration guide](https://handsontable.com/docs/javascript-data-grid/migration-from-16.2-to-17.0#_6-core-js-dependency-removed)
37
+ - Deprecated bundling **HyperFormula** as a Handsontable dependency. Starting from version 18.0, install and import it separately, then pass it to the Formulas plugin with `licenseKey: 'internal-use'`. [Formula calculation](https://handsontable.com/docs/javascript-data-grid/formula-calculation)
38
+
31
39
  ### Removed
32
40
  - **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
41
  - **Breaking change**: Removed `core-js` from dependencies. [#12017](https://github.com/handsontable/handsontable/pull/12017)
@@ -46,14 +54,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
46
54
  - Changed the element type for focus catchers. [#12032](https://github.com/handsontable/handsontable/pull/12032)
47
55
  - Fixed incorrect scrollbar width calculation for scaled environments. [#12035](https://github.com/handsontable/handsontable/pull/12035)
48
56
  - Fixed and issue with column headers styles [#12058](https://github.com/handsontable/handsontable/pull/12058)
49
-
50
- ### Deprecated
51
- - Deprecated **numbro.js** for numeric formatting. Copy it to your project or replace it with the `Intl.NumberFormat` API. [Migration guide](https://handsontable.com/docs/javascript-data-grid/migration-from-16.2-to-17.0#_3-migrate-from-numbro-format-to-intl-numberformat)
52
- - Deprecated **Pikaday** for date picking. Switch to native date input. [Migration guide](https://handsontable.com/docs/javascript-data-grid/recipes/cell-types/pikaday)
53
- - Deprecated **moment.js** for date parsing and display. Replace it with the `Intl.DateTimeFormat` API. [Migration guide](https://handsontable.com/docs/javascript-data-grid/migration-from-16.2-to-17.0#_4-migrate-from-moment-js-format-to-intl-datetimeformat)
54
- - Deprecated **DOMPurify** as a built-in XSS sanitizer. Use the new `sanitizer` option or convert content to plain text. [Migration guide](https://handsontable.com/docs/javascript-data-grid/migration-from-16.2-to-17.0#_5-migrate-from-built-in-dompurify-to-the-sanitizer-option)
55
- - Deprecated **core-js** polyfills for ECMAScript features. [Migration guide](https://handsontable.com/docs/javascript-data-grid/migration-from-16.2-to-17.0#_6-core-js-dependency-removed)
56
- - Deprecated bundling **HyperFormula** as a Handsontable dependency. Starting from version 18.0, install and import it separately, then pass it to the Formulas plugin with `licenseKey: 'internal-use'`. [Formula calculation](https://handsontable.com/docs/javascript-data-grid/formula-calculation)
57
+ - Angular: Fixed a problem with the Angular wrapper that broke builds done with a disabled `skipLibCheck`. [#12091](https://github.com/handsontable/handsontable/pull/12091)
57
58
 
58
59
  ## [16.2.0] - 2025-11-25
59
60
 
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 = "04/03/2026 12:06:54";
53
- Handsontable.version = "17.0.0-rc13";
52
+ Handsontable.buildDate = "05/03/2026 11:36:56";
53
+ Handsontable.version = "17.0.0-rc15";
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 = "04/03/2026 12:07:01";
43
- Handsontable.version = "17.0.0-rc13";
42
+ Handsontable.buildDate = "05/03/2026 11:37:04";
43
+ Handsontable.version = "17.0.0-rc15";
44
44
  Handsontable.languages = {
45
45
  dictionaryKeys,
46
46
  getLanguageDictionary,
package/core.js CHANGED
@@ -1211,7 +1211,7 @@ function Core(rootContainer, userSettings) {
1211
1211
  focusGridManager.init();
1212
1212
  if ((0, _rootInstance.isRootInstance)(this)) {
1213
1213
  (0, _a11yAnnouncer.install)(instance.rootPortalElement);
1214
- (0, _mixed._injectProductInfo)(mergedUserSettings.licenseKey, this.rootWrapperElement, "04/03/2026");
1214
+ (0, _mixed._injectProductInfo)(mergedUserSettings.licenseKey, this.rootWrapperElement, "05/03/2026");
1215
1215
  }
1216
1216
  instance.runHooks('init');
1217
1217
  this.render();
package/core.mjs CHANGED
@@ -1206,7 +1206,7 @@ export default function Core(rootContainer, userSettings) {
1206
1206
  focusGridManager.init();
1207
1207
  if (isRootInstance(this)) {
1208
1208
  installAccessibilityAnnouncer(instance.rootPortalElement);
1209
- _injectProductInfo(mergedUserSettings.licenseKey, this.rootWrapperElement, "04/03/2026");
1209
+ _injectProductInfo(mergedUserSettings.licenseKey, this.rootWrapperElement, "05/03/2026");
1210
1210
  }
1211
1211
  instance.runHooks('init');
1212
1212
  this.render();