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.
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/cellTypes/dateType/dateType.d.ts +3 -3
- package/cellTypes/dateType/dateType.js +2 -2
- package/cellTypes/dateType/dateType.mjs +2 -2
- package/cellTypes/handsontableType/handsontableType.d.ts +3 -3
- package/cellTypes/handsontableType/handsontableType.js +2 -2
- package/cellTypes/handsontableType/handsontableType.mjs +2 -2
- package/core.d.ts +1 -1
- package/core.js +10 -5
- package/core.mjs +10 -5
- package/dataMap/metaManager/metaSchema.js +1 -1
- package/dataMap/metaManager/metaSchema.mjs +1 -1
- package/dist/handsontable.css +13 -12
- package/dist/handsontable.full.css +13 -12
- package/dist/handsontable.full.js +2260 -1403
- package/dist/handsontable.full.min.css +5 -5
- package/dist/handsontable.full.min.js +10 -10
- package/dist/handsontable.js +2260 -1403
- package/dist/handsontable.min.css +5 -5
- package/dist/handsontable.min.js +24 -24
- package/dist/languages/all.js +6 -2
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/en-US.js +3 -1
- package/dist/languages/en-US.min.js +1 -1
- package/dist/languages/pl-PL.js +3 -1
- package/dist/languages/pl-PL.min.js +1 -1
- package/editors/autocompleteEditor/autocompleteEditor.js +1 -1
- package/editors/autocompleteEditor/autocompleteEditor.mjs +1 -1
- package/editors/dateEditor/dateEditor.js +26 -7
- package/editors/dateEditor/dateEditor.mjs +27 -8
- package/editors/handsontableEditor/handsontableEditor.js +7 -0
- package/editors/handsontableEditor/handsontableEditor.mjs +8 -1
- package/helpers/a11y.js +3 -1
- package/helpers/a11y.mjs +2 -1
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/i18n/constants.js +7 -1
- package/i18n/constants.mjs +4 -1
- package/i18n/languages/en-US.js +3 -1
- package/i18n/languages/en-US.mjs +3 -1
- package/i18n/languages/pl-PL.js +3 -1
- package/i18n/languages/pl-PL.mjs +3 -1
- package/languages/all.js +6 -2
- package/languages/en-US.js +3 -1
- package/languages/en-US.mjs +3 -1
- package/languages/index.js +6 -2
- package/languages/pl-PL.js +3 -1
- package/languages/pl-PL.mjs +3 -1
- package/package.json +11 -1
- package/pluginHooks.js +1 -1
- package/pluginHooks.mjs +1 -1
- package/plugins/contextMenu/menu/defaultShortcutsList.js +88 -0
- package/plugins/contextMenu/menu/defaultShortcutsList.mjs +84 -0
- package/plugins/contextMenu/menu/menu.js +87 -151
- package/plugins/contextMenu/menu/menu.mjs +90 -154
- package/plugins/contextMenu/menu/menuItemRenderer.js +58 -0
- package/plugins/contextMenu/menu/menuItemRenderer.mjs +54 -0
- package/plugins/contextMenu/menu/navigator.js +19 -144
- package/plugins/contextMenu/menu/navigator.mjs +18 -143
- package/plugins/contextMenu/menu/shortcuts.js +114 -0
- package/plugins/contextMenu/menu/shortcuts.mjs +110 -0
- package/plugins/dropdownMenu/dropdownMenu.js +32 -4
- package/plugins/dropdownMenu/dropdownMenu.mjs +33 -5
- package/plugins/filters/component/_base.js +23 -8
- package/plugins/filters/component/_base.mjs +23 -8
- package/plugins/filters/component/actionBar.js +29 -27
- package/plugins/filters/component/actionBar.mjs +26 -23
- package/plugins/filters/component/condition.js +46 -59
- package/plugins/filters/component/condition.mjs +40 -52
- package/plugins/filters/component/operators.js +21 -22
- package/plugins/filters/component/operators.mjs +18 -18
- package/plugins/filters/component/value.js +35 -26
- package/plugins/filters/component/value.mjs +32 -22
- package/plugins/filters/filters.js +75 -48
- package/plugins/filters/filters.mjs +68 -41
- package/plugins/filters/menu/focusController.js +123 -0
- package/plugins/filters/menu/focusController.mjs +119 -0
- package/plugins/filters/menu/focusNavigator.js +30 -0
- package/plugins/filters/menu/focusNavigator.mjs +26 -0
- package/plugins/filters/ui/_base.js +35 -13
- package/plugins/filters/ui/_base.mjs +35 -13
- package/plugins/filters/ui/input.js +43 -32
- package/plugins/filters/ui/input.mjs +42 -30
- package/plugins/filters/ui/link.js +44 -12
- package/plugins/filters/ui/link.mjs +44 -11
- package/plugins/filters/ui/multipleSelect.js +234 -129
- package/plugins/filters/ui/multipleSelect.mjs +232 -127
- package/plugins/filters/ui/radioInput.js +42 -18
- package/plugins/filters/ui/radioInput.mjs +42 -17
- package/plugins/filters/ui/select.js +144 -75
- package/plugins/filters/ui/select.mjs +140 -70
- package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -1
- package/renderers/autocompleteRenderer/autocompleteRenderer.mjs +1 -1
- package/renderers/checkboxRenderer/checkboxRenderer.js +3 -3
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +4 -4
- package/renderers/dateRenderer/dateRenderer.d.ts +5 -0
- package/renderers/dateRenderer/dateRenderer.js +29 -0
- package/renderers/dateRenderer/dateRenderer.mjs +24 -0
- package/renderers/dateRenderer/index.d.ts +1 -0
- package/renderers/dateRenderer/index.js +6 -0
- package/renderers/dateRenderer/index.mjs +1 -0
- package/renderers/handsontableRenderer/handsontableRenderer.d.ts +5 -0
- package/renderers/handsontableRenderer/handsontableRenderer.js +29 -0
- package/renderers/handsontableRenderer/handsontableRenderer.mjs +24 -0
- package/renderers/handsontableRenderer/index.d.ts +1 -0
- package/renderers/handsontableRenderer/index.js +6 -0
- package/renderers/handsontableRenderer/index.mjs +1 -0
- package/renderers/index.d.ts +6 -0
- package/renderers/selectRenderer/selectRenderer.js +2 -1
- package/renderers/selectRenderer/selectRenderer.mjs +2 -1
- package/selection/selection.js +2 -2
- package/selection/selection.mjs +2 -2
- package/shortcuts/context.js +3 -2
- package/shortcuts/context.mjs +3 -2
- package/utils/paginator.js +151 -0
- 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 = "
|
47
|
-
Handsontable.version = "0.0.0-next-
|
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 = "
|
39
|
-
Handsontable.version = "0.0.0-next-
|
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 {
|
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
|
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 {
|
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
|
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:
|
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 {
|
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:
|
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 {
|
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
|
8
|
+
renderer: typeof handsontableRenderer;
|
9
9
|
}
|
10
10
|
|
11
11
|
export namespace HandsontableCellType {
|
12
12
|
export { HandsontableEditor as editor };
|
13
|
-
export {
|
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
|
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:
|
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 {
|
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:
|
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
|
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
|
-
*
|
4021
|
-
*
|
4022
|
-
*
|
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
|
4032
|
+
let options = arguments.length > 2 ? arguments[2] : undefined;
|
4028
4033
|
preventScrollingToCell = true;
|
4029
|
-
selection.selectAll(includeRowHeaders, includeColumnHeaders,
|
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
|
-
*
|
4016
|
-
*
|
4017
|
-
*
|
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
|
4027
|
+
let options = arguments.length > 2 ? arguments[2] : undefined;
|
4023
4028
|
preventScrollingToCell = true;
|
4024
|
-
selection.selectAll(includeRowHeaders, includeColumnHeaders,
|
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
|
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
|
2448
|
+
* @since 14.0.0
|
2449
2449
|
* @memberof Options#
|
2450
2450
|
* @type {boolean}
|
2451
2451
|
* @category Core
|
package/dist/handsontable.css
CHANGED
@@ -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: 31/08/2023 (built at
|
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-
|
29
|
-
* Release date: 31/08/2023 (built at
|
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
|
}
|