handsontable 0.0.0-next-ff8465d-20231006 → 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 (117) hide show
  1. package/base.js +2 -2
  2. package/base.mjs +2 -2
  3. package/cellTypes/dateType/dateType.d.ts +3 -3
  4. package/cellTypes/dateType/dateType.js +2 -2
  5. package/cellTypes/dateType/dateType.mjs +2 -2
  6. package/cellTypes/handsontableType/handsontableType.d.ts +3 -3
  7. package/cellTypes/handsontableType/handsontableType.js +2 -2
  8. package/cellTypes/handsontableType/handsontableType.mjs +2 -2
  9. package/core.d.ts +1 -1
  10. package/core.js +10 -5
  11. package/core.mjs +10 -5
  12. package/dataMap/metaManager/metaSchema.js +1 -1
  13. package/dataMap/metaManager/metaSchema.mjs +1 -1
  14. package/dist/handsontable.css +13 -12
  15. package/dist/handsontable.full.css +13 -12
  16. package/dist/handsontable.full.js +2260 -1403
  17. package/dist/handsontable.full.min.css +5 -5
  18. package/dist/handsontable.full.min.js +10 -10
  19. package/dist/handsontable.js +2260 -1403
  20. package/dist/handsontable.min.css +5 -5
  21. package/dist/handsontable.min.js +24 -24
  22. package/dist/languages/all.js +6 -2
  23. package/dist/languages/all.min.js +1 -1
  24. package/dist/languages/en-US.js +3 -1
  25. package/dist/languages/en-US.min.js +1 -1
  26. package/dist/languages/pl-PL.js +3 -1
  27. package/dist/languages/pl-PL.min.js +1 -1
  28. package/editors/autocompleteEditor/autocompleteEditor.js +1 -1
  29. package/editors/autocompleteEditor/autocompleteEditor.mjs +1 -1
  30. package/editors/dateEditor/dateEditor.js +26 -7
  31. package/editors/dateEditor/dateEditor.mjs +27 -8
  32. package/editors/handsontableEditor/handsontableEditor.js +7 -0
  33. package/editors/handsontableEditor/handsontableEditor.mjs +8 -1
  34. package/helpers/a11y.js +3 -1
  35. package/helpers/a11y.mjs +2 -1
  36. package/helpers/mixed.js +1 -1
  37. package/helpers/mixed.mjs +1 -1
  38. package/i18n/constants.js +7 -1
  39. package/i18n/constants.mjs +4 -1
  40. package/i18n/languages/en-US.js +3 -1
  41. package/i18n/languages/en-US.mjs +3 -1
  42. package/i18n/languages/pl-PL.js +3 -1
  43. package/i18n/languages/pl-PL.mjs +3 -1
  44. package/languages/all.js +6 -2
  45. package/languages/en-US.js +3 -1
  46. package/languages/en-US.mjs +3 -1
  47. package/languages/index.js +6 -2
  48. package/languages/pl-PL.js +3 -1
  49. package/languages/pl-PL.mjs +3 -1
  50. package/package.json +11 -1
  51. package/pluginHooks.js +1 -1
  52. package/pluginHooks.mjs +1 -1
  53. package/plugins/contextMenu/menu/defaultShortcutsList.js +88 -0
  54. package/plugins/contextMenu/menu/defaultShortcutsList.mjs +84 -0
  55. package/plugins/contextMenu/menu/menu.js +87 -151
  56. package/plugins/contextMenu/menu/menu.mjs +90 -154
  57. package/plugins/contextMenu/menu/menuItemRenderer.js +58 -0
  58. package/plugins/contextMenu/menu/menuItemRenderer.mjs +54 -0
  59. package/plugins/contextMenu/menu/navigator.js +19 -144
  60. package/plugins/contextMenu/menu/navigator.mjs +18 -143
  61. package/plugins/contextMenu/menu/shortcuts.js +114 -0
  62. package/plugins/contextMenu/menu/shortcuts.mjs +110 -0
  63. package/plugins/dropdownMenu/dropdownMenu.js +32 -4
  64. package/plugins/dropdownMenu/dropdownMenu.mjs +33 -5
  65. package/plugins/filters/component/_base.js +23 -8
  66. package/plugins/filters/component/_base.mjs +23 -8
  67. package/plugins/filters/component/actionBar.js +29 -27
  68. package/plugins/filters/component/actionBar.mjs +26 -23
  69. package/plugins/filters/component/condition.js +46 -59
  70. package/plugins/filters/component/condition.mjs +40 -52
  71. package/plugins/filters/component/operators.js +21 -22
  72. package/plugins/filters/component/operators.mjs +18 -18
  73. package/plugins/filters/component/value.js +35 -26
  74. package/plugins/filters/component/value.mjs +32 -22
  75. package/plugins/filters/filters.js +75 -48
  76. package/plugins/filters/filters.mjs +68 -41
  77. package/plugins/filters/menu/focusController.js +123 -0
  78. package/plugins/filters/menu/focusController.mjs +119 -0
  79. package/plugins/filters/menu/focusNavigator.js +30 -0
  80. package/plugins/filters/menu/focusNavigator.mjs +26 -0
  81. package/plugins/filters/ui/_base.js +35 -13
  82. package/plugins/filters/ui/_base.mjs +35 -13
  83. package/plugins/filters/ui/input.js +43 -32
  84. package/plugins/filters/ui/input.mjs +42 -30
  85. package/plugins/filters/ui/link.js +44 -12
  86. package/plugins/filters/ui/link.mjs +44 -11
  87. package/plugins/filters/ui/multipleSelect.js +234 -129
  88. package/plugins/filters/ui/multipleSelect.mjs +232 -127
  89. package/plugins/filters/ui/radioInput.js +42 -18
  90. package/plugins/filters/ui/radioInput.mjs +42 -17
  91. package/plugins/filters/ui/select.js +144 -75
  92. package/plugins/filters/ui/select.mjs +140 -70
  93. package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -1
  94. package/renderers/autocompleteRenderer/autocompleteRenderer.mjs +1 -1
  95. package/renderers/checkboxRenderer/checkboxRenderer.js +3 -3
  96. package/renderers/checkboxRenderer/checkboxRenderer.mjs +4 -4
  97. package/renderers/dateRenderer/dateRenderer.d.ts +5 -0
  98. package/renderers/dateRenderer/dateRenderer.js +29 -0
  99. package/renderers/dateRenderer/dateRenderer.mjs +24 -0
  100. package/renderers/dateRenderer/index.d.ts +1 -0
  101. package/renderers/dateRenderer/index.js +6 -0
  102. package/renderers/dateRenderer/index.mjs +1 -0
  103. package/renderers/handsontableRenderer/handsontableRenderer.d.ts +5 -0
  104. package/renderers/handsontableRenderer/handsontableRenderer.js +29 -0
  105. package/renderers/handsontableRenderer/handsontableRenderer.mjs +24 -0
  106. package/renderers/handsontableRenderer/index.d.ts +1 -0
  107. package/renderers/handsontableRenderer/index.js +6 -0
  108. package/renderers/handsontableRenderer/index.mjs +1 -0
  109. package/renderers/index.d.ts +6 -0
  110. package/renderers/selectRenderer/selectRenderer.js +2 -1
  111. package/renderers/selectRenderer/selectRenderer.mjs +2 -1
  112. package/selection/selection.js +2 -2
  113. package/selection/selection.mjs +2 -2
  114. package/shortcuts/context.js +3 -2
  115. package/shortcuts/context.mjs +3 -2
  116. package/utils/paginator.js +151 -0
  117. 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 = "06/10/2023 13:27:30";
