handsontable 11.1.0 → 12.1.0
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/border.js +120 -98
- package/3rdparty/walkontable/src/border.mjs +120 -94
- package/3rdparty/walkontable/src/cell/coords.js +59 -17
- package/3rdparty/walkontable/src/cell/coords.mjs +55 -17
- package/3rdparty/walkontable/src/cell/range.d.ts +10 -2
- package/3rdparty/walkontable/src/cell/range.js +278 -99
- package/3rdparty/walkontable/src/cell/range.mjs +273 -99
- package/3rdparty/walkontable/src/core/_base.js +452 -0
- package/3rdparty/walkontable/src/core/_base.mjs +440 -0
- package/3rdparty/walkontable/src/core/clone.js +97 -0
- package/3rdparty/walkontable/src/core/clone.mjs +80 -0
- package/3rdparty/walkontable/src/core/core.js +183 -0
- package/3rdparty/walkontable/src/core/core.mjs +160 -0
- package/3rdparty/walkontable/src/event.js +99 -66
- package/3rdparty/walkontable/src/event.mjs +99 -63
- package/3rdparty/walkontable/src/facade/core.js +251 -0
- package/3rdparty/walkontable/src/facade/core.mjs +243 -0
- package/3rdparty/walkontable/src/index.js +2 -46
- package/3rdparty/walkontable/src/index.mjs +3 -13
- package/3rdparty/walkontable/src/overlay/_base.js +124 -57
- package/3rdparty/walkontable/src/overlay/_base.mjs +124 -57
- package/3rdparty/walkontable/src/overlay/bottom.js +96 -80
- package/3rdparty/walkontable/src/overlay/bottom.mjs +96 -80
- package/3rdparty/walkontable/src/overlay/{bottomLeftCorner.js → bottomInlineStartCorner.js} +45 -62
- package/3rdparty/walkontable/src/overlay/{bottomLeftCorner.mjs → bottomInlineStartCorner.mjs} +44 -61
- package/3rdparty/walkontable/src/overlay/constants.js +25 -9
- package/3rdparty/walkontable/src/overlay/constants.mjs +14 -4
- package/3rdparty/walkontable/src/overlay/index.js +10 -19
- package/3rdparty/walkontable/src/overlay/index.mjs +4 -5
- package/3rdparty/walkontable/src/overlay/{left.js → inlineStart.js} +113 -82
- package/3rdparty/walkontable/src/overlay/{left.mjs → inlineStart.mjs} +112 -81
- package/3rdparty/walkontable/src/overlay/top.js +93 -68
- package/3rdparty/walkontable/src/overlay/top.mjs +93 -68
- package/3rdparty/walkontable/src/overlay/{topLeftCorner.js → topInlineStartCorner.js} +56 -57
- package/3rdparty/walkontable/src/overlay/{topLeftCorner.mjs → topInlineStartCorner.mjs} +51 -52
- package/3rdparty/walkontable/src/overlays.js +225 -156
- package/3rdparty/walkontable/src/overlays.mjs +224 -154
- package/3rdparty/walkontable/src/renderer/cells.js +4 -3
- package/3rdparty/walkontable/src/renderer/cells.mjs +4 -3
- package/3rdparty/walkontable/src/renderer/colGroup.js +2 -2
- package/3rdparty/walkontable/src/renderer/colGroup.mjs +2 -2
- package/3rdparty/walkontable/src/renderer/columnHeaders.js +2 -2
- package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +2 -2
- package/3rdparty/walkontable/src/renderer/rowHeaders.js +2 -2
- package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +2 -2
- package/3rdparty/walkontable/src/renderer/rows.js +2 -2
- package/3rdparty/walkontable/src/renderer/rows.mjs +2 -2
- package/3rdparty/walkontable/src/scroll.js +125 -104
- package/3rdparty/walkontable/src/scroll.mjs +124 -104
- package/3rdparty/walkontable/src/selection.js +10 -14
- package/3rdparty/walkontable/src/selection.mjs +10 -12
- package/3rdparty/walkontable/src/settings.js +235 -126
- package/3rdparty/walkontable/src/settings.mjs +235 -125
- package/3rdparty/walkontable/src/table/bottom.js +16 -5
- package/3rdparty/walkontable/src/table/bottom.mjs +15 -5
- package/3rdparty/walkontable/src/table/{bottomLeftCorner.js → bottomInlineStartCorner.js} +27 -15
- package/3rdparty/walkontable/src/table/{bottomLeftCorner.mjs → bottomInlineStartCorner.mjs} +26 -15
- package/3rdparty/walkontable/src/table/{left.js → inlineStart.js} +23 -15
- package/3rdparty/walkontable/src/table/{left.mjs → inlineStart.mjs} +22 -15
- package/3rdparty/walkontable/src/table/master.js +22 -12
- package/3rdparty/walkontable/src/table/master.mjs +22 -12
- package/3rdparty/walkontable/src/table/mixin/calculatedColumns.js +12 -6
- package/3rdparty/walkontable/src/table/mixin/calculatedColumns.mjs +12 -6
- package/3rdparty/walkontable/src/table/mixin/calculatedRows.js +12 -6
- package/3rdparty/walkontable/src/table/mixin/calculatedRows.mjs +12 -6
- package/3rdparty/walkontable/src/table/mixin/{stickyColumnsLeft.js → stickyColumnsStart.js} +13 -7
- package/3rdparty/walkontable/src/table/mixin/{stickyColumnsLeft.mjs → stickyColumnsStart.mjs} +13 -7
- package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.js +11 -5
- package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.mjs +11 -5
- package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.js +9 -3
- package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.mjs +9 -3
- package/3rdparty/walkontable/src/table/top.js +16 -5
- package/3rdparty/walkontable/src/table/top.mjs +15 -5
- package/3rdparty/walkontable/src/table/{topLeftCorner.js → topInlineStartCorner.js} +27 -15
- package/3rdparty/walkontable/src/table/{topLeftCorner.mjs → topInlineStartCorner.mjs} +26 -15
- package/3rdparty/walkontable/src/table.js +235 -140
- package/3rdparty/walkontable/src/table.mjs +231 -134
- package/3rdparty/walkontable/src/types.js +103 -0
- package/3rdparty/walkontable/src/types.mjs +102 -0
- package/3rdparty/walkontable/src/utils/column.js +22 -33
- package/3rdparty/walkontable/src/utils/column.mjs +22 -30
- package/3rdparty/walkontable/src/utils/orderView/sharedView.js +2 -2
- package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +2 -2
- package/3rdparty/walkontable/src/utils/row.js +9 -4
- package/3rdparty/walkontable/src/utils/row.mjs +9 -4
- package/3rdparty/walkontable/src/viewport.js +89 -100
- package/3rdparty/walkontable/src/viewport.mjs +89 -97
- package/CHANGELOG.md +92 -0
- package/LICENSE.txt +1 -1
- package/README.md +0 -1
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/cellTypes/timeType/timeType.d.ts +6 -6
- package/cellTypes/timeType/timeType.js +4 -5
- package/cellTypes/timeType/timeType.mjs +4 -5
- package/core.d.ts +6 -1
- package/core.js +508 -80
- package/core.mjs +517 -92
- package/dataMap/index.js +4 -0
- package/dataMap/index.mjs +2 -1
- package/dataMap/metaManager/index.js +2 -2
- package/dataMap/metaManager/index.mjs +2 -2
- package/dataMap/metaManager/metaLayers/globalMeta.js +4 -0
- package/dataMap/metaManager/metaLayers/globalMeta.mjs +4 -0
- package/dataMap/metaManager/metaLayers/tableMeta.js +2 -2
- package/dataMap/metaManager/metaLayers/tableMeta.mjs +2 -2
- package/dataMap/metaManager/metaSchema.js +282 -187
- package/dataMap/metaManager/metaSchema.mjs +282 -187
- package/dataMap/metaManager/mods/extendMetaProperties.js +126 -0
- package/dataMap/metaManager/mods/extendMetaProperties.mjs +113 -0
- package/dataMap/replaceData.js +3 -17
- package/dataMap/replaceData.mjs +3 -17
- package/dist/handsontable.css +268 -92
- package/dist/handsontable.full.css +269 -103
- package/dist/handsontable.full.js +41990 -35658
- package/dist/handsontable.full.min.css +9 -9
- package/dist/handsontable.full.min.js +144 -144
- package/dist/handsontable.js +29561 -25597
- package/dist/handsontable.min.css +8 -8
- package/dist/handsontable.min.js +4 -4
- package/dist/languages/all.js +131 -34
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/ar-AR.js +167 -0
- package/dist/languages/ar-AR.min.js +1 -0
- package/dist/languages/cs-CZ.js +167 -0
- package/dist/languages/cs-CZ.min.js +1 -0
- package/dist/languages/de-CH.js +31 -29
- package/dist/languages/de-CH.min.js +1 -1
- package/dist/languages/de-DE.js +4 -2
- package/dist/languages/de-DE.min.js +1 -1
- package/dist/languages/en-US.js +4 -2
- package/dist/languages/en-US.min.js +1 -1
- package/dist/languages/es-MX.js +4 -2
- package/dist/languages/es-MX.min.js +1 -1
- package/dist/languages/fr-FR.js +4 -2
- package/dist/languages/fr-FR.min.js +1 -1
- package/dist/languages/it-IT.js +4 -2
- package/dist/languages/it-IT.min.js +1 -1
- package/dist/languages/ja-JP.js +36 -38
- package/dist/languages/ja-JP.min.js +1 -1
- package/dist/languages/ko-KR.js +36 -39
- package/dist/languages/ko-KR.min.js +1 -1
- package/dist/languages/lv-LV.js +2 -2
- package/dist/languages/lv-LV.min.js +1 -1
- package/dist/languages/nb-NO.js +2 -2
- package/dist/languages/nb-NO.min.js +1 -1
- package/dist/languages/nl-NL.js +2 -2
- package/dist/languages/nl-NL.min.js +1 -1
- package/dist/languages/pl-PL.js +2 -2
- package/dist/languages/pl-PL.min.js +1 -1
- package/dist/languages/pt-BR.js +2 -2
- package/dist/languages/pt-BR.min.js +1 -1
- package/dist/languages/ru-RU.js +2 -2
- package/dist/languages/ru-RU.min.js +1 -1
- package/dist/languages/sr-SP.js +171 -0
- package/dist/languages/sr-SP.min.js +1 -0
- package/dist/languages/zh-CN.js +24 -24
- package/dist/languages/zh-CN.min.js +1 -1
- package/dist/languages/zh-TW.js +24 -24
- package/dist/languages/zh-TW.min.js +1 -1
- package/editorManager.js +120 -267
- package/editorManager.mjs +128 -278
- package/editors/autocompleteEditor/autocompleteEditor.js +22 -25
- package/editors/autocompleteEditor/autocompleteEditor.mjs +22 -25
- package/editors/baseEditor/baseEditor.js +205 -34
- package/editors/baseEditor/baseEditor.mjs +200 -32
- package/editors/checkboxEditor/checkboxEditor.js +2 -2
- package/editors/checkboxEditor/checkboxEditor.mjs +2 -2
- package/editors/dateEditor/dateEditor.js +21 -8
- package/editors/dateEditor/dateEditor.mjs +22 -9
- package/editors/dropdownEditor/dropdownEditor.js +3 -3
- package/editors/dropdownEditor/dropdownEditor.mjs +3 -3
- package/editors/handsontableEditor/handsontableEditor.js +106 -55
- package/editors/handsontableEditor/handsontableEditor.mjs +106 -55
- package/editors/index.d.ts +3 -0
- package/editors/index.js +6 -0
- package/editors/index.mjs +3 -1
- package/editors/numericEditor/numericEditor.js +2 -2
- package/editors/numericEditor/numericEditor.mjs +2 -2
- package/editors/passwordEditor/passwordEditor.js +3 -3
- package/editors/passwordEditor/passwordEditor.mjs +3 -3
- package/editors/selectEditor/selectEditor.js +65 -110
- package/editors/selectEditor/selectEditor.mjs +66 -109
- package/editors/textEditor/caretPositioner.js +49 -0
- package/editors/textEditor/caretPositioner.mjs +42 -0
- package/editors/textEditor/textEditor.js +205 -181
- package/editors/textEditor/textEditor.mjs +199 -179
- package/editors/timeEditor/index.d.ts +1 -0
- package/editors/timeEditor/index.js +9 -0
- package/editors/timeEditor/index.mjs +1 -0
- package/editors/timeEditor/timeEditor.d.ts +7 -0
- package/editors/timeEditor/timeEditor.js +105 -0
- package/editors/timeEditor/timeEditor.mjs +84 -0
- package/eventManager.js +4 -2
- package/eventManager.mjs +4 -2
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/i18n/languages/ar-AR.js +41 -0
- package/i18n/languages/ar-AR.mjs +17 -0
- package/i18n/languages/cs-CZ.js +40 -0
- package/i18n/languages/cs-CZ.mjs +16 -0
- package/i18n/languages/index.js +12 -0
- package/i18n/languages/index.mjs +4 -1
- package/i18n/languages/sr-SP.js +40 -0
- package/i18n/languages/sr-SP.mjs +16 -0
- package/index.d.ts +4 -0
- package/languages/all.js +131 -34
- package/languages/ar-AR.js +167 -0
- package/languages/ar-AR.mjs +19 -0
- package/languages/cs-CZ.js +167 -0
- package/languages/cs-CZ.mjs +18 -0
- package/languages/de-CH.js +31 -29
- package/languages/de-DE.js +4 -2
- package/languages/en-US.js +4 -2
- package/languages/es-MX.js +4 -2
- package/languages/fr-FR.js +4 -2
- package/languages/index.js +131 -34
- package/languages/index.mjs +4 -1
- package/languages/it-IT.js +4 -2
- package/languages/ja-JP.js +36 -38
- package/languages/ko-KR.js +36 -39
- package/languages/lv-LV.js +2 -2
- package/languages/nb-NO.js +2 -2
- package/languages/nl-NL.js +2 -2
- package/languages/pl-PL.js +2 -2
- package/languages/pt-BR.js +2 -2
- package/languages/ru-RU.js +2 -2
- package/languages/sr-SP.js +171 -0
- package/languages/sr-SP.mjs +18 -0
- package/languages/zh-CN.js +24 -24
- package/languages/zh-TW.js +24 -24
- package/package.json +44 -4
- package/pluginHooks.js +49 -13
- package/pluginHooks.mjs +49 -13
- package/plugins/autoColumnSize/autoColumnSize.js +15 -10
- package/plugins/autoColumnSize/autoColumnSize.mjs +15 -10
- package/plugins/autoRowSize/autoRowSize.js +14 -9
- package/plugins/autoRowSize/autoRowSize.mjs +14 -9
- package/plugins/autofill/autofill.js +49 -33
- package/plugins/autofill/autofill.mjs +49 -32
- package/plugins/autofill/utils.js +10 -11
- package/plugins/autofill/utils.mjs +10 -10
- package/plugins/base/base.d.ts +8 -2
- package/plugins/base/base.js +67 -4
- package/plugins/base/base.mjs +66 -4
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +3 -3
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +3 -3
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +3 -3
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.mjs +3 -3
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +3 -3
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.mjs +3 -3
- package/plugins/collapsibleColumns/collapsibleColumns.js +27 -9
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +27 -9
- package/plugins/columnSorting/columnSorting.js +5 -7
- package/plugins/columnSorting/columnSorting.mjs +5 -6
- package/plugins/columnSummary/columnSummary.js +3 -3
- package/plugins/columnSummary/columnSummary.mjs +3 -3
- package/plugins/comments/commentEditor.js +18 -2
- package/plugins/comments/commentEditor.mjs +19 -3
- package/plugins/comments/comments.js +57 -46
- package/plugins/comments/comments.mjs +58 -46
- package/plugins/contextMenu/contextMenu.js +10 -6
- package/plugins/contextMenu/contextMenu.mjs +10 -6
- package/plugins/contextMenu/menu.js +222 -110
- package/plugins/contextMenu/menu.mjs +219 -111
- package/plugins/contextMenu/predefinedItems/columnLeft.js +12 -4
- package/plugins/contextMenu/predefinedItems/columnLeft.mjs +11 -4
- package/plugins/contextMenu/predefinedItems/columnRight.js +9 -9
- package/plugins/contextMenu/predefinedItems/columnRight.mjs +9 -9
- package/plugins/contextMenu/utils.js +2 -2
- package/plugins/contextMenu/utils.mjs +2 -2
- package/plugins/copyPaste/copyPaste.js +31 -21
- package/plugins/copyPaste/copyPaste.mjs +30 -21
- package/plugins/customBorders/contextMenuItem/left.js +4 -3
- package/plugins/customBorders/contextMenuItem/left.mjs +4 -3
- package/plugins/customBorders/contextMenuItem/right.js +4 -3
- package/plugins/customBorders/contextMenuItem/right.mjs +4 -3
- package/plugins/customBorders/customBorders.js +144 -87
- package/plugins/customBorders/customBorders.mjs +143 -85
- package/plugins/customBorders/utils.js +131 -27
- package/plugins/customBorders/utils.mjs +115 -27
- package/plugins/dragToScroll/dragToScroll.js +10 -5
- package/plugins/dragToScroll/dragToScroll.mjs +10 -5
- package/plugins/dropdownMenu/dropdownMenu.js +9 -7
- package/plugins/dropdownMenu/dropdownMenu.mjs +9 -7
- package/plugins/exportFile/exportFile.js +2 -2
- package/plugins/exportFile/exportFile.mjs +2 -2
- package/plugins/exportFile/types/csv.js +2 -2
- package/plugins/exportFile/types/csv.mjs +2 -2
- package/plugins/filters/component/actionBar.js +2 -2
- package/plugins/filters/component/actionBar.mjs +2 -2
- package/plugins/filters/component/condition.js +3 -3
- package/plugins/filters/component/condition.mjs +3 -3
- package/plugins/filters/component/operators.js +2 -2
- package/plugins/filters/component/operators.mjs +2 -2
- package/plugins/filters/component/value.js +3 -3
- package/plugins/filters/component/value.mjs +3 -3
- package/plugins/filters/filters.js +11 -8
- package/plugins/filters/filters.mjs +11 -8
- package/plugins/filters/ui/input.js +3 -3
- package/plugins/filters/ui/input.mjs +3 -3
- package/plugins/filters/ui/link.js +3 -3
- package/plugins/filters/ui/link.mjs +3 -3
- package/plugins/filters/ui/multipleSelect.js +18 -31
- package/plugins/filters/ui/multipleSelect.mjs +18 -31
- package/plugins/filters/ui/radioInput.js +3 -3
- package/plugins/filters/ui/radioInput.mjs +3 -3
- package/plugins/filters/ui/select.js +4 -4
- package/plugins/filters/ui/select.mjs +4 -4
- package/plugins/formulas/formulas.js +14 -9
- package/plugins/formulas/formulas.mjs +14 -9
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +2 -4
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.mjs +2 -4
- package/plugins/hiddenColumns/contextMenuItem/showColumn.js +5 -5
- package/plugins/hiddenColumns/contextMenuItem/showColumn.mjs +5 -5
- package/plugins/hiddenColumns/hiddenColumns.js +9 -4
- package/plugins/hiddenColumns/hiddenColumns.mjs +9 -4
- package/plugins/hiddenRows/contextMenuItem/hideRow.js +2 -4
- package/plugins/hiddenRows/contextMenuItem/hideRow.mjs +2 -4
- package/plugins/hiddenRows/contextMenuItem/showRow.js +5 -5
- package/plugins/hiddenRows/contextMenuItem/showRow.mjs +5 -5
- package/plugins/hiddenRows/hiddenRows.js +9 -4
- package/plugins/hiddenRows/hiddenRows.mjs +9 -4
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +1 -1
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +1 -1
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +1 -1
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +1 -1
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +54 -15
- package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +49 -15
- package/plugins/manualColumnMove/manualColumnMove.js +70 -70
- package/plugins/manualColumnMove/manualColumnMove.mjs +71 -71
- package/plugins/manualColumnMove/ui/_base.js +25 -12
- package/plugins/manualColumnMove/ui/_base.mjs +24 -12
- package/plugins/manualColumnMove/ui/backlight.js +3 -3
- package/plugins/manualColumnMove/ui/backlight.mjs +3 -3
- package/plugins/manualColumnMove/ui/guideline.js +3 -3
- package/plugins/manualColumnMove/ui/guideline.mjs +3 -3
- package/plugins/manualColumnResize/manualColumnResize.js +37 -21
- package/plugins/manualColumnResize/manualColumnResize.mjs +37 -21
- package/plugins/manualRowMove/manualRowMove.js +26 -34
- package/plugins/manualRowMove/manualRowMove.mjs +26 -34
- package/plugins/manualRowMove/ui/backlight.js +3 -3
- package/plugins/manualRowMove/ui/backlight.mjs +3 -3
- package/plugins/manualRowMove/ui/guideline.js +3 -3
- package/plugins/manualRowMove/ui/guideline.mjs +3 -3
- package/plugins/manualRowResize/manualRowResize.js +34 -19
- package/plugins/manualRowResize/manualRowResize.mjs +34 -19
- package/plugins/mergeCells/calculations/autofill.js +6 -5
- package/plugins/mergeCells/calculations/autofill.mjs +6 -4
- package/plugins/mergeCells/calculations/selection.js +9 -4
- package/plugins/mergeCells/calculations/selection.mjs +9 -4
- package/plugins/mergeCells/cellCoords.js +16 -4
- package/plugins/mergeCells/cellCoords.mjs +16 -3
- package/plugins/mergeCells/cellsCollection.js +30 -23
- package/plugins/mergeCells/cellsCollection.mjs +30 -22
- package/plugins/mergeCells/mergeCells.js +94 -61
- package/plugins/mergeCells/mergeCells.mjs +94 -59
- package/plugins/multiColumnSorting/multiColumnSorting.js +4 -6
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +4 -5
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +51 -57
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +52 -57
- package/plugins/nestedHeaders/nestedHeaders.js +31 -20
- package/plugins/nestedHeaders/nestedHeaders.mjs +31 -20
- package/plugins/nestedHeaders/stateManager/utils.js +3 -4
- package/plugins/nestedHeaders/stateManager/utils.mjs +3 -4
- package/plugins/nestedHeaders/utils/ghostTable.js +114 -75
- package/plugins/nestedHeaders/utils/ghostTable.mjs +114 -74
- package/plugins/nestedRows/nestedRows.js +9 -4
- package/plugins/nestedRows/nestedRows.mjs +9 -4
- package/plugins/nestedRows/ui/collapsing.js +2 -2
- package/plugins/nestedRows/ui/collapsing.mjs +2 -2
- package/plugins/nestedRows/ui/contextMenu.js +2 -2
- package/plugins/nestedRows/ui/contextMenu.mjs +2 -2
- package/plugins/nestedRows/ui/headers.js +2 -2
- package/plugins/nestedRows/ui/headers.mjs +2 -2
- package/plugins/nestedRows/utils/rowMoveController.js +2 -4
- package/plugins/nestedRows/utils/rowMoveController.mjs +2 -3
- package/plugins/persistentState/persistentState.js +9 -4
- package/plugins/persistentState/persistentState.mjs +9 -4
- package/plugins/search/search.js +9 -4
- package/plugins/search/search.mjs +9 -4
- package/plugins/touchScroll/touchScroll.js +27 -21
- package/plugins/touchScroll/touchScroll.mjs +27 -21
- package/plugins/trimRows/trimRows.js +9 -4
- package/plugins/trimRows/trimRows.mjs +9 -4
- package/plugins/undoRedo/undoRedo.js +53 -47
- package/plugins/undoRedo/undoRedo.mjs +53 -46
- package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -3
- package/renderers/autocompleteRenderer/autocompleteRenderer.mjs +1 -2
- package/renderers/checkboxRenderer/checkboxRenderer.js +48 -43
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +48 -41
- package/renderers/index.d.ts +4 -1
- package/renderers/index.js +6 -0
- package/renderers/index.mjs +3 -1
- package/renderers/numericRenderer/numericRenderer.js +1 -0
- package/renderers/numericRenderer/numericRenderer.mjs +1 -0
- package/renderers/timeRenderer/index.d.ts +1 -0
- package/renderers/timeRenderer/index.js +9 -0
- package/renderers/timeRenderer/index.mjs +1 -0
- package/renderers/timeRenderer/timeRenderer.d.ts +5 -0
- package/renderers/timeRenderer/timeRenderer.js +31 -0
- package/renderers/timeRenderer/timeRenderer.mjs +20 -0
- package/selection/highlight/visualSelection.js +94 -220
- package/selection/highlight/visualSelection.mjs +91 -213
- package/selection/mouseEventHandler.js +15 -10
- package/selection/mouseEventHandler.mjs +15 -9
- package/selection/range.js +4 -5
- package/selection/range.mjs +4 -5
- package/selection/selection.js +35 -22
- package/selection/selection.mjs +35 -20
- package/selection/transformation.js +4 -6
- package/selection/transformation.mjs +4 -5
- package/settings.d.ts +3 -1
- package/shortcuts/context.d.ts +20 -0
- package/shortcuts/context.js +296 -0
- package/shortcuts/context.mjs +268 -0
- package/shortcuts/index.d.ts +1 -0
- package/shortcuts/index.js +8 -0
- package/shortcuts/index.mjs +1 -0
- package/shortcuts/keyObserver.js +67 -0
- package/shortcuts/keyObserver.mjs +58 -0
- package/shortcuts/manager.d.ts +10 -0
- package/shortcuts/manager.js +185 -0
- package/shortcuts/manager.mjs +176 -0
- package/shortcuts/recorder.js +192 -0
- package/shortcuts/recorder.mjs +180 -0
- package/shortcuts/utils.js +77 -0
- package/shortcuts/utils.mjs +54 -0
- package/tableView.js +164 -84
- package/tableView.mjs +164 -74
- package/translations/changesObservable/observer.js +0 -1
- package/translations/changesObservable/observer.mjs +0 -1
- package/translations/indexMapper.d.ts +3 -1
- package/translations/indexMapper.js +89 -11
- package/translations/indexMapper.mjs +91 -20
- package/translations/mapCollections/aggregatedCollection.js +2 -2
- package/translations/mapCollections/aggregatedCollection.mjs +2 -2
- package/translations/maps/hidingMap.js +4 -2
- package/translations/maps/hidingMap.mjs +4 -2
- package/translations/maps/indexMap.js +2 -0
- package/translations/maps/indexMap.mjs +2 -0
- package/translations/maps/indexesSequence.js +5 -3
- package/translations/maps/indexesSequence.mjs +5 -3
- package/translations/maps/linkedPhysicalIndexToValueMap.js +5 -3
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +5 -3
- package/translations/maps/physicalIndexToValueMap.js +5 -3
- package/translations/maps/physicalIndexToValueMap.mjs +5 -3
- package/translations/maps/trimmingMap.js +4 -2
- package/translations/maps/trimmingMap.mjs +4 -2
- package/utils/dataStructures/uniqueMap.js +14 -1
- package/utils/dataStructures/uniqueMap.mjs +14 -1
- package/utils/dataStructures/uniqueSet.js +9 -0
- package/utils/dataStructures/uniqueSet.mjs +9 -0
- package/utils/ghostTable.js +1 -1
- package/utils/ghostTable.mjs +1 -1
- package/3rdparty/walkontable/src/core.js +0 -309
- package/3rdparty/walkontable/src/core.mjs +0 -293
- package/3rdparty/walkontable/src/overlay/registerer.js +0 -70
- package/3rdparty/walkontable/src/overlay/registerer.mjs +0 -57
- package/utils/keyStateObserver.js +0 -121
- package/utils/keyStateObserver.mjs +0 -103
@@ -19,14 +19,14 @@
|
|
19
19
|
* In any case, you must not make any such use of this software as to develop software which may be
|
20
20
|
* considered competitive with this software.
|
21
21
|
*
|
22
|
-
* UNLESS EXPRESSLY AGREED OTHERWISE, HANDSONCODE PROVIDES THIS SOFTWARE ON AN
|
22
|
+
* UNLESS EXPRESSLY AGREED OTHERWISE, HANDSONCODE PROVIDES THIS SOFTWARE ON AN "AS IS"
|
23
23
|
* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, AND IN NO EVENT AND UNDER NO
|
24
24
|
* LEGAL THEORY, SHALL HANDSONCODE BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT,
|
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:
|
29
|
-
* Release date:
|
28
|
+
* Version: 12.1.0
|
29
|
+
* Release date: 28/06/2022 (built at 28/06/2022 12:07:35)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -183,20 +183,21 @@
|
|
183
183
|
white-space: pre-wrap;
|
184
184
|
}
|
185
185
|
|
186
|
-
[dir=rtl]
|
187
|
-
[dir=rtl] .handsontable td {
|
186
|
+
[dir=rtl].handsontable th, [dir=rtl].handsontable td {
|
188
187
|
border-right-width: 0;
|
189
188
|
border-left: 1px solid #ccc;
|
190
189
|
}
|
191
190
|
|
192
191
|
.handsontable th:last-child {
|
193
192
|
/*Foundation framework fix*/
|
193
|
+
border-left: none;
|
194
194
|
border-right: 1px solid #ccc;
|
195
195
|
border-bottom: 1px solid #ccc;
|
196
196
|
}
|
197
197
|
|
198
|
-
[dir=rtl]
|
198
|
+
[dir=rtl].handsontable th:last-child {
|
199
199
|
/*Foundation framework fix*/
|
200
|
+
border-right: none;
|
200
201
|
border-left: 1px solid #ccc;
|
201
202
|
}
|
202
203
|
|
@@ -206,9 +207,7 @@
|
|
206
207
|
border-left: 1px solid #ccc;
|
207
208
|
}
|
208
209
|
|
209
|
-
[dir=rtl]
|
210
|
-
[dir=rtl] .handsontable th:nth-child(2),
|
211
|
-
[dir=rtl] .handsontable td:first-of-type {
|
210
|
+
[dir=rtl].handsontable th:first-child, [dir=rtl].handsontable th:nth-child(2), [dir=rtl].handsontable td:first-of-type {
|
212
211
|
border-right: 1px solid #ccc;
|
213
212
|
}
|
214
213
|
|
@@ -218,7 +217,7 @@
|
|
218
217
|
border-right: 1px solid #ccc;
|
219
218
|
}
|
220
219
|
|
221
|
-
[dir=rtl]
|
220
|
+
[dir=rtl].handsontable .ht_clone_top th:nth-child(2) {
|
222
221
|
border-right-width: 0;
|
223
222
|
border-left: 1px solid #ccc;
|
224
223
|
}
|
@@ -227,7 +226,7 @@
|
|
227
226
|
border-left: 1px solid #ccc;
|
228
227
|
}
|
229
228
|
|
230
|
-
[dir=rtl]
|
229
|
+
[dir=rtl].handsontable.htRowHeaders thead tr th:nth-child(2) {
|
231
230
|
border-right: 1px solid #ccc;
|
232
231
|
}
|
233
232
|
|
@@ -236,14 +235,13 @@
|
|
236
235
|
border-top: 1px solid #ccc;
|
237
236
|
}
|
238
237
|
|
239
|
-
.ht_master:not(.
|
240
|
-
.ht_master:not(.
|
238
|
+
.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable tbody tr th,
|
239
|
+
.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
|
241
240
|
border-right-width: 0;
|
242
241
|
border-left: 1px solid #ccc;
|
243
242
|
}
|
244
243
|
|
245
|
-
[dir=rtl]
|
246
|
-
[dir=rtl] .ht_master:not(.innerBorderLeft):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
|
244
|
+
[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable tbody tr th, [dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
|
247
245
|
border-left-width: 0;
|
248
246
|
border-right: 1px solid #ccc;
|
249
247
|
}
|
@@ -317,11 +315,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
317
315
|
z-index: 100;
|
318
316
|
}
|
319
317
|
|
320
|
-
.
|
321
|
-
z-index: 110;
|
322
|
-
}
|
323
|
-
|
324
|
-
.ht_clone_left {
|
318
|
+
.ht_clone_inline_start {
|
325
319
|
z-index: 120;
|
326
320
|
}
|
327
321
|
|
@@ -329,11 +323,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
329
323
|
z-index: 130;
|
330
324
|
}
|
331
325
|
|
332
|
-
.
|
333
|
-
z-index: 140;
|
334
|
-
}
|
335
|
-
|
336
|
-
.ht_clone_bottom_left_corner {
|
326
|
+
.ht_clone_bottom_inline_start_corner {
|
337
327
|
z-index: 150;
|
338
328
|
}
|
339
329
|
|
@@ -341,33 +331,10 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
341
331
|
z-index: 160;
|
342
332
|
}
|
343
333
|
|
344
|
-
.
|
345
|
-
z-index: 170;
|
346
|
-
}
|
347
|
-
|
348
|
-
.ht_clone_top_left_corner {
|
334
|
+
.ht_clone_top_inline_start_corner {
|
349
335
|
z-index: 180;
|
350
336
|
}
|
351
337
|
|
352
|
-
/*
|
353
|
-
Cell borders
|
354
|
-
*/
|
355
|
-
.handsontable tbody tr th:nth-last-child(2) {
|
356
|
-
border-right: 1px solid #ccc;
|
357
|
-
}
|
358
|
-
|
359
|
-
[dir=rtl] .handsontable tbody tr th:nth-last-child(2) {
|
360
|
-
border-left: 1px solid #ccc;
|
361
|
-
}
|
362
|
-
|
363
|
-
.ht_clone_top_left_corner thead tr th:nth-last-child(2) {
|
364
|
-
border-right: 1px solid #ccc;
|
365
|
-
}
|
366
|
-
|
367
|
-
[dir=rtl] .ht_clone_top_left_corner thead tr th:nth-last-child(2) {
|
368
|
-
border-left: 1px solid #ccc;
|
369
|
-
}
|
370
|
-
|
371
338
|
.handsontable col.hidden {
|
372
339
|
width: 0 !important;
|
373
340
|
}
|
@@ -379,7 +346,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
379
346
|
}
|
380
347
|
|
381
348
|
.ht_master,
|
382
|
-
.
|
349
|
+
.ht_clone_inline_start,
|
383
350
|
.ht_clone_top,
|
384
351
|
.ht_clone_bottom {
|
385
352
|
overflow: hidden;
|
@@ -391,12 +358,12 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
391
358
|
|
392
359
|
.handsontable .ht_master thead,
|
393
360
|
.handsontable .ht_master tr th,
|
394
|
-
.handsontable .
|
361
|
+
.handsontable .ht_clone_inline_start thead {
|
395
362
|
visibility: hidden;
|
396
363
|
}
|
397
364
|
|
398
365
|
.ht_clone_top .wtHolder,
|
399
|
-
.
|
366
|
+
.ht_clone_inline_start .wtHolder,
|
400
367
|
.ht_clone_bottom .wtHolder {
|
401
368
|
overflow: hidden;
|
402
369
|
}
|
@@ -472,13 +439,23 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
472
439
|
|
473
440
|
.handsontable .manualColumnResizerGuide {
|
474
441
|
position: absolute;
|
475
|
-
right:
|
442
|
+
right: unset;
|
476
443
|
top: 0;
|
477
444
|
background-color: #34a9db;
|
478
445
|
display: none;
|
479
446
|
width: 0;
|
480
447
|
border-right: 1px dashed #777;
|
448
|
+
border-left: none;
|
481
449
|
margin-left: 5px;
|
450
|
+
margin-right: unset;
|
451
|
+
}
|
452
|
+
|
453
|
+
[dir=rtl].handsontable .manualColumnResizerGuide {
|
454
|
+
left: unset;
|
455
|
+
border-left: 1px dashed #777;
|
456
|
+
border-right: none;
|
457
|
+
margin-right: 5px;
|
458
|
+
margin-left: unset;
|
482
459
|
}
|
483
460
|
|
484
461
|
.handsontable .manualRowResizerGuide {
|
@@ -505,9 +482,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
505
482
|
.handsontable .columnSorting.sortAction:hover {
|
506
483
|
text-decoration: underline;
|
507
484
|
cursor: pointer;
|
508
|
-
}
|
509
|
-
|
510
|
-
/* Arrow position */
|
485
|
+
} /* Arrow position */
|
511
486
|
.handsontable span.colHeader.columnSorting::before {
|
512
487
|
/* Centering start */
|
513
488
|
top: 50%;
|
@@ -516,8 +491,10 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
516
491
|
/* Centering end */
|
517
492
|
/* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
|
518
493
|
padding-left: 8px;
|
494
|
+
padding-right: 0;
|
519
495
|
position: absolute;
|
520
496
|
right: -9px;
|
497
|
+
left: unset;
|
521
498
|
content: "";
|
522
499
|
height: 10px;
|
523
500
|
width: 5px;
|
@@ -526,6 +503,16 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
526
503
|
background-position-x: right;
|
527
504
|
}
|
528
505
|
|
506
|
+
[dir=rtl].handsontable span.colHeader.columnSorting::before {
|
507
|
+
/* Centering end */
|
508
|
+
/* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
|
509
|
+
padding-right: 8px;
|
510
|
+
padding-left: 0;
|
511
|
+
left: -9px;
|
512
|
+
right: unset;
|
513
|
+
background-position-x: left;
|
514
|
+
}
|
515
|
+
|
529
516
|
.handsontable span.colHeader.columnSorting.ascending::before {
|
530
517
|
/* arrow up; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
|
531
518
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC");
|
@@ -688,6 +675,18 @@ TextRenderer readOnly cell
|
|
688
675
|
font-size: 9px;
|
689
676
|
}
|
690
677
|
|
678
|
+
[dir=rtl].handsontable .htSubmenu :after {
|
679
|
+
content: "";
|
680
|
+
}
|
681
|
+
|
682
|
+
[dir=rtl].handsontable .htSubmenu :before {
|
683
|
+
content: "◀";
|
684
|
+
color: #777;
|
685
|
+
position: absolute;
|
686
|
+
left: 5px;
|
687
|
+
font-size: 9px;
|
688
|
+
}
|
689
|
+
|
691
690
|
/*
|
692
691
|
TextRenderer horizontal alignment
|
693
692
|
*/
|
@@ -747,7 +746,7 @@ TextRenderer placeholder value
|
|
747
746
|
.handsontable.listbox tr:last-child th,
|
748
747
|
.handsontable.listbox tr:first-child td,
|
749
748
|
.handsontable.listbox td {
|
750
|
-
border-color: transparent;
|
749
|
+
border-color: transparent !important;
|
751
750
|
}
|
752
751
|
|
753
752
|
.handsontable.listbox th,
|
@@ -784,10 +783,11 @@ TextRenderer placeholder value
|
|
784
783
|
color: #583707;
|
785
784
|
}
|
786
785
|
|
787
|
-
.collapsibleIndicator {
|
786
|
+
.handsontable .collapsibleIndicator {
|
788
787
|
position: absolute;
|
789
788
|
top: 50%;
|
790
789
|
transform: translate(0%, -50%);
|
790
|
+
left: unset;
|
791
791
|
right: 5px;
|
792
792
|
border: 1px solid #A6A6A6;
|
793
793
|
line-height: 8px;
|
@@ -797,12 +797,17 @@ TextRenderer placeholder value
|
|
797
797
|
width: 10px;
|
798
798
|
height: 10px;
|
799
799
|
cursor: pointer;
|
800
|
-
-webkit-box-shadow: 0 0 0 6px
|
801
|
-
-moz-box-shadow: 0 0 0 6px
|
802
|
-
box-shadow: 0 0 0 6px
|
800
|
+
-webkit-box-shadow: 0 0 0 6px rgb(238, 238, 238);
|
801
|
+
-moz-box-shadow: 0 0 0 6px rgb(238, 238, 238);
|
802
|
+
box-shadow: 0 0 0 6px rgb(238, 238, 238);
|
803
803
|
background: #eee;
|
804
804
|
text-align: center;
|
805
805
|
}
|
806
|
+
|
807
|
+
[dir=rtl].handsontable .collapsibleIndicator {
|
808
|
+
right: unset;
|
809
|
+
left: 5px;
|
810
|
+
}
|
806
811
|
/*
|
807
812
|
|
808
813
|
Handsontable Mobile Text Editor stylesheet
|
@@ -827,20 +832,26 @@ TextRenderer placeholder value
|
|
827
832
|
-webkit-appearance: none;
|
828
833
|
}
|
829
834
|
|
830
|
-
.
|
831
|
-
.
|
835
|
+
.topSelectionHandle:not(.ht_master .topSelectionHandle),
|
836
|
+
.topSelectionHandle-HitArea:not(.ht_master .topSelectionHandle-HitArea) {
|
832
837
|
z-index: 9999;
|
833
838
|
}
|
834
839
|
|
835
840
|
/* Initial left/top coordinates - overwritten when actual position is set */
|
836
|
-
.
|
837
|
-
.
|
838
|
-
.
|
839
|
-
.
|
841
|
+
.handsontable .topSelectionHandle,
|
842
|
+
.handsontable .topSelectionHandle-HitArea,
|
843
|
+
.handsontable .bottomSelectionHandle,
|
844
|
+
.handsontable .bottomSelectionHandle-HitArea {
|
840
845
|
left: -10000px;
|
846
|
+
right: unset;
|
841
847
|
top: -10000px;
|
842
848
|
}
|
843
849
|
|
850
|
+
[dir=rtl].handsontable .topSelectionHandle, [dir=rtl].handsontable .topSelectionHandle-HitArea, [dir=rtl].handsontable .bottomSelectionHandle, [dir=rtl].handsontable .bottomSelectionHandle-HitArea {
|
851
|
+
right: -10000px;
|
852
|
+
left: unset;
|
853
|
+
}
|
854
|
+
|
844
855
|
.handsontable.hide-tween {
|
845
856
|
-webkit-animation: opacity-hide 0.3s;
|
846
857
|
animation: opacity-hide 0.3s;
|
@@ -884,10 +895,6 @@ http://nicolasgallagher.com/micro-clearfix-hack/
|
|
884
895
|
clear: both;
|
885
896
|
}
|
886
897
|
|
887
|
-
.pika-single {
|
888
|
-
*zoom: 1;
|
889
|
-
}
|
890
|
-
|
891
898
|
.pika-single.is-hidden {
|
892
899
|
display: none;
|
893
900
|
}
|
@@ -910,7 +917,6 @@ http://nicolasgallagher.com/micro-clearfix-hack/
|
|
910
917
|
|
911
918
|
.pika-label {
|
912
919
|
display: inline-block;
|
913
|
-
*display: inline;
|
914
920
|
position: relative;
|
915
921
|
z-index: 9999;
|
916
922
|
overflow: hidden;
|
@@ -929,7 +935,6 @@ http://nicolasgallagher.com/micro-clearfix-hack/
|
|
929
935
|
margin: 0;
|
930
936
|
left: 0;
|
931
937
|
top: 5px;
|
932
|
-
filter: alpha(opacity=0);
|
933
938
|
opacity: 0;
|
934
939
|
}
|
935
940
|
|
@@ -952,8 +957,6 @@ http://nicolasgallagher.com/micro-clearfix-hack/
|
|
952
957
|
background-repeat: no-repeat;
|
953
958
|
background-size: 75% 75%;
|
954
959
|
opacity: 0.5;
|
955
|
-
*position: absolute;
|
956
|
-
*top: 0;
|
957
960
|
}
|
958
961
|
|
959
962
|
.pika-prev:hover,
|
@@ -965,14 +968,12 @@ http://nicolasgallagher.com/micro-clearfix-hack/
|
|
965
968
|
.is-rtl .pika-next {
|
966
969
|
float: left;
|
967
970
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
|
968
|
-
*left: 0;
|
969
971
|
}
|
970
972
|
|
971
973
|
.pika-next,
|
972
974
|
.is-rtl .pika-prev {
|
973
975
|
float: right;
|
974
976
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
|
975
|
-
*right: 0;
|
976
977
|
}
|
977
978
|
|
978
979
|
.pika-prev.is-disabled,
|
@@ -983,7 +984,6 @@ http://nicolasgallagher.com/micro-clearfix-hack/
|
|
983
984
|
|
984
985
|
.pika-select {
|
985
986
|
display: inline-block;
|
986
|
-
*display: inline;
|
987
987
|
}
|
988
988
|
|
989
989
|
.pika-table {
|
@@ -1022,6 +1022,7 @@ http://nicolasgallagher.com/micro-clearfix-hack/
|
|
1022
1022
|
line-height: 15px;
|
1023
1023
|
text-align: right;
|
1024
1024
|
background: #f5f5f5;
|
1025
|
+
height: initial;
|
1025
1026
|
}
|
1026
1027
|
|
1027
1028
|
.pika-week {
|
@@ -1109,6 +1110,10 @@ AutocompleteRenderer down arrow
|
|
1109
1110
|
text-align: center;
|
1110
1111
|
}
|
1111
1112
|
|
1113
|
+
[dir=rtl].handsontable .htAutocompleteArrow {
|
1114
|
+
float: left;
|
1115
|
+
}
|
1116
|
+
|
1112
1117
|
.handsontable td .htAutocompleteArrow:hover {
|
1113
1118
|
color: #777;
|
1114
1119
|
}
|
@@ -1137,32 +1142,42 @@ CheckboxRenderer
|
|
1137
1142
|
.handsontable .htCheckboxRendererLabel.fullWidth {
|
1138
1143
|
width: 100%;
|
1139
1144
|
}
|
1140
|
-
.htCommentCell {
|
1145
|
+
.handsontable .htCommentCell {
|
1141
1146
|
position: relative;
|
1142
1147
|
}
|
1143
1148
|
|
1144
|
-
.htCommentCell:after {
|
1149
|
+
.handsontable .htCommentCell:after {
|
1145
1150
|
content: "";
|
1146
1151
|
position: absolute;
|
1147
1152
|
top: 0;
|
1148
1153
|
right: 0;
|
1154
|
+
left: unset;
|
1149
1155
|
border-left: 6px solid transparent;
|
1156
|
+
border-right: none;
|
1150
1157
|
border-top: 6px solid black;
|
1151
1158
|
}
|
1152
1159
|
|
1153
|
-
.
|
1160
|
+
[dir=rtl].handsontable .htCommentCell:after {
|
1161
|
+
left: 0;
|
1162
|
+
right: unset;
|
1163
|
+
border-right: 6px solid transparent;
|
1164
|
+
border-left: none;
|
1165
|
+
}
|
1166
|
+
|
1167
|
+
.htCommentsContainer .htComments {
|
1154
1168
|
display: none;
|
1155
1169
|
z-index: 1059;
|
1156
1170
|
position: absolute;
|
1157
1171
|
}
|
1158
1172
|
|
1159
|
-
.htCommentTextArea {
|
1173
|
+
.htCommentsContainer .htCommentTextArea {
|
1160
1174
|
box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px;
|
1161
1175
|
-webkit-box-sizing: border-box;
|
1162
1176
|
-moz-box-sizing: border-box;
|
1163
1177
|
box-sizing: border-box;
|
1164
1178
|
border: none;
|
1165
1179
|
border-left: 3px solid #ccc;
|
1180
|
+
border-right: none;
|
1166
1181
|
background-color: #fff;
|
1167
1182
|
width: 215px;
|
1168
1183
|
height: 90px;
|
@@ -1172,9 +1187,20 @@ CheckboxRenderer
|
|
1172
1187
|
-webkit-appearance: none;
|
1173
1188
|
}
|
1174
1189
|
|
1175
|
-
.htCommentTextArea
|
1190
|
+
[dir=rtl].htCommentsContainer .htCommentTextArea {
|
1191
|
+
border-right: 3px solid #ccc;
|
1192
|
+
border-left: none;
|
1193
|
+
}
|
1194
|
+
|
1195
|
+
.htCommentsContainer .htCommentTextArea:focus {
|
1176
1196
|
box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px, inset 0 0 0 1px #5292f7;
|
1177
1197
|
border-left: 3px solid #5292f7;
|
1198
|
+
border-right: none;
|
1199
|
+
}
|
1200
|
+
|
1201
|
+
[dir=rtl].htCommentsContainer .htCommentTextArea:focus {
|
1202
|
+
border-right: 3px solid #5292f7;
|
1203
|
+
border-left: none;
|
1178
1204
|
}
|
1179
1205
|
/*!
|
1180
1206
|
* Handsontable ContextMenu
|
@@ -1187,17 +1213,27 @@ CheckboxRenderer
|
|
1187
1213
|
}
|
1188
1214
|
|
1189
1215
|
.htContextMenu .ht_clone_top,
|
1190
|
-
.htContextMenu .
|
1191
|
-
.htContextMenu .
|
1216
|
+
.htContextMenu .ht_clone_bottom,
|
1217
|
+
.htContextMenu .ht_clone_inline_start,
|
1218
|
+
.htContextMenu .ht_clone_top_inline_start_corner,
|
1219
|
+
.htContextMenu .ht_clone_bottom_inline_start_corner {
|
1192
1220
|
display: none;
|
1193
1221
|
}
|
1194
1222
|
|
1195
1223
|
.htContextMenu .ht_master table.htCore {
|
1196
|
-
border:
|
1224
|
+
border-color: #ccc;
|
1225
|
+
border-style: solid;
|
1226
|
+
border-top-width: 1px;
|
1197
1227
|
border-bottom-width: 2px;
|
1228
|
+
border-left-width: 1px;
|
1198
1229
|
border-right-width: 2px;
|
1199
1230
|
}
|
1200
1231
|
|
1232
|
+
[dir=rtl].htContextMenu .ht_master table.htCore {
|
1233
|
+
border-right-width: 1px;
|
1234
|
+
border-left-width: 2px;
|
1235
|
+
}
|
1236
|
+
|
1201
1237
|
.htContextMenu .wtBorder {
|
1202
1238
|
visibility: hidden;
|
1203
1239
|
}
|
@@ -1213,7 +1249,15 @@ CheckboxRenderer
|
|
1213
1249
|
}
|
1214
1250
|
|
1215
1251
|
.htContextMenu table tbody tr td:first-child {
|
1216
|
-
border: 0;
|
1252
|
+
border-top-width: 0;
|
1253
|
+
border-bottom-width: 0;
|
1254
|
+
border-left-width: 0;
|
1255
|
+
border-right-width: 0;
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
[dir=rtl].htContextMenu table tbody tr td:first-child {
|
1259
|
+
border-right-width: 0;
|
1260
|
+
border-left-width: 0;
|
1217
1261
|
}
|
1218
1262
|
|
1219
1263
|
.htContextMenu table tbody tr td.htDimmed {
|
@@ -1286,6 +1330,10 @@ textarea.HandsontableCopyPaste {
|
|
1286
1330
|
float: right;
|
1287
1331
|
}
|
1288
1332
|
|
1333
|
+
[dir=rtl].handsontable .changeType {
|
1334
|
+
float: left;
|
1335
|
+
}
|
1336
|
+
|
1289
1337
|
.handsontable .changeType:before {
|
1290
1338
|
content: "▼ ";
|
1291
1339
|
}
|
@@ -1304,17 +1352,27 @@ textarea.HandsontableCopyPaste {
|
|
1304
1352
|
}
|
1305
1353
|
|
1306
1354
|
.htDropdownMenu .ht_clone_top,
|
1307
|
-
.htDropdownMenu .
|
1308
|
-
.htDropdownMenu .
|
1355
|
+
.htDropdownMenu .ht_clone_bottom,
|
1356
|
+
.htDropdownMenu .ht_clone_inline_start,
|
1357
|
+
.htDropdownMenu .ht_clone_top_inline_start_corner,
|
1358
|
+
.htDropdownMenu .ht_clone_bottom_inline_start_corner {
|
1309
1359
|
display: none;
|
1310
1360
|
}
|
1311
1361
|
|
1312
1362
|
.htDropdownMenu table.htCore {
|
1313
|
-
border:
|
1363
|
+
border-color: #ccc;
|
1364
|
+
border-style: solid;
|
1365
|
+
border-top-width: 1px;
|
1314
1366
|
border-bottom-width: 2px;
|
1367
|
+
border-left-width: 1px;
|
1315
1368
|
border-right-width: 2px;
|
1316
1369
|
}
|
1317
1370
|
|
1371
|
+
[dir=rtl].htDropdownMenu table.htCore {
|
1372
|
+
border-right-width: 1px;
|
1373
|
+
border-left-width: 2px;
|
1374
|
+
}
|
1375
|
+
|
1318
1376
|
.htDropdownMenu .wtBorder {
|
1319
1377
|
visibility: hidden;
|
1320
1378
|
}
|
@@ -1330,7 +1388,15 @@ textarea.HandsontableCopyPaste {
|
|
1330
1388
|
}
|
1331
1389
|
|
1332
1390
|
.htDropdownMenu table tbody tr td:first-child {
|
1333
|
-
border: 0;
|
1391
|
+
border-top-width: 0;
|
1392
|
+
border-right-width: 0;
|
1393
|
+
border-bottom-width: 0;
|
1394
|
+
border-left-width: 0;
|
1395
|
+
}
|
1396
|
+
|
1397
|
+
[dir=rtl].htDropdownMenu table tbody tr td:first-child {
|
1398
|
+
border-left-width: 0;
|
1399
|
+
border-right-width: 0;
|
1334
1400
|
}
|
1335
1401
|
|
1336
1402
|
.htDropdownMenu table tbody tr td.htDimmed {
|
@@ -1390,7 +1456,7 @@ textarea.HandsontableCopyPaste {
|
|
1390
1456
|
}
|
1391
1457
|
|
1392
1458
|
.htFiltersConditionsMenu .ht_clone_top,
|
1393
|
-
.htFiltersConditionsMenu .
|
1459
|
+
.htFiltersConditionsMenu .ht_clone_inline_start,
|
1394
1460
|
.htFiltersConditionsMenu .ht_clone_corner {
|
1395
1461
|
display: none;
|
1396
1462
|
}
|
@@ -1416,7 +1482,15 @@ textarea.HandsontableCopyPaste {
|
|
1416
1482
|
}
|
1417
1483
|
|
1418
1484
|
.htFiltersConditionsMenu table tbody tr td:first-child {
|
1419
|
-
border: 0;
|
1485
|
+
border-top-width: 0;
|
1486
|
+
border-right-width: 0;
|
1487
|
+
border-bottom-width: 0;
|
1488
|
+
border-left-width: 0;
|
1489
|
+
}
|
1490
|
+
|
1491
|
+
[dir=rtl].htFiltersConditionsMenu table tbody tr td:first-child {
|
1492
|
+
border-left-width: 0;
|
1493
|
+
border-right-width: 0;
|
1420
1494
|
}
|
1421
1495
|
|
1422
1496
|
.htFiltersConditionsMenu table tbody tr td.htDimmed {
|
@@ -1521,9 +1595,15 @@ textarea.HandsontableCopyPaste {
|
|
1521
1595
|
}
|
1522
1596
|
|
1523
1597
|
.handsontable .htUISelectAll {
|
1598
|
+
margin-left: 0;
|
1524
1599
|
margin-right: 10px;
|
1525
1600
|
}
|
1526
1601
|
|
1602
|
+
[dir=rtl].handsontable .htUISelectAll {
|
1603
|
+
margin-right: 0;
|
1604
|
+
margin-left: 10px;
|
1605
|
+
}
|
1606
|
+
|
1527
1607
|
.handsontable .htUIClearAll, .handsontable .htUISelectAll {
|
1528
1608
|
display: inline-block;
|
1529
1609
|
}
|
@@ -1536,12 +1616,24 @@ textarea.HandsontableCopyPaste {
|
|
1536
1616
|
text-align: right;
|
1537
1617
|
}
|
1538
1618
|
|
1619
|
+
[dir=rtl].handsontable .htUISelectionControls {
|
1620
|
+
text-align: left;
|
1621
|
+
}
|
1622
|
+
|
1539
1623
|
.handsontable .htCheckboxRendererInput {
|
1540
|
-
margin: 0
|
1624
|
+
margin-top: 0;
|
1625
|
+
margin-right: 5px;
|
1626
|
+
margin-bottom: 0;
|
1627
|
+
margin-left: 0;
|
1541
1628
|
vertical-align: middle;
|
1542
1629
|
height: 1em;
|
1543
1630
|
}
|
1544
1631
|
|
1632
|
+
[dir=rtl].handsontable .htCheckboxRendererInput {
|
1633
|
+
margin-left: 5px;
|
1634
|
+
margin-right: 0;
|
1635
|
+
}
|
1636
|
+
|
1545
1637
|
/* UI elements */
|
1546
1638
|
/* Input */
|
1547
1639
|
.handsontable .htUIInput {
|
@@ -1585,9 +1677,15 @@ textarea.HandsontableCopyPaste {
|
|
1585
1677
|
}
|
1586
1678
|
|
1587
1679
|
.handsontable .htUIInput.htUIButtonOK {
|
1680
|
+
margin-left: 0;
|
1588
1681
|
margin-right: 10px;
|
1589
1682
|
}
|
1590
1683
|
|
1684
|
+
[dir=rtl].handsontable .htUIInput.htUIButtonOK {
|
1685
|
+
margin-right: 0;
|
1686
|
+
margin-left: 10px;
|
1687
|
+
}
|
1688
|
+
|
1591
1689
|
.handsontable .htUIInput.htUIButtonOK input {
|
1592
1690
|
background-color: #0f9d58;
|
1593
1691
|
border-color: #18804e;
|
@@ -1656,18 +1754,30 @@ textarea.HandsontableCopyPaste {
|
|
1656
1754
|
|
1657
1755
|
.handsontable .htUIRadio {
|
1658
1756
|
display: inline-block;
|
1757
|
+
margin-left: 0;
|
1659
1758
|
margin-right: 5px;
|
1660
1759
|
height: 100%;
|
1661
1760
|
}
|
1662
1761
|
|
1762
|
+
[dir=rtl].handsontable .htUIRadio {
|
1763
|
+
margin-right: 0;
|
1764
|
+
margin-left: 5px;
|
1765
|
+
}
|
1766
|
+
|
1663
1767
|
.handsontable .htUIRadio:last-child {
|
1664
1768
|
margin-right: 0;
|
1665
1769
|
}
|
1666
1770
|
|
1667
1771
|
.handsontable .htUIRadio > input[type=radio] {
|
1772
|
+
margin-left: 0;
|
1668
1773
|
margin-right: 0.5ex;
|
1669
1774
|
}
|
1670
1775
|
|
1776
|
+
[dir=rtl].handsontable .htUIRadio > input[type=radio] {
|
1777
|
+
margin-right: 0;
|
1778
|
+
margin-left: 0.5ex;
|
1779
|
+
}
|
1780
|
+
|
1671
1781
|
.handsontable .htUIRadio label {
|
1672
1782
|
vertical-align: middle;
|
1673
1783
|
}
|
@@ -1698,12 +1808,24 @@ textarea.HandsontableCopyPaste {
|
|
1698
1808
|
|
1699
1809
|
.handsontable th.beforeHiddenColumn::after {
|
1700
1810
|
right: 1px;
|
1701
|
-
content: "◀";
|
1811
|
+
content: "◀"; /* left arrow */
|
1812
|
+
}
|
1813
|
+
|
1814
|
+
[dir=rtl].handsontable th.beforeHiddenColumn::after {
|
1815
|
+
right: initial;
|
1816
|
+
left: 1px;
|
1817
|
+
content: "▶"; /* right arrow */
|
1702
1818
|
}
|
1703
1819
|
|
1704
1820
|
.handsontable th.afterHiddenColumn::before {
|
1705
1821
|
left: 1px;
|
1706
|
-
content: "▶";
|
1822
|
+
content: "▶"; /* right arrow */
|
1823
|
+
}
|
1824
|
+
|
1825
|
+
[dir=rtl].handsontable th.afterHiddenColumn::before {
|
1826
|
+
right: 1px;
|
1827
|
+
left: initial;
|
1828
|
+
content: "◀"; /* left arrow */
|
1707
1829
|
}
|
1708
1830
|
@charset "UTF-8";
|
1709
1831
|
/*!
|
@@ -1742,8 +1864,8 @@ textarea.HandsontableCopyPaste {
|
|
1742
1864
|
.handsontable th.afterHiddenRow.firstVisibleRow {
|
1743
1865
|
border-top: 1px solid #CCC;
|
1744
1866
|
}
|
1745
|
-
.htRowHeaders .ht_master.
|
1746
|
-
.htRowHeaders .ht_master.
|
1867
|
+
.htRowHeaders .ht_master.innerBorderInlineStart ~ .ht_clone_top_inline_start_corner th:nth-child(2),
|
1868
|
+
.htRowHeaders .ht_master.innerBorderInlineStart ~ .ht_clone_inline_start td:first-of-type {
|
1747
1869
|
border-left: 0 none;
|
1748
1870
|
}
|
1749
1871
|
.handsontable .wtHider {
|
@@ -1780,7 +1902,8 @@ textarea.HandsontableCopyPaste {
|
|
1780
1902
|
background: #757575;
|
1781
1903
|
width: 2px;
|
1782
1904
|
top: 0;
|
1783
|
-
margin-
|
1905
|
+
margin-inline-start: -1px;
|
1906
|
+
margin-inline-end: 0;
|
1784
1907
|
z-index: 205;
|
1785
1908
|
}
|
1786
1909
|
|
@@ -1894,8 +2017,10 @@ textarea.HandsontableCopyPaste {
|
|
1894
2017
|
/* Centering end */
|
1895
2018
|
position: absolute;
|
1896
2019
|
right: -15px;
|
2020
|
+
left: unset;
|
1897
2021
|
/* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */
|
1898
2022
|
padding-left: 5px;
|
2023
|
+
padding-right: unset;
|
1899
2024
|
font-size: 8px;
|
1900
2025
|
height: 8px;
|
1901
2026
|
line-height: 1.1;
|
@@ -1903,6 +2028,14 @@ textarea.HandsontableCopyPaste {
|
|
1903
2028
|
text-decoration: underline;
|
1904
2029
|
}
|
1905
2030
|
|
2031
|
+
[dir=rtl].handsontable span.colHeader.columnSorting::after {
|
2032
|
+
left: -15px;
|
2033
|
+
right: unset;
|
2034
|
+
/* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */
|
2035
|
+
padding-right: 5px;
|
2036
|
+
padding-left: unset;
|
2037
|
+
}
|
2038
|
+
|
1906
2039
|
/* Workaround for IE9 - IE11, https://stackoverflow.com/a/21902566, https://stackoverflow.com/a/32120247 */
|
1907
2040
|
.handsontable span.colHeader.columnSorting::after {
|
1908
2041
|
text-decoration: none;
|
@@ -1955,15 +2088,32 @@ textarea.HandsontableCopyPaste {
|
|
1955
2088
|
padding-left: 7px;
|
1956
2089
|
}
|
1957
2090
|
|
2091
|
+
[dir=rtl].handsontable th.ht_nestingLevels {
|
2092
|
+
text-align: right;
|
2093
|
+
padding-right: 7px;
|
2094
|
+
}
|
2095
|
+
|
1958
2096
|
.handsontable th div.ht_nestingLevels {
|
1959
2097
|
display: inline-block;
|
1960
2098
|
position: absolute;
|
1961
2099
|
left: 11px;
|
2100
|
+
right: unset;
|
2101
|
+
}
|
2102
|
+
|
2103
|
+
[dir=rtl].handsontable th div.ht_nestingLevels {
|
2104
|
+
right: 11px;
|
2105
|
+
left: unset;
|
1962
2106
|
}
|
1963
2107
|
|
1964
|
-
.handsontable.
|
1965
|
-
.handsontable.
|
2108
|
+
.handsontable.innerBorderInlineStart th div.ht_nestingLevels,
|
2109
|
+
.handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingLevels {
|
1966
2110
|
right: 10px;
|
2111
|
+
left: unset;
|
2112
|
+
}
|
2113
|
+
|
2114
|
+
[dir=rtl].handsontable.innerBorderInlineStart th div.ht_nestingLevels, [dir=rtl].handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingLevels {
|
2115
|
+
left: 10px;
|
2116
|
+
right: unset;
|
1967
2117
|
}
|
1968
2118
|
|
1969
2119
|
.handsontable th span.ht_nestingLevel {
|
@@ -1977,6 +2127,10 @@ textarea.HandsontableCopyPaste {
|
|
1977
2127
|
float: left;
|
1978
2128
|
}
|
1979
2129
|
|
2130
|
+
[dir=rtl].handsontable th span.ht_nestingLevel_empty {
|
2131
|
+
float: right;
|
2132
|
+
}
|
2133
|
+
|
1980
2134
|
.handsontable th span.ht_nestingLevel::after {
|
1981
2135
|
content: "┐";
|
1982
2136
|
font-size: 9px;
|
@@ -1989,9 +2143,15 @@ textarea.HandsontableCopyPaste {
|
|
1989
2143
|
display: inline-block;
|
1990
2144
|
position: absolute;
|
1991
2145
|
right: -2px;
|
2146
|
+
left: unset;
|
1992
2147
|
cursor: pointer;
|
1993
2148
|
}
|
1994
2149
|
|
2150
|
+
[dir=rtl].handsontable th div.ht_nestingButton {
|
2151
|
+
left: -2px;
|
2152
|
+
right: unset;
|
2153
|
+
}
|
2154
|
+
|
1995
2155
|
.handsontable th div.ht_nestingButton.ht_nestingExpand::after {
|
1996
2156
|
content: "+";
|
1997
2157
|
}
|
@@ -2000,7 +2160,13 @@ textarea.HandsontableCopyPaste {
|
|
2000
2160
|
content: "-";
|
2001
2161
|
}
|
2002
2162
|
|
2003
|
-
.handsontable.
|
2004
|
-
.handsontable.
|
2163
|
+
.handsontable.innerBorderInlineStart th div.ht_nestingButton,
|
2164
|
+
.handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingButton {
|
2005
2165
|
right: 0;
|
2166
|
+
left: unset;
|
2167
|
+
}
|
2168
|
+
|
2169
|
+
[dir=rtl].handsontable.innerBorderInlineStart th div.ht_nestingButton, [dir=rtl].handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingButton {
|
2170
|
+
left: 0;
|
2171
|
+
right: unset;
|
2006
2172
|
}
|