handsontable 0.0.0-next-0306a1a-20240826 → 0.0.0-next-1dfe61f-20240910

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (106) hide show
  1. package/3rdparty/walkontable/src/calculator/calculationType/fullyVisibleColumns.js +126 -0
  2. package/3rdparty/walkontable/src/calculator/calculationType/fullyVisibleColumns.mjs +122 -0
  3. package/3rdparty/walkontable/src/calculator/calculationType/fullyVisibleRows.js +119 -0
  4. package/3rdparty/walkontable/src/calculator/calculationType/fullyVisibleRows.mjs +115 -0
  5. package/3rdparty/walkontable/src/calculator/calculationType/partiallyVisibleColumns.js +125 -0
  6. package/3rdparty/walkontable/src/calculator/calculationType/partiallyVisibleColumns.mjs +121 -0
  7. package/3rdparty/walkontable/src/calculator/calculationType/partiallyVisibleRows.js +118 -0
  8. package/3rdparty/walkontable/src/calculator/calculationType/partiallyVisibleRows.mjs +114 -0
  9. package/3rdparty/walkontable/src/calculator/{renderAllColumns.js → calculationType/renderedAllColumns.js} +32 -9
  10. package/3rdparty/walkontable/src/calculator/{renderAllColumns.mjs → calculationType/renderedAllColumns.mjs} +31 -8
  11. package/3rdparty/walkontable/src/calculator/{renderAllRows.js → calculationType/renderedAllRows.js} +32 -9
  12. package/3rdparty/walkontable/src/calculator/{renderAllRows.mjs → calculationType/renderedAllRows.mjs} +31 -8
  13. package/3rdparty/walkontable/src/calculator/calculationType/renderedColumns.js +37 -0
  14. package/3rdparty/walkontable/src/calculator/calculationType/renderedColumns.mjs +33 -0
  15. package/3rdparty/walkontable/src/calculator/calculationType/renderedRows.js +37 -0
  16. package/3rdparty/walkontable/src/calculator/calculationType/renderedRows.mjs +33 -0
  17. package/3rdparty/walkontable/src/calculator/index.js +18 -17
  18. package/3rdparty/walkontable/src/calculator/index.mjs +11 -6
  19. package/3rdparty/walkontable/src/calculator/viewportBase.js +92 -0
  20. package/3rdparty/walkontable/src/calculator/viewportBase.mjs +88 -0
  21. package/3rdparty/walkontable/src/calculator/viewportColumns.js +51 -145
  22. package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +51 -145
  23. package/3rdparty/walkontable/src/calculator/viewportRows.js +59 -141
  24. package/3rdparty/walkontable/src/calculator/viewportRows.mjs +59 -141
  25. package/3rdparty/walkontable/src/index.js +2 -0
  26. package/3rdparty/walkontable/src/index.mjs +2 -2
  27. package/3rdparty/walkontable/src/renderer/rows.js +10 -0
  28. package/3rdparty/walkontable/src/renderer/rows.mjs +11 -1
  29. package/3rdparty/walkontable/src/table.js +5 -11
  30. package/3rdparty/walkontable/src/table.mjs +5 -11
  31. package/3rdparty/walkontable/src/utils/column.js +2 -1
  32. package/3rdparty/walkontable/src/utils/column.mjs +2 -1
  33. package/3rdparty/walkontable/src/utils/columnStretching.js +10 -19
  34. package/3rdparty/walkontable/src/utils/columnStretching.mjs +10 -19
  35. package/3rdparty/walkontable/src/viewport.js +35 -46
  36. package/3rdparty/walkontable/src/viewport.mjs +36 -47
  37. package/CHANGELOG.md +27 -0
  38. package/base.js +2 -2
  39. package/base.mjs +2 -2
  40. package/core.d.ts +1 -2
  41. package/core.js +1 -1
  42. package/core.mjs +2 -2
  43. package/dataMap/metaManager/metaSchema.js +5 -6
  44. package/dataMap/metaManager/metaSchema.mjs +5 -6
  45. package/dist/handsontable.css +32 -20
  46. package/dist/handsontable.full.css +32 -20
  47. package/dist/handsontable.full.js +2751 -2091
  48. package/dist/handsontable.full.min.css +5 -5
  49. package/dist/handsontable.full.min.js +148 -148
  50. package/dist/handsontable.js +2752 -2092
  51. package/dist/handsontable.min.css +4 -4
  52. package/dist/handsontable.min.js +32 -32
  53. package/editors/autocompleteEditor/autocompleteEditor.d.ts +1 -1
  54. package/helpers/a11y.js +2 -0
  55. package/helpers/a11y.mjs +1 -0
  56. package/helpers/mixed.js +2 -2
  57. package/helpers/mixed.mjs +2 -2
  58. package/package.json +1 -1
  59. package/pluginHooks.d.ts +1 -1
  60. package/pluginHooks.js +1 -1
  61. package/pluginHooks.mjs +1 -1
  62. package/plugins/autoColumnSize/autoColumnSize.js +1 -1
  63. package/plugins/autoColumnSize/autoColumnSize.mjs +2 -2
  64. package/plugins/autoRowSize/autoRowSize.js +1 -2
  65. package/plugins/autoRowSize/autoRowSize.mjs +1 -2
  66. package/plugins/columnSorting/columnSorting.js +10 -1
  67. package/plugins/columnSorting/columnSorting.mjs +10 -1
  68. package/plugins/contextMenu/menu/menuItemRenderer.js +3 -4
  69. package/plugins/contextMenu/menu/menuItemRenderer.mjs +5 -6
  70. package/plugins/contextMenu/menu/positioner.js +4 -12
  71. package/plugins/contextMenu/menu/positioner.mjs +4 -12
  72. package/plugins/contextMenu/menu/utils.js +11 -0
  73. package/plugins/contextMenu/menu/utils.mjs +10 -0
  74. package/plugins/contextMenu/predefinedItems/alignment.js +67 -49
  75. package/plugins/contextMenu/predefinedItems/alignment.mjs +68 -50
  76. package/plugins/contextMenu/predefinedItems/readOnly.js +11 -0
  77. package/plugins/contextMenu/predefinedItems/readOnly.mjs +11 -0
  78. package/plugins/contextMenu/utils.js +26 -0
  79. package/plugins/contextMenu/utils.mjs +24 -0
  80. package/plugins/copyPaste/copyPaste.js +14 -14
  81. package/plugins/copyPaste/copyPaste.mjs +14 -14
  82. package/plugins/dropdownMenu/dropdownMenu.js +10 -4
  83. package/plugins/dropdownMenu/dropdownMenu.mjs +10 -4
  84. package/plugins/filters/component/condition.js +6 -1
  85. package/plugins/filters/component/condition.mjs +6 -1
  86. package/plugins/filters/component/value.js +6 -1
  87. package/plugins/filters/component/value.mjs +6 -1
  88. package/plugins/filters/conditionCollection.d.ts +4 -3
  89. package/plugins/filters/conditionCollection.js +26 -0
  90. package/plugins/filters/conditionCollection.mjs +26 -0
  91. package/plugins/filters/filters.js +2 -1
  92. package/plugins/filters/filters.mjs +2 -1
  93. package/plugins/filters/ui/multipleSelect.js +7 -9
  94. package/plugins/filters/ui/multipleSelect.mjs +7 -9
  95. package/plugins/manualRowResize/manualRowResize.js +1 -1
  96. package/plugins/manualRowResize/manualRowResize.mjs +2 -2
  97. package/plugins/mergeCells/cellsCollection.js +11 -9
  98. package/plugins/mergeCells/cellsCollection.mjs +12 -10
  99. package/plugins/undoRedo/undoRedo.js +9 -5
  100. package/plugins/undoRedo/undoRedo.mjs +9 -5
  101. package/shortcuts/utils.js +3 -1
  102. package/shortcuts/utils.mjs +3 -1
  103. package/utils/ghostTable.js +11 -9
  104. package/utils/ghostTable.mjs +12 -10
  105. package/3rdparty/walkontable/src/calculator/constants.js +0 -26
  106. package/3rdparty/walkontable/src/calculator/constants.mjs +0 -23
