handsontable 15.0.0 → 15.1.0-next-dfdf994-20250206
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.
- package/3rdparty/walkontable/src/index.js +2 -0
- package/3rdparty/walkontable/src/index.mjs +2 -1
- package/3rdparty/walkontable/src/overlays.js +2 -39
- package/3rdparty/walkontable/src/overlays.mjs +2 -39
- package/3rdparty/walkontable/src/renderer/_base.js +3 -4
- package/3rdparty/walkontable/src/renderer/_base.mjs +2 -2
- package/3rdparty/walkontable/src/renderer/cells.js +7 -11
- package/3rdparty/walkontable/src/renderer/cells.mjs +6 -9
- package/3rdparty/walkontable/src/renderer/colGroup.js +6 -7
- package/3rdparty/walkontable/src/renderer/colGroup.mjs +5 -5
- package/3rdparty/walkontable/src/renderer/columnHeaders.js +4 -5
- package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +3 -3
- package/3rdparty/walkontable/src/renderer/index.js +18 -19
- package/3rdparty/walkontable/src/renderer/index.mjs +6 -6
- package/3rdparty/walkontable/src/renderer/rowHeaders.js +6 -7
- package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +5 -5
- package/3rdparty/walkontable/src/renderer/rows.js +23 -11
- package/3rdparty/walkontable/src/renderer/rows.mjs +23 -10
- package/3rdparty/walkontable/src/renderer/table.js +1 -1
- package/3rdparty/walkontable/src/renderer/table.mjs +1 -1
- package/3rdparty/walkontable/src/selection/border/border.js +10 -2
- package/3rdparty/walkontable/src/selection/border/border.mjs +10 -2
- package/3rdparty/walkontable/src/utils/nodesPool.js +21 -6
- package/3rdparty/walkontable/src/utils/nodesPool.mjs +21 -6
- package/3rdparty/walkontable/src/utils/orderView/index.js +4 -5
- package/3rdparty/walkontable/src/utils/orderView/index.mjs +2 -2
- package/3rdparty/walkontable/src/utils/orderView/sharedView.js +3 -4
- package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +2 -2
- package/3rdparty/walkontable/src/utils/orderView/view.js +60 -76
- package/3rdparty/walkontable/src/utils/orderView/view.mjs +59 -74
- package/3rdparty/walkontable/src/utils/orderView/viewDiffer/index.js +138 -0
- package/3rdparty/walkontable/src/utils/orderView/viewDiffer/index.mjs +135 -0
- package/3rdparty/walkontable/src/utils/orderView/viewDiffer/viewOrder.js +72 -0
- package/3rdparty/walkontable/src/utils/orderView/viewDiffer/viewOrder.mjs +68 -0
- package/3rdparty/walkontable/src/utils/orderView/viewSize.js +1 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +1 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +4 -5
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +3 -3
- package/CHANGELOG.md +54 -0
- package/README.md +3 -3
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/cellTypes/dropdownType/dropdownType.js +4 -2
- package/cellTypes/dropdownType/dropdownType.mjs +4 -2
- package/core.js +39 -38
- package/core.mjs +36 -35
- package/dataMap/dataMap.js +8 -0
- package/dataMap/dataMap.mjs +8 -0
- package/dataMap/dataSource.js +4 -0
- package/dataMap/dataSource.mjs +4 -0
- package/dataMap/metaManager/lazyFactoryMap.js +8 -5
- package/dataMap/metaManager/lazyFactoryMap.mjs +8 -5
- package/dataMap/metaManager/metaSchema.js +24 -9
- package/dataMap/metaManager/metaSchema.mjs +24 -9
- package/dist/handsontable.css +6 -2
- package/dist/handsontable.full.css +6 -2
- package/dist/handsontable.full.js +8020 -6915
- package/dist/handsontable.full.min.css +3 -3
- package/dist/handsontable.full.min.js +530 -528
- package/dist/handsontable.js +3827 -2902
- package/dist/handsontable.min.css +3 -3
- package/dist/handsontable.min.js +35 -33
- package/editors/autocompleteEditor/autocompleteEditor.js +1 -3
- package/editors/autocompleteEditor/autocompleteEditor.mjs +1 -3
- package/editors/dateEditor/dateEditor.js +4 -0
- package/editors/dateEditor/dateEditor.mjs +4 -0
- package/editors/dropdownEditor/dropdownEditor.js +3 -16
- package/editors/dropdownEditor/dropdownEditor.mjs +3 -16
- package/editors/handsontableEditor/handsontableEditor.js +4 -4
- package/editors/handsontableEditor/handsontableEditor.mjs +4 -4
- package/focusManager.js +1 -1
- package/focusManager.mjs +1 -1
- package/helpers/dom/element.d.ts +0 -1
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/helpers/object.js +4 -0
- package/helpers/object.mjs +4 -0
- package/package.json +2 -2
- package/plugins/base/base.js +0 -7
- package/plugins/base/base.mjs +0 -7
- package/plugins/comments/comments.js +12 -3
- package/plugins/comments/comments.mjs +12 -3
- package/plugins/contextMenu/contextMenu.js +2 -7
- package/plugins/contextMenu/contextMenu.mjs +2 -7
- package/plugins/contextMenu/menu/menu.js +2 -2
- package/plugins/contextMenu/menu/menu.mjs +2 -2
- package/plugins/contextMenu/predefinedItems/clearColumn.js +15 -4
- package/plugins/contextMenu/predefinedItems/clearColumn.mjs +15 -4
- package/plugins/filters/conditionCollection.js +8 -7
- package/plugins/filters/conditionCollection.mjs +8 -7
- package/plugins/filters/filters.js +26 -16
- package/plugins/filters/filters.mjs +26 -16
- package/plugins/filters/utils.js +7 -24
- package/plugins/filters/utils.mjs +7 -24
- package/plugins/hiddenColumns/hiddenColumns.js +1 -3
- package/plugins/hiddenColumns/hiddenColumns.mjs +1 -3
- package/plugins/hiddenRows/hiddenRows.js +1 -3
- package/plugins/hiddenRows/hiddenRows.mjs +1 -3
- package/plugins/manualRowMove/manualRowMove.js +1 -1
- package/plugins/manualRowMove/manualRowMove.mjs +1 -1
- package/plugins/mergeCells/calculations/autofill.js +60 -44
- package/plugins/mergeCells/calculations/autofill.mjs +60 -44
- package/plugins/mergeCells/cellsCollection.js +25 -8
- package/plugins/mergeCells/cellsCollection.mjs +25 -8
- package/plugins/mergeCells/mergeCells.js +15 -16
- package/plugins/mergeCells/mergeCells.mjs +15 -16
- package/plugins/nestedHeaders/nestedHeaders.js +6 -1
- package/plugins/nestedHeaders/nestedHeaders.mjs +6 -1
- package/plugins/nestedHeaders/stateManager/index.js +1 -2
- package/plugins/nestedHeaders/stateManager/index.mjs +1 -2
- package/plugins/nestedHeaders/utils/ghostTable.js +4 -0
- package/plugins/nestedHeaders/utils/ghostTable.mjs +4 -0
- package/plugins/nestedRows/utils/rowMoveController.js +1 -6
- package/plugins/nestedRows/utils/rowMoveController.mjs +1 -6
- package/plugins/undoRedo/actions/_base.js +19 -0
- package/plugins/undoRedo/actions/_base.mjs +15 -0
- package/plugins/undoRedo/actions/cellAlignment.js +85 -0
- package/plugins/undoRedo/actions/cellAlignment.mjs +81 -0
- package/plugins/undoRedo/actions/columnMove.js +84 -0
- package/plugins/undoRedo/actions/columnMove.mjs +80 -0
- package/plugins/undoRedo/actions/columnSort.js +73 -0
- package/plugins/undoRedo/actions/columnSort.mjs +69 -0
- package/plugins/undoRedo/actions/createColumn.js +60 -0
- package/plugins/undoRedo/actions/createColumn.mjs +56 -0
- package/plugins/undoRedo/actions/createRow.js +65 -0
- package/plugins/undoRedo/actions/createRow.mjs +61 -0
- package/plugins/undoRedo/actions/dataChange.js +123 -0
- package/plugins/undoRedo/actions/dataChange.mjs +119 -0
- package/plugins/undoRedo/actions/filters.js +66 -0
- package/plugins/undoRedo/actions/filters.mjs +62 -0
- package/plugins/undoRedo/actions/index.js +27 -0
- package/plugins/undoRedo/actions/index.mjs +23 -0
- package/plugins/undoRedo/actions/mergeCells.js +63 -0
- package/plugins/undoRedo/actions/mergeCells.mjs +59 -0
- package/plugins/undoRedo/actions/removeColumn.js +176 -0
- package/plugins/undoRedo/actions/removeColumn.mjs +172 -0
- package/plugins/undoRedo/actions/removeRow.js +119 -0
- package/plugins/undoRedo/actions/removeRow.mjs +115 -0
- package/plugins/undoRedo/actions/rowMove.js +84 -0
- package/plugins/undoRedo/actions/rowMove.mjs +80 -0
- package/plugins/undoRedo/actions/unmergeCells.js +56 -0
- package/plugins/undoRedo/actions/unmergeCells.mjs +52 -0
- package/plugins/undoRedo/index.js +3 -4
- package/plugins/undoRedo/index.mjs +1 -2
- package/plugins/undoRedo/undoRedo.js +277 -879
- package/plugins/undoRedo/undoRedo.mjs +277 -880
- package/plugins/undoRedo/utils.js +37 -0
- package/plugins/undoRedo/utils.mjs +33 -0
- package/renderers/checkboxRenderer/checkboxRenderer.js +8 -1
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +8 -1
- package/shortcutContexts/commands/moveCellSelection/downByViewportHeight.js +1 -0
- package/shortcutContexts/commands/moveCellSelection/downByViewportHeight.mjs +1 -0
- package/shortcutContexts/commands/moveCellSelection/upByViewportHeight.js +2 -1
- package/shortcutContexts/commands/moveCellSelection/upByViewportHeight.mjs +2 -1
- package/styles/handsontable.css +75 -103
- 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 +17 -1
- package/tableView.mjs +17 -1
- package/utils/autoResize.js +1 -1
- package/utils/autoResize.mjs +1 -1
- package/utils/parseTable.js +1 -1
- package/utils/parseTable.mjs +1 -1
- package/validators/dateValidator/dateValidator.js +1 -1
- package/validators/dateValidator/dateValidator.mjs +1 -1
@@ -0,0 +1,37 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports.getCellMetas = getCellMetas;
|
5
|
+
require("core-js/modules/es.array.push.js");
|
6
|
+
require("core-js/modules/es.object.from-entries.js");
|
7
|
+
require("core-js/modules/esnext.iterator.constructor.js");
|
8
|
+
require("core-js/modules/esnext.iterator.filter.js");
|
9
|
+
var _number = require("../../helpers/number");
|
10
|
+
/**
|
11
|
+
* Gets all cell metas from the provided range.
|
12
|
+
*
|
13
|
+
* @param {Core} hot The Handsontable instance.
|
14
|
+
* @param {number} fromRow The starting row index.
|
15
|
+
* @param {number} toRow The ending row index.
|
16
|
+
* @param {number} fromColumn The starting column index.
|
17
|
+
* @param {number} toColumn The ending column index.
|
18
|
+
* @returns {Array} Returns an array of cell metas.
|
19
|
+
*/
|
20
|
+
function getCellMetas(hot, fromRow, toRow, fromColumn, toColumn) {
|
21
|
+
const genericKeys = ['visualRow', 'visualCol', 'row', 'col', 'prop'];
|
22
|
+
const genericKeysLength = genericKeys.length;
|
23
|
+
const cellMetas = [];
|
24
|
+
(0, _number.rangeEach)(fromColumn, toColumn, columnIndex => {
|
25
|
+
(0, _number.rangeEach)(fromRow, toRow, rowIndex => {
|
26
|
+
const cellMeta = hot.getCellMeta(rowIndex, columnIndex);
|
27
|
+
if (Object.keys(cellMeta).length !== genericKeysLength) {
|
28
|
+
const uniqueMeta = Object.fromEntries(Object.entries(cellMeta).filter(_ref => {
|
29
|
+
let [key] = _ref;
|
30
|
+
return genericKeys.includes(key) === false;
|
31
|
+
}));
|
32
|
+
cellMetas.push([cellMeta.visualRow, cellMeta.visualCol, uniqueMeta]);
|
33
|
+
}
|
34
|
+
});
|
35
|
+
});
|
36
|
+
return cellMetas;
|
37
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import "core-js/modules/es.array.push.js";
|
2
|
+
import "core-js/modules/es.object.from-entries.js";
|
3
|
+
import "core-js/modules/esnext.iterator.constructor.js";
|
4
|
+
import "core-js/modules/esnext.iterator.filter.js";
|
5
|
+
import { rangeEach } from "../../helpers/number.mjs";
|
6
|
+
/**
|
7
|
+
* Gets all cell metas from the provided range.
|
8
|
+
*
|
9
|
+
* @param {Core} hot The Handsontable instance.
|
10
|
+
* @param {number} fromRow The starting row index.
|
11
|
+
* @param {number} toRow The ending row index.
|
12
|
+
* @param {number} fromColumn The starting column index.
|
13
|
+
* @param {number} toColumn The ending column index.
|
14
|
+
* @returns {Array} Returns an array of cell metas.
|
15
|
+
*/
|
16
|
+
export function getCellMetas(hot, fromRow, toRow, fromColumn, toColumn) {
|
17
|
+
const genericKeys = ['visualRow', 'visualCol', 'row', 'col', 'prop'];
|
18
|
+
const genericKeysLength = genericKeys.length;
|
19
|
+
const cellMetas = [];
|
20
|
+
rangeEach(fromColumn, toColumn, columnIndex => {
|
21
|
+
rangeEach(fromRow, toRow, rowIndex => {
|
22
|
+
const cellMeta = hot.getCellMeta(rowIndex, columnIndex);
|
23
|
+
if (Object.keys(cellMeta).length !== genericKeysLength) {
|
24
|
+
const uniqueMeta = Object.fromEntries(Object.entries(cellMeta).filter(_ref => {
|
25
|
+
let [key] = _ref;
|
26
|
+
return genericKeys.includes(key) === false;
|
27
|
+
}));
|
28
|
+
cellMetas.push([cellMeta.visualRow, cellMeta.visualCol, uniqueMeta]);
|
29
|
+
}
|
30
|
+
});
|
31
|
+
});
|
32
|
+
return cellMetas;
|
33
|
+
}
|
@@ -369,7 +369,14 @@ function createInput(rootDocument) {
|
|
369
369
|
function createLabel(rootDocument, text, fullWidth) {
|
370
370
|
const label = rootDocument.createElement('label');
|
371
371
|
label.className = `htCheckboxRendererLabel ${fullWidth ? 'fullWidth' : ''}`;
|
372
|
-
|
372
|
+
const textNode = rootDocument.createTextNode(text);
|
373
|
+
if (fullWidth) {
|
374
|
+
const span = rootDocument.createElement('span');
|
375
|
+
span.appendChild(textNode);
|
376
|
+
label.appendChild(span);
|
377
|
+
} else {
|
378
|
+
label.appendChild(textNode);
|
379
|
+
}
|
373
380
|
return label.cloneNode(true);
|
374
381
|
}
|
375
382
|
|
@@ -364,7 +364,14 @@ function createInput(rootDocument) {
|
|
364
364
|
function createLabel(rootDocument, text, fullWidth) {
|
365
365
|
const label = rootDocument.createElement('label');
|
366
366
|
label.className = `htCheckboxRendererLabel ${fullWidth ? 'fullWidth' : ''}`;
|
367
|
-
|
367
|
+
const textNode = rootDocument.createTextNode(text);
|
368
|
+
if (fullWidth) {
|
369
|
+
const span = rootDocument.createElement('span');
|
370
|
+
span.appendChild(textNode);
|
371
|
+
label.appendChild(span);
|
372
|
+
} else {
|
373
|
+
label.appendChild(textNode);
|
374
|
+
}
|
368
375
|
return label.cloneNode(true);
|
369
376
|
}
|
370
377
|
|
@@ -12,6 +12,7 @@ const command = exports.command = {
|
|
12
12
|
row
|
13
13
|
} = hot.getSelectedRangeLast().highlight;
|
14
14
|
let rowsStep = hot.countVisibleRows() + columnHeadersCount;
|
15
|
+
rowsStep = rowsStep === 0 ? 1 : rowsStep;
|
15
16
|
|
16
17
|
// if the last row is currently selected move the focus to the first row (if autoWrap is enabled)
|
17
18
|
if (row === hot.countRows() - 1) {
|
@@ -9,6 +9,7 @@ export const command = {
|
|
9
9
|
row
|
10
10
|
} = hot.getSelectedRangeLast().highlight;
|
11
11
|
let rowsStep = hot.countVisibleRows() + columnHeadersCount;
|
12
|
+
rowsStep = rowsStep === 0 ? 1 : rowsStep;
|
12
13
|
|
13
14
|
// if the last row is currently selected move the focus to the first row (if autoWrap is enabled)
|
14
15
|
if (row === hot.countRows() - 1) {
|
@@ -11,7 +11,8 @@ const command = exports.command = {
|
|
11
11
|
const {
|
12
12
|
row
|
13
13
|
} = hot.getSelectedRangeLast().highlight;
|
14
|
-
let rowsStep =
|
14
|
+
let rowsStep = hot.countVisibleRows() + columnHeadersCount;
|
15
|
+
rowsStep = rowsStep === 0 ? -1 : -rowsStep;
|
15
16
|
|
16
17
|
// if the first row is currently selected move the focus to the last row (if autoWrap is enabled)
|
17
18
|
if (row === -columnHeadersCount) {
|
@@ -8,7 +8,8 @@ export const command = {
|
|
8
8
|
const {
|
9
9
|
row
|
10
10
|
} = hot.getSelectedRangeLast().highlight;
|
11
|
-
let rowsStep =
|
11
|
+
let rowsStep = hot.countVisibleRows() + columnHeadersCount;
|
12
|
+
rowsStep = rowsStep === 0 ? -1 : -rowsStep;
|
12
13
|
|
13
14
|
// if the first row is currently selected move the focus to the last row (if autoWrap is enabled)
|
14
15
|
if (row === -columnHeadersCount) {
|
package/styles/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: 15.
|
29
|
-
* Release date:
|
28
|
+
* Version: 15.1.0-next-dfdf994-20250206
|
29
|
+
* Release date: 12/02/2025 (built at 06/02/2025 09:04:58)
|
30
30
|
*/
|
31
31
|
.ht-wrapper:not([class*=ht-theme]) {
|
32
32
|
--ht-cell-horizontal-padding: 8px;
|
@@ -151,6 +151,16 @@
|
|
151
151
|
border-inline-start-width: 0;
|
152
152
|
border-inline-end-width: 1px;
|
153
153
|
border-bottom-width: 1px;
|
154
|
+
border-inline-end-color: var(--ht-border-color);
|
155
|
+
}
|
156
|
+
.handsontable th:last-child.ht__active_highlight {
|
157
|
+
border-inline-end-color: var(--ht-header-active-border-color);
|
158
|
+
}
|
159
|
+
.handsontable th:first-child {
|
160
|
+
border-inline-start-color: var(--ht-border-color);
|
161
|
+
}
|
162
|
+
.handsontable th:first-child.ht__active_highlight {
|
163
|
+
border-inline-start-color: var(--ht-header-active-border-color);
|
154
164
|
}
|
155
165
|
.handsontable th:first-child, .handsontable th:nth-child(2) {
|
156
166
|
border-inline-start-width: 1px;
|
@@ -234,6 +244,23 @@
|
|
234
244
|
.handsontable thead tr th .relative:has(.collapsibleIndicator, .changeType) .colHeader {
|
235
245
|
max-width: calc(100% - (var(--ht-icon-size) + var(--ht-gap-size)));
|
236
246
|
}
|
247
|
+
.handsontable tr:first-child th,
|
248
|
+
.handsontable tr:first-child td {
|
249
|
+
border-top-color: var(--ht-border-color);
|
250
|
+
border-top-width: 1px;
|
251
|
+
}
|
252
|
+
.handsontable tr:first-child th.ht__active_highlight,
|
253
|
+
.handsontable tr:first-child td.ht__active_highlight {
|
254
|
+
border-top-color: var(--ht-header-active-border-color);
|
255
|
+
}
|
256
|
+
.handsontable tr:last-child th,
|
257
|
+
.handsontable tr:last-child td {
|
258
|
+
border-bottom-color: var(--ht-border-color);
|
259
|
+
}
|
260
|
+
.handsontable tr:last-child th.ht__active_highlight,
|
261
|
+
.handsontable tr:last-child td.ht__active_highlight {
|
262
|
+
border-bottom-color: var(--ht-header-active-border-color);
|
263
|
+
}
|
237
264
|
.handsontable thead tr:not(:last-child) th {
|
238
265
|
/* Fix for - nested columns with hidden column */
|
239
266
|
overflow: hidden;
|
@@ -327,19 +354,10 @@
|
|
327
354
|
.handsontable.htRowHeaders thead tr th:nth-child(2) {
|
328
355
|
border-inline-start-width: 1px;
|
329
356
|
}
|
330
|
-
.handsontable
|
331
|
-
.handsontable tr:first-child
|
332
|
-
|
333
|
-
|
334
|
-
.handsontable tr:last-child th,
|
335
|
-
.handsontable tr:last-child td {
|
336
|
-
border-bottom-color: var(--ht-border-color);
|
337
|
-
}
|
338
|
-
.handsontable tr:last-child th.ht__active_highlight,
|
339
|
-
.handsontable tr:last-child td.ht__active_highlight {
|
340
|
-
border-bottom-color: var(--ht-header-active-border-color);
|
341
|
-
}
|
342
|
-
.handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable tbody tr th, .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
|
357
|
+
.handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) tbody tr th,
|
358
|
+
.handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) thead tr th:first-child,
|
359
|
+
.handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.htGhostTable) tbody tr th,
|
360
|
+
.handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top):not(.htGhostTable) thead tr th:first-child {
|
343
361
|
border-inline-end-width: 0;
|
344
362
|
border-inline-start-width: 1px;
|
345
363
|
}
|
@@ -594,7 +612,7 @@
|
|
594
612
|
}
|
595
613
|
|
596
614
|
.ht_editor_visible {
|
597
|
-
z-index:
|
615
|
+
z-index: 200;
|
598
616
|
}
|
599
617
|
|
600
618
|
.handsontable td.area {
|
@@ -724,11 +742,6 @@
|
|
724
742
|
z-index: 10;
|
725
743
|
}
|
726
744
|
|
727
|
-
[dir=rtl].handsontable .wtBorder.corner {
|
728
|
-
margin-left: 0;
|
729
|
-
margin-right: -4px;
|
730
|
-
}
|
731
|
-
|
732
745
|
.hot-display-license-info {
|
733
746
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Helvetica Neue, Arial, sans-serif;
|
734
747
|
padding: var(--ht-license-vertical-padding, 16px) var(--ht-license-horizontal-padding, 16px);
|
@@ -781,6 +794,13 @@
|
|
781
794
|
vertical-align: middle;
|
782
795
|
cursor: pointer;
|
783
796
|
appearance: none;
|
797
|
+
margin-top: -2px;
|
798
|
+
}
|
799
|
+
.handsontable .htCheckboxRendererInput:first-child {
|
800
|
+
margin-inline-end: var(--ht-gap-size);
|
801
|
+
}
|
802
|
+
.handsontable .htCheckboxRendererInput:last-child {
|
803
|
+
margin-inline-start: var(--ht-gap-size);
|
784
804
|
}
|
785
805
|
.handsontable .htCheckboxRendererInput::before {
|
786
806
|
content: "";
|
@@ -858,10 +878,6 @@
|
|
858
878
|
color: inherit;
|
859
879
|
margin: 0;
|
860
880
|
}
|
861
|
-
.handsontable .htCheckboxRendererLabel .htCheckboxRendererInput {
|
862
|
-
margin-top: -2px;
|
863
|
-
margin-inline-end: var(--ht-gap-size);
|
864
|
-
}
|
865
881
|
.handsontable .htCheckboxRendererLabel.fullWidth {
|
866
882
|
width: 100%;
|
867
883
|
}
|
@@ -939,7 +955,7 @@
|
|
939
955
|
width: 100%;
|
940
956
|
height: 100%;
|
941
957
|
padding: calc(var(--ht-cell-vertical-padding, 4px) + 1px) calc(var(--ht-cell-horizontal-padding, 8px) + 1px);
|
942
|
-
padding-
|
958
|
+
padding-inline-end: 26px;
|
943
959
|
margin: 0;
|
944
960
|
white-space: nowrap;
|
945
961
|
overflow: hidden;
|
@@ -1005,7 +1021,7 @@
|
|
1005
1021
|
visibility: hidden;
|
1006
1022
|
}
|
1007
1023
|
.handsontable.listbox table strong {
|
1008
|
-
font-weight:
|
1024
|
+
font-weight: bold;
|
1009
1025
|
color: inherit;
|
1010
1026
|
}
|
1011
1027
|
.handsontable.listbox table tr:hover td {
|
@@ -1151,10 +1167,21 @@
|
|
1151
1167
|
background: var(--ht-menu-item-hover-color);
|
1152
1168
|
}
|
1153
1169
|
|
1170
|
+
[dir=rtl].htDatepickerHolder .pika-single .pika-next {
|
1171
|
+
transform: rotate(180deg);
|
1172
|
+
margin-left: 0;
|
1173
|
+
margin-right: auto;
|
1174
|
+
}
|
1175
|
+
[dir=rtl].htDatepickerHolder .pika-single .pika-prev {
|
1176
|
+
transform: rotate(180deg);
|
1177
|
+
margin-left: auto;
|
1178
|
+
margin-right: 0;
|
1179
|
+
}
|
1180
|
+
|
1154
1181
|
.handsontable .htUISelectCaption {
|
1155
1182
|
width: 100%;
|
1156
1183
|
padding: var(--ht-input-vertical-padding) var(--ht-input-horizontal-padding);
|
1157
|
-
padding-
|
1184
|
+
padding-inline-end: calc(var(--ht-input-horizontal-padding) + var(--ht-icon-size));
|
1158
1185
|
margin: 0;
|
1159
1186
|
font-family: inherit;
|
1160
1187
|
font-size: var(--ht-font-size);
|
@@ -1205,6 +1232,11 @@
|
|
1205
1232
|
background-color: var(--ht-input-focus-background-color);
|
1206
1233
|
}
|
1207
1234
|
|
1235
|
+
[dir=rtl].handsontable .htUISelectCaption::after {
|
1236
|
+
right: auto;
|
1237
|
+
left: calc(var(--ht-input-horizontal-padding) - var(--ht-icon-size) / 4);
|
1238
|
+
}
|
1239
|
+
|
1208
1240
|
.handsontable .htFiltersMenuCondition .htUIInput input,
|
1209
1241
|
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input {
|
1210
1242
|
width: 100%;
|
@@ -1496,6 +1528,9 @@
|
|
1496
1528
|
.handsontable thead th.hiddenHeader:not(:first-of-type) {
|
1497
1529
|
display: none;
|
1498
1530
|
}
|
1531
|
+
.handsontable thead th.hiddenHeaderText .colHeader {
|
1532
|
+
opacity: 0;
|
1533
|
+
}
|
1499
1534
|
|
1500
1535
|
.handsontable th.ht_nestingLevels > .relative {
|
1501
1536
|
display: flex;
|
@@ -1839,7 +1874,7 @@
|
|
1839
1874
|
margin: 0 calc(var(--ht-gap-size, 2px) * -1);
|
1840
1875
|
}
|
1841
1876
|
.handsontable .htUIMultipleSelectHot {
|
1842
|
-
--ht-cell-
|
1877
|
+
--ht-cell-horizontal-padding: calc(
|
1843
1878
|
var(--ht-menu-item-horizontal-padding, 2px) +
|
1844
1879
|
var(--ht-gap-size, 2px) * 2);
|
1845
1880
|
overflow: initial !important;
|
@@ -1866,7 +1901,7 @@
|
|
1866
1901
|
}
|
1867
1902
|
.handsontable .htUIMultipleSelectHot .wtHolder td {
|
1868
1903
|
height: auto;
|
1869
|
-
padding: 4px var(--ht-cell-
|
1904
|
+
padding: 4px var(--ht-cell-horizontal-padding);
|
1870
1905
|
}
|
1871
1906
|
.handsontable .htUIClearAll,
|
1872
1907
|
.handsontable .htUISelectAll {
|
@@ -1876,6 +1911,8 @@
|
|
1876
1911
|
}
|
1877
1912
|
.handsontable .htUIClearAll a,
|
1878
1913
|
.handsontable .htUISelectAll a {
|
1914
|
+
font-size: var(--ht-font-size);
|
1915
|
+
line-height: var(--ht-line-height);
|
1879
1916
|
color: var(--ht-link-color);
|
1880
1917
|
border-radius: var(--ht-button-border-radius);
|
1881
1918
|
}
|
@@ -2068,79 +2105,6 @@
|
|
2068
2105
|
.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight {
|
2069
2106
|
box-shadow: none;
|
2070
2107
|
}
|
2071
|
-
.handsontable .ht_clone_top_inline_start_corner th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2072
|
-
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2073
|
-
.handsontable .ht_clone_top th.ht__active_highlight,
|
2074
|
-
.handsontable .ht_clone_top td.ht__active_highlight,
|
2075
|
-
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2076
|
-
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2077
|
-
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2078
|
-
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2079
|
-
.handsontable .ht_clone_top_inline_start_corner td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2080
|
-
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2081
|
-
.handsontable .ht_clone_top th.ht__active_highlight,
|
2082
|
-
.handsontable .ht_clone_top td.ht__active_highlight,
|
2083
|
-
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2084
|
-
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2085
|
-
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2086
|
-
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2087
|
-
.handsontable .ht_clone_top th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2088
|
-
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2089
|
-
.handsontable .ht_clone_top th.ht__active_highlight,
|
2090
|
-
.handsontable .ht_clone_top td.ht__active_highlight,
|
2091
|
-
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2092
|
-
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2093
|
-
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2094
|
-
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2095
|
-
.handsontable .ht_clone_top td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2096
|
-
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2097
|
-
.handsontable .ht_clone_top th.ht__active_highlight,
|
2098
|
-
.handsontable .ht_clone_top td.ht__active_highlight,
|
2099
|
-
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2100
|
-
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2101
|
-
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2102
|
-
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2103
|
-
.handsontable .ht_clone_bottom_inline_start_corner th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2104
|
-
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2105
|
-
.handsontable .ht_clone_top th.ht__active_highlight,
|
2106
|
-
.handsontable .ht_clone_top td.ht__active_highlight,
|
2107
|
-
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2108
|
-
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2109
|
-
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2110
|
-
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2111
|
-
.handsontable .ht_clone_bottom_inline_start_corner td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2112
|
-
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2113
|
-
.handsontable .ht_clone_top th.ht__active_highlight,
|
2114
|
-
.handsontable .ht_clone_top td.ht__active_highlight,
|
2115
|
-
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2116
|
-
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2117
|
-
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2118
|
-
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2119
|
-
.handsontable .ht_clone_bottom th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2120
|
-
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2121
|
-
.handsontable .ht_clone_top th.ht__active_highlight,
|
2122
|
-
.handsontable .ht_clone_top td.ht__active_highlight,
|
2123
|
-
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2124
|
-
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2125
|
-
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2126
|
-
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2127
|
-
.handsontable .ht_clone_bottom td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2128
|
-
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2129
|
-
.handsontable .ht_clone_top th.ht__active_highlight,
|
2130
|
-
.handsontable .ht_clone_top td.ht__active_highlight,
|
2131
|
-
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2132
|
-
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2133
|
-
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2134
|
-
.handsontable .ht_clone_bottom td.ht__active_highlight) {
|
2135
|
-
border-color: var(--ht-border-color);
|
2136
|
-
}
|
2137
|
-
.handsontable .ht_clone_inline_start th:not(.handsontable .ht_clone_inline_start th.ht__active_highlight,
|
2138
|
-
.handsontable .ht_clone_inline_start td.ht__active_highlight),
|
2139
|
-
.handsontable .ht_clone_inline_start td:not(.handsontable .ht_clone_inline_start th.ht__active_highlight,
|
2140
|
-
.handsontable .ht_clone_inline_start td.ht__active_highlight) {
|
2141
|
-
border-inline-start-color: var(--ht-border-color);
|
2142
|
-
border-inline-end-color: var(--ht-border-color);
|
2143
|
-
}
|
2144
2108
|
|
2145
2109
|
.handsontable .manualColumnResizer {
|
2146
2110
|
position: absolute;
|
@@ -2234,6 +2198,14 @@
|
|
2234
2198
|
z-index: 209;
|
2235
2199
|
}
|
2236
2200
|
|
2201
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight]:not([class*=fullySelectedMergedCell])::before {
|
2202
|
+
opacity: 0;
|
2203
|
+
}
|
2204
|
+
|
2205
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-multiple]::before {
|
2206
|
+
opacity: 0.14;
|
2207
|
+
}
|
2208
|
+
|
2237
2209
|
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-0]:before {
|
2238
2210
|
opacity: 0.14;
|
2239
2211
|
}
|