handsontable 0.0.0-next-fc6b71a-20231129 → 0.0.0-next-f76fee2-20231130
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/3rdparty/walkontable/src/calculator/constants.js +3 -6
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +1 -2
- package/3rdparty/walkontable/src/calculator/viewportRows.js +1 -2
- package/3rdparty/walkontable/src/cell/coords.js +1 -2
- package/3rdparty/walkontable/src/cell/range.js +1 -2
- package/3rdparty/walkontable/src/event.js +1 -2
- package/3rdparty/walkontable/src/filter/column.js +1 -2
- package/3rdparty/walkontable/src/filter/row.js +1 -2
- package/3rdparty/walkontable/src/index.js +2 -2
- package/3rdparty/walkontable/src/overlay/constants.js +7 -14
- package/3rdparty/walkontable/src/overlays.js +1 -2
- package/3rdparty/walkontable/src/scroll.js +1 -2
- package/3rdparty/walkontable/src/selection/border/border.js +1 -2
- package/3rdparty/walkontable/src/selection/border/constants.js +2 -3
- package/3rdparty/walkontable/src/selection/constants.js +8 -16
- package/3rdparty/walkontable/src/selection/selection.js +1 -2
- package/3rdparty/walkontable/src/table/bottom.js +1 -2
- package/3rdparty/walkontable/src/table/bottomInlineStartCorner.js +1 -2
- package/3rdparty/walkontable/src/table/inlineStart.js +1 -2
- package/3rdparty/walkontable/src/table/master.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/calculatedColumns.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/calculatedRows.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.js +1 -2
- package/3rdparty/walkontable/src/table/top.js +1 -2
- package/3rdparty/walkontable/src/table/topInlineStartCorner.js +1 -2
- package/3rdparty/walkontable/src/table.js +1 -2
- package/3rdparty/walkontable/src/utils/orderView/constants.js +3 -6
- package/3rdparty/walkontable/src/viewport.js +1 -2
- package/CHANGELOG.md +84 -15
- package/base.js +3 -4
- package/base.mjs +2 -2
- package/cellTypes/autocompleteType/autocompleteType.js +3 -5
- package/cellTypes/checkboxType/checkboxType.js +3 -5
- package/cellTypes/dateType/dateType.js +3 -5
- package/cellTypes/dropdownType/dropdownType.js +3 -5
- package/cellTypes/handsontableType/handsontableType.js +3 -5
- package/cellTypes/numericType/numericType.js +3 -5
- package/cellTypes/passwordType/passwordType.js +3 -5
- package/cellTypes/selectType/selectType.js +3 -5
- package/cellTypes/textType/textType.js +3 -5
- package/cellTypes/timeType/timeType.js +3 -5
- package/core.js +19 -9
- package/core.mjs +19 -9
- package/dataMap/dataMap.js +1 -2
- package/dataMap/dataSource.js +1 -2
- package/dataMap/metaManager/metaSchema.js +11 -11
- package/dataMap/metaManager/metaSchema.mjs +11 -11
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +5147 -5188
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +160 -150
- package/dist/handsontable.js +627 -1038
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +31 -31
- package/dist/languages/all.js +19 -38
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/ar-AR.js +1 -2
- package/dist/languages/cs-CZ.js +1 -2
- package/dist/languages/de-CH.js +1 -2
- package/dist/languages/de-DE.js +1 -2
- package/dist/languages/en-US.js +1 -2
- package/dist/languages/es-MX.js +1 -2
- package/dist/languages/fr-FR.js +1 -2
- package/dist/languages/it-IT.js +1 -2
- package/dist/languages/ja-JP.js +1 -2
- package/dist/languages/ko-KR.js +1 -2
- package/dist/languages/lv-LV.js +1 -2
- package/dist/languages/nb-NO.js +1 -2
- package/dist/languages/nl-NL.js +1 -2
- package/dist/languages/pl-PL.js +1 -2
- package/dist/languages/pt-BR.js +1 -2
- package/dist/languages/ru-RU.js +1 -2
- package/dist/languages/sr-SP.js +1 -2
- package/dist/languages/zh-CN.js +1 -2
- package/dist/languages/zh-TW.js +1 -2
- package/editorManager.js +2 -4
- package/editors/autocompleteEditor/autocompleteEditor.js +1 -2
- package/editors/baseEditor/baseEditor.js +3 -6
- package/editors/checkboxEditor/checkboxEditor.js +1 -2
- package/editors/dateEditor/dateEditor.js +1 -2
- package/editors/dropdownEditor/dropdownEditor.js +1 -2
- package/editors/handsontableEditor/handsontableEditor.js +1 -2
- package/editors/numericEditor/numericEditor.js +1 -2
- package/editors/passwordEditor/passwordEditor.js +1 -2
- package/editors/selectEditor/selectEditor.js +1 -2
- package/editors/textEditor/textEditor.js +1 -2
- package/editors/timeEditor/timeEditor.js +1 -2
- package/eventManager.js +1 -2
- package/helpers/dom/element.js +1 -2
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/helpers/unicode.js +1 -2
- package/i18n/constants.js +84 -166
- package/i18n/languages/ar-AR.js +3 -4
- package/i18n/languages/cs-CZ.js +3 -4
- package/i18n/languages/de-CH.js +3 -4
- package/i18n/languages/de-DE.js +3 -4
- package/i18n/languages/en-US.js +3 -4
- package/i18n/languages/es-MX.js +3 -4
- package/i18n/languages/fr-FR.js +3 -4
- package/i18n/languages/it-IT.js +3 -4
- package/i18n/languages/ja-JP.js +3 -4
- package/i18n/languages/ko-KR.js +3 -4
- package/i18n/languages/lv-LV.js +3 -4
- package/i18n/languages/nb-NO.js +3 -4
- package/i18n/languages/nl-NL.js +3 -4
- package/i18n/languages/pl-PL.js +3 -4
- package/i18n/languages/pt-BR.js +3 -4
- package/i18n/languages/ru-RU.js +3 -4
- package/i18n/languages/sr-SP.js +3 -4
- package/i18n/languages/zh-CN.js +3 -4
- package/i18n/languages/zh-TW.js +3 -4
- package/i18n/registry.js +4 -6
- package/index.js +3 -4
- package/languages/all.js +19 -38
- package/languages/ar-AR.js +1 -2
- package/languages/cs-CZ.js +1 -2
- package/languages/de-CH.js +1 -2
- package/languages/de-DE.js +1 -2
- package/languages/en-US.js +1 -2
- package/languages/es-MX.js +1 -2
- package/languages/fr-FR.js +1 -2
- package/languages/index.js +19 -38
- package/languages/it-IT.js +1 -2
- package/languages/ja-JP.js +1 -2
- package/languages/ko-KR.js +1 -2
- package/languages/lv-LV.js +1 -2
- package/languages/nb-NO.js +1 -2
- package/languages/nl-NL.js +1 -2
- package/languages/pl-PL.js +1 -2
- package/languages/pt-BR.js +1 -2
- package/languages/ru-RU.js +1 -2
- package/languages/sr-SP.js +1 -2
- package/languages/zh-CN.js +1 -2
- package/languages/zh-TW.js +1 -2
- package/mixins/hooksRefRegisterer.js +1 -2
- package/mixins/localHooks.js +1 -2
- package/package.json +1 -1
- package/pluginHooks.js +6 -5
- package/pluginHooks.mjs +5 -3
- package/plugins/autoColumnSize/autoColumnSize.js +2 -4
- package/plugins/autoRowSize/autoRowSize.js +2 -4
- package/plugins/autofill/autofill.js +2 -4
- package/plugins/autofill/utils.js +1 -2
- package/plugins/base/base.js +1 -2
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +2 -4
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +1 -2
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +1 -2
- package/plugins/collapsibleColumns/collapsibleColumns.js +2 -4
- package/plugins/columnSorting/columnSorting.js +4 -8
- package/plugins/columnSorting/sortFunction/checkbox.js +1 -2
- package/plugins/columnSorting/sortFunction/date.js +1 -2
- package/plugins/columnSorting/sortFunction/default.js +1 -2
- package/plugins/columnSorting/sortFunction/numeric.js +1 -2
- package/plugins/columnSorting/sortService/engine.js +3 -6
- package/plugins/columnSorting/utils.js +3 -6
- package/plugins/columnSummary/columnSummary.js +2 -4
- package/plugins/columnSummary/endpoints.js +1 -2
- package/plugins/comments/commentEditor.js +1 -2
- package/plugins/comments/comments.js +6 -12
- package/plugins/comments/contextMenuItem/addEditComment.js +2 -2
- package/plugins/comments/contextMenuItem/readOnlyComment.js +2 -2
- package/plugins/comments/contextMenuItem/removeComment.js +2 -2
- package/plugins/comments/displaySwitch.js +1 -2
- package/plugins/contextMenu/contextMenu.js +2 -4
- package/plugins/contextMenu/predefinedItems/alignment.js +3 -4
- package/plugins/contextMenu/predefinedItems/clearColumn.js +3 -4
- package/plugins/contextMenu/predefinedItems/columnLeft.js +3 -4
- package/plugins/contextMenu/predefinedItems/columnRight.js +3 -4
- package/plugins/contextMenu/predefinedItems/index.js +3 -4
- package/plugins/contextMenu/predefinedItems/noItems.js +1 -2
- package/plugins/contextMenu/predefinedItems/readOnly.js +3 -4
- package/plugins/contextMenu/predefinedItems/redo.js +3 -4
- package/plugins/contextMenu/predefinedItems/removeColumn.js +3 -4
- package/plugins/contextMenu/predefinedItems/removeRow.js +3 -4
- package/plugins/contextMenu/predefinedItems/rowAbove.js +3 -4
- package/plugins/contextMenu/predefinedItems/rowBelow.js +3 -4
- package/plugins/contextMenu/predefinedItems/separator.js +1 -2
- package/plugins/contextMenu/predefinedItems/undo.js +3 -4
- package/plugins/copyPaste/contextMenuItem/cut.js +2 -2
- package/plugins/copyPaste/copyPaste.js +2 -4
- package/plugins/customBorders/contextMenuItem/bottom.js +2 -2
- package/plugins/customBorders/contextMenuItem/left.js +2 -2
- package/plugins/customBorders/contextMenuItem/noBorders.js +2 -2
- package/plugins/customBorders/contextMenuItem/right.js +2 -2
- package/plugins/customBorders/contextMenuItem/top.js +2 -2
- package/plugins/customBorders/customBorders.js +4 -6
- package/plugins/dragToScroll/dragToScroll.js +2 -4
- package/plugins/dropdownMenu/dropdownMenu.js +2 -4
- package/plugins/exportFile/dataProvider.js +1 -2
- package/plugins/exportFile/exportFile.js +4 -6
- package/plugins/exportFile/typeFactory.js +5 -8
- package/plugins/exportFile/types/_base.js +1 -2
- package/plugins/exportFile/types/csv.js +1 -2
- package/plugins/filters/component/actionBar.js +2 -2
- package/plugins/filters/component/condition.js +2 -2
- package/plugins/filters/component/value.js +2 -2
- package/plugins/filters/condition/beginsWith.js +3 -4
- package/plugins/filters/condition/between.js +3 -4
- package/plugins/filters/condition/byValue.js +1 -2
- package/plugins/filters/condition/contains.js +3 -4
- package/plugins/filters/condition/date/after.js +3 -4
- package/plugins/filters/condition/date/before.js +3 -4
- package/plugins/filters/condition/date/today.js +3 -4
- package/plugins/filters/condition/date/tomorrow.js +3 -4
- package/plugins/filters/condition/date/yesterday.js +3 -4
- package/plugins/filters/condition/empty.js +3 -4
- package/plugins/filters/condition/endsWith.js +3 -4
- package/plugins/filters/condition/equal.js +3 -4
- package/plugins/filters/condition/false.js +1 -2
- package/plugins/filters/condition/greaterThan.js +3 -4
- package/plugins/filters/condition/greaterThanOrEqual.js +3 -4
- package/plugins/filters/condition/lessThan.js +3 -4
- package/plugins/filters/condition/lessThanOrEqual.js +3 -4
- package/plugins/filters/condition/none.js +3 -4
- package/plugins/filters/condition/notBetween.js +3 -4
- package/plugins/filters/condition/notContains.js +3 -4
- package/plugins/filters/condition/notEmpty.js +3 -4
- package/plugins/filters/condition/notEqual.js +3 -4
- package/plugins/filters/condition/true.js +1 -2
- package/plugins/filters/conditionCollection.js +1 -2
- package/plugins/filters/conditionRegisterer.js +1 -2
- package/plugins/filters/conditionUpdateObserver.js +1 -2
- package/plugins/filters/constants.js +4 -8
- package/plugins/filters/dataFilter.js +1 -2
- package/plugins/filters/filters.js +4 -6
- package/plugins/filters/logicalOperationRegisterer.js +1 -2
- package/plugins/filters/logicalOperations/conjunction.js +4 -6
- package/plugins/filters/logicalOperations/disjunction.js +4 -6
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +4 -6
- package/plugins/filters/ui/_base.js +2 -2
- package/plugins/filters/ui/multipleSelect.js +3 -4
- package/plugins/filters/ui/select.js +2 -2
- package/plugins/formulas/engine/settings.js +2 -4
- package/plugins/formulas/formulas.js +3 -6
- package/plugins/formulas/indexSyncer/axisSyncer.js +1 -2
- package/plugins/formulas/indexSyncer/index.js +1 -2
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +2 -2
- package/plugins/hiddenColumns/contextMenuItem/showColumn.js +2 -2
- package/plugins/hiddenColumns/hiddenColumns.js +2 -4
- package/plugins/hiddenRows/contextMenuItem/hideRow.js +2 -2
- package/plugins/hiddenRows/contextMenuItem/showRow.js +2 -2
- package/plugins/hiddenRows/hiddenRows.js +2 -4
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +2 -2
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +2 -2
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +2 -4
- package/plugins/manualColumnMove/manualColumnMove.js +2 -4
- package/plugins/manualColumnMove/ui/_base.js +1 -2
- package/plugins/manualColumnMove/ui/backlight.js +1 -2
- package/plugins/manualColumnMove/ui/guideline.js +1 -2
- package/plugins/manualColumnResize/manualColumnResize.js +2 -4
- package/plugins/manualRowMove/manualRowMove.js +2 -4
- package/plugins/manualRowMove/ui/_base.js +1 -2
- package/plugins/manualRowMove/ui/backlight.js +1 -2
- package/plugins/manualRowMove/ui/guideline.js +1 -2
- package/plugins/manualRowResize/manualRowResize.js +2 -4
- package/plugins/mergeCells/calculations/autofill.js +1 -2
- package/plugins/mergeCells/calculations/selection.js +1 -2
- package/plugins/mergeCells/cellCoords.js +1 -2
- package/plugins/mergeCells/cellsCollection.js +1 -2
- package/plugins/mergeCells/contextMenuItem/toggleMerge.js +2 -2
- package/plugins/mergeCells/mergeCells.js +3 -5
- package/plugins/mergeCells/mergeCells.mjs +1 -1
- package/plugins/multiColumnSorting/multiColumnSorting.js +2 -4
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +2 -4
- package/plugins/nestedHeaders/nestedHeaders.js +2 -4
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +1 -2
- package/plugins/nestedHeaders/utils/ghostTable.js +1 -2
- package/plugins/nestedRows/data/dataManager.js +1 -2
- package/plugins/nestedRows/nestedRows.js +2 -4
- package/plugins/nestedRows/ui/_base.js +1 -2
- package/plugins/nestedRows/ui/collapsing.js +1 -2
- package/plugins/nestedRows/ui/contextMenu.js +3 -4
- package/plugins/nestedRows/ui/headers.js +1 -2
- package/plugins/persistentState/persistentState.js +2 -4
- package/plugins/persistentState/storage.js +1 -2
- package/plugins/search/search.js +2 -4
- package/plugins/touchScroll/touchScroll.js +2 -4
- package/plugins/trimRows/trimRows.js +2 -4
- package/plugins/undoRedo/index.js +2 -2
- package/plugins/undoRedo/undoRedo.js +2 -4
- package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -2
- package/renderers/baseRenderer/baseRenderer.js +1 -2
- package/renderers/checkboxRenderer/checkboxRenderer.js +1 -2
- package/renderers/dateRenderer/dateRenderer.js +1 -2
- package/renderers/handsontableRenderer/handsontableRenderer.js +1 -2
- package/renderers/htmlRenderer/htmlRenderer.js +1 -2
- package/renderers/numericRenderer/numericRenderer.js +1 -2
- package/renderers/passwordRenderer/passwordRenderer.js +1 -2
- package/renderers/selectRenderer/selectRenderer.js +1 -2
- package/renderers/textRenderer/textRenderer.js +1 -2
- package/renderers/timeRenderer/timeRenderer.js +1 -2
- package/selection/highlight/highlight.js +1 -2
- package/selection/highlight/visualSelection.js +1 -2
- package/selection/range.js +1 -2
- package/selection/selection.js +3 -4
- package/selection/transformation.js +1 -2
- package/selection/utils.js +5 -10
- package/shortcutContexts/commands/editor/closeAndSave.js +2 -3
- package/shortcutContexts/commands/editor/closeWithoutSaving.js +2 -3
- package/shortcutContexts/commands/editor/fastOpen.js +2 -3
- package/shortcutContexts/commands/editor/open.js +2 -3
- package/shortcutContexts/commands/emptySelectedCells.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/down.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/downByViewportHeight.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/left.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/right.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toColumns.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostBottom.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineEnd.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineStart.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostLeft.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostRight.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostTop.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toRows.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/up.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/upByViewportHeight.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/down.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/downByViewportHeight.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/inlineEnd.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/inlineStart.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/left.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/right.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostBottom.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostBottomInlineEnd.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostInlineEnd.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostInlineStart.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostLeft.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostRight.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostTop.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostTopInlineStart.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/up.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/upByViewportHeight.js +2 -3
- package/shortcutContexts/commands/populateSelectedCellsData.js +2 -3
- package/shortcutContexts/commands/scrollToFocusedCell.js +2 -3
- package/shortcutContexts/commands/selectAllCells.js +2 -3
- package/shortcutContexts/commands/selectAllCellsAndHeaders.js +2 -3
- package/shortcutContexts/constants.js +2 -4
- package/shortcuts/context.js +1 -1
- package/shortcuts/context.mjs +1 -1
- package/shortcuts/manager.js +2 -2
- package/shortcuts/manager.mjs +2 -2
- package/tableView.js +1 -2
- package/utils/dataStructures/linkedList.js +1 -2
- package/utils/dataStructures/priorityMap.js +2 -4
- package/utils/dataStructures/queue.js +1 -2
- package/utils/dataStructures/stack.js +1 -2
- package/utils/dataStructures/tree.js +3 -6
- package/utils/ghostTable.js +1 -2
- package/utils/interval.js +1 -2
- package/utils/rootInstance.js +2 -4
- package/utils/samplesGenerator.js +1 -2
- package/utils/staticRegister.js +1 -2
- package/validators/autocompleteValidator/autocompleteValidator.js +1 -2
- package/validators/dateValidator/dateValidator.js +1 -2
- package/validators/numericValidator/numericValidator.js +1 -2
- package/validators/timeValidator/timeValidator.js +1 -2
@@ -4,13 +4,11 @@ exports.__esModule = true;
|
|
4
4
|
var _dropdownEditor = require("../../editors/dropdownEditor");
|
5
5
|
var _autocompleteRenderer = require("../../renderers/autocompleteRenderer");
|
6
6
|
var _autocompleteValidator = require("../../validators/autocompleteValidator");
|
7
|
-
const CELL_TYPE = 'dropdown';
|
8
|
-
exports.
|
9
|
-
const DropdownCellType = {
|
7
|
+
const CELL_TYPE = exports.CELL_TYPE = 'dropdown';
|
8
|
+
const DropdownCellType = exports.DropdownCellType = {
|
10
9
|
CELL_TYPE,
|
11
10
|
editor: _dropdownEditor.DropdownEditor,
|
12
11
|
// displays small gray arrow on right side of the cell
|
13
12
|
renderer: _autocompleteRenderer.autocompleteRenderer,
|
14
13
|
validator: _autocompleteValidator.autocompleteValidator
|
15
|
-
};
|
16
|
-
exports.DropdownCellType = DropdownCellType;
|
14
|
+
};
|
@@ -3,12 +3,10 @@
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var _handsontableEditor = require("../../editors/handsontableEditor");
|
5
5
|
var _handsontableRenderer = require("../../renderers/handsontableRenderer");
|
6
|
-
const CELL_TYPE = 'handsontable';
|
7
|
-
exports.
|
8
|
-
const HandsontableCellType = {
|
6
|
+
const CELL_TYPE = exports.CELL_TYPE = 'handsontable';
|
7
|
+
const HandsontableCellType = exports.HandsontableCellType = {
|
9
8
|
CELL_TYPE,
|
10
9
|
editor: _handsontableEditor.HandsontableEditor,
|
11
10
|
// displays small gray arrow on right side of the cell
|
12
11
|
renderer: _handsontableRenderer.handsontableRenderer
|
13
|
-
};
|
14
|
-
exports.HandsontableCellType = HandsontableCellType;
|
12
|
+
};
|
@@ -4,13 +4,11 @@ exports.__esModule = true;
|
|
4
4
|
var _numericEditor = require("../../editors/numericEditor");
|
5
5
|
var _numericRenderer = require("../../renderers/numericRenderer");
|
6
6
|
var _numericValidator = require("../../validators/numericValidator");
|
7
|
-
const CELL_TYPE = 'numeric';
|
8
|
-
exports.
|
9
|
-
const NumericCellType = {
|
7
|
+
const CELL_TYPE = exports.CELL_TYPE = 'numeric';
|
8
|
+
const NumericCellType = exports.NumericCellType = {
|
10
9
|
CELL_TYPE,
|
11
10
|
editor: _numericEditor.NumericEditor,
|
12
11
|
renderer: _numericRenderer.numericRenderer,
|
13
12
|
validator: _numericValidator.numericValidator,
|
14
13
|
dataType: 'number'
|
15
|
-
};
|
16
|
-
exports.NumericCellType = NumericCellType;
|
14
|
+
};
|
@@ -3,12 +3,10 @@
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var _passwordEditor = require("../../editors/passwordEditor");
|
5
5
|
var _passwordRenderer = require("../../renderers/passwordRenderer");
|
6
|
-
const CELL_TYPE = 'password';
|
7
|
-
exports.
|
8
|
-
const PasswordCellType = {
|
6
|
+
const CELL_TYPE = exports.CELL_TYPE = 'password';
|
7
|
+
const PasswordCellType = exports.PasswordCellType = {
|
9
8
|
CELL_TYPE,
|
10
9
|
editor: _passwordEditor.PasswordEditor,
|
11
10
|
renderer: _passwordRenderer.passwordRenderer,
|
12
11
|
copyable: false
|
13
|
-
};
|
14
|
-
exports.PasswordCellType = PasswordCellType;
|
12
|
+
};
|
@@ -3,11 +3,9 @@
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var _selectEditor = require("../../editors/selectEditor");
|
5
5
|
var _selectRenderer = require("../../renderers/selectRenderer");
|
6
|
-
const CELL_TYPE = 'select';
|
7
|
-
exports.
|
8
|
-
const SelectCellType = {
|
6
|
+
const CELL_TYPE = exports.CELL_TYPE = 'select';
|
7
|
+
const SelectCellType = exports.SelectCellType = {
|
9
8
|
CELL_TYPE,
|
10
9
|
editor: _selectEditor.SelectEditor,
|
11
10
|
renderer: _selectRenderer.selectRenderer
|
12
|
-
};
|
13
|
-
exports.SelectCellType = SelectCellType;
|
11
|
+
};
|
@@ -3,11 +3,9 @@
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var _textEditor = require("../../editors/textEditor");
|
5
5
|
var _textRenderer = require("../../renderers/textRenderer");
|
6
|
-
const CELL_TYPE = 'text';
|
7
|
-
exports.
|
8
|
-
const TextCellType = {
|
6
|
+
const CELL_TYPE = exports.CELL_TYPE = 'text';
|
7
|
+
const TextCellType = exports.TextCellType = {
|
9
8
|
CELL_TYPE,
|
10
9
|
editor: _textEditor.TextEditor,
|
11
10
|
renderer: _textRenderer.textRenderer
|
12
|
-
};
|
13
|
-
exports.TextCellType = TextCellType;
|
11
|
+
};
|
@@ -4,12 +4,10 @@ exports.__esModule = true;
|
|
4
4
|
var _timeEditor = require("../../editors/timeEditor");
|
5
5
|
var _timeRenderer = require("../../renderers/timeRenderer");
|
6
6
|
var _timeValidator = require("../../validators/timeValidator");
|
7
|
-
const CELL_TYPE = 'time';
|
8
|
-
exports.
|
9
|
-
const TimeCellType = {
|
7
|
+
const CELL_TYPE = exports.CELL_TYPE = 'time';
|
8
|
+
const TimeCellType = exports.TimeCellType = {
|
10
9
|
CELL_TYPE,
|
11
10
|
editor: _timeEditor.TimeEditor,
|
12
11
|
renderer: _timeRenderer.timeRenderer,
|
13
12
|
validator: _timeValidator.timeValidator
|
14
|
-
};
|
15
|
-
exports.TimeCellType = TimeCellType;
|
13
|
+
};
|
package/core.js
CHANGED
@@ -4008,22 +4008,25 @@ function Core(rootElement, userSettings) {
|
|
4008
4008
|
};
|
4009
4009
|
|
4010
4010
|
/**
|
4011
|
-
* Select the
|
4011
|
+
* Select all cells in the table excluding headers and corner elements.
|
4012
4012
|
*
|
4013
4013
|
* The previous selection is overwritten.
|
4014
4014
|
*
|
4015
4015
|
* ```js
|
4016
|
-
* //
|
4016
|
+
* // Select all cells in the table along with row headers, including all headers and the corner cell.
|
4017
|
+
* // Doesn't select column headers and corner elements.
|
4017
4018
|
* hot.selectAll();
|
4018
4019
|
*
|
4019
|
-
* //
|
4020
|
+
* // Select all cells in the table, including row headers but excluding the corner cell and column headers.
|
4020
4021
|
* hot.selectAll(true, false);
|
4021
4022
|
*
|
4022
|
-
* //
|
4023
|
-
* // highlight to position
|
4024
|
-
* hot.selectAll(-2, -1
|
4023
|
+
* // Select all cells in the table, including all headers and the corner cell, but move the focus.
|
4024
|
+
* // highlight to position 2, 1
|
4025
|
+
* hot.selectAll(-2, -1, {
|
4026
|
+
* focusPosition: { row: 2, col: 1 }
|
4027
|
+
* });
|
4025
4028
|
*
|
4026
|
-
* //
|
4029
|
+
* // Select all cells in the table, without headers and corner elements.
|
4027
4030
|
* hot.selectAll(false);
|
4028
4031
|
* ```
|
4029
4032
|
*
|
@@ -4035,11 +4038,18 @@ function Core(rootElement, userSettings) {
|
|
4035
4038
|
* @param {boolean} [includeColumnHeaders=false] `true` If the selection should include the column
|
4036
4039
|
* headers, `false` otherwise.
|
4037
4040
|
*
|
4038
|
-
* @param {object} [options] Additional object with options.
|
4041
|
+
* @param {object} [options] Additional object with options. Since 14.0.0
|
4039
4042
|
* @param {{row: number, col: number} | boolean} [options.focusPosition] The argument allows changing the cell/header
|
4040
4043
|
* focus position. The value takes an object with a `row` and `col` properties from -N to N, where
|
4041
4044
|
* negative values point to the headers and positive values point to the cell range. If `false`, the focus
|
4042
|
-
* position won't be changed.
|
4045
|
+
* position won't be changed. Example:
|
4046
|
+
* ```js
|
4047
|
+
* hot.selectAll(0, 0, {
|
4048
|
+
* focusPosition: { row: 0, col: 1 },
|
4049
|
+
* disableHeadersHighlight: true
|
4050
|
+
* })
|
4051
|
+
* ```
|
4052
|
+
*
|
4043
4053
|
* @param {boolean} [options.disableHeadersHighlight] If `true`, disables highlighting the headers even when
|
4044
4054
|
* the logical coordinates points on them.
|
4045
4055
|
*/
|
package/core.mjs
CHANGED
@@ -4003,22 +4003,25 @@ export default function Core(rootElement, userSettings) {
|
|
4003
4003
|
};
|
4004
4004
|
|
4005
4005
|
/**
|
4006
|
-
* Select the
|
4006
|
+
* Select all cells in the table excluding headers and corner elements.
|
4007
4007
|
*
|
4008
4008
|
* The previous selection is overwritten.
|
4009
4009
|
*
|
4010
4010
|
* ```js
|
4011
|
-
* //
|
4011
|
+
* // Select all cells in the table along with row headers, including all headers and the corner cell.
|
4012
|
+
* // Doesn't select column headers and corner elements.
|
4012
4013
|
* hot.selectAll();
|
4013
4014
|
*
|
4014
|
-
* //
|
4015
|
+
* // Select all cells in the table, including row headers but excluding the corner cell and column headers.
|
4015
4016
|
* hot.selectAll(true, false);
|
4016
4017
|
*
|
4017
|
-
* //
|
4018
|
-
* // highlight to position
|
4019
|
-
* hot.selectAll(-2, -1
|
4018
|
+
* // Select all cells in the table, including all headers and the corner cell, but move the focus.
|
4019
|
+
* // highlight to position 2, 1
|
4020
|
+
* hot.selectAll(-2, -1, {
|
4021
|
+
* focusPosition: { row: 2, col: 1 }
|
4022
|
+
* });
|
4020
4023
|
*
|
4021
|
-
* //
|
4024
|
+
* // Select all cells in the table, without headers and corner elements.
|
4022
4025
|
* hot.selectAll(false);
|
4023
4026
|
* ```
|
4024
4027
|
*
|
@@ -4030,11 +4033,18 @@ export default function Core(rootElement, userSettings) {
|
|
4030
4033
|
* @param {boolean} [includeColumnHeaders=false] `true` If the selection should include the column
|
4031
4034
|
* headers, `false` otherwise.
|
4032
4035
|
*
|
4033
|
-
* @param {object} [options] Additional object with options.
|
4036
|
+
* @param {object} [options] Additional object with options. Since 14.0.0
|
4034
4037
|
* @param {{row: number, col: number} | boolean} [options.focusPosition] The argument allows changing the cell/header
|
4035
4038
|
* focus position. The value takes an object with a `row` and `col` properties from -N to N, where
|
4036
4039
|
* negative values point to the headers and positive values point to the cell range. If `false`, the focus
|
4037
|
-
* position won't be changed.
|
4040
|
+
* position won't be changed. Example:
|
4041
|
+
* ```js
|
4042
|
+
* hot.selectAll(0, 0, {
|
4043
|
+
* focusPosition: { row: 0, col: 1 },
|
4044
|
+
* disableHeadersHighlight: true
|
4045
|
+
* })
|
4046
|
+
* ```
|
4047
|
+
*
|
4038
4048
|
* @param {boolean} [options.disableHeadersHighlight] If `true`, disables highlighting the headers even when
|
4039
4049
|
* the logical coordinates points on them.
|
4040
4050
|
*/
|
package/dataMap/dataMap.js
CHANGED
package/dataMap/dataSource.js
CHANGED
@@ -1149,8 +1149,8 @@ var _default = () => {
|
|
1149
1149
|
*
|
1150
1150
|
* | Setting | Description |
|
1151
1151
|
* | -------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|
1152
|
-
* | `true` (default) | - On pressing <kbd>**Ctrl**</kbd>/<kbd>**Cmd**</kbd
|
1153
|
-
* | `false`<br>(default for the [`password`](@/guides/cell-types/password-cell-type.md) [cell type](#type)) | - On pressing <kbd>**Ctrl**</kbd>/<kbd>**Cmd**</kbd
|
1152
|
+
* | `true` (default) | - On pressing <kbd>**Ctrl**</kbd>/<kbd>**Cmd**</kbd>+<kbd>**C**</kbd>, add the cell's value to the clipboard |
|
1153
|
+
* | `false`<br>(default for the [`password`](@/guides/cell-types/password-cell-type.md) [cell type](#type)) | - On pressing <kbd>**Ctrl**</kbd>/<kbd>**Cmd**</kbd>+<kbd>**C**</kbd>, add an empty string (`""`) to the clipboard |
|
1154
1154
|
*
|
1155
1155
|
* Read more:
|
1156
1156
|
* - [Clipboard](@/guides/cell-features/clipboard.md)
|
@@ -1900,8 +1900,8 @@ var _default = () => {
|
|
1900
1900
|
*
|
1901
1901
|
* | Property | Type | Description |
|
1902
1902
|
* | -------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
1903
|
-
* | `col` | Number | - On pressing <kbd>**Enter**</kbd>, move selection `col` columns right<br>- On pressing <kbd>**Shift**</kbd
|
1904
|
-
* | `row` | Number | - On pressing <kbd>**Enter**</kbd>, move selection `row` rows down<br>- On pressing <kbd>**Shift**</kbd
|
1903
|
+
* | `col` | Number | - On pressing <kbd>**Enter**</kbd>, move selection `col` columns right<br>- On pressing <kbd>**Shift**</kbd>+<kbd>**Enter**</kbd>, move selection `col` columns left |
|
1904
|
+
* | `row` | Number | - On pressing <kbd>**Enter**</kbd>, move selection `row` rows down<br>- On pressing <kbd>**Shift**</kbd>+<kbd>**Enter**</kbd>, move selection `row` rows up |
|
1905
1905
|
*
|
1906
1906
|
* Read more:
|
1907
1907
|
* - [`enterBeginsEditing`](#enterBeginsEditing)
|
@@ -3768,13 +3768,13 @@ var _default = () => {
|
|
3768
3768
|
* | Option | Possible settings | Description |
|
3769
3769
|
* | ------------------- | ----------------- | ---------------------------------------------------------------------------------------------------- |
|
3770
3770
|
* | `searchResultClass` | A string | Add a custom CSS class name to search results |
|
3771
|
-
* | `queryMethod` | A function | Add a [custom query method](@/guides/
|
3772
|
-
* | `callback` | A function | Add a [custom callback function](@/guides/
|
3771
|
+
* | `queryMethod` | A function | Add a [custom query method](@/guides/navigation/searching-values.md#custom-query-method) |
|
3772
|
+
* | `callback` | A function | Add a [custom callback function](@/guides/navigation/searching-values.md#custom-callback) |
|
3773
3773
|
*
|
3774
3774
|
* Read more:
|
3775
|
-
* - [Searching values](@/guides/
|
3776
|
-
* - [Searching values: Custom query method](@/guides/
|
3777
|
-
* - [Searching values: Custom callback](@/guides/
|
3775
|
+
* - [Searching values](@/guides/navigation/searching-values.md)
|
3776
|
+
* - [Searching values: Custom query method](@/guides/navigation/searching-values.md#custom-query-method)
|
3777
|
+
* - [Searching values: Custom callback](@/guides/navigation/searching-values.md#custom-callback)
|
3778
3778
|
*
|
3779
3779
|
* @memberof Options#
|
3780
3780
|
* @type {boolean|object}
|
@@ -4187,8 +4187,8 @@ var _default = () => {
|
|
4187
4187
|
*
|
4188
4188
|
* | Property | Type | Description |
|
4189
4189
|
* | -------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
4190
|
-
* | `row` | Number | - On pressing <kbd>**Tab**</kbd>, move selection `row` rows down<br>- On pressing <kbd>**Shift**</kbd
|
4191
|
-
* | `col` | Number | - On pressing <kbd>**Tab**</kbd>, move selection `col` columns right<br>- On pressing <kbd>**Shift**</kbd
|
4190
|
+
* | `row` | Number | - On pressing <kbd>**Tab**</kbd>, move selection `row` rows down<br>- On pressing <kbd>**Shift**</kbd>+<kbd>**Tab**</kbd>, move selection `row` rows up |
|
4191
|
+
* | `col` | Number | - On pressing <kbd>**Tab**</kbd>, move selection `col` columns right<br>- On pressing <kbd>**Shift**</kbd>+<kbd>**Tab**</kbd>, move selection `col` columns left |
|
4192
4192
|
*
|
4193
4193
|
* @memberof Options#
|
4194
4194
|
* @type {object|Function}
|
@@ -1146,8 +1146,8 @@ export default (() => {
|
|
1146
1146
|
*
|
1147
1147
|
* | Setting | Description |
|
1148
1148
|
* | -------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|
1149
|
-
* | `true` (default) | - On pressing <kbd>**Ctrl**</kbd>/<kbd>**Cmd**</kbd
|
1150
|
-
* | `false`<br>(default for the [`password`](@/guides/cell-types/password-cell-type.md) [cell type](#type)) | - On pressing <kbd>**Ctrl**</kbd>/<kbd>**Cmd**</kbd
|
1149
|
+
* | `true` (default) | - On pressing <kbd>**Ctrl**</kbd>/<kbd>**Cmd**</kbd>+<kbd>**C**</kbd>, add the cell's value to the clipboard |
|
1150
|
+
* | `false`<br>(default for the [`password`](@/guides/cell-types/password-cell-type.md) [cell type](#type)) | - On pressing <kbd>**Ctrl**</kbd>/<kbd>**Cmd**</kbd>+<kbd>**C**</kbd>, add an empty string (`""`) to the clipboard |
|
1151
1151
|
*
|
1152
1152
|
* Read more:
|
1153
1153
|
* - [Clipboard](@/guides/cell-features/clipboard.md)
|
@@ -1897,8 +1897,8 @@ export default (() => {
|
|
1897
1897
|
*
|
1898
1898
|
* | Property | Type | Description |
|
1899
1899
|
* | -------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
1900
|
-
* | `col` | Number | - On pressing <kbd>**Enter**</kbd>, move selection `col` columns right<br>- On pressing <kbd>**Shift**</kbd
|
1901
|
-
* | `row` | Number | - On pressing <kbd>**Enter**</kbd>, move selection `row` rows down<br>- On pressing <kbd>**Shift**</kbd
|
1900
|
+
* | `col` | Number | - On pressing <kbd>**Enter**</kbd>, move selection `col` columns right<br>- On pressing <kbd>**Shift**</kbd>+<kbd>**Enter**</kbd>, move selection `col` columns left |
|
1901
|
+
* | `row` | Number | - On pressing <kbd>**Enter**</kbd>, move selection `row` rows down<br>- On pressing <kbd>**Shift**</kbd>+<kbd>**Enter**</kbd>, move selection `row` rows up |
|
1902
1902
|
*
|
1903
1903
|
* Read more:
|
1904
1904
|
* - [`enterBeginsEditing`](#enterBeginsEditing)
|
@@ -3765,13 +3765,13 @@ export default (() => {
|
|
3765
3765
|
* | Option | Possible settings | Description |
|
3766
3766
|
* | ------------------- | ----------------- | ---------------------------------------------------------------------------------------------------- |
|
3767
3767
|
* | `searchResultClass` | A string | Add a custom CSS class name to search results |
|
3768
|
-
* | `queryMethod` | A function | Add a [custom query method](@/guides/
|
3769
|
-
* | `callback` | A function | Add a [custom callback function](@/guides/
|
3768
|
+
* | `queryMethod` | A function | Add a [custom query method](@/guides/navigation/searching-values.md#custom-query-method) |
|
3769
|
+
* | `callback` | A function | Add a [custom callback function](@/guides/navigation/searching-values.md#custom-callback) |
|
3770
3770
|
*
|
3771
3771
|
* Read more:
|
3772
|
-
* - [Searching values](@/guides/
|
3773
|
-
* - [Searching values: Custom query method](@/guides/
|
3774
|
-
* - [Searching values: Custom callback](@/guides/
|
3772
|
+
* - [Searching values](@/guides/navigation/searching-values.md)
|
3773
|
+
* - [Searching values: Custom query method](@/guides/navigation/searching-values.md#custom-query-method)
|
3774
|
+
* - [Searching values: Custom callback](@/guides/navigation/searching-values.md#custom-callback)
|
3775
3775
|
*
|
3776
3776
|
* @memberof Options#
|
3777
3777
|
* @type {boolean|object}
|
@@ -4184,8 +4184,8 @@ export default (() => {
|
|
4184
4184
|
*
|
4185
4185
|
* | Property | Type | Description |
|
4186
4186
|
* | -------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
4187
|
-
* | `row` | Number | - On pressing <kbd>**Tab**</kbd>, move selection `row` rows down<br>- On pressing <kbd>**Shift**</kbd
|
4188
|
-
* | `col` | Number | - On pressing <kbd>**Tab**</kbd>, move selection `col` columns right<br>- On pressing <kbd>**Shift**</kbd
|
4187
|
+
* | `row` | Number | - On pressing <kbd>**Tab**</kbd>, move selection `row` rows down<br>- On pressing <kbd>**Shift**</kbd>+<kbd>**Tab**</kbd>, move selection `row` rows up |
|
4188
|
+
* | `col` | Number | - On pressing <kbd>**Tab**</kbd>, move selection `col` columns right<br>- On pressing <kbd>**Shift**</kbd>+<kbd>**Tab**</kbd>, move selection `col` columns left |
|
4189
4189
|
*
|
4190
4190
|
* @memberof Options#
|
4191
4191
|
* @type {object|Function}
|
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:
|
28
|
+
* Version: 0.0.0-next-f76fee2-20231130
|
29
|
+
* Release date: 30/11/2023 (built at 30/11/2023 11:41:01)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -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:
|
28
|
+
* Version: 0.0.0-next-f76fee2-20231130
|
29
|
+
* Release date: 30/11/2023 (built at 30/11/2023 11:41:01)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|