handsontable 0.0.0-next-9379dd1-20231020 → 0.0.0-next-b0a4ea2-20231024

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 (57) hide show
  1. package/base.js +2 -2
  2. package/base.mjs +2 -2
  3. package/dist/handsontable.css +13 -12
  4. package/dist/handsontable.full.css +13 -12
  5. package/dist/handsontable.full.js +1864 -1143
  6. package/dist/handsontable.full.min.css +5 -5
  7. package/dist/handsontable.full.min.js +70 -70
  8. package/dist/handsontable.js +1864 -1143
  9. package/dist/handsontable.min.css +5 -5
  10. package/dist/handsontable.min.js +24 -24
  11. package/helpers/mixed.js +1 -1
  12. package/helpers/mixed.mjs +1 -1
  13. package/package.json +1 -1
  14. package/plugins/contextMenu/menu/defaultShortcutsList.js +88 -0
  15. package/plugins/contextMenu/menu/defaultShortcutsList.mjs +84 -0
  16. package/plugins/contextMenu/menu/menu.js +87 -151
  17. package/plugins/contextMenu/menu/menu.mjs +90 -154
  18. package/plugins/contextMenu/menu/menuItemRenderer.js +58 -0
  19. package/plugins/contextMenu/menu/menuItemRenderer.mjs +54 -0
  20. package/plugins/contextMenu/menu/navigator.js +19 -144
  21. package/plugins/contextMenu/menu/navigator.mjs +18 -143
  22. package/plugins/contextMenu/menu/shortcuts.js +114 -0
  23. package/plugins/contextMenu/menu/shortcuts.mjs +110 -0
  24. package/plugins/dropdownMenu/dropdownMenu.js +32 -4
  25. package/plugins/dropdownMenu/dropdownMenu.mjs +33 -5
  26. package/plugins/filters/component/_base.js +23 -8
  27. package/plugins/filters/component/_base.mjs +23 -8
  28. package/plugins/filters/component/actionBar.js +29 -27
  29. package/plugins/filters/component/actionBar.mjs +26 -23
  30. package/plugins/filters/component/condition.js +46 -59
  31. package/plugins/filters/component/condition.mjs +40 -52
  32. package/plugins/filters/component/operators.js +21 -22
  33. package/plugins/filters/component/operators.mjs +18 -18
  34. package/plugins/filters/component/value.js +35 -26
  35. package/plugins/filters/component/value.mjs +32 -22
  36. package/plugins/filters/filters.js +75 -48
  37. package/plugins/filters/filters.mjs +68 -41
  38. package/plugins/filters/menu/focusController.js +123 -0
  39. package/plugins/filters/menu/focusController.mjs +119 -0
  40. package/plugins/filters/menu/focusNavigator.js +30 -0
  41. package/plugins/filters/menu/focusNavigator.mjs +26 -0
  42. package/plugins/filters/ui/_base.js +35 -13
  43. package/plugins/filters/ui/_base.mjs +35 -13
  44. package/plugins/filters/ui/input.js +43 -32
  45. package/plugins/filters/ui/input.mjs +42 -30
  46. package/plugins/filters/ui/link.js +44 -12
  47. package/plugins/filters/ui/link.mjs +44 -11
  48. package/plugins/filters/ui/multipleSelect.js +234 -129
  49. package/plugins/filters/ui/multipleSelect.mjs +232 -127
  50. package/plugins/filters/ui/radioInput.js +42 -18
  51. package/plugins/filters/ui/radioInput.mjs +42 -17
  52. package/plugins/filters/ui/select.js +144 -75
  53. package/plugins/filters/ui/select.mjs +140 -70
  54. package/shortcuts/context.js +3 -2
  55. package/shortcuts/context.mjs +3 -2
  56. package/utils/paginator.js +151 -0
  57. package/utils/paginator.mjs +147 -0
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 = "20/10/2023 08:08:36";
47
- Handsontable.version = "0.0.0-next-9379dd1-20231020";
46
+ Handsontable.buildDate = "24/10/2023 11:12:28";
47
+ Handsontable.version = "0.0.0-next-b0a4ea2-20231024";
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 = "20/10/2023 08:08:44";
39
- Handsontable.version = "0.0.0-next-9379dd1-20231020";
38
+ Handsontable.buildDate = "24/10/2023 11:12:39";
39
+ Handsontable.version = "0.0.0-next-b0a4ea2-20231024";
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: 0.0.0-next-9379dd1-20231020
29
- * Release date: 31/08/2023 (built at 20/10/2023 08:08:51)
28
+ * Version: 0.0.0-next-b0a4ea2-20231024
29
+ * Release date: 31/08/2023 (built at 24/10/2023 11:12:48)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
@@ -1032,6 +1032,10 @@ CheckboxRenderer
1032
1032
  border-left-width: 2px;
1033
1033
  }
1034
1034
 
1035
+ .htContextMenu.handsontable:focus {
1036
+ outline: none;
1037
+ }
1038
+
1035
1039
  .htContextMenu .wtBorder {
1036
1040
  visibility: hidden;
1037
1041
  }
