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.
- package/3rdparty/walkontable/src/calculator/calculationType/fullyVisibleColumns.js +126 -0
- package/3rdparty/walkontable/src/calculator/calculationType/fullyVisibleColumns.mjs +122 -0
- package/3rdparty/walkontable/src/calculator/calculationType/fullyVisibleRows.js +119 -0
- package/3rdparty/walkontable/src/calculator/calculationType/fullyVisibleRows.mjs +115 -0
- package/3rdparty/walkontable/src/calculator/calculationType/partiallyVisibleColumns.js +125 -0
- package/3rdparty/walkontable/src/calculator/calculationType/partiallyVisibleColumns.mjs +121 -0
- package/3rdparty/walkontable/src/calculator/calculationType/partiallyVisibleRows.js +118 -0
- package/3rdparty/walkontable/src/calculator/calculationType/partiallyVisibleRows.mjs +114 -0
- package/3rdparty/walkontable/src/calculator/{renderAllColumns.js → calculationType/renderedAllColumns.js} +32 -9
- package/3rdparty/walkontable/src/calculator/{renderAllColumns.mjs → calculationType/renderedAllColumns.mjs} +31 -8
- package/3rdparty/walkontable/src/calculator/{renderAllRows.js → calculationType/renderedAllRows.js} +32 -9
- package/3rdparty/walkontable/src/calculator/{renderAllRows.mjs → calculationType/renderedAllRows.mjs} +31 -8
- package/3rdparty/walkontable/src/calculator/calculationType/renderedColumns.js +37 -0
- package/3rdparty/walkontable/src/calculator/calculationType/renderedColumns.mjs +33 -0
- package/3rdparty/walkontable/src/calculator/calculationType/renderedRows.js +37 -0
- package/3rdparty/walkontable/src/calculator/calculationType/renderedRows.mjs +33 -0
- package/3rdparty/walkontable/src/calculator/index.js +18 -17
- package/3rdparty/walkontable/src/calculator/index.mjs +11 -6
- package/3rdparty/walkontable/src/calculator/viewportBase.js +92 -0
- package/3rdparty/walkontable/src/calculator/viewportBase.mjs +88 -0
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +51 -145
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +51 -145
- package/3rdparty/walkontable/src/calculator/viewportRows.js +59 -141
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +59 -141
- package/3rdparty/walkontable/src/index.js +2 -0
- package/3rdparty/walkontable/src/index.mjs +2 -2
- package/3rdparty/walkontable/src/renderer/rows.js +10 -0
- package/3rdparty/walkontable/src/renderer/rows.mjs +11 -1
- package/3rdparty/walkontable/src/table.js +5 -11
- package/3rdparty/walkontable/src/table.mjs +5 -11
- package/3rdparty/walkontable/src/utils/column.js +2 -1
- package/3rdparty/walkontable/src/utils/column.mjs +2 -1
- package/3rdparty/walkontable/src/utils/columnStretching.js +10 -19
- package/3rdparty/walkontable/src/utils/columnStretching.mjs +10 -19
- package/3rdparty/walkontable/src/viewport.js +35 -46
- package/3rdparty/walkontable/src/viewport.mjs +36 -47
- package/CHANGELOG.md +27 -0
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.d.ts +1 -2
- package/core.js +1 -1
- package/core.mjs +2 -2
- package/dataMap/metaManager/metaSchema.js +5 -6
- package/dataMap/metaManager/metaSchema.mjs +5 -6
- package/dist/handsontable.css +32 -20
- package/dist/handsontable.full.css +32 -20
- package/dist/handsontable.full.js +2751 -2091
- package/dist/handsontable.full.min.css +5 -5
- package/dist/handsontable.full.min.js +148 -148
- package/dist/handsontable.js +2752 -2092
- package/dist/handsontable.min.css +4 -4
- package/dist/handsontable.min.js +32 -32
- package/editors/autocompleteEditor/autocompleteEditor.d.ts +1 -1
- package/helpers/a11y.js +2 -0
- package/helpers/a11y.mjs +1 -0
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/package.json +1 -1
- package/pluginHooks.d.ts +1 -1
- package/pluginHooks.js +1 -1
- package/pluginHooks.mjs +1 -1
- package/plugins/autoColumnSize/autoColumnSize.js +1 -1
- package/plugins/autoColumnSize/autoColumnSize.mjs +2 -2
- package/plugins/autoRowSize/autoRowSize.js +1 -2
- package/plugins/autoRowSize/autoRowSize.mjs +1 -2
- package/plugins/columnSorting/columnSorting.js +10 -1
- package/plugins/columnSorting/columnSorting.mjs +10 -1
- package/plugins/contextMenu/menu/menuItemRenderer.js +3 -4
- package/plugins/contextMenu/menu/menuItemRenderer.mjs +5 -6
- package/plugins/contextMenu/menu/positioner.js +4 -12
- package/plugins/contextMenu/menu/positioner.mjs +4 -12
- package/plugins/contextMenu/menu/utils.js +11 -0
- package/plugins/contextMenu/menu/utils.mjs +10 -0
- package/plugins/contextMenu/predefinedItems/alignment.js +67 -49
- package/plugins/contextMenu/predefinedItems/alignment.mjs +68 -50
- package/plugins/contextMenu/predefinedItems/readOnly.js +11 -0
- package/plugins/contextMenu/predefinedItems/readOnly.mjs +11 -0
- package/plugins/contextMenu/utils.js +26 -0
- package/plugins/contextMenu/utils.mjs +24 -0
- package/plugins/copyPaste/copyPaste.js +14 -14
- package/plugins/copyPaste/copyPaste.mjs +14 -14
- package/plugins/dropdownMenu/dropdownMenu.js +10 -4
- package/plugins/dropdownMenu/dropdownMenu.mjs +10 -4
- package/plugins/filters/component/condition.js +6 -1
- package/plugins/filters/component/condition.mjs +6 -1
- package/plugins/filters/component/value.js +6 -1
- package/plugins/filters/component/value.mjs +6 -1
- package/plugins/filters/conditionCollection.d.ts +4 -3
- package/plugins/filters/conditionCollection.js +26 -0
- package/plugins/filters/conditionCollection.mjs +26 -0
- package/plugins/filters/filters.js +2 -1
- package/plugins/filters/filters.mjs +2 -1
- package/plugins/filters/ui/multipleSelect.js +7 -9
- package/plugins/filters/ui/multipleSelect.mjs +7 -9
- package/plugins/manualRowResize/manualRowResize.js +1 -1
- package/plugins/manualRowResize/manualRowResize.mjs +2 -2
- package/plugins/mergeCells/cellsCollection.js +11 -9
- package/plugins/mergeCells/cellsCollection.mjs +12 -10
- package/plugins/undoRedo/undoRedo.js +9 -5
- package/plugins/undoRedo/undoRedo.mjs +9 -5
- package/shortcuts/utils.js +3 -1
- package/shortcuts/utils.mjs +3 -1
- package/utils/ghostTable.js +11 -9
- package/utils/ghostTable.mjs +12 -10
- package/3rdparty/walkontable/src/calculator/constants.js +0 -26
- 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-
|
29
|
-
* Release date:
|
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:
|
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:
|
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:
|
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 */
|