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.
- package/3rdparty/walkontable/src/core/_base.js +19 -0
- package/3rdparty/walkontable/src/core/_base.mjs +19 -0
- package/3rdparty/walkontable/src/overlay/_base.js +44 -8
- package/3rdparty/walkontable/src/overlay/_base.mjs +44 -8
- package/3rdparty/walkontable/src/overlay/bottom.js +0 -1
- package/3rdparty/walkontable/src/overlay/bottom.mjs +0 -1
- package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.js +0 -1
- package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.mjs +0 -1
- package/3rdparty/walkontable/src/overlay/inlineStart.js +0 -1
- package/3rdparty/walkontable/src/overlay/inlineStart.mjs +0 -1
- package/3rdparty/walkontable/src/overlay/top.js +0 -1
- package/3rdparty/walkontable/src/overlay/top.mjs +0 -1
- package/3rdparty/walkontable/src/overlay/topInlineStartCorner.js +0 -1
- package/3rdparty/walkontable/src/overlay/topInlineStartCorner.mjs +0 -1
- package/3rdparty/walkontable/src/overlays.js +355 -45
- package/3rdparty/walkontable/src/overlays.mjs +355 -45
- package/3rdparty/walkontable/src/table.js +94 -99
- package/3rdparty/walkontable/src/table.mjs +94 -99
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/dist/handsontable.css +20 -4
- package/dist/handsontable.full.css +20 -4
- package/dist/handsontable.full.js +522 -166
- package/dist/handsontable.full.min.css +3 -3
- package/dist/handsontable.full.min.js +108 -108
- package/dist/handsontable.js +522 -166
- package/dist/handsontable.min.css +3 -3
- package/dist/handsontable.min.js +15 -15
- package/editors/baseEditor/baseEditor.js +2 -1
- package/editors/baseEditor/baseEditor.mjs +2 -1
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/dragToScroll/dragToScroll.js +1 -1
- package/plugins/dragToScroll/dragToScroll.mjs +1 -1
- package/styles/handsontable.css +7 -2
- package/styles/handsontable.min.css +3 -3
- package/styles/ht-theme-horizon.css +2 -2
- package/styles/ht-theme-horizon.min.css +2 -2
- package/styles/ht-theme-main.css +2 -2
- package/styles/ht-theme-main.min.css +2 -2
- package/tableView.js +2 -2
- 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-
|
|
29
|
-
* Release date: 16/12/2024 (built at 21/01/2025
|
|
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;
|