@@ -1063,8 +1067,7 @@ CheckboxRenderer
1063
1067
  color: #323232;
1064
1068
  }
1065
1069
 
1066
- .htContextMenu table tbody tr td.current,
1067
- .htContextMenu table tbody tr td.zeroclipboard-is-hover {
1070
+ .htContextMenu table tbody tr td.current {
1068
1071
  background: #f3f3f3;
1069
1072
  }
1070
1073
 
@@ -1182,6 +1185,10 @@ textarea.HandsontableCopyPaste {
1182
1185
  border-left-width: 2px;
1183
1186
  }
1184
1187
 
1188
+ .htDropdownMenu.handsontable:focus {
1189
+ outline: none;
1190
+ }
1191
+
1185
1192
  .htDropdownMenu .wtBorder {
1186
1193
  visibility: hidden;
1187
1194
  }
@@ -1213,8 +1220,7 @@ textarea.HandsontableCopyPaste {
1213
1220
  color: #323232;
1214
1221
  }
1215
1222
 
1216
- .htDropdownMenu table tbody tr td.current,
1217
- .htDropdownMenu table tbody tr td.zeroclipboard-is-hover {
1223
+ .htDropdownMenu table tbody tr td.current {
1218
1224
  background: #e9e9e9;
1219
1225
  }
1220
1226
 
@@ -1320,8 +1326,7 @@ textarea.HandsontableCopyPaste {
1320
1326
  color: #323232;
1321
1327
  }
1322
1328
 
1323
- .htFiltersConditionsMenu table tbody tr td.current,
1324
- .htFiltersConditionsMenu table tbody tr td.zeroclipboard-is-hover {
1329
+ .htFiltersConditionsMenu table tbody tr td.current {
1325
1330
  background: #e9e9e9;
1326
1331
  }
1327
1332
 
@@ -1469,10 +1474,6 @@ textarea.HandsontableCopyPaste {
1469
1474
  border: 1px solid #d2d1d1;
1470
1475
  }
1471
1476
 
1472
- .handsontable .htUIInput input:focus {
1473
- outline: 0;
1474
- }
1475
-
1476
1477
  .handsontable .htUIInputIcon {
1477
1478
  position: absolute;
1478
1479
  }
@@ -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-9379dd1-20231020
29
- * Release date: 31/08/2023 (built at 20/10/2023 08:08:51)
28
+ * Version: 0.0.0-next-b0a4ea2-20231024
29
+ * Release date: 31/08/2023 (built at 24/10/2023 11:12:48)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
@@ -1265,6 +1265,10 @@ CheckboxRenderer
1265
1265
  border-left-width: 2px;
1266
1266
  }
1267
1267
 
1268
+ .htContextMenu.handsontable:focus {
1269
+ outline: none;
1270
+ }
1271
+
1268
1272
  .htContextMenu .wtBorder {
1269
1273
  visibility: hidden;
1270
1274
  }
@@ -1296,8 +1300,7 @@ CheckboxRenderer
1296
1300
  color: #323232;
1297
1301
  }
1298
1302
 
1299
- .htContextMenu table tbody tr td.current,
1300
- .htContextMenu table tbody tr td.zeroclipboard-is-hover {
1303
+ .htContextMenu table tbody tr td.current {
1301
1304
  background: #f3f3f3;
1302
1305
  }
1303
1306
 
@@ -1415,6 +1418,10 @@ textarea.HandsontableCopyPaste {
1415
1418
  border-left-width: 2px;
1416
1419
  }
1417
1420
 
1421
+ .htDropdownMenu.handsontable:focus {
1422
+ outline: none;
1423
+ }
1424
+
1418
1425
  .htDropdownMenu .wtBorder {
1419
1426
  visibility: hidden;
1420
1427
  }
@@ -1446,8 +1453,7 @@ textarea.HandsontableCopyPaste {
1446
1453
  color: #323232;
1447
1454
  }
1448
1455
 
1449
- .htDropdownMenu table tbody tr td.current,
1450
- .htDropdownMenu table tbody tr td.zeroclipboard-is-hover {
1456
+ .htDropdownMenu table tbody tr td.current {
1451
1457
  background: #e9e9e9;
1452
1458
  }
1453
1459
 
@@ -1553,8 +1559,7 @@ textarea.HandsontableCopyPaste {
1553
1559
  color: #323232;
1554
1560
  }
1555
1561
 
1556
- .htFiltersConditionsMenu table tbody tr td.current,
1557
- .htFiltersConditionsMenu table tbody tr td.zeroclipboard-is-hover {
1562
+ .htFiltersConditionsMenu table tbody tr td.current {
1558
1563
  background: #e9e9e9;
1559
1564
  }
1560
1565
 
@@ -1702,10 +1707,6 @@ textarea.HandsontableCopyPaste {
1702
1707
  border: 1px solid #d2d1d1;
1703
1708
  }
1704
1709
 
1705
- .handsontable .htUIInput input:focus {
1706
- outline: 0;
1707
- }
1708
-
1709
1710
  .handsontable .htUIInputIcon {
1710
1711
  position: absolute;
1711
1712
  }