47
- Handsontable.version = "0.0.0-next-ff8465d-20231006";
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 = "06/10/2023 13:27:42";
39
- Handsontable.version = "0.0.0-next-ff8465d-20231006";
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,
@@ -1,17 +1,17 @@
1
1
  import { CellTypeObject } from '../base';
2
2
  import { DateEditor } from '../../editors/dateEditor';
3
- import { autocompleteRenderer } from '../../renderers/autocompleteRenderer';
3
+ import { dateRenderer } from '../../renderers/dateRenderer';
4
4
  import { dateValidator } from '../../validators/dateValidator';
5
5
 
6
6
  export const CELL_TYPE: 'date';
7
7
  export interface DateCellType extends CellTypeObject {
8
8
  editor: typeof DateEditor;
9
- renderer: typeof autocompleteRenderer;
9
+ renderer: typeof dateRenderer;
10
10
  validator: typeof dateValidator;
11
11
  }
12
12
 
13
13
  export namespace DateCellType {
14
14
  export { DateEditor as editor };
15
- export { autocompleteRenderer as renderer };
15
+ export { dateRenderer as renderer };
16
16
  export { dateValidator as validator };
17
17
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  exports.__esModule = true;
4
4
  var _dateEditor = require("../../editors/dateEditor");
5
- var _autocompleteRenderer = require("../../renderers/autocompleteRenderer");
5
+ var _dateRenderer = require("../../renderers/dateRenderer");
6
6
  var _dateValidator = require("../../validators/dateValidator");
7
7
  const CELL_TYPE = 'date';
8
8
  exports.CELL_TYPE = CELL_TYPE;
@@ -10,7 +10,7 @@ const DateCellType = {
10
10
  CELL_TYPE,
11
11
  editor: _dateEditor.DateEditor,
12
12
  // displays small gray arrow on right side of the cell
13
- renderer: _autocompleteRenderer.autocompleteRenderer,
13
+ renderer: _dateRenderer.dateRenderer,
14
14
  validator: _dateValidator.dateValidator
15
15
  };
16
16
  exports.DateCellType = DateCellType;
@@ -1,11 +1,11 @@
1
1
  import { DateEditor } from "../../editors/dateEditor/index.mjs";
2
- import { autocompleteRenderer } from "../../renderers/autocompleteRenderer/index.mjs";
2
+ import { dateRenderer } from "../../renderers/dateRenderer/index.mjs";
3
3
  import { dateValidator } from "../../validators/dateValidator/index.mjs";
4
4
  export const CELL_TYPE = 'date';
5
5
  export const DateCellType = {
6
6
  CELL_TYPE,
7
7
  editor: DateEditor,
8
8
  // displays small gray arrow on right side of the cell
9
- renderer: autocompleteRenderer,
9
+ renderer: dateRenderer,
10
10
  validator: dateValidator
11
11
  };
@@ -1,14 +1,14 @@
1
1
  import { CellTypeObject } from '../base';
2
2
  import { HandsontableEditor } from '../../editors/handsontableEditor';
3
- import { autocompleteRenderer } from '../../renderers/autocompleteRenderer';
3
+ import { handsontableRenderer } from '../../renderers/handsontableRenderer';
4
4
 
5
5
  export const CELL_TYPE: 'handsontable';
6
6
  export interface HandsontableCellType extends CellTypeObject {
7
7
  editor: typeof HandsontableEditor;
8
- renderer: typeof autocompleteRenderer;
8
+ renderer: typeof handsontableRenderer;
9
9
  }
10
10
 
11
11
  export namespace HandsontableCellType {
12
12
  export { HandsontableEditor as editor };
13
- export { autocompleteRenderer as renderer };
13
+ export { handsontableRenderer as renderer };
14
14
  }
@@ -2,13 +2,13 @@
2
2
 
3
3
  exports.__esModule = true;
4
4
  var _handsontableEditor = require("../../editors/handsontableEditor");
5
- var _autocompleteRenderer = require("../../renderers/autocompleteRenderer");
5
+ var _handsontableRenderer = require("../../renderers/handsontableRenderer");
6
6
  const CELL_TYPE = 'handsontable';
7
7
  exports.CELL_TYPE = CELL_TYPE;
8
8
  const HandsontableCellType = {
9
9
  CELL_TYPE,
10
10
  editor: _handsontableEditor.HandsontableEditor,
11
11
  // displays small gray arrow on right side of the cell
12
- renderer: _autocompleteRenderer.autocompleteRenderer
12
+ renderer: _handsontableRenderer.handsontableRenderer
13
13
  };
14
14
  exports.HandsontableCellType = HandsontableCellType;
@@ -1,9 +1,9 @@
1
1
  import { HandsontableEditor } from "../../editors/handsontableEditor/index.mjs";
2
- import { autocompleteRenderer } from "../../renderers/autocompleteRenderer/index.mjs";
2
+ import { handsontableRenderer } from "../../renderers/handsontableRenderer/index.mjs";
3
3
  export const CELL_TYPE = 'handsontable';
4
4
  export const HandsontableCellType = {
5
5
  CELL_TYPE,
6
6
  editor: HandsontableEditor,
7
7
  // displays small gray arrow on right side of the cell
8
- renderer: autocompleteRenderer
8
+ renderer: handsontableRenderer
9
9
  };
package/core.d.ts CHANGED
@@ -134,7 +134,7 @@ export default class Core {
134
134
  runHooks(key: keyof Events, p1?: any, p2?: any, p3?: any, p4?: any, p5?: any, p6?: any): any;
135
135
  scrollViewportTo(options: { row?: number, col?: number, verticalSnap?: 'top' | 'bottom', horizontalSnap?: 'start' | 'end', considerHiddenIndexes?: boolean }): boolean;
136
136
  scrollToFocusedCell(callback?: () => void): void;
137
- selectAll(includeRowHeaders?: boolean, includeColumnHeaders?: boolean, focusPosition?: { row?: number, col?: number }): void;
137
+ selectAll(includeRowHeaders?: boolean, includeColumnHeaders?: boolean, options?: { focusPosition?: { row: number, col: number }, disableHeadersHighlight?: boolean }): void;
138
138
  selectCell(row: number, col: number, endRow?: number, endCol?: number, scrollToCell?: boolean, changeListener?: boolean): boolean;
139
139
  selectCellByProp(row: number, prop: string, endRow?: number, endProp?: string, scrollToCell?: boolean): boolean;
140
140
  selectCells(coords: Array<[number, number | string, number, number | string]> | CellRange[], scrollToCell?: boolean, changeListener?: boolean): boolean;
package/core.js CHANGED
@@ -4017,16 +4017,21 @@ function Core(rootElement, userSettings) {
4017
4017
  * `false` otherwise.
4018
4018
  * @param {boolean} [includeColumnHeaders=false] `true` If the selection should include the column
4019
4019
  * headers, `false` otherwise.
4020
- * @param {{row: number, col: number}} [focusPosition] The argument allows changing the cell/header
4021
- * focus position. The value takes an object with a `row` and `col` properties (visual indexes)
4022
- * from -N to N, where negative values point to the headers and positive values point to the cell range.
4020
+ *
4021
+ * @param {object} [options] Additional object with options.
4022
+ * @param {{row: number, col: number} | boolean} [options.focusPosition] The argument allows changing the cell/header
4023
+ * focus position. The value takes an object with a `row` and `col` properties from -N to N, where
4024
+ * negative values point to the headers and positive values point to the cell range. If `false`, the focus
4025
+ * position won't be changed.
4026
+ * @param {boolean} [options.disableHeadersHighlight] If `true`, disables highlighting the headers even when
4027
+ * the logical coordinates points on them.
4023
4028
  */
4024
4029
  this.selectAll = function () {
4025
4030
  let includeRowHeaders = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
4026
4031
  let includeColumnHeaders = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : includeRowHeaders;
4027
- let focusPosition = arguments.length > 2 ? arguments[2] : undefined;
4032
+ let options = arguments.length > 2 ? arguments[2] : undefined;
4028
4033
  preventScrollingToCell = true;
4029
- selection.selectAll(includeRowHeaders, includeColumnHeaders, focusPosition);
4034
+ selection.selectAll(includeRowHeaders, includeColumnHeaders, options);
4030
4035
  preventScrollingToCell = false;
4031
4036
  };
4032
4037
  const getIndexToScroll = (indexMapper, visualIndex) => {
package/core.mjs CHANGED
@@ -4012,16 +4012,21 @@ export default function Core(rootElement, userSettings) {
4012
4012
  * `false` otherwise.
4013
4013
  * @param {boolean} [includeColumnHeaders=false] `true` If the selection should include the column
4014
4014
  * headers, `false` otherwise.
4015
- * @param {{row: number, col: number}} [focusPosition] The argument allows changing the cell/header
4016
- * focus position. The value takes an object with a `row` and `col` properties (visual indexes)
4017
- * from -N to N, where negative values point to the headers and positive values point to the cell range.
4015
+ *
4016
+ * @param {object} [options] Additional object with options.
4017
+ * @param {{row: number, col: number} | boolean} [options.focusPosition] The argument allows changing the cell/header
4018
+ * focus position. The value takes an object with a `row` and `col` properties from -N to N, where
4019
+ * negative values point to the headers and positive values point to the cell range. If `false`, the focus
4020
+ * position won't be changed.
4021
+ * @param {boolean} [options.disableHeadersHighlight] If `true`, disables highlighting the headers even when
4022
+ * the logical coordinates points on them.
4018
4023
  */
4019
4024
  this.selectAll = function () {
4020
4025
  let includeRowHeaders = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
4021
4026
  let includeColumnHeaders = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : includeRowHeaders;
4022
- let focusPosition = arguments.length > 2 ? arguments[2] : undefined;
4027
+ let options = arguments.length > 2 ? arguments[2] : undefined;
4023
4028
  preventScrollingToCell = true;
4024
- selection.selectAll(includeRowHeaders, includeColumnHeaders, focusPosition);
4029
+ selection.selectAll(includeRowHeaders, includeColumnHeaders, options);
4025
4030
  preventScrollingToCell = false;
4026
4031
  };
4027
4032
  const getIndexToScroll = (indexMapper, visualIndex) => {
@@ -2448,7 +2448,7 @@ var _default = () => {
2448
2448
  *
2449
2449
  * Enabling this option can make a negative impact on how some screen readers handle reading the table cells.
2450
2450
  *
2451
- * @since 13.0.0
2451
+ * @since 14.0.0
2452
2452
  * @memberof Options#
2453
2453
  * @type {boolean}
2454
2454
  * @category Core
@@ -2445,7 +2445,7 @@ export default (() => {
2445
2445
  *
2446
2446
  * Enabling this option can make a negative impact on how some screen readers handle reading the table cells.
2447
2447
  *
2448
- * @since 13.0.0
2448
+ * @since 14.0.0
2449
2449
  * @memberof Options#
2450
2450
  * @type {boolean}
2451
2451
  * @category Core
@@ -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-ff8465d-20231006
29
- * Release date: 31/08/2023 (built at 06/10/2023 13:27: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-ff8465d-20231006
29
- * Release date: 31/08/2023 (built at 06/10/2023 13:27: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
  }