@@ -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: 0.0.0-next-0306a1a-20240826
29
- * Release date: 11/06/2024 (built at 26/08/2024 13:21:16)
28
+ * Version: 0.0.0-next-1dfe61f-20240910
29
+ * Release date: 30/07/2024 (built at 10/09/2024 08:55:24)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
@@ -523,24 +523,9 @@ innerBorderBottom - Property controlled by bottom overlay
523
523
  left: 0;
524
524
  right: 0;
525
525
  bottom: 0;
526
- /* Fix for IE9 to spread the ":before" pseudo element to 100% height of the parent element */
527
- bottom: -100% \9 ;
528
526
  background: #005eff;
529
527
  }
530
528
 
531
- /* Fix for IE10 and IE11 to spread the ":before" pseudo element to 100% height of the parent element */
532
- @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
533
- .handsontable td.area:before,
534
- .handsontable td.area-1:before,
535
- .handsontable td.area-2:before,
536
- .handsontable td.area-3:before,
537
- .handsontable td.area-4:before,
538
- .handsontable td.area-5:before,
539
- .handsontable td.area-6:before,
540
- .handsontable td.area-7:before {
541
- bottom: -100%;
542
- }
543
- }
544
529
  .handsontable td.area:before {
545
530
  opacity: 0.1;
546
531
  }
