handsontable 0.0.0-next-f52ab71-20250121 → 0.0.0-next-8d1d868-20250121

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 (43) hide show
  1. package/3rdparty/walkontable/src/core/_base.js +19 -0
  2. package/3rdparty/walkontable/src/core/_base.mjs +19 -0
  3. package/3rdparty/walkontable/src/overlay/_base.js +44 -8
  4. package/3rdparty/walkontable/src/overlay/_base.mjs +44 -8
  5. package/3rdparty/walkontable/src/overlay/bottom.js +0 -1
  6. package/3rdparty/walkontable/src/overlay/bottom.mjs +0 -1
  7. package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.js +0 -1
  8. package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.mjs +0 -1
  9. package/3rdparty/walkontable/src/overlay/inlineStart.js +0 -1
  10. package/3rdparty/walkontable/src/overlay/inlineStart.mjs +0 -1
  11. package/3rdparty/walkontable/src/overlay/top.js +0 -1
  12. package/3rdparty/walkontable/src/overlay/top.mjs +0 -1
  13. package/3rdparty/walkontable/src/overlay/topInlineStartCorner.js +0 -1
  14. package/3rdparty/walkontable/src/overlay/topInlineStartCorner.mjs +0 -1
  15. package/3rdparty/walkontable/src/overlays.js +355 -45
  16. package/3rdparty/walkontable/src/overlays.mjs +355 -45
  17. package/3rdparty/walkontable/src/table.js +94 -99
  18. package/3rdparty/walkontable/src/table.mjs +94 -99
  19. package/base.js +2 -2
  20. package/base.mjs +2 -2
  21. package/dist/handsontable.css +20 -4
  22. package/dist/handsontable.full.css +20 -4
  23. package/dist/handsontable.full.js +522 -166
  24. package/dist/handsontable.full.min.css +3 -3
  25. package/dist/handsontable.full.min.js +108 -108
  26. package/dist/handsontable.js +522 -166
  27. package/dist/handsontable.min.css +3 -3
  28. package/dist/handsontable.min.js +15 -15
  29. package/editors/baseEditor/baseEditor.js +2 -1
  30. package/editors/baseEditor/baseEditor.mjs +2 -1
  31. package/helpers/mixed.js +1 -1
  32. package/helpers/mixed.mjs +1 -1
  33. package/package.json +1 -1
  34. package/plugins/dragToScroll/dragToScroll.js +1 -1
  35. package/plugins/dragToScroll/dragToScroll.mjs +1 -1
  36. package/styles/handsontable.css +7 -2
  37. package/styles/handsontable.min.css +3 -3
  38. package/styles/ht-theme-horizon.css +2 -2
  39. package/styles/ht-theme-horizon.min.css +2 -2
  40. package/styles/ht-theme-main.css +2 -2
  41. package/styles/ht-theme-main.min.css +2 -2
  42. package/tableView.js +2 -2
  43. package/tableView.mjs +2 -2
@@ -25,11 +25,9 @@
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: 0.0.0-next-f52ab71-20250121
29
- * Release date: 16/12/2024 (built at 21/01/2025 09:23:12)
28
+ * Version: 0.0.0-next-8d1d868-20250121
29
+ * Release date: 16/12/2024 (built at 21/01/2025 11:20:13)
30
30
  */
31
- @charset "UTF-8";
32
-
33
31
  /**
34
32
  * Fix for bootstrap styles
35
33
  */
@@ -358,12 +356,20 @@ innerBorderBottom - Property controlled by bottom overlay
358
356
  overflow: auto;
359
357
  }
360
358
 
359
+ .handsontable .ht_master table.htCore > thead,
360
+ .handsontable .ht_master table.htCore > tbody > tr > th,
361
+ .handsontable .ht_clone_inline_start table.htCore > thead {
362
+ visibility: hidden;
363
+ }
364
+
361
365
  .ht_clone_top .wtHolder,
362
366
  .ht_clone_inline_start .wtHolder,
363
367
  .ht_clone_bottom .wtHolder {
364
368
  overflow: hidden;
365
369
  }
366
370
 
371
+ @charset "UTF-8";
372
+
367
373
  .handsontable {
368
374
  position: relative;
369
375
  touch-action: manipulation;
@@ -1159,6 +1165,8 @@ textarea.HandsontableCopyPaste {
1159
1165
  outline: 0 none !important;
1160
1166
  }
1161
1167
 
1168
+ @charset "UTF-8";
1169
+
1162
1170
  /*!
1163
1171
  * Handsontable DropdownMenu
1164
1172
  */
@@ -1307,6 +1315,8 @@ textarea.HandsontableCopyPaste {
1307
1315
  overflow: hidden;
1308
1316
  }
1309
1317
 
1318
+ @charset "UTF-8";
1319
+
1310
1320
  /*!
1311
1321
  * Handsontable Filters
1312
1322
  */
@@ -1652,6 +1662,8 @@ textarea.HandsontableCopyPaste {
1652
1662
  padding-bottom: 5px;
1653
1663
  }
1654
1664
 
1665
+ @charset "UTF-8";
1666
+
1655
1667
  /*
1656
1668
  * Handsontable HiddenColumns
1657
1669
  */
@@ -1710,6 +1722,8 @@ textarea.HandsontableCopyPaste {
1710
1722
  content: "◀"; /* left arrow */
1711
1723
  }
1712
1724
 
1725
+ @charset "UTF-8";
1726
+
1713
1727
  /*!
1714
1728
  * Handsontable HiddenRows
1715
1729
  */
@@ -1976,6 +1990,8 @@ textarea.HandsontableCopyPaste {
1976
1990
  display: none;
1977
1991
  }
1978
1992
 
1993
+ @charset "UTF-8";
1994
+
1979
1995
  .handsontable th.ht_nestingLevels {
1980
1996
  text-align: left;
1981
1997
  padding-left: 7px;