handsontable 14.0.0-next-c22ab6f-20231030 → 14.0.0-next-f88c253-20231106

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 (36) hide show
  1. package/base.js +2 -2
  2. package/base.mjs +2 -2
  3. package/dist/handsontable.css +8 -2
  4. package/dist/handsontable.full.css +8 -2
  5. package/dist/handsontable.full.js +2084 -3359
  6. package/dist/handsontable.full.min.css +3 -3
  7. package/dist/handsontable.full.min.js +59 -66
  8. package/dist/handsontable.js +2086 -3361
  9. package/dist/handsontable.min.css +3 -3
  10. package/dist/handsontable.min.js +16 -23
  11. package/helpers/mixed.js +2 -2
  12. package/helpers/mixed.mjs +2 -2
  13. package/package.json +1 -1
  14. package/pluginHooks.d.ts +6 -28
  15. package/pluginHooks.js +63 -117
  16. package/pluginHooks.mjs +63 -117
  17. package/plugins/copyPaste/clipboardData.js +18 -0
  18. package/plugins/copyPaste/clipboardData.mjs +14 -0
  19. package/plugins/copyPaste/copyPaste.js +92 -38
  20. package/plugins/copyPaste/copyPaste.mjs +94 -40
  21. package/plugins/copyPaste/pasteEvent.js +14 -0
  22. package/plugins/copyPaste/pasteEvent.mjs +9 -0
  23. package/plugins/mergeCells/mergeCells.js +14 -0
  24. package/plugins/mergeCells/mergeCells.mjs +14 -0
  25. package/plugins/nestedHeaders/nestedHeaders.js +22 -21
  26. package/plugins/nestedHeaders/nestedHeaders.mjs +22 -21
  27. package/utils/parseTable.js +83 -527
  28. package/utils/parseTable.mjs +82 -523
  29. package/plugins/copyPaste/clipboardData/clipboardData.js +0 -516
  30. package/plugins/copyPaste/clipboardData/clipboardData.mjs +0 -512
  31. package/plugins/copyPaste/clipboardData/copyClipboardData.js +0 -69
  32. package/plugins/copyPaste/clipboardData/copyClipboardData.mjs +0 -65
  33. package/plugins/copyPaste/clipboardData/index.js +0 -9
  34. package/plugins/copyPaste/clipboardData/index.mjs +0 -4
  35. package/plugins/copyPaste/clipboardData/pasteClipboardData.js +0 -81
  36. package/plugins/copyPaste/clipboardData/pasteClipboardData.mjs +0 -77
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 = "30/10/2023 10:17:27";
47
- Handsontable.version = "14.0.0-next-c22ab6f-20231030";
46
+ Handsontable.buildDate = "06/11/2023 14:20:06";
47
+ Handsontable.version = "14.0.0-next-f88c253-20231106";
48
48
  Handsontable.languages = {
49
49
  dictionaryKeys: _registry.dictionaryKeys,
50
50
  getLanguageDictionary: _registry.getLanguageDictionary,
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 = "30/10/2023 10:17:36";
39
- Handsontable.version = "14.0.0-next-c22ab6f-20231030";
38
+ Handsontable.buildDate = "06/11/2023 14:20:12";
39
+ Handsontable.version = "14.0.0-next-f88c253-20231106";
40
40
  Handsontable.languages = {
41
41
  dictionaryKeys,
42
42
  getLanguageDictionary,
@@ -25,8 +25,8 @@
25
25
  * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
26
26
  * USE OR INABILITY TO USE THIS SOFTWARE.
27
27
  *
28
- * Version: 14.0.0-next-c22ab6f-20231030
29
- * Release date: 08/11/2023 (built at 30/10/2023 10:17:42)
28
+ * Version: 14.0.0-next-f88c253-20231106
29
+ * Release date: 15/11/2023 (built at 06/11/2023 14:20:17)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
@@ -1513,6 +1513,12 @@ textarea.HandsontableCopyPaste {
1513
1513
  color: #fff;
1514
1514
  }
1515
1515
 
1516
+ .handsontable .htUIInput.htUIButtonOK input:focus-visible {
1517
+ background-color: #92dd8d;
1518
+ border-color: #7cb878;
1519
+ color: #000;
1520
+ }
1521
+
1516
1522
  .handsontable .htUIInput.htUIButtonOK input:hover {
1517
1523
  border-color: #1a6f46;
1518
1524
  }
@@ -25,8 +25,8 @@
25
25
  * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
26
26
  * USE OR INABILITY TO USE THIS SOFTWARE.
27
27
  *
28
- * Version: 14.0.0-next-c22ab6f-20231030
29
- * Release date: 08/11/2023 (built at 30/10/2023 10:17:42)
28
+ * Version: 14.0.0-next-f88c253-20231106
29
+ * Release date: 15/11/2023 (built at 06/11/2023 14:20:17)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
@@ -1746,6 +1746,12 @@ textarea.HandsontableCopyPaste {
1746
1746
  color: #fff;
1747
1747
  }
1748
1748
 
1749
+ .handsontable .htUIInput.htUIButtonOK input:focus-visible {
1750
+ background-color: #92dd8d;
1751
+ border-color: #7cb878;
1752
+ color: #000;
1753
+ }
1754
+
1749
1755
  .handsontable .htUIInput.htUIButtonOK input:hover {
1750
1756
  border-color: #1a6f46;
1751
1757
  }