@@ -621,6 +606,7 @@ innerBorderBottom - Property controlled by bottom overlay
621
606
  -webkit-appearance: menulist-button !important;
622
607
  position: absolute;
623
608
  width: auto;
609
+ border: 2px solid #4b89ff;
624
610
  }
625
611
 
626
612
  .htSelectEditor:focus {
@@ -1130,12 +1116,26 @@ CheckboxRenderer
1130
1116
 
1131
1117
  .handsontable[dir=ltr] div.htRight span[class*=ascending],
1132
1118
  .handsontable[dir=ltr] div.htRight span[class*=descending] {
1133
- margin-right: 20px;
1119
+ margin-right: 10px;
1120
+ margin-left: -10px;
1134
1121
  }
1135
1122
 
1136
1123
  .handsontable[dir=rtl] div.htLeft span[class*=ascending],
1137
1124
  .handsontable[dir=rtl] div.htLeft span[class*=descending] {
1138
- margin-left: 20px;
1125
+ margin-left: 10px;
1126
+ margin-right: -10px;
1127
+ }
1128
+
1129
+ .handsontable[dir=ltr] div.htRight span[class*=ascending]:only-child,
1130
+ .handsontable[dir=ltr] div.htRight span[class*=descending]:only-child {
1131
+ margin-right: 15px;
1132
+ margin-left: -15px;
1133
+ }
1134
+
1135
+ .handsontable[dir=rtl] div.htLeft span[class*=ascending]:only-child,
1136
+ .handsontable[dir=rtl] div.htLeft span[class*=descending]:only-child {
1137
+ margin-left: 15px;
1138
+ margin-right: -15px;
1139
1139
  }
1140
1140
 
1141
1141
  .handsontable .columnSorting.sortAction:hover {
@@ -2108,11 +2108,23 @@ textarea.HandsontableCopyPaste {
2108
2108
  opacity: 0.58;
2109
2109
  }
2110
2110
  .handsontable[dir=ltr] div.htRight span[class*=sort-] {
2111
- margin-right: 20px;
2111
+ margin-right: 15px;
2112
+ margin-left: -15px;
2112
2113
  }
2113
2114
 
2114
2115
  .handsontable[dir=rtl] div.htLeft span[class*=sort-] {
2116
+ margin-left: 15px;
2117
+ margin-right: -15px;
2118
+ }
2119
+
2120
+ .handsontable[dir=ltr] div.htRight span[class*=sort-]:only-child {
2121
+ margin-right: 20px;
2122
+ margin-left: -20px;
2123
+ }
2124
+
2125
+ .handsontable[dir=rtl] div.htLeft span[class*=sort-]:only-child {
2115
2126
  margin-left: 20px;
2127
+ margin-right: -20px;
2116
2128
  }
2117
2129
 
2118
2130
  /* Column's number position */