handsontable 9.0.2 → 11.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/autoResize/autoResize.js +2 -0
- package/3rdparty/autoResize/autoResize.mjs +1 -0
- package/3rdparty/walkontable/src/border.js +3 -1
- package/3rdparty/walkontable/src/border.mjs +2 -1
- package/3rdparty/walkontable/src/calculator/constants.js +1 -1
- package/3rdparty/walkontable/src/calculator/index.js +2 -0
- package/3rdparty/walkontable/src/calculator/viewportColumns.d.ts +18 -0
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +1 -1
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +1 -1
- package/3rdparty/walkontable/src/calculator/viewportRows.js +1 -1
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +1 -1
- package/3rdparty/walkontable/src/cell/coords.d.ts +16 -0
- package/3rdparty/walkontable/src/cell/coords.js +1 -1
- package/3rdparty/walkontable/src/cell/coords.mjs +1 -1
- package/3rdparty/walkontable/src/cell/range.d.ts +51 -0
- package/3rdparty/walkontable/src/cell/range.js +1 -1
- package/3rdparty/walkontable/src/cell/range.mjs +1 -1
- package/3rdparty/walkontable/src/core.js +1 -1
- package/3rdparty/walkontable/src/core.mjs +1 -1
- package/3rdparty/walkontable/src/event.js +1 -1
- package/3rdparty/walkontable/src/event.mjs +1 -1
- package/3rdparty/walkontable/src/filter/column.js +1 -1
- package/3rdparty/walkontable/src/filter/column.mjs +1 -1
- package/3rdparty/walkontable/src/filter/row.js +1 -1
- package/3rdparty/walkontable/src/filter/row.mjs +1 -1
- package/3rdparty/walkontable/src/index.d.ts +1 -0
- package/3rdparty/walkontable/src/index.js +1 -1
- package/3rdparty/walkontable/src/overlay/_base.js +1 -1
- package/3rdparty/walkontable/src/overlay/_base.mjs +1 -1
- package/3rdparty/walkontable/src/overlay/bottom.js +6 -6
- package/3rdparty/walkontable/src/overlay/bottom.mjs +5 -5
- package/3rdparty/walkontable/src/overlay/bottomLeftCorner.js +6 -6
- package/3rdparty/walkontable/src/overlay/bottomLeftCorner.mjs +5 -5
- package/3rdparty/walkontable/src/overlay/constants.js +1 -1
- package/3rdparty/walkontable/src/overlay/index.js +2 -0
- package/3rdparty/walkontable/src/overlay/left.js +6 -6
- package/3rdparty/walkontable/src/overlay/left.mjs +5 -5
- package/3rdparty/walkontable/src/overlay/registerer.js +1 -1
- package/3rdparty/walkontable/src/overlay/top.js +6 -17
- package/3rdparty/walkontable/src/overlay/top.mjs +5 -16
- package/3rdparty/walkontable/src/overlay/topLeftCorner.js +6 -6
- package/3rdparty/walkontable/src/overlay/topLeftCorner.mjs +5 -5
- package/3rdparty/walkontable/src/overlays.js +3 -1
- package/3rdparty/walkontable/src/overlays.mjs +2 -1
- package/3rdparty/walkontable/src/renderer/_base.js +1 -1
- package/3rdparty/walkontable/src/renderer/_base.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/cells.js +4 -4
- package/3rdparty/walkontable/src/renderer/cells.mjs +4 -4
- package/3rdparty/walkontable/src/renderer/colGroup.js +6 -6
- package/3rdparty/walkontable/src/renderer/colGroup.mjs +5 -5
- package/3rdparty/walkontable/src/renderer/columnHeaders.js +6 -6
- package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +5 -5
- package/3rdparty/walkontable/src/renderer/index.js +1 -1
- package/3rdparty/walkontable/src/renderer/index.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/rowHeaders.js +4 -4
- package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +4 -4
- package/3rdparty/walkontable/src/renderer/rows.js +6 -6
- package/3rdparty/walkontable/src/renderer/rows.mjs +5 -5
- package/3rdparty/walkontable/src/renderer/table.js +1 -1
- package/3rdparty/walkontable/src/renderer/table.mjs +1 -1
- package/3rdparty/walkontable/src/scroll.js +1 -1
- package/3rdparty/walkontable/src/scroll.mjs +1 -1
- package/3rdparty/walkontable/src/selection.js +6 -4
- package/3rdparty/walkontable/src/selection.mjs +4 -3
- package/3rdparty/walkontable/src/settings.js +1 -1
- package/3rdparty/walkontable/src/settings.mjs +1 -1
- package/3rdparty/walkontable/src/table/bottom.js +10 -6
- package/3rdparty/walkontable/src/table/bottom.mjs +9 -5
- package/3rdparty/walkontable/src/table/bottomLeftCorner.js +10 -6
- package/3rdparty/walkontable/src/table/bottomLeftCorner.mjs +9 -5
- package/3rdparty/walkontable/src/table/left.js +10 -6
- package/3rdparty/walkontable/src/table/left.mjs +9 -5
- package/3rdparty/walkontable/src/table/master.js +6 -6
- package/3rdparty/walkontable/src/table/master.mjs +5 -5
- package/3rdparty/walkontable/src/table/top.js +10 -6
- package/3rdparty/walkontable/src/table/top.mjs +9 -5
- package/3rdparty/walkontable/src/table/topLeftCorner.js +10 -6
- package/3rdparty/walkontable/src/table/topLeftCorner.mjs +9 -5
- package/3rdparty/walkontable/src/table.js +5 -3
- package/3rdparty/walkontable/src/table.mjs +3 -2
- package/3rdparty/walkontable/src/utils/column.js +2 -2
- package/3rdparty/walkontable/src/utils/column.mjs +2 -2
- package/3rdparty/walkontable/src/utils/nodesPool.js +1 -1
- package/3rdparty/walkontable/src/utils/nodesPool.mjs +1 -1
- package/3rdparty/walkontable/src/utils/orderView/constants.js +1 -1
- package/3rdparty/walkontable/src/utils/orderView/sharedView.js +6 -6
- package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +5 -5
- package/3rdparty/walkontable/src/utils/orderView/view.js +1 -1
- package/3rdparty/walkontable/src/utils/orderView/view.mjs +1 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSize.js +1 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +1 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +1 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +1 -1
- package/3rdparty/walkontable/src/utils/row.js +1 -1
- package/3rdparty/walkontable/src/utils/row.mjs +1 -1
- package/3rdparty/walkontable/src/viewport.js +1 -1
- package/3rdparty/walkontable/src/viewport.mjs +1 -1
- package/CHANGELOG.md +92 -7
- package/LICENSE.txt +19 -22
- package/README.md +13 -8
- package/base.d.ts +1 -1
- package/base.js +16 -3
- package/base.mjs +14 -4
- package/cellTypes/autocompleteType/autocompleteType.d.ts +17 -0
- package/cellTypes/autocompleteType/autocompleteType.js +1 -1
- package/cellTypes/autocompleteType/index.d.ts +1 -0
- package/cellTypes/base.d.ts +14 -0
- package/cellTypes/checkboxType/checkboxType.d.ts +14 -0
- package/cellTypes/checkboxType/index.d.ts +1 -0
- package/cellTypes/dateType/dateType.d.ts +17 -0
- package/cellTypes/dateType/index.d.ts +1 -0
- package/cellTypes/dropdownType/dropdownType.d.ts +17 -0
- package/cellTypes/dropdownType/index.d.ts +1 -0
- package/cellTypes/handsontableType/handsontableType.d.ts +14 -0
- package/cellTypes/handsontableType/index.d.ts +1 -0
- package/cellTypes/index.d.ts +47 -0
- package/cellTypes/index.js +18 -2
- package/cellTypes/index.mjs +26 -9
- package/cellTypes/numericType/index.d.ts +1 -0
- package/cellTypes/numericType/numericType.d.ts +17 -0
- package/cellTypes/passwordType/index.d.ts +1 -0
- package/cellTypes/passwordType/passwordType.d.ts +14 -0
- package/cellTypes/registry.d.ts +18 -0
- package/cellTypes/registry.js +2 -2
- package/cellTypes/textType/index.d.ts +1 -0
- package/cellTypes/textType/textType.d.ts +14 -0
- package/cellTypes/timeType/index.d.ts +1 -0
- package/cellTypes/timeType/timeType.d.ts +17 -0
- package/common.d.ts +74 -0
- package/core.d.ts +160 -0
- package/core.js +244 -189
- package/core.mjs +243 -190
- package/{dataMap.js → dataMap/dataMap.js} +39 -37
- package/{dataMap.mjs → dataMap/dataMap.mjs} +39 -37
- package/dataMap/index.js +9 -1
- package/dataMap/index.mjs +4 -2
- package/dataMap/metaManager/index.js +55 -7
- package/dataMap/metaManager/index.mjs +52 -7
- package/dataMap/metaManager/lazyFactoryMap.js +4 -4
- package/dataMap/metaManager/lazyFactoryMap.mjs +4 -4
- package/dataMap/metaManager/metaLayers/cellMeta.js +3 -1
- package/dataMap/metaManager/metaLayers/cellMeta.mjs +2 -1
- package/dataMap/metaManager/metaLayers/columnMeta.js +1 -1
- package/dataMap/metaManager/metaLayers/columnMeta.mjs +1 -1
- package/dataMap/metaManager/metaLayers/globalMeta.js +5 -4
- package/dataMap/metaManager/metaLayers/globalMeta.mjs +5 -4
- package/dataMap/metaManager/metaLayers/tableMeta.js +1 -1
- package/dataMap/metaManager/metaLayers/tableMeta.mjs +1 -1
- package/dataMap/metaManager/metaSchema.js +3213 -1712
- package/dataMap/metaManager/metaSchema.mjs +3213 -1712
- package/dataMap/metaManager/mods/dynamicCellMeta.js +136 -0
- package/dataMap/metaManager/mods/dynamicCellMeta.mjs +119 -0
- package/dataMap/metaManager/utils.js +3 -3
- package/dataMap/replaceData.js +154 -0
- package/dataMap/replaceData.mjs +138 -0
- package/dataSource.js +3 -1
- package/dataSource.mjs +2 -1
- package/dist/README.md +2 -2
- package/dist/handsontable.css +508 -420
- package/dist/handsontable.full.css +621 -530
- package/dist/handsontable.full.js +54025 -48518
- package/dist/handsontable.full.min.css +27 -35
- package/dist/handsontable.full.min.js +181 -164
- package/dist/handsontable.js +37028 -33780
- package/dist/handsontable.min.css +27 -33
- package/dist/handsontable.min.js +22 -25
- package/dist/languages/all.js +2 -4
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/de-CH.js +2 -4
- package/dist/languages/de-CH.min.js +1 -1
- package/dist/languages/de-DE.js +2 -4
- package/dist/languages/de-DE.min.js +1 -1
- package/dist/languages/en-US.js +2 -4
- package/dist/languages/en-US.min.js +1 -1
- package/dist/languages/es-MX.js +2 -4
- package/dist/languages/es-MX.min.js +1 -1
- package/dist/languages/fr-FR.js +2 -4
- package/dist/languages/fr-FR.min.js +1 -1
- package/dist/languages/it-IT.js +2 -4
- package/dist/languages/it-IT.min.js +1 -1
- package/dist/languages/ja-JP.js +2 -4
- package/dist/languages/ja-JP.min.js +1 -1
- package/dist/languages/ko-KR.js +2 -4
- package/dist/languages/ko-KR.min.js +1 -1
- package/dist/languages/lv-LV.js +2 -4
- package/dist/languages/lv-LV.min.js +1 -1
- package/dist/languages/nb-NO.js +2 -4
- package/dist/languages/nb-NO.min.js +1 -1
- package/dist/languages/nl-NL.js +2 -4
- package/dist/languages/nl-NL.min.js +1 -1
- package/dist/languages/pl-PL.js +2 -4
- package/dist/languages/pl-PL.min.js +1 -1
- package/dist/languages/pt-BR.js +2 -4
- package/dist/languages/pt-BR.min.js +1 -1
- package/dist/languages/ru-RU.js +2 -4
- package/dist/languages/ru-RU.min.js +1 -1
- package/dist/languages/zh-CN.js +2 -4
- package/dist/languages/zh-CN.min.js +1 -1
- package/dist/languages/zh-TW.js +2 -4
- package/dist/languages/zh-TW.min.js +1 -1
- package/editorManager.js +9 -7
- package/editorManager.mjs +8 -7
- package/editors/autocompleteEditor/autocompleteEditor.d.ts +29 -0
- package/editors/autocompleteEditor/autocompleteEditor.js +99 -91
- package/editors/autocompleteEditor/autocompleteEditor.mjs +97 -88
- package/editors/autocompleteEditor/index.d.ts +1 -0
- package/editors/autocompleteEditor/index.js +1 -1
- package/editors/baseEditor/baseEditor.d.ts +45 -0
- package/editors/baseEditor/baseEditor.js +11 -10
- package/editors/baseEditor/baseEditor.mjs +8 -8
- package/editors/baseEditor/index.d.ts +1 -0
- package/editors/baseEditor/index.js +1 -1
- package/editors/checkboxEditor/checkboxEditor.d.ts +12 -0
- package/editors/checkboxEditor/checkboxEditor.js +7 -7
- package/editors/checkboxEditor/checkboxEditor.mjs +5 -5
- package/editors/checkboxEditor/index.d.ts +1 -0
- package/editors/checkboxEditor/index.js +1 -1
- package/editors/dateEditor/dateEditor.d.ts +18 -0
- package/editors/dateEditor/dateEditor.js +21 -21
- package/editors/dateEditor/dateEditor.mjs +19 -19
- package/editors/dateEditor/index.d.ts +1 -0
- package/editors/dateEditor/index.js +1 -1
- package/editors/dropdownEditor/dropdownEditor.d.ts +7 -0
- package/editors/dropdownEditor/dropdownEditor.js +8 -8
- package/editors/dropdownEditor/dropdownEditor.mjs +6 -6
- package/editors/dropdownEditor/index.d.ts +1 -0
- package/editors/dropdownEditor/index.js +1 -1
- package/editors/handsontableEditor/handsontableEditor.d.ts +10 -0
- package/editors/handsontableEditor/handsontableEditor.js +7 -7
- package/editors/handsontableEditor/handsontableEditor.mjs +6 -6
- package/editors/handsontableEditor/index.d.ts +1 -0
- package/editors/index.d.ts +53 -0
- package/editors/index.js +19 -2
- package/editors/index.mjs +28 -10
- package/editors/numericEditor/index.d.ts +1 -0
- package/editors/numericEditor/numericEditor.d.ts +7 -0
- package/editors/numericEditor/numericEditor.js +6 -6
- package/editors/numericEditor/numericEditor.mjs +5 -5
- package/editors/passwordEditor/index.d.ts +1 -0
- package/editors/passwordEditor/passwordEditor.d.ts +7 -0
- package/editors/passwordEditor/passwordEditor.js +7 -7
- package/editors/passwordEditor/passwordEditor.mjs +6 -6
- package/editors/registry.d.ts +29 -0
- package/editors/registry.js +2 -2
- package/editors/selectEditor/index.d.ts +1 -0
- package/editors/selectEditor/selectEditor.d.ts +16 -0
- package/editors/selectEditor/selectEditor.js +7 -7
- package/editors/selectEditor/selectEditor.mjs +6 -6
- package/editors/textEditor/index.d.ts +1 -0
- package/editors/textEditor/textEditor.d.ts +24 -0
- package/editors/textEditor/textEditor.js +7 -7
- package/editors/textEditor/textEditor.mjs +6 -6
- package/eventManager.d.ts +13 -0
- package/eventManager.js +8 -4
- package/eventManager.mjs +7 -3
- package/handsontable-non-commercial-license.pdf +0 -0
- package/helpers/array.d.ts +18 -0
- package/helpers/array.js +10 -10
- package/helpers/array.mjs +1 -1
- package/helpers/browser.d.ts +25 -0
- package/helpers/browser.js +11 -9
- package/helpers/browser.mjs +1 -0
- package/helpers/console.d.ts +4 -0
- package/helpers/console.js +2 -2
- package/helpers/data.d.ts +13 -0
- package/helpers/data.js +8 -36
- package/helpers/data.mjs +2 -28
- package/helpers/date.d.ts +1 -0
- package/helpers/dom/element.d.ts +49 -0
- package/helpers/dom/element.js +45 -46
- package/helpers/dom/element.mjs +8 -9
- package/helpers/dom/event.d.ts +4 -0
- package/helpers/dom/event.js +2 -2
- package/helpers/dom/index.d.ts +2 -0
- package/helpers/feature.d.ts +11 -0
- package/helpers/feature.js +7 -7
- package/helpers/feature.mjs +1 -1
- package/helpers/function.d.ts +10 -0
- package/helpers/function.js +43 -5
- package/helpers/function.mjs +35 -0
- package/helpers/index.d.ts +14 -0
- package/helpers/mixed.d.ts +5 -0
- package/helpers/mixed.js +6 -6
- package/helpers/mixed.mjs +3 -3
- package/helpers/number.d.ts +5 -0
- package/helpers/number.js +98 -19
- package/helpers/number.mjs +87 -19
- package/helpers/object.d.ts +16 -0
- package/helpers/object.js +12 -12
- package/helpers/object.mjs +1 -1
- package/helpers/string.d.ts +7 -0
- package/helpers/string.js +4 -4
- package/helpers/templateLiteralTag.d.ts +1 -0
- package/helpers/unicode.d.ts +73 -0
- package/helpers/unicode.js +3 -3
- package/i18n/constants.js +1 -1
- package/i18n/index.d.ts +2 -0
- package/i18n/index.js +2 -0
- package/i18n/languages/de-CH.d.ts +5 -0
- package/i18n/languages/de-CH.js +1 -1
- package/i18n/languages/de-DE.d.ts +5 -0
- package/i18n/languages/de-DE.js +1 -1
- package/i18n/languages/en-US.d.ts +5 -0
- package/i18n/languages/en-US.js +1 -1
- package/i18n/languages/es-MX.d.ts +5 -0
- package/i18n/languages/es-MX.js +1 -1
- package/i18n/languages/fr-FR.d.ts +5 -0
- package/i18n/languages/fr-FR.js +1 -1
- package/i18n/languages/index.d.ts +35 -0
- package/i18n/languages/it-IT.d.ts +5 -0
- package/i18n/languages/it-IT.js +1 -1
- package/i18n/languages/ja-JP.d.ts +5 -0
- package/i18n/languages/ja-JP.js +1 -1
- package/i18n/languages/ko-KR.d.ts +5 -0
- package/i18n/languages/ko-KR.js +1 -1
- package/i18n/languages/lv-LV.d.ts +5 -0
- package/i18n/languages/lv-LV.js +1 -1
- package/i18n/languages/nb-NO.d.ts +5 -0
- package/i18n/languages/nb-NO.js +1 -1
- package/i18n/languages/nl-NL.d.ts +5 -0
- package/i18n/languages/nl-NL.js +1 -1
- package/i18n/languages/pl-PL.d.ts +5 -0
- package/i18n/languages/pl-PL.js +1 -1
- package/i18n/languages/pt-BR.d.ts +5 -0
- package/i18n/languages/pt-BR.js +1 -1
- package/i18n/languages/ru-RU.d.ts +5 -0
- package/i18n/languages/ru-RU.js +1 -1
- package/i18n/languages/zh-CN.d.ts +5 -0
- package/i18n/languages/zh-CN.js +1 -1
- package/i18n/languages/zh-TW.d.ts +5 -0
- package/i18n/languages/zh-TW.js +1 -1
- package/i18n/phraseFormatters/index.js +1 -1
- package/i18n/registry.d.ts +13 -0
- package/i18n/registry.js +5 -5
- package/i18n/utils.js +1 -1
- package/index.d.ts +516 -0
- package/index.js +41 -113
- package/index.mjs +17 -90
- package/languages/all.js +2 -4
- package/languages/de-CH.js +2 -4
- package/languages/de-DE.js +2 -4
- package/languages/en-US.js +2 -4
- package/languages/es-MX.js +2 -4
- package/languages/fr-FR.js +2 -4
- package/languages/index.js +2 -4
- package/languages/it-IT.js +2 -4
- package/languages/ja-JP.js +2 -4
- package/languages/ko-KR.js +2 -4
- package/languages/lv-LV.js +2 -4
- package/languages/nb-NO.js +2 -4
- package/languages/nl-NL.js +2 -4
- package/languages/pl-PL.js +2 -4
- package/languages/pt-BR.js +2 -4
- package/languages/ru-RU.js +2 -4
- package/languages/zh-CN.js +2 -4
- package/languages/zh-TW.js +2 -4
- package/mixins/localHooks.js +17 -14
- package/mixins/localHooks.mjs +16 -13
- package/package.json +106 -15
- package/pluginHooks.d.ts +257 -0
- package/pluginHooks.js +216 -141
- package/pluginHooks.mjs +215 -141
- package/plugins/autoColumnSize/autoColumnSize.d.ts +27 -0
- package/plugins/autoColumnSize/autoColumnSize.js +24 -22
- package/plugins/autoColumnSize/autoColumnSize.mjs +22 -21
- package/plugins/autoColumnSize/index.d.ts +1 -0
- package/plugins/autoColumnSize/index.js +1 -1
- package/plugins/autoRowSize/autoRowSize.d.ts +27 -0
- package/plugins/autoRowSize/autoRowSize.js +29 -21
- package/plugins/autoRowSize/autoRowSize.mjs +26 -19
- package/plugins/autoRowSize/index.d.ts +1 -0
- package/plugins/autoRowSize/index.js +1 -1
- package/plugins/autofill/autofill.d.ts +18 -0
- package/plugins/autofill/autofill.js +12 -21
- package/plugins/autofill/autofill.mjs +9 -18
- package/plugins/autofill/index.d.ts +1 -0
- package/plugins/autofill/index.js +1 -1
- package/plugins/autofill/utils.js +1 -1
- package/plugins/base/base.d.ts +21 -0
- package/plugins/base/base.js +2 -2
- package/plugins/base/base.mjs +1 -1
- package/plugins/base/index.d.ts +1 -0
- package/plugins/base/index.js +1 -1
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.d.ts +9 -0
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +6 -6
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +5 -5
- package/plugins/bindRowsWithHeaders/index.d.ts +1 -0
- package/plugins/bindRowsWithHeaders/index.js +1 -1
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +7 -7
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.mjs +6 -6
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +9 -7
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.mjs +7 -6
- package/plugins/collapsibleColumns/collapsibleColumns.d.ts +22 -0
- package/plugins/collapsibleColumns/collapsibleColumns.js +34 -27
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +32 -26
- package/plugins/collapsibleColumns/index.d.ts +1 -0
- package/plugins/collapsibleColumns/index.js +1 -1
- package/plugins/columnSorting/columnSorting.d.ts +30 -0
- package/plugins/columnSorting/columnSorting.js +21 -19
- package/plugins/columnSorting/columnSorting.mjs +18 -17
- package/plugins/columnSorting/columnStatesManager.js +6 -4
- package/plugins/columnSorting/columnStatesManager.mjs +5 -4
- package/plugins/columnSorting/index.d.ts +1 -0
- package/plugins/columnSorting/index.js +1 -1
- package/plugins/columnSorting/rootComparator.js +2 -0
- package/plugins/columnSorting/rootComparator.mjs +1 -0
- package/plugins/columnSorting/sortFunction/checkbox.js +1 -1
- package/plugins/columnSorting/sortFunction/date.js +1 -1
- package/plugins/columnSorting/sortFunction/default.js +4 -3
- package/plugins/columnSorting/sortFunction/default.mjs +3 -2
- package/plugins/columnSorting/sortFunction/numeric.js +1 -1
- package/plugins/columnSorting/sortService/engine.js +1 -1
- package/plugins/columnSorting/sortService/registry.js +1 -1
- package/plugins/columnSorting/utils.js +4 -4
- package/plugins/columnSorting/utils.mjs +1 -1
- package/plugins/columnSummary/columnSummary.d.ts +72 -0
- package/plugins/columnSummary/columnSummary.js +32 -14
- package/plugins/columnSummary/columnSummary.mjs +30 -12
- package/plugins/columnSummary/endpoints.js +7 -5
- package/plugins/columnSummary/endpoints.mjs +6 -5
- package/plugins/columnSummary/index.d.ts +1 -0
- package/plugins/columnSummary/index.js +1 -1
- package/plugins/comments/commentEditor.js +7 -3
- package/plugins/comments/commentEditor.mjs +7 -3
- package/plugins/comments/comments.d.ts +50 -0
- package/plugins/comments/comments.js +49 -88
- package/plugins/comments/comments.mjs +49 -87
- package/plugins/comments/displaySwitch.js +2 -2
- package/plugins/comments/displaySwitch.mjs +2 -2
- package/plugins/comments/index.d.ts +1 -0
- package/plugins/comments/index.js +1 -1
- package/plugins/contextMenu/commandExecutor.js +2 -2
- package/plugins/contextMenu/commandExecutor.mjs +2 -2
- package/plugins/contextMenu/contextMenu.d.ts +65 -0
- package/plugins/contextMenu/contextMenu.js +9 -8
- package/plugins/contextMenu/contextMenu.mjs +7 -6
- package/plugins/contextMenu/cursor.js +2 -2
- package/plugins/contextMenu/cursor.mjs +2 -2
- package/plugins/contextMenu/index.d.ts +1 -0
- package/plugins/contextMenu/index.js +1 -1
- package/plugins/contextMenu/itemsFactory.js +2 -2
- package/plugins/contextMenu/itemsFactory.mjs +2 -2
- package/plugins/contextMenu/menu.js +5 -5
- package/plugins/contextMenu/menu.mjs +4 -4
- package/plugins/contextMenu/predefinedItems/alignment.js +2 -2
- package/plugins/contextMenu/predefinedItems/clearColumn.js +2 -2
- package/plugins/contextMenu/predefinedItems/columnLeft.js +2 -2
- package/plugins/contextMenu/predefinedItems/columnRight.js +2 -2
- package/plugins/contextMenu/predefinedItems/noItems.js +1 -1
- package/plugins/contextMenu/predefinedItems/readOnly.js +2 -2
- package/plugins/contextMenu/predefinedItems/redo.js +2 -2
- package/plugins/contextMenu/predefinedItems/removeColumn.js +4 -2
- package/plugins/contextMenu/predefinedItems/removeColumn.mjs +1 -0
- package/plugins/contextMenu/predefinedItems/removeRow.js +4 -2
- package/plugins/contextMenu/predefinedItems/removeRow.mjs +1 -0
- package/plugins/contextMenu/predefinedItems/rowAbove.js +2 -2
- package/plugins/contextMenu/predefinedItems/rowBelow.js +2 -2
- package/plugins/contextMenu/predefinedItems/separator.js +1 -1
- package/plugins/contextMenu/predefinedItems/undo.js +2 -2
- package/plugins/contextMenu/predefinedItems.js +3 -3
- package/plugins/contextMenu/utils.js +10 -10
- package/plugins/copyPaste/clipboardData.js +4 -1
- package/plugins/copyPaste/clipboardData.mjs +4 -1
- package/plugins/copyPaste/contextMenuItem/copy.js +1 -1
- package/plugins/copyPaste/contextMenuItem/cut.js +1 -1
- package/plugins/copyPaste/copyPaste.d.ts +35 -0
- package/plugins/copyPaste/copyPaste.js +14 -11
- package/plugins/copyPaste/copyPaste.mjs +12 -10
- package/plugins/copyPaste/focusableElement.js +2 -3
- package/plugins/copyPaste/focusableElement.mjs +2 -3
- package/plugins/copyPaste/index.d.ts +1 -0
- package/plugins/copyPaste/index.js +1 -1
- package/plugins/copyPaste/pasteEvent.js +9 -2
- package/plugins/copyPaste/pasteEvent.mjs +9 -2
- package/plugins/customBorders/contextMenuItem/bottom.js +1 -1
- package/plugins/customBorders/contextMenuItem/left.js +1 -1
- package/plugins/customBorders/contextMenuItem/noBorders.js +1 -1
- package/plugins/customBorders/contextMenuItem/right.js +1 -1
- package/plugins/customBorders/contextMenuItem/top.js +1 -1
- package/plugins/customBorders/customBorders.d.ts +38 -0
- package/plugins/customBorders/customBorders.js +11 -9
- package/plugins/customBorders/customBorders.mjs +8 -7
- package/plugins/customBorders/index.d.ts +1 -0
- package/plugins/customBorders/index.js +1 -1
- package/plugins/customBorders/utils.js +3 -3
- package/plugins/dragToScroll/dragToScroll.d.ts +15 -0
- package/plugins/dragToScroll/dragToScroll.js +8 -8
- package/plugins/dragToScroll/dragToScroll.mjs +6 -6
- package/plugins/dragToScroll/index.d.ts +1 -0
- package/plugins/dragToScroll/index.js +1 -1
- package/plugins/dropdownMenu/dropdownMenu.d.ts +24 -0
- package/plugins/dropdownMenu/dropdownMenu.js +8 -8
- package/plugins/dropdownMenu/dropdownMenu.mjs +6 -6
- package/plugins/dropdownMenu/index.d.ts +1 -0
- package/plugins/dropdownMenu/index.js +1 -1
- package/plugins/exportFile/dataProvider.js +3 -5
- package/plugins/exportFile/dataProvider.mjs +3 -5
- package/plugins/exportFile/exportFile.d.ts +12 -0
- package/plugins/exportFile/exportFile.js +9 -9
- package/plugins/exportFile/exportFile.mjs +7 -7
- package/plugins/exportFile/index.d.ts +1 -0
- package/plugins/exportFile/index.js +1 -1
- package/plugins/exportFile/typeFactory.js +2 -1
- package/plugins/exportFile/typeFactory.mjs +1 -0
- package/plugins/exportFile/types/_base.js +1 -2
- package/plugins/exportFile/types/_base.mjs +1 -2
- package/plugins/exportFile/types/csv.js +6 -7
- package/plugins/exportFile/types/csv.mjs +5 -6
- package/plugins/filters/component/_base.js +2 -2
- package/plugins/filters/component/_base.mjs +2 -2
- package/plugins/filters/component/actionBar.js +7 -7
- package/plugins/filters/component/actionBar.mjs +6 -6
- package/plugins/filters/component/condition.js +10 -8
- package/plugins/filters/component/condition.mjs +8 -7
- package/plugins/filters/component/operators.js +7 -7
- package/plugins/filters/component/operators.mjs +6 -6
- package/plugins/filters/component/value.js +15 -8
- package/plugins/filters/component/value.mjs +13 -7
- package/plugins/filters/condition/beginsWith.js +5 -3
- package/plugins/filters/condition/beginsWith.mjs +2 -1
- package/plugins/filters/condition/between.js +4 -2
- package/plugins/filters/condition/between.mjs +1 -0
- package/plugins/filters/condition/byValue.js +3 -1
- package/plugins/filters/condition/byValue.mjs +1 -0
- package/plugins/filters/condition/contains.js +5 -3
- package/plugins/filters/condition/contains.mjs +2 -1
- package/plugins/filters/condition/date/after.js +4 -2
- package/plugins/filters/condition/date/after.mjs +1 -0
- package/plugins/filters/condition/date/before.js +4 -2
- package/plugins/filters/condition/date/before.mjs +1 -0
- package/plugins/filters/condition/date/today.js +2 -2
- package/plugins/filters/condition/date/tomorrow.js +2 -2
- package/plugins/filters/condition/date/yesterday.js +2 -2
- package/plugins/filters/condition/empty.js +2 -2
- package/plugins/filters/condition/endsWith.js +5 -3
- package/plugins/filters/condition/endsWith.mjs +2 -1
- package/plugins/filters/condition/equal.js +5 -3
- package/plugins/filters/condition/equal.mjs +2 -1
- package/plugins/filters/condition/false.js +1 -1
- package/plugins/filters/condition/greaterThan.js +4 -2
- package/plugins/filters/condition/greaterThan.mjs +1 -0
- package/plugins/filters/condition/greaterThanOrEqual.js +4 -2
- package/plugins/filters/condition/greaterThanOrEqual.mjs +1 -0
- package/plugins/filters/condition/lessThan.js +4 -2
- package/plugins/filters/condition/lessThan.mjs +1 -0
- package/plugins/filters/condition/lessThanOrEqual.js +4 -2
- package/plugins/filters/condition/lessThanOrEqual.mjs +1 -0
- package/plugins/filters/condition/none.js +2 -2
- package/plugins/filters/condition/notBetween.js +2 -2
- package/plugins/filters/condition/notContains.js +2 -2
- package/plugins/filters/condition/notEmpty.js +2 -2
- package/plugins/filters/condition/notEqual.js +2 -2
- package/plugins/filters/condition/true.js +1 -1
- package/plugins/filters/conditionCollection.d.ts +32 -0
- package/plugins/filters/conditionCollection.js +8 -5
- package/plugins/filters/conditionCollection.mjs +6 -4
- package/plugins/filters/conditionRegisterer.js +1 -1
- package/plugins/filters/conditionUpdateObserver.d.ts +10 -0
- package/plugins/filters/conditionUpdateObserver.js +4 -2
- package/plugins/filters/conditionUpdateObserver.mjs +3 -2
- package/plugins/filters/constants.js +2 -1
- package/plugins/filters/constants.mjs +1 -0
- package/plugins/filters/dataFilter.js +2 -2
- package/plugins/filters/dataFilter.mjs +2 -2
- package/plugins/filters/filters.d.ts +56 -0
- package/plugins/filters/filters.js +15 -11
- package/plugins/filters/filters.mjs +13 -10
- package/plugins/filters/index.d.ts +1 -0
- package/plugins/filters/index.js +1 -1
- package/plugins/filters/logicalOperationRegisterer.js +1 -1
- package/plugins/filters/logicalOperations/conjunction.js +4 -4
- package/plugins/filters/logicalOperations/conjunction.mjs +1 -0
- package/plugins/filters/logicalOperations/disjunction.js +4 -4
- package/plugins/filters/logicalOperations/disjunction.mjs +1 -0
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +4 -4
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.mjs +1 -0
- package/plugins/filters/ui/_base.js +4 -5
- package/plugins/filters/ui/_base.mjs +3 -4
- package/plugins/filters/ui/input.js +6 -6
- package/plugins/filters/ui/input.mjs +6 -6
- package/plugins/filters/ui/link.js +6 -6
- package/plugins/filters/ui/link.mjs +6 -6
- package/plugins/filters/ui/multipleSelect.js +34 -8
- package/plugins/filters/ui/multipleSelect.mjs +33 -8
- package/plugins/filters/ui/radioInput.js +6 -6
- package/plugins/filters/ui/radioInput.mjs +6 -6
- package/plugins/filters/ui/select.js +6 -6
- package/plugins/filters/ui/select.mjs +6 -6
- package/plugins/filters/utils.js +3 -3
- package/plugins/formulas/engine/register.js +4 -4
- package/plugins/formulas/engine/register.mjs +1 -1
- package/plugins/formulas/engine/settings.js +6 -6
- package/plugins/formulas/engine/settings.mjs +4 -5
- package/plugins/formulas/formulas.d.ts +31 -0
- package/plugins/formulas/formulas.js +287 -91
- package/plugins/formulas/formulas.mjs +280 -88
- package/plugins/formulas/index.d.ts +1 -0
- package/plugins/formulas/index.js +1 -1
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +3 -1
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.mjs +1 -0
- package/plugins/hiddenColumns/contextMenuItem/showColumn.js +5 -3
- package/plugins/hiddenColumns/contextMenuItem/showColumn.mjs +2 -1
- package/plugins/hiddenColumns/hiddenColumns.d.ts +21 -0
- package/plugins/hiddenColumns/hiddenColumns.js +39 -27
- package/plugins/hiddenColumns/hiddenColumns.mjs +38 -26
- package/plugins/hiddenColumns/index.d.ts +1 -0
- package/plugins/hiddenColumns/index.js +1 -1
- package/plugins/hiddenRows/contextMenuItem/hideRow.js +3 -1
- package/plugins/hiddenRows/contextMenuItem/hideRow.mjs +1 -0
- package/plugins/hiddenRows/contextMenuItem/showRow.js +5 -3
- package/plugins/hiddenRows/contextMenuItem/showRow.mjs +2 -1
- package/plugins/hiddenRows/hiddenRows.d.ts +21 -0
- package/plugins/hiddenRows/hiddenRows.js +39 -28
- package/plugins/hiddenRows/hiddenRows.mjs +38 -27
- package/plugins/hiddenRows/index.d.ts +1 -0
- package/plugins/hiddenRows/index.js +1 -1
- package/plugins/index.d.ts +111 -0
- package/plugins/index.js +98 -58
- package/plugins/index.mjs +75 -34
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +3 -1
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +1 -0
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +3 -1
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +1 -0
- package/plugins/manualColumnFreeze/index.d.ts +1 -0
- package/plugins/manualColumnFreeze/index.js +1 -1
- package/plugins/manualColumnFreeze/manualColumnFreeze.d.ts +11 -0
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +11 -8
- package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +10 -7
- package/plugins/manualColumnMove/index.d.ts +1 -0
- package/plugins/manualColumnMove/index.js +1 -1
- package/plugins/manualColumnMove/manualColumnMove.d.ts +14 -0
- package/plugins/manualColumnMove/manualColumnMove.js +27 -25
- package/plugins/manualColumnMove/manualColumnMove.mjs +26 -24
- package/plugins/manualColumnMove/ui/_base.js +2 -2
- package/plugins/manualColumnMove/ui/_base.mjs +2 -2
- package/plugins/manualColumnMove/ui/backlight.js +7 -7
- package/plugins/manualColumnMove/ui/backlight.mjs +6 -6
- package/plugins/manualColumnMove/ui/guideline.js +7 -7
- package/plugins/manualColumnMove/ui/guideline.mjs +6 -6
- package/plugins/manualColumnResize/index.d.ts +1 -0
- package/plugins/manualColumnResize/index.js +1 -1
- package/plugins/manualColumnResize/manualColumnResize.d.ts +30 -0
- package/plugins/manualColumnResize/manualColumnResize.js +10 -10
- package/plugins/manualColumnResize/manualColumnResize.mjs +9 -9
- package/plugins/manualRowMove/index.d.ts +1 -0
- package/plugins/manualRowMove/index.js +1 -1
- package/plugins/manualRowMove/manualRowMove.d.ts +14 -0
- package/plugins/manualRowMove/manualRowMove.js +24 -22
- package/plugins/manualRowMove/manualRowMove.mjs +23 -21
- package/plugins/manualRowMove/ui/_base.js +2 -3
- package/plugins/manualRowMove/ui/_base.mjs +2 -3
- package/plugins/manualRowMove/ui/backlight.js +8 -8
- package/plugins/manualRowMove/ui/backlight.mjs +7 -7
- package/plugins/manualRowMove/ui/guideline.js +8 -8
- package/plugins/manualRowMove/ui/guideline.mjs +7 -7
- package/plugins/manualRowResize/index.d.ts +1 -0
- package/plugins/manualRowResize/index.js +1 -1
- package/plugins/manualRowResize/manualRowResize.d.ts +29 -0
- package/plugins/manualRowResize/manualRowResize.js +6 -6
- package/plugins/manualRowResize/manualRowResize.mjs +5 -5
- package/plugins/mergeCells/calculations/autofill.js +4 -3
- package/plugins/mergeCells/calculations/autofill.mjs +3 -3
- package/plugins/mergeCells/calculations/selection.js +2 -3
- package/plugins/mergeCells/calculations/selection.mjs +2 -3
- package/plugins/mergeCells/cellCoords.js +2 -2
- package/plugins/mergeCells/cellCoords.mjs +2 -2
- package/plugins/mergeCells/cellsCollection.js +6 -4
- package/plugins/mergeCells/cellsCollection.mjs +5 -4
- package/plugins/mergeCells/contextMenuItem/toggleMerge.js +1 -1
- package/plugins/mergeCells/index.d.ts +1 -0
- package/plugins/mergeCells/index.js +1 -1
- package/plugins/mergeCells/mergeCells.d.ts +22 -0
- package/plugins/mergeCells/mergeCells.js +8 -6
- package/plugins/mergeCells/mergeCells.mjs +6 -5
- package/plugins/multiColumnSorting/domHelpers.js +2 -0
- package/plugins/multiColumnSorting/domHelpers.mjs +1 -0
- package/plugins/multiColumnSorting/index.d.ts +1 -0
- package/plugins/multiColumnSorting/index.js +1 -1
- package/plugins/multiColumnSorting/multiColumnSorting.d.ts +8 -0
- package/plugins/multiColumnSorting/multiColumnSorting.js +8 -8
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +6 -6
- package/plugins/multiColumnSorting/rootComparator.js +2 -0
- package/plugins/multiColumnSorting/rootComparator.mjs +1 -0
- package/plugins/multipleSelectionHandles/index.d.ts +1 -0
- package/plugins/multipleSelectionHandles/index.js +1 -1
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.d.ts +21 -0
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +9 -8
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +7 -6
- package/plugins/nestedHeaders/index.d.ts +1 -0
- package/plugins/nestedHeaders/index.js +1 -1
- package/plugins/nestedHeaders/nestedHeaders.d.ts +17 -0
- package/plugins/nestedHeaders/nestedHeaders.js +24 -20
- package/plugins/nestedHeaders/nestedHeaders.mjs +22 -18
- package/plugins/nestedHeaders/stateManager/headersTree.js +13 -7
- package/plugins/nestedHeaders/stateManager/headersTree.mjs +12 -7
- package/plugins/nestedHeaders/stateManager/index.js +10 -7
- package/plugins/nestedHeaders/stateManager/index.mjs +10 -7
- package/plugins/nestedHeaders/stateManager/nodeModifiers/utils/tree.js +1 -1
- package/plugins/nestedHeaders/stateManager/settingsNormalizer.js +2 -0
- package/plugins/nestedHeaders/stateManager/settingsNormalizer.mjs +1 -0
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +11 -7
- package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +11 -7
- package/plugins/nestedHeaders/utils/ghostTable.js +4 -1
- package/plugins/nestedHeaders/utils/ghostTable.mjs +4 -1
- package/plugins/nestedRows/data/dataManager.js +42 -16
- package/plugins/nestedRows/data/dataManager.mjs +40 -15
- package/plugins/nestedRows/index.d.ts +1 -0
- package/plugins/nestedRows/index.js +1 -1
- package/plugins/nestedRows/nestedRows.d.ts +12 -0
- package/plugins/nestedRows/nestedRows.js +34 -35
- package/plugins/nestedRows/nestedRows.mjs +31 -33
- package/plugins/nestedRows/ui/_base.js +7 -4
- package/plugins/nestedRows/ui/_base.mjs +7 -4
- package/plugins/nestedRows/ui/collapsing.js +9 -8
- package/plugins/nestedRows/ui/collapsing.mjs +7 -7
- package/plugins/nestedRows/ui/contextMenu.js +5 -6
- package/plugins/nestedRows/ui/contextMenu.mjs +5 -6
- package/plugins/nestedRows/ui/headers.js +7 -8
- package/plugins/nestedRows/ui/headers.mjs +6 -7
- package/plugins/nestedRows/utils/rowMoveController.js +7 -6
- package/plugins/nestedRows/utils/rowMoveController.mjs +5 -5
- package/plugins/persistentState/index.d.ts +1 -0
- package/plugins/persistentState/persistentState.d.ts +13 -0
- package/plugins/persistentState/persistentState.js +15 -7
- package/plugins/persistentState/persistentState.mjs +14 -6
- package/plugins/persistentState/storage.js +2 -2
- package/plugins/persistentState/storage.mjs +2 -2
- package/plugins/registry.d.ts +9 -0
- package/plugins/registry.js +3 -1
- package/plugins/registry.mjs +1 -0
- package/plugins/search/index.d.ts +1 -0
- package/plugins/search/search.d.ts +28 -0
- package/plugins/search/search.js +10 -10
- package/plugins/search/search.mjs +10 -10
- package/plugins/touchScroll/index.d.ts +1 -0
- package/plugins/touchScroll/touchScroll.d.ts +13 -0
- package/plugins/touchScroll/touchScroll.js +16 -16
- package/plugins/touchScroll/touchScroll.mjs +15 -14
- package/plugins/trimRows/index.d.ts +1 -0
- package/plugins/trimRows/trimRows.d.ts +17 -0
- package/plugins/trimRows/trimRows.js +6 -6
- package/plugins/trimRows/trimRows.mjs +6 -6
- package/plugins/undoRedo/index.d.ts +1 -0
- package/plugins/undoRedo/index.js +1 -1
- package/plugins/undoRedo/undoRedo.d.ts +49 -0
- package/plugins/undoRedo/undoRedo.js +30 -32
- package/plugins/undoRedo/undoRedo.mjs +28 -31
- package/registry.d.ts +6 -0
- package/registry.js +46 -0
- package/registry.mjs +27 -0
- package/renderers/autocompleteRenderer/autocompleteRenderer.d.ts +5 -0
- package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -1
- package/renderers/autocompleteRenderer/index.d.ts +1 -0
- package/renderers/base.d.ts +3 -0
- package/renderers/baseRenderer/baseRenderer.d.ts +5 -0
- package/renderers/baseRenderer/baseRenderer.js +1 -1
- package/renderers/baseRenderer/index.d.ts +1 -0
- package/renderers/checkboxRenderer/checkboxRenderer.d.ts +5 -0
- package/renderers/checkboxRenderer/checkboxRenderer.js +3 -5
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +3 -4
- package/renderers/checkboxRenderer/index.d.ts +1 -0
- package/renderers/htmlRenderer/htmlRenderer.d.ts +5 -0
- package/renderers/htmlRenderer/htmlRenderer.js +1 -1
- package/renderers/htmlRenderer/index.d.ts +1 -0
- package/renderers/index.d.ts +42 -0
- package/renderers/index.js +16 -2
- package/renderers/index.mjs +22 -7
- package/renderers/numericRenderer/index.d.ts +1 -0
- package/renderers/numericRenderer/numericRenderer.d.ts +5 -0
- package/renderers/numericRenderer/numericRenderer.js +1 -1
- package/renderers/passwordRenderer/index.d.ts +1 -0
- package/renderers/passwordRenderer/passwordRenderer.d.ts +5 -0
- package/renderers/passwordRenderer/passwordRenderer.js +1 -1
- package/renderers/registry.d.ts +18 -0
- package/renderers/registry.js +3 -2
- package/renderers/textRenderer/index.d.ts +1 -0
- package/renderers/textRenderer/textRenderer.d.ts +5 -0
- package/renderers/textRenderer/textRenderer.js +1 -1
- package/selection/highlight/constants.js +1 -1
- package/selection/highlight/highlight.js +10 -8
- package/selection/highlight/highlight.mjs +8 -7
- package/selection/highlight/types/activeHeader.js +4 -2
- package/selection/highlight/types/activeHeader.mjs +3 -2
- package/selection/highlight/types/area.js +4 -2
- package/selection/highlight/types/area.mjs +3 -2
- package/selection/highlight/types/cell.js +4 -2
- package/selection/highlight/types/cell.mjs +3 -2
- package/selection/highlight/types/customSelection.js +4 -2
- package/selection/highlight/types/customSelection.mjs +3 -2
- package/selection/highlight/types/fill.js +4 -2
- package/selection/highlight/types/fill.mjs +3 -2
- package/selection/highlight/types/header.js +4 -2
- package/selection/highlight/types/header.mjs +3 -2
- package/selection/highlight/types/index.js +4 -2
- package/selection/highlight/types/index.mjs +3 -2
- package/selection/highlight/visualSelection.js +9 -7
- package/selection/highlight/visualSelection.mjs +7 -6
- package/selection/index.d.ts +5 -0
- package/selection/index.js +2 -0
- package/selection/mouseEventHandler.js +4 -4
- package/selection/mouseEventHandler.mjs +3 -3
- package/selection/range.js +6 -6
- package/selection/range.mjs +5 -5
- package/selection/selection.js +18 -9
- package/selection/selection.mjs +17 -9
- package/selection/transformation.js +4 -3
- package/selection/transformation.mjs +4 -3
- package/selection/utils.js +6 -4
- package/selection/utils.mjs +3 -2
- package/settings.d.ts +208 -0
- package/tableView.js +21 -15
- package/tableView.mjs +19 -14
- package/translations/changesObservable/observable.js +11 -6
- package/translations/changesObservable/observable.mjs +11 -6
- package/translations/changesObservable/observer.js +7 -2
- package/translations/changesObservable/observer.mjs +7 -2
- package/translations/changesObservable/utils.js +1 -0
- package/translations/changesObservable/utils.mjs +1 -0
- package/translations/index.d.ts +1 -0
- package/translations/index.js +3 -1
- package/translations/indexMapper.d.ts +46 -0
- package/translations/indexMapper.js +38 -13
- package/translations/indexMapper.mjs +35 -12
- package/translations/mapCollections/aggregatedCollection.js +6 -6
- package/translations/mapCollections/aggregatedCollection.mjs +5 -5
- package/translations/mapCollections/index.js +2 -0
- package/translations/mapCollections/mapCollection.js +2 -2
- package/translations/mapCollections/mapCollection.mjs +1 -1
- package/translations/maps/hidingMap.js +6 -6
- package/translations/maps/hidingMap.mjs +5 -5
- package/translations/maps/indexMap.d.ts +10 -0
- package/translations/maps/indexMap.js +1 -1
- package/translations/maps/indexMap.mjs +1 -1
- package/translations/maps/indexesSequence.js +7 -7
- package/translations/maps/indexesSequence.mjs +6 -6
- package/translations/maps/linkedPhysicalIndexToValueMap.js +7 -5
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +6 -5
- package/translations/maps/physicalIndexToValueMap.js +7 -7
- package/translations/maps/physicalIndexToValueMap.mjs +6 -6
- package/translations/maps/trimmingMap.js +6 -6
- package/translations/maps/trimmingMap.mjs +5 -5
- package/translations/maps/utils/actionsOnIndexes.js +2 -0
- package/translations/maps/utils/actionsOnIndexes.mjs +1 -0
- package/translations/maps/utils/indexesSequence.js +2 -0
- package/translations/maps/utils/indexesSequence.mjs +1 -0
- package/translations/maps/utils/physicallyIndexed.js +2 -0
- package/translations/maps/utils/physicallyIndexed.mjs +1 -0
- package/utils/dataStructures/linkedList.js +3 -3
- package/utils/dataStructures/linkedList.mjs +3 -3
- package/utils/dataStructures/priorityMap.js +3 -1
- package/utils/dataStructures/priorityMap.mjs +1 -0
- package/utils/dataStructures/queue.js +1 -1
- package/utils/dataStructures/queue.mjs +1 -1
- package/utils/dataStructures/stack.js +1 -1
- package/utils/dataStructures/stack.mjs +1 -1
- package/utils/dataStructures/tree.js +6 -4
- package/utils/dataStructures/tree.mjs +4 -3
- package/utils/dataStructures/uniqueMap.js +2 -0
- package/utils/dataStructures/uniqueMap.mjs +1 -0
- package/utils/dataStructures/uniqueSet.js +2 -0
- package/utils/dataStructures/uniqueSet.mjs +1 -0
- package/utils/ghostTable.js +17 -5
- package/utils/ghostTable.mjs +16 -5
- package/utils/interval.js +2 -3
- package/utils/interval.mjs +1 -2
- package/utils/parseTable.d.ts +5 -0
- package/utils/parseTable.js +1 -1
- package/utils/rootInstance.js +3 -2
- package/utils/samplesGenerator.js +1 -2
- package/utils/samplesGenerator.mjs +1 -2
- package/utils/staticRegister.js +3 -1
- package/utils/staticRegister.mjs +1 -0
- package/validators/autocompleteValidator/autocompleteValidator.d.ts +5 -0
- package/validators/autocompleteValidator/autocompleteValidator.js +1 -1
- package/validators/autocompleteValidator/index.d.ts +1 -0
- package/validators/base.d.ts +6 -0
- package/validators/dateValidator/dateValidator.d.ts +5 -0
- package/validators/dateValidator/dateValidator.js +2 -2
- package/validators/dateValidator/index.d.ts +1 -0
- package/validators/index.d.ts +33 -0
- package/validators/index.js +13 -2
- package/validators/index.mjs +16 -4
- package/validators/numericValidator/index.d.ts +1 -0
- package/validators/numericValidator/numericValidator.d.ts +5 -0
- package/validators/numericValidator/numericValidator.js +1 -1
- package/validators/registry.d.ts +18 -0
- package/validators/registry.js +3 -2
- package/validators/timeValidator/index.d.ts +1 -0
- package/validators/timeValidator/timeValidator.d.ts +5 -0
- package/validators/timeValidator/timeValidator.js +3 -1
- package/validators/timeValidator/timeValidator.mjs +1 -0
- package/handsontable-general-terms.pdf +0 -0
- package/handsontable.d.ts +0 -2616
- package/plugins/formulas/autofill.js +0 -180
- package/plugins/formulas/autofill.mjs +0 -172
@@ -1,35 +1,32 @@
|
|
1
1
|
/*!
|
2
2
|
* Copyright (c) HANDSONCODE sp. z o. o.
|
3
3
|
*
|
4
|
-
* HANDSONTABLE is a software distributed by HANDSONCODE sp. z o. o.,
|
5
|
-
*
|
6
|
-
*
|
7
|
-
* EU tax ID number: PL5862294002, share capital: PLN 62,800.00.
|
4
|
+
* HANDSONTABLE is a software distributed by HANDSONCODE sp. z o. o., a Polish corporation based in
|
5
|
+
* Gdynia, Poland, at Aleja Zwycięstwa 96-98, registered by the District Court in Gdansk under number
|
6
|
+
* 538651, EU tax ID number: PL5862294002, share capital: PLN 62,800.00.
|
8
7
|
*
|
9
|
-
* This software is protected by applicable copyright laws, including
|
10
|
-
*
|
11
|
-
*
|
12
|
-
* or monetary compensation (commercial purposes), or not.
|
8
|
+
* This software is protected by applicable copyright laws, including international treaties, and dual-
|
9
|
+
* licensed – depending on whether your use for commercial purposes, meaning intended for or
|
10
|
+
* resulting in commercial advantage or monetary compensation, or not.
|
13
11
|
*
|
14
|
-
* If your use
|
15
|
-
*
|
16
|
-
* in the "handsontable-non-commercial-license.pdf" file
|
17
|
-
* in the main directory of this software repository.
|
12
|
+
* If your use is strictly personal or solely for evaluation purposes, meaning for the purposes of testing
|
13
|
+
* the suitability, performance, and usefulness of this software outside the production environment,
|
14
|
+
* you agree to be bound by the terms included in the "handsontable-non-commercial-license.pdf" file.
|
18
15
|
*
|
19
|
-
*
|
20
|
-
*
|
21
|
-
* in the "handsontable-general-terms.pdf" file, available in the main
|
22
|
-
* directory of this software repository.
|
16
|
+
* Your use of this software for commercial purposes is subject to the terms included in an applicable
|
17
|
+
* license agreement.
|
23
18
|
*
|
24
|
-
*
|
25
|
-
*
|
26
|
-
* AND UNDER NO LEGAL THEORY, SHALL HANDSONCODE BE LIABLE
|
27
|
-
* TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL,
|
28
|
-
* INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING
|
29
|
-
* FROM USE OR INABILITY TO USE THIS SOFTWARE.
|
19
|
+
* In any case, you must not make any such use of this software as to develop software which may be
|
20
|
+
* considered competitive with this software.
|
30
21
|
*
|
31
|
-
*
|
32
|
-
*
|
22
|
+
* UNLESS EXPRESSLY AGREED OTHERWISE, HANDSONCODE PROVIDES THIS SOFTWARE ON AN "AS IS"
|
23
|
+
* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, AND IN NO EVENT AND UNDER NO
|
24
|
+
* LEGAL THEORY, SHALL HANDSONCODE BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT,
|
25
|
+
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
|
+
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
|
+
*
|
28
|
+
* Version: 11.1.0
|
29
|
+
* Release date: 13/01/2022 (built at 13/01/2022 12:30:12)
|
33
30
|
*/
|
34
31
|
/**
|
35
32
|
* Fix for bootstrap styles
|
@@ -84,10 +81,10 @@
|
|
84
81
|
.col-lg-1.handsontable, .col-lg-10.handsontable, .col-lg-11.handsontable, .col-lg-12.handsontable,
|
85
82
|
.col-lg-2.handsontable, .col-lg-3.handsontable, .col-lg-4.handsontable, .col-lg-5.handsontable, .col-lg-6.handsontable, .col-lg-7.handsontable, .col-lg-8.handsontable, .col-lg-9.handsontable,
|
86
83
|
.col-md-1.handsontable, .col-md-10.handsontable, .col-md-11.handsontable, .col-md-12.handsontable,
|
87
|
-
.col-md-2.handsontable, .col-md-3.handsontable, .col-md-4.handsontable, .col-md-5.handsontable, .col-md-6.handsontable, .col-md-7.handsontable, .col-md-8.handsontable, .col-md-9.handsontable
|
88
|
-
.col-sm-
|
89
|
-
.col-sm-2.handsontable, .col-sm-3.handsontable, .col-sm-4.handsontable, .col-sm-5.handsontable, .col-sm-6.handsontable, .col-sm-7.handsontable, .col-sm-8.handsontable, .col-sm-9.handsontable
|
90
|
-
.col-xs-
|
84
|
+
.col-md-2.handsontable, .col-md-3.handsontable, .col-md-4.handsontable, .col-md-5.handsontable, .col-md-6.handsontable, .col-md-7.handsontable, .col-md-8.handsontable, .col-md-9.handsontable .col-sm-1.handsontable,
|
85
|
+
.col-sm-10.handsontable, .col-sm-11.handsontable, .col-sm-12.handsontable,
|
86
|
+
.col-sm-2.handsontable, .col-sm-3.handsontable, .col-sm-4.handsontable, .col-sm-5.handsontable, .col-sm-6.handsontable, .col-sm-7.handsontable, .col-sm-8.handsontable, .col-sm-9.handsontable .col-xs-1.handsontable,
|
87
|
+
.col-xs-10.handsontable, .col-xs-11.handsontable, .col-xs-12.handsontable,
|
91
88
|
.col-xs-2.handsontable, .col-xs-3.handsontable, .col-xs-4.handsontable, .col-xs-5.handsontable, .col-xs-6.handsontable, .col-xs-7.handsontable, .col-xs-8.handsontable, .col-xs-9.handsontable {
|
92
89
|
padding-left: 0;
|
93
90
|
padding-right: 0;
|
@@ -96,7 +93,6 @@
|
|
96
93
|
.handsontable .table-striped > tbody > tr:nth-of-type(even) {
|
97
94
|
background-color: #FFF;
|
98
95
|
}
|
99
|
-
|
100
96
|
.handsontable {
|
101
97
|
position: relative;
|
102
98
|
}
|
@@ -115,7 +111,8 @@
|
|
115
111
|
|
116
112
|
.handsontable .wtSpreader {
|
117
113
|
position: relative;
|
118
|
-
|
114
|
+
/*must be 0, otherwise blank space appears in scroll demo after scrolling max to the right */
|
115
|
+
width: 0;
|
119
116
|
height: auto;
|
120
117
|
}
|
121
118
|
|
@@ -146,7 +143,8 @@
|
|
146
143
|
-moz-user-select: none;
|
147
144
|
-o-user-select: none;
|
148
145
|
-ms-user-select: none;
|
149
|
-
user-select: none;
|
146
|
+
user-select: none; // no browser supports unprefixed version
|
147
|
+
*/
|
150
148
|
border-spacing: 0;
|
151
149
|
margin: 0;
|
152
150
|
border-width: 0;
|
@@ -185,22 +183,54 @@
|
|
185
183
|
white-space: pre-wrap;
|
186
184
|
}
|
187
185
|
|
186
|
+
[dir=rtl] .handsontable th,
|
187
|
+
[dir=rtl] .handsontable td {
|
188
|
+
border-right-width: 0;
|
189
|
+
border-left: 1px solid #ccc;
|
190
|
+
}
|
191
|
+
|
188
192
|
.handsontable th:last-child {
|
189
193
|
/*Foundation framework fix*/
|
190
194
|
border-right: 1px solid #ccc;
|
191
195
|
border-bottom: 1px solid #ccc;
|
192
196
|
}
|
193
197
|
|
198
|
+
[dir=rtl] .handsontable th:last-child {
|
199
|
+
/*Foundation framework fix*/
|
200
|
+
border-left: 1px solid #ccc;
|
201
|
+
}
|
202
|
+
|
194
203
|
.handsontable th:first-child,
|
195
204
|
.handsontable th:nth-child(2),
|
196
205
|
.handsontable td:first-of-type {
|
197
206
|
border-left: 1px solid #ccc;
|
198
207
|
}
|
199
208
|
|
209
|
+
[dir=rtl] .handsontable th:first-child,
|
210
|
+
[dir=rtl] .handsontable th:nth-child(2),
|
211
|
+
[dir=rtl] .handsontable td:first-of-type {
|
212
|
+
border-right: 1px solid #ccc;
|
213
|
+
}
|
214
|
+
|
215
|
+
/* It removes double right border from first column header when row headers are disabled */
|
216
|
+
.handsontable .ht_clone_top th:nth-child(2) {
|
217
|
+
border-left-width: 0;
|
218
|
+
border-right: 1px solid #ccc;
|
219
|
+
}
|
220
|
+
|
221
|
+
[dir=rtl] .handsontable .ht_clone_top th:nth-child(2) {
|
222
|
+
border-right-width: 0;
|
223
|
+
border-left: 1px solid #ccc;
|
224
|
+
}
|
225
|
+
|
200
226
|
.handsontable.htRowHeaders thead tr th:nth-child(2) {
|
201
227
|
border-left: 1px solid #ccc;
|
202
228
|
}
|
203
229
|
|
230
|
+
[dir=rtl] .handsontable.htRowHeaders thead tr th:nth-child(2) {
|
231
|
+
border-right: 1px solid #ccc;
|
232
|
+
}
|
233
|
+
|
204
234
|
.handsontable tr:first-child th,
|
205
235
|
.handsontable tr:first-child td {
|
206
236
|
border-top: 1px solid #ccc;
|
@@ -209,6 +239,13 @@
|
|
209
239
|
.ht_master:not(.innerBorderLeft):not(.emptyColumns) ~ .handsontable tbody tr th,
|
210
240
|
.ht_master:not(.innerBorderLeft):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
|
211
241
|
border-right-width: 0;
|
242
|
+
border-left: 1px solid #ccc;
|
243
|
+
}
|
244
|
+
|
245
|
+
[dir=rtl] .ht_master:not(.innerBorderLeft):not(.emptyColumns) ~ .handsontable tbody tr th,
|
246
|
+
[dir=rtl] .ht_master:not(.innerBorderLeft):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
|
247
|
+
border-left-width: 0;
|
248
|
+
border-right: 1px solid #ccc;
|
212
249
|
}
|
213
250
|
|
214
251
|
/*
|
@@ -237,6 +274,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
237
274
|
.handsontable th.active {
|
238
275
|
background-color: #ccc;
|
239
276
|
}
|
277
|
+
|
240
278
|
.handsontable thead th .relative {
|
241
279
|
padding: 2px 4px;
|
242
280
|
}
|
@@ -251,6 +289,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
251
289
|
position: absolute;
|
252
290
|
font-size: 0;
|
253
291
|
}
|
292
|
+
|
254
293
|
.handsontable .wtBorder.hidden {
|
255
294
|
display: none !important;
|
256
295
|
}
|
@@ -259,15 +298,16 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
259
298
|
.handsontable .wtBorder.current {
|
260
299
|
z-index: 10;
|
261
300
|
}
|
301
|
+
|
262
302
|
.handsontable .wtBorder.area {
|
263
303
|
z-index: 8;
|
264
304
|
}
|
305
|
+
|
265
306
|
.handsontable .wtBorder.fill {
|
266
307
|
z-index: 6;
|
267
308
|
}
|
268
309
|
|
269
310
|
/* fill handle */
|
270
|
-
|
271
311
|
.handsontable .wtBorder.corner {
|
272
312
|
font-size: 0;
|
273
313
|
cursor: crosshair;
|
@@ -316,10 +356,18 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
316
356
|
border-right: 1px solid #ccc;
|
317
357
|
}
|
318
358
|
|
359
|
+
[dir=rtl] .handsontable tbody tr th:nth-last-child(2) {
|
360
|
+
border-left: 1px solid #ccc;
|
361
|
+
}
|
362
|
+
|
319
363
|
.ht_clone_top_left_corner thead tr th:nth-last-child(2) {
|
320
364
|
border-right: 1px solid #ccc;
|
321
365
|
}
|
322
366
|
|
367
|
+
[dir=rtl] .ht_clone_top_left_corner thead tr th:nth-last-child(2) {
|
368
|
+
border-left: 1px solid #ccc;
|
369
|
+
}
|
370
|
+
|
323
371
|
.handsontable col.hidden {
|
324
372
|
width: 0 !important;
|
325
373
|
}
|
@@ -352,9 +400,17 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
352
400
|
.ht_clone_bottom .wtHolder {
|
353
401
|
overflow: hidden;
|
354
402
|
}
|
355
|
-
|
403
|
+
@charset "UTF-8";
|
356
404
|
.handsontable {
|
357
405
|
touch-action: manipulation;
|
406
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
|
407
|
+
font-size: 13px;
|
408
|
+
font-weight: normal;
|
409
|
+
color: #373737;
|
410
|
+
}
|
411
|
+
|
412
|
+
.handsontable a {
|
413
|
+
color: #104acc;
|
358
414
|
}
|
359
415
|
|
360
416
|
.handsontable.htAutoSize {
|
@@ -365,7 +421,8 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
365
421
|
}
|
366
422
|
|
367
423
|
.handsontable td.htInvalid {
|
368
|
-
|
424
|
+
/*gives priority over td.area selection background*/
|
425
|
+
background-color: #ff4c42 !important;
|
369
426
|
}
|
370
427
|
|
371
428
|
.handsontable td.htNoWrap {
|
@@ -373,19 +430,20 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
373
430
|
}
|
374
431
|
|
375
432
|
#hot-display-license-info {
|
433
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
|
376
434
|
font-size: 10px;
|
377
|
-
|
435
|
+
font-weight: normal;
|
436
|
+
color: #373737;
|
378
437
|
padding: 5px 0 3px 0;
|
379
|
-
font-family: Helvetica, Arial, sans-serif;
|
380
438
|
text-align: left;
|
381
439
|
}
|
382
440
|
|
383
441
|
#hot-display-license-info a {
|
442
|
+
color: #104acc;
|
384
443
|
font-size: 10px;
|
385
444
|
}
|
386
445
|
|
387
446
|
/* plugins */
|
388
|
-
|
389
447
|
/* row + column resizer*/
|
390
448
|
.handsontable .manualColumnResizer {
|
391
449
|
position: absolute;
|
@@ -447,18 +505,20 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
447
505
|
.handsontable .columnSorting.sortAction:hover {
|
448
506
|
text-decoration: underline;
|
449
507
|
cursor: pointer;
|
450
|
-
}
|
508
|
+
}
|
509
|
+
|
510
|
+
/* Arrow position */
|
451
511
|
.handsontable span.colHeader.columnSorting::before {
|
452
512
|
/* Centering start */
|
453
513
|
top: 50%;
|
454
|
-
|
514
|
+
/* One extra pixel for purpose of proper positioning of sorting arrow, when `font-size` set to default */
|
515
|
+
margin-top: -6px;
|
455
516
|
/* Centering end */
|
456
|
-
|
457
|
-
padding-left: 8px;
|
517
|
+
/* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
|
518
|
+
padding-left: 8px;
|
458
519
|
position: absolute;
|
459
520
|
right: -9px;
|
460
|
-
|
461
|
-
content: '';
|
521
|
+
content: "";
|
462
522
|
height: 10px;
|
463
523
|
width: 5px;
|
464
524
|
background-size: contain;
|
@@ -477,7 +537,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
477
537
|
}
|
478
538
|
|
479
539
|
.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::after {
|
480
|
-
content:
|
540
|
+
content: "*";
|
481
541
|
display: inline-block;
|
482
542
|
position: relative;
|
483
543
|
/* The multi-line header and header with longer text need more padding to not hide arrow,
|
@@ -504,51 +564,58 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
504
564
|
.handsontable td.area-5:before,
|
505
565
|
.handsontable td.area-6:before,
|
506
566
|
.handsontable td.area-7:before {
|
507
|
-
content:
|
567
|
+
content: "";
|
508
568
|
position: absolute;
|
509
569
|
top: 0;
|
510
570
|
left: 0;
|
511
571
|
right: 0;
|
512
572
|
bottom: 0;
|
513
|
-
|
573
|
+
/* Fix for IE9 to spread the ":before" pseudo element to 100% height of the parent element */
|
574
|
+
bottom: -100% \9 ;
|
514
575
|
background: #005eff;
|
515
576
|
}
|
516
577
|
|
517
578
|
/* Fix for IE10 and IE11 to spread the ":before" pseudo element to 100% height of the parent element */
|
518
579
|
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
519
580
|
.handsontable td.area:before,
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
581
|
+
.handsontable td.area-1:before,
|
582
|
+
.handsontable td.area-2:before,
|
583
|
+
.handsontable td.area-3:before,
|
584
|
+
.handsontable td.area-4:before,
|
585
|
+
.handsontable td.area-5:before,
|
586
|
+
.handsontable td.area-6:before,
|
587
|
+
.handsontable td.area-7:before {
|
527
588
|
bottom: -100%;
|
528
589
|
}
|
529
590
|
}
|
530
|
-
|
531
591
|
.handsontable td.area:before {
|
532
592
|
opacity: 0.1;
|
533
593
|
}
|
594
|
+
|
534
595
|
.handsontable td.area-1:before {
|
535
596
|
opacity: 0.2;
|
536
597
|
}
|
598
|
+
|
537
599
|
.handsontable td.area-2:before {
|
538
600
|
opacity: 0.27;
|
539
601
|
}
|
602
|
+
|
540
603
|
.handsontable td.area-3:before {
|
541
604
|
opacity: 0.35;
|
542
605
|
}
|
606
|
+
|
543
607
|
.handsontable td.area-4:before {
|
544
608
|
opacity: 0.41;
|
545
609
|
}
|
610
|
+
|
546
611
|
.handsontable td.area-5:before {
|
547
612
|
opacity: 0.47;
|
548
613
|
}
|
614
|
+
|
549
615
|
.handsontable td.area-6:before {
|
550
616
|
opacity: 0.54;
|
551
617
|
}
|
618
|
+
|
552
619
|
.handsontable td.area-7:before {
|
553
620
|
opacity: 0.58;
|
554
621
|
}
|
@@ -605,7 +672,6 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
605
672
|
/*
|
606
673
|
TextRenderer readOnly cell
|
607
674
|
*/
|
608
|
-
|
609
675
|
.handsontable .htDimmed {
|
610
676
|
color: #777;
|
611
677
|
}
|
@@ -614,47 +680,51 @@ TextRenderer readOnly cell
|
|
614
680
|
position: relative;
|
615
681
|
}
|
616
682
|
|
617
|
-
.handsontable .htSubmenu :after{
|
618
|
-
content:
|
683
|
+
.handsontable .htSubmenu :after {
|
684
|
+
content: "▶";
|
619
685
|
color: #777;
|
620
686
|
position: absolute;
|
621
687
|
right: 5px;
|
622
688
|
font-size: 9px;
|
623
689
|
}
|
624
690
|
|
625
|
-
|
626
691
|
/*
|
627
692
|
TextRenderer horizontal alignment
|
628
693
|
*/
|
629
|
-
.handsontable .htLeft{
|
694
|
+
.handsontable .htLeft {
|
630
695
|
text-align: left;
|
631
696
|
}
|
632
|
-
|
697
|
+
|
698
|
+
.handsontable .htCenter {
|
633
699
|
text-align: center;
|
634
700
|
}
|
635
|
-
|
701
|
+
|
702
|
+
.handsontable .htRight {
|
636
703
|
text-align: right;
|
637
704
|
}
|
638
|
-
|
705
|
+
|
706
|
+
.handsontable .htJustify {
|
639
707
|
text-align: justify;
|
640
708
|
}
|
709
|
+
|
641
710
|
/*
|
642
711
|
TextRenderer vertical alignment
|
643
712
|
*/
|
644
|
-
.handsontable .htTop{
|
713
|
+
.handsontable .htTop {
|
645
714
|
vertical-align: top;
|
646
715
|
}
|
647
|
-
|
716
|
+
|
717
|
+
.handsontable .htMiddle {
|
648
718
|
vertical-align: middle;
|
649
719
|
}
|
650
|
-
|
720
|
+
|
721
|
+
.handsontable .htBottom {
|
651
722
|
vertical-align: bottom;
|
652
723
|
}
|
653
724
|
|
654
725
|
/*
|
655
726
|
TextRenderer placeholder value
|
656
727
|
*/
|
657
|
-
|
658
728
|
.handsontable .htPlaceholder {
|
659
729
|
color: #999;
|
660
730
|
}
|
@@ -662,7 +732,6 @@ TextRenderer placeholder value
|
|
662
732
|
/**
|
663
733
|
* Handsontable listbox theme
|
664
734
|
*/
|
665
|
-
|
666
735
|
.handsontable.listbox {
|
667
736
|
margin: 0;
|
668
737
|
}
|
@@ -718,29 +787,27 @@ TextRenderer placeholder value
|
|
718
787
|
.collapsibleIndicator {
|
719
788
|
position: absolute;
|
720
789
|
top: 50%;
|
721
|
-
transform: translate(0
|
790
|
+
transform: translate(0%, -50%);
|
722
791
|
right: 5px;
|
723
792
|
border: 1px solid #A6A6A6;
|
724
|
-
line-height:
|
793
|
+
line-height: 8px;
|
725
794
|
color: #222;
|
726
795
|
border-radius: 10px;
|
727
796
|
font-size: 10px;
|
728
797
|
width: 10px;
|
729
798
|
height: 10px;
|
730
799
|
cursor: pointer;
|
731
|
-
-webkit-box-shadow: 0 0 0 6px
|
732
|
-
-moz-box-shadow: 0 0 0 6px
|
733
|
-
box-shadow: 0 0 0 6px
|
800
|
+
-webkit-box-shadow: 0 0 0 6px #eeeeee;
|
801
|
+
-moz-box-shadow: 0 0 0 6px #eeeeee;
|
802
|
+
box-shadow: 0 0 0 6px #eeeeee;
|
734
803
|
background: #eee;
|
735
804
|
text-align: center;
|
736
805
|
}
|
737
|
-
|
738
806
|
/*
|
739
807
|
|
740
808
|
Handsontable Mobile Text Editor stylesheet
|
741
809
|
|
742
810
|
*/
|
743
|
-
|
744
811
|
.handsontable.mobile,
|
745
812
|
.handsontable.mobile .wtHolder {
|
746
813
|
-webkit-touch-callout: none;
|
@@ -749,7 +816,7 @@ TextRenderer placeholder value
|
|
749
816
|
-moz-user-select: none;
|
750
817
|
-ms-user-select: none;
|
751
818
|
user-select: none;
|
752
|
-
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
819
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
753
820
|
-webkit-overflow-scrolling: touch;
|
754
821
|
}
|
755
822
|
|
@@ -787,23 +854,20 @@ TextRenderer placeholder value
|
|
787
854
|
animation-fill-mode: forwards;
|
788
855
|
-webkit-animation-fill-mode: forwards;
|
789
856
|
}
|
790
|
-
|
791
857
|
@charset "UTF-8";
|
792
|
-
|
793
858
|
/*!
|
794
859
|
* Pikaday
|
795
860
|
* Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
|
796
861
|
*/
|
797
|
-
|
798
862
|
.pika-single {
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
863
|
+
z-index: 9999;
|
864
|
+
display: block;
|
865
|
+
position: relative;
|
866
|
+
color: #333;
|
867
|
+
background: #fff;
|
868
|
+
border: 1px solid #ccc;
|
869
|
+
border-bottom-color: #bbb;
|
870
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
807
871
|
}
|
808
872
|
|
809
873
|
/*
|
@@ -812,226 +876,230 @@ http://nicolasgallagher.com/micro-clearfix-hack/
|
|
812
876
|
*/
|
813
877
|
.pika-single:before,
|
814
878
|
.pika-single:after {
|
815
|
-
|
816
|
-
|
879
|
+
content: " ";
|
880
|
+
display: table;
|
881
|
+
}
|
882
|
+
|
883
|
+
.pika-single:after {
|
884
|
+
clear: both;
|
885
|
+
}
|
886
|
+
|
887
|
+
.pika-single {
|
888
|
+
*zoom: 1;
|
817
889
|
}
|
818
|
-
.pika-single:after { clear: both }
|
819
|
-
.pika-single { *zoom: 1 }
|
820
890
|
|
821
891
|
.pika-single.is-hidden {
|
822
|
-
|
892
|
+
display: none;
|
823
893
|
}
|
824
894
|
|
825
895
|
.pika-single.is-bound {
|
826
|
-
|
827
|
-
|
896
|
+
position: absolute;
|
897
|
+
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
|
828
898
|
}
|
829
899
|
|
830
900
|
.pika-lendar {
|
831
|
-
|
832
|
-
|
833
|
-
|
901
|
+
float: left;
|
902
|
+
width: 240px;
|
903
|
+
margin: 8px;
|
834
904
|
}
|
835
905
|
|
836
906
|
.pika-title {
|
837
|
-
|
838
|
-
|
907
|
+
position: relative;
|
908
|
+
text-align: center;
|
839
909
|
}
|
840
910
|
|
841
911
|
.pika-label {
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
912
|
+
display: inline-block;
|
913
|
+
*display: inline;
|
914
|
+
position: relative;
|
915
|
+
z-index: 9999;
|
916
|
+
overflow: hidden;
|
917
|
+
margin: 0;
|
918
|
+
padding: 5px 3px;
|
919
|
+
font-size: 14px;
|
920
|
+
line-height: 20px;
|
921
|
+
font-weight: bold;
|
922
|
+
background-color: #fff;
|
853
923
|
}
|
924
|
+
|
854
925
|
.pika-title select {
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
926
|
+
cursor: pointer;
|
927
|
+
position: absolute;
|
928
|
+
z-index: 9998;
|
929
|
+
margin: 0;
|
930
|
+
left: 0;
|
931
|
+
top: 5px;
|
932
|
+
filter: alpha(opacity=0);
|
933
|
+
opacity: 0;
|
863
934
|
}
|
864
935
|
|
865
936
|
.pika-prev,
|
866
937
|
.pika-next {
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
938
|
+
display: block;
|
939
|
+
cursor: pointer;
|
940
|
+
position: relative;
|
941
|
+
outline: none;
|
942
|
+
border: 0;
|
943
|
+
padding: 0;
|
944
|
+
width: 20px;
|
945
|
+
height: 30px;
|
946
|
+
/* hide text using text-indent trick, using width value (it's enough) */
|
947
|
+
text-indent: 20px;
|
948
|
+
white-space: nowrap;
|
949
|
+
overflow: hidden;
|
950
|
+
background-color: transparent;
|
951
|
+
background-position: center center;
|
952
|
+
background-repeat: no-repeat;
|
953
|
+
background-size: 75% 75%;
|
954
|
+
opacity: 0.5;
|
955
|
+
*position: absolute;
|
956
|
+
*top: 0;
|
886
957
|
}
|
887
958
|
|
888
959
|
.pika-prev:hover,
|
889
960
|
.pika-next:hover {
|
890
|
-
|
961
|
+
opacity: 1;
|
891
962
|
}
|
892
963
|
|
893
964
|
.pika-prev,
|
894
965
|
.is-rtl .pika-next {
|
895
|
-
|
896
|
-
|
897
|
-
|
966
|
+
float: left;
|
967
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
|
968
|
+
*left: 0;
|
898
969
|
}
|
899
970
|
|
900
971
|
.pika-next,
|
901
972
|
.is-rtl .pika-prev {
|
902
|
-
|
903
|
-
|
904
|
-
|
973
|
+
float: right;
|
974
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
|
975
|
+
*right: 0;
|
905
976
|
}
|
906
977
|
|
907
978
|
.pika-prev.is-disabled,
|
908
979
|
.pika-next.is-disabled {
|
909
|
-
|
910
|
-
|
980
|
+
cursor: default;
|
981
|
+
opacity: 0.2;
|
911
982
|
}
|
912
983
|
|
913
984
|
.pika-select {
|
914
|
-
|
915
|
-
|
985
|
+
display: inline-block;
|
986
|
+
*display: inline;
|
916
987
|
}
|
917
988
|
|
918
989
|
.pika-table {
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
990
|
+
width: 100%;
|
991
|
+
border-collapse: collapse;
|
992
|
+
border-spacing: 0;
|
993
|
+
border: 0;
|
923
994
|
}
|
924
995
|
|
925
996
|
.pika-table th,
|
926
997
|
.pika-table td {
|
927
|
-
|
928
|
-
|
998
|
+
width: 14.2857142857%;
|
999
|
+
padding: 0;
|
929
1000
|
}
|
930
1001
|
|
931
1002
|
.pika-table th {
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
1003
|
+
color: #999;
|
1004
|
+
font-size: 12px;
|
1005
|
+
line-height: 25px;
|
1006
|
+
font-weight: bold;
|
1007
|
+
text-align: center;
|
937
1008
|
}
|
938
1009
|
|
939
1010
|
.pika-button {
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
1011
|
+
cursor: pointer;
|
1012
|
+
display: block;
|
1013
|
+
box-sizing: border-box;
|
1014
|
+
-moz-box-sizing: border-box;
|
1015
|
+
outline: none;
|
1016
|
+
border: 0;
|
1017
|
+
margin: 0;
|
1018
|
+
width: 100%;
|
1019
|
+
padding: 5px;
|
1020
|
+
color: #666;
|
1021
|
+
font-size: 12px;
|
1022
|
+
line-height: 15px;
|
1023
|
+
text-align: right;
|
1024
|
+
background: #f5f5f5;
|
954
1025
|
}
|
955
1026
|
|
956
1027
|
.pika-week {
|
957
|
-
|
958
|
-
|
1028
|
+
font-size: 11px;
|
1029
|
+
color: #999;
|
959
1030
|
}
|
960
1031
|
|
961
1032
|
.is-today .pika-button {
|
962
|
-
|
963
|
-
|
1033
|
+
color: #33aaff;
|
1034
|
+
font-weight: bold;
|
964
1035
|
}
|
965
1036
|
|
966
1037
|
.is-selected .pika-button,
|
967
1038
|
.has-event .pika-button {
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
1039
|
+
color: #fff;
|
1040
|
+
font-weight: bold;
|
1041
|
+
background: #33aaff;
|
1042
|
+
box-shadow: inset 0 1px 3px #178fe5;
|
1043
|
+
border-radius: 3px;
|
973
1044
|
}
|
974
1045
|
|
975
1046
|
.has-event .pika-button {
|
976
|
-
|
977
|
-
|
1047
|
+
background: #005da9;
|
1048
|
+
box-shadow: inset 0 1px 3px #0076c9;
|
978
1049
|
}
|
979
1050
|
|
980
1051
|
.is-disabled .pika-button,
|
981
1052
|
.is-inrange .pika-button {
|
982
|
-
|
1053
|
+
background: #D5E9F7;
|
983
1054
|
}
|
984
1055
|
|
985
1056
|
.is-startrange .pika-button {
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
1057
|
+
color: #fff;
|
1058
|
+
background: #6CB31D;
|
1059
|
+
box-shadow: none;
|
1060
|
+
border-radius: 3px;
|
990
1061
|
}
|
991
1062
|
|
992
1063
|
.is-endrange .pika-button {
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
1064
|
+
color: #fff;
|
1065
|
+
background: #33aaff;
|
1066
|
+
box-shadow: none;
|
1067
|
+
border-radius: 3px;
|
997
1068
|
}
|
998
1069
|
|
999
1070
|
.is-disabled .pika-button {
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1071
|
+
pointer-events: none;
|
1072
|
+
cursor: default;
|
1073
|
+
color: #999;
|
1074
|
+
opacity: 0.3;
|
1004
1075
|
}
|
1005
1076
|
|
1006
1077
|
.is-outside-current-month .pika-button {
|
1007
|
-
|
1008
|
-
|
1078
|
+
color: #999;
|
1079
|
+
opacity: 0.3;
|
1009
1080
|
}
|
1010
1081
|
|
1011
1082
|
.is-selection-disabled {
|
1012
|
-
|
1013
|
-
|
1083
|
+
pointer-events: none;
|
1084
|
+
cursor: default;
|
1014
1085
|
}
|
1015
1086
|
|
1016
1087
|
.pika-button:hover,
|
1017
1088
|
.pika-row.pick-whole-week:hover .pika-button {
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1089
|
+
color: #fff;
|
1090
|
+
background: #ff8000;
|
1091
|
+
box-shadow: none;
|
1092
|
+
border-radius: 3px;
|
1022
1093
|
}
|
1023
1094
|
|
1024
1095
|
/* styling for abbr */
|
1025
1096
|
.pika-table abbr {
|
1026
|
-
|
1027
|
-
|
1097
|
+
border-bottom: none;
|
1098
|
+
cursor: help;
|
1028
1099
|
}
|
1029
|
-
|
1030
|
-
|
1031
1100
|
/*
|
1032
1101
|
AutocompleteRenderer down arrow
|
1033
1102
|
*/
|
1034
|
-
|
1035
1103
|
.handsontable .htAutocompleteArrow {
|
1036
1104
|
float: right;
|
1037
1105
|
font-size: 10px;
|
@@ -1048,16 +1116,17 @@ AutocompleteRenderer down arrow
|
|
1048
1116
|
.handsontable td.area .htAutocompleteArrow {
|
1049
1117
|
color: #d3d3d3;
|
1050
1118
|
}
|
1051
|
-
|
1052
1119
|
/*
|
1053
1120
|
CheckboxRenderer
|
1054
1121
|
*/
|
1055
1122
|
.handsontable .htCheckboxRendererInput {
|
1056
1123
|
display: inline-block;
|
1057
1124
|
}
|
1125
|
+
|
1058
1126
|
.handsontable .htCheckboxRendererInput.noValue {
|
1059
1127
|
opacity: 0.5;
|
1060
1128
|
}
|
1129
|
+
|
1061
1130
|
.handsontable .htCheckboxRendererLabel {
|
1062
1131
|
font-size: inherit;
|
1063
1132
|
vertical-align: middle;
|
@@ -1068,13 +1137,12 @@ CheckboxRenderer
|
|
1068
1137
|
.handsontable .htCheckboxRendererLabel.fullWidth {
|
1069
1138
|
width: 100%;
|
1070
1139
|
}
|
1071
|
-
|
1072
1140
|
.htCommentCell {
|
1073
1141
|
position: relative;
|
1074
1142
|
}
|
1075
1143
|
|
1076
1144
|
.htCommentCell:after {
|
1077
|
-
content:
|
1145
|
+
content: "";
|
1078
1146
|
position: absolute;
|
1079
1147
|
top: 0;
|
1080
1148
|
right: 0;
|
@@ -1108,15 +1176,14 @@ CheckboxRenderer
|
|
1108
1176
|
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;
|
1109
1177
|
border-left: 3px solid #5292f7;
|
1110
1178
|
}
|
1111
|
-
|
1112
1179
|
/*!
|
1113
1180
|
* Handsontable ContextMenu
|
1114
1181
|
*/
|
1115
|
-
|
1116
1182
|
.htContextMenu:not(.htGhostTable) {
|
1117
1183
|
display: none;
|
1118
1184
|
position: absolute;
|
1119
|
-
|
1185
|
+
/* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
|
1186
|
+
z-index: 1060;
|
1120
1187
|
}
|
1121
1188
|
|
1122
1189
|
.htContextMenu .ht_clone_top,
|
@@ -1195,7 +1262,6 @@ CheckboxRenderer
|
|
1195
1262
|
.htContextMenu .ht_master .wtHolder {
|
1196
1263
|
overflow: hidden;
|
1197
1264
|
}
|
1198
|
-
|
1199
1265
|
textarea.HandsontableCopyPaste {
|
1200
1266
|
position: fixed !important;
|
1201
1267
|
top: 0 !important;
|
@@ -1204,259 +1270,67 @@ textarea.HandsontableCopyPaste {
|
|
1204
1270
|
opacity: 0;
|
1205
1271
|
outline: 0 none !important;
|
1206
1272
|
}
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1273
|
+
@charset "UTF-8";
|
1274
|
+
/*!
|
1275
|
+
* Handsontable DropdownMenu
|
1276
|
+
*/
|
1277
|
+
.handsontable .changeType {
|
1278
|
+
background: #eee;
|
1279
|
+
border-radius: 2px;
|
1280
|
+
border: 1px solid #bbb;
|
1281
|
+
color: #bbb;
|
1282
|
+
font-size: 9px;
|
1283
|
+
line-height: 9px;
|
1284
|
+
padding: 2px;
|
1285
|
+
margin: 3px 1px 0 5px;
|
1286
|
+
float: right;
|
1211
1287
|
}
|
1212
1288
|
|
1213
|
-
.handsontable .
|
1214
|
-
|
1215
|
-
}
|
1216
|
-
.handsontable.ht__manualColumnMove.after-selection--columns thead th.ht__highlight {
|
1217
|
-
cursor: move;
|
1218
|
-
cursor: -moz-grab;
|
1219
|
-
cursor: -webkit-grab;
|
1220
|
-
cursor: grab;
|
1289
|
+
.handsontable .changeType:before {
|
1290
|
+
content: "▼ ";
|
1221
1291
|
}
|
1222
|
-
|
1223
|
-
.handsontable
|
1224
|
-
|
1225
|
-
|
1226
|
-
cursor:
|
1227
|
-
cursor: grabbing;
|
1292
|
+
|
1293
|
+
.handsontable .changeType:hover {
|
1294
|
+
border: 1px solid #777;
|
1295
|
+
color: #777;
|
1296
|
+
cursor: pointer;
|
1228
1297
|
}
|
1229
|
-
|
1298
|
+
|
1299
|
+
.htDropdownMenu:not(.htGhostTable) {
|
1230
1300
|
display: none;
|
1231
|
-
}
|
1232
|
-
.handsontable .ht__manualColumnMove--guideline,
|
1233
|
-
.handsontable .ht__manualColumnMove--backlight {
|
1234
1301
|
position: absolute;
|
1235
|
-
|
1302
|
+
/* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
|
1303
|
+
z-index: 1060;
|
1304
|
+
}
|
1305
|
+
|
1306
|
+
.htDropdownMenu .ht_clone_top,
|
1307
|
+
.htDropdownMenu .ht_clone_left,
|
1308
|
+
.htDropdownMenu .ht_clone_corner {
|
1236
1309
|
display: none;
|
1237
1310
|
}
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
z-index: 205;
|
1311
|
+
|
1312
|
+
.htDropdownMenu table.htCore {
|
1313
|
+
border: 1px solid #bbb;
|
1314
|
+
border-bottom-width: 2px;
|
1315
|
+
border-right-width: 2px;
|
1244
1316
|
}
|
1245
|
-
|
1246
|
-
|
1247
|
-
|
1248
|
-
display: none;
|
1249
|
-
z-index: 205;
|
1250
|
-
pointer-events: none;
|
1317
|
+
|
1318
|
+
.htDropdownMenu .wtBorder {
|
1319
|
+
visibility: hidden;
|
1251
1320
|
}
|
1252
|
-
|
1253
|
-
.
|
1254
|
-
|
1321
|
+
|
1322
|
+
.htDropdownMenu table tbody tr td {
|
1323
|
+
background: white;
|
1324
|
+
border-width: 0;
|
1325
|
+
padding: 4px 6px 0 6px;
|
1326
|
+
cursor: pointer;
|
1327
|
+
overflow: hidden;
|
1328
|
+
white-space: nowrap;
|
1329
|
+
text-overflow: ellipsis;
|
1255
1330
|
}
|
1256
1331
|
|
1257
|
-
.
|
1258
|
-
|
1259
|
-
}
|
1260
|
-
.handsontable.ht__manualRowMove.after-selection--rows tbody th.ht__highlight {
|
1261
|
-
cursor: move;
|
1262
|
-
cursor: -moz-grab;
|
1263
|
-
cursor: -webkit-grab;
|
1264
|
-
cursor: grab;
|
1265
|
-
}
|
1266
|
-
.handsontable.ht__manualRowMove.on-moving--rows,
|
1267
|
-
.handsontable.ht__manualRowMove.on-moving--rows tbody th.ht__highlight {
|
1268
|
-
cursor: move;
|
1269
|
-
cursor: -moz-grabbing;
|
1270
|
-
cursor: -webkit-grabbing;
|
1271
|
-
cursor: grabbing;
|
1272
|
-
}
|
1273
|
-
.handsontable.ht__manualRowMove.on-moving--rows .manualRowResizer {
|
1274
|
-
display: none;
|
1275
|
-
}
|
1276
|
-
.handsontable .ht__manualRowMove--guideline,
|
1277
|
-
.handsontable .ht__manualRowMove--backlight {
|
1278
|
-
position: absolute;
|
1279
|
-
width: 100%;
|
1280
|
-
display: none;
|
1281
|
-
}
|
1282
|
-
.handsontable .ht__manualRowMove--guideline {
|
1283
|
-
background: #757575;
|
1284
|
-
height: 2px;
|
1285
|
-
left: 0;
|
1286
|
-
margin-top: -1px;
|
1287
|
-
z-index: 205;
|
1288
|
-
}
|
1289
|
-
.handsontable .ht__manualRowMove--backlight {
|
1290
|
-
background: #343434;
|
1291
|
-
background: rgba(52, 52, 52, 0.25);
|
1292
|
-
display: none;
|
1293
|
-
z-index: 205;
|
1294
|
-
pointer-events: none;
|
1295
|
-
}
|
1296
|
-
.handsontable.on-moving--rows.show-ui .ht__manualRowMove--guideline,
|
1297
|
-
.handsontable.on-moving--rows .ht__manualRowMove--backlight {
|
1298
|
-
display: block;
|
1299
|
-
}
|
1300
|
-
|
1301
|
-
.handsontable tbody td[rowspan][class*="area"][class*="highlight"]:not([class*="fullySelectedMergedCell"]):before {
|
1302
|
-
opacity: 0;
|
1303
|
-
}
|
1304
|
-
|
1305
|
-
.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-multiple"]:before {
|
1306
|
-
opacity: 0.1;
|
1307
|
-
}
|
1308
|
-
|
1309
|
-
.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-0"]:before {
|
1310
|
-
opacity: 0.1;
|
1311
|
-
}
|
1312
|
-
|
1313
|
-
.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-1"]:before {
|
1314
|
-
opacity: 0.2;
|
1315
|
-
}
|
1316
|
-
|
1317
|
-
.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-2"]:before {
|
1318
|
-
opacity: 0.27;
|
1319
|
-
}
|
1320
|
-
|
1321
|
-
.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-3"]:before {
|
1322
|
-
opacity: 0.35;
|
1323
|
-
}
|
1324
|
-
|
1325
|
-
.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-4"]:before {
|
1326
|
-
opacity: 0.41;
|
1327
|
-
}
|
1328
|
-
|
1329
|
-
.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-5"]:before {
|
1330
|
-
opacity: 0.47;
|
1331
|
-
}
|
1332
|
-
|
1333
|
-
.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-6"]:before {
|
1334
|
-
opacity: 0.54;
|
1335
|
-
}
|
1336
|
-
|
1337
|
-
.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-7"]:before {
|
1338
|
-
opacity: 0.58;
|
1339
|
-
}
|
1340
|
-
|
1341
|
-
/* Column's number position */
|
1342
|
-
.handsontable span.colHeader.columnSorting::after {
|
1343
|
-
/* Centering start */
|
1344
|
-
top: 50%;
|
1345
|
-
margin-top: -2px; /* Two extra pixels (-2 instead of -4) for purpose of proper positioning of numeric indicators, when `font-size` set to default */
|
1346
|
-
/* Centering end */
|
1347
|
-
|
1348
|
-
position: absolute;
|
1349
|
-
right: -15px;
|
1350
|
-
padding-left: 5px; ; /* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */
|
1351
|
-
|
1352
|
-
font-size: 8px;
|
1353
|
-
height: 8px;
|
1354
|
-
line-height: 1.1;
|
1355
|
-
text-decoration: underline; /* Workaround for IE9 - IE11 */
|
1356
|
-
}
|
1357
|
-
|
1358
|
-
/* Workaround for IE9 - IE11, https://stackoverflow.com/a/21902566, https://stackoverflow.com/a/32120247 */
|
1359
|
-
.handsontable span.colHeader.columnSorting::after {
|
1360
|
-
text-decoration: none;
|
1361
|
-
}
|
1362
|
-
|
1363
|
-
/* We support up to 7 numeric indicators, describing order of column in sorted columns queue */
|
1364
|
-
.handsontable span.colHeader.columnSorting[class^="sort-"]::after,
|
1365
|
-
.handsontable span.colHeader.columnSorting[class*=" sort-"]::after {
|
1366
|
-
content: "+"
|
1367
|
-
}
|
1368
|
-
|
1369
|
-
.handsontable span.colHeader.columnSorting.sort-1::after {
|
1370
|
-
content: '1';
|
1371
|
-
}
|
1372
|
-
|
1373
|
-
.handsontable span.colHeader.columnSorting.sort-2::after {
|
1374
|
-
content: '2';
|
1375
|
-
}
|
1376
|
-
|
1377
|
-
.handsontable span.colHeader.columnSorting.sort-3::after {
|
1378
|
-
content: '3';
|
1379
|
-
}
|
1380
|
-
|
1381
|
-
.handsontable span.colHeader.columnSorting.sort-4::after {
|
1382
|
-
content: '4';
|
1383
|
-
}
|
1384
|
-
|
1385
|
-
.handsontable span.colHeader.columnSorting.sort-5::after {
|
1386
|
-
content: '5';
|
1387
|
-
}
|
1388
|
-
|
1389
|
-
.handsontable span.colHeader.columnSorting.sort-6::after {
|
1390
|
-
content: '6';
|
1391
|
-
}
|
1392
|
-
|
1393
|
-
.handsontable span.colHeader.columnSorting.sort-7::after {
|
1394
|
-
content: '7';
|
1395
|
-
}
|
1396
|
-
|
1397
|
-
/* Drop-down menu widens header by 5 pixels, sort sequence numbers won't overlap the icon; mainly for the IE9+ */
|
1398
|
-
.htGhostTable th div button.changeType + span.colHeader.columnSorting:not(.indicatorDisabled) {
|
1399
|
-
padding-right: 5px;
|
1400
|
-
}
|
1401
|
-
|
1402
|
-
/*!
|
1403
|
-
* Handsontable DropdownMenu
|
1404
|
-
*/
|
1405
|
-
.handsontable .changeType {
|
1406
|
-
background: #eee;
|
1407
|
-
border-radius: 2px;
|
1408
|
-
border: 1px solid #bbb;
|
1409
|
-
color: #bbb;
|
1410
|
-
font-size: 9px;
|
1411
|
-
line-height: 9px;
|
1412
|
-
padding: 2px;
|
1413
|
-
margin: 3px 1px 0 5px;
|
1414
|
-
float: right;
|
1415
|
-
}
|
1416
|
-
.handsontable .changeType:before {
|
1417
|
-
content: '\25BC\ ';
|
1418
|
-
}
|
1419
|
-
|
1420
|
-
.handsontable .changeType:hover {
|
1421
|
-
border: 1px solid #777;
|
1422
|
-
color: #777;
|
1423
|
-
cursor: pointer;
|
1424
|
-
}
|
1425
|
-
|
1426
|
-
.htDropdownMenu:not(.htGhostTable) {
|
1427
|
-
display: none;
|
1428
|
-
position: absolute;
|
1429
|
-
z-index: 1060; /* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
|
1430
|
-
}
|
1431
|
-
|
1432
|
-
.htDropdownMenu .ht_clone_top,
|
1433
|
-
.htDropdownMenu .ht_clone_left,
|
1434
|
-
.htDropdownMenu .ht_clone_corner {
|
1435
|
-
display: none;
|
1436
|
-
}
|
1437
|
-
|
1438
|
-
.htDropdownMenu table.htCore {
|
1439
|
-
border: 1px solid #bbb;
|
1440
|
-
border-bottom-width: 2px;
|
1441
|
-
border-right-width: 2px;
|
1442
|
-
}
|
1443
|
-
|
1444
|
-
.htDropdownMenu .wtBorder {
|
1445
|
-
visibility: hidden;
|
1446
|
-
}
|
1447
|
-
|
1448
|
-
.htDropdownMenu table tbody tr td {
|
1449
|
-
background: white;
|
1450
|
-
border-width: 0;
|
1451
|
-
padding: 4px 6px 0 6px;
|
1452
|
-
cursor: pointer;
|
1453
|
-
overflow: hidden;
|
1454
|
-
white-space: nowrap;
|
1455
|
-
text-overflow: ellipsis;
|
1456
|
-
}
|
1457
|
-
|
1458
|
-
.htDropdownMenu table tbody tr td:first-child {
|
1459
|
-
border: 0;
|
1332
|
+
.htDropdownMenu table tbody tr td:first-child {
|
1333
|
+
border: 0;
|
1460
1334
|
}
|
1461
1335
|
|
1462
1336
|
.htDropdownMenu table tbody tr td.htDimmed {
|
@@ -1504,11 +1378,10 @@ textarea.HandsontableCopyPaste {
|
|
1504
1378
|
.htDropdownMenu .ht_master .wtHolder {
|
1505
1379
|
overflow: hidden;
|
1506
1380
|
}
|
1507
|
-
|
1381
|
+
@charset "UTF-8";
|
1508
1382
|
/*!
|
1509
1383
|
* Handsontable Filters
|
1510
1384
|
*/
|
1511
|
-
|
1512
1385
|
/* Conditions menu */
|
1513
1386
|
.htFiltersConditionsMenu:not(.htGhostTable) {
|
1514
1387
|
display: none;
|
@@ -1614,6 +1487,7 @@ textarea.HandsontableCopyPaste {
|
|
1614
1487
|
.handsontable .htFiltersMenuCondition.border {
|
1615
1488
|
border-bottom: 1px dotted #ccc !important;
|
1616
1489
|
}
|
1490
|
+
|
1617
1491
|
.handsontable .htFiltersMenuCondition .htUIInput {
|
1618
1492
|
padding: 0 0 5px 0;
|
1619
1493
|
}
|
@@ -1622,9 +1496,11 @@ textarea.HandsontableCopyPaste {
|
|
1622
1496
|
.handsontable .htFiltersMenuValue {
|
1623
1497
|
border-bottom: 1px dotted #ccc !important;
|
1624
1498
|
}
|
1499
|
+
|
1625
1500
|
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch {
|
1626
1501
|
padding: 0;
|
1627
1502
|
}
|
1503
|
+
|
1628
1504
|
.handsontable .htFiltersMenuCondition .htUIInput input,
|
1629
1505
|
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input {
|
1630
1506
|
font-family: inherit;
|
@@ -1653,7 +1529,6 @@ textarea.HandsontableCopyPaste {
|
|
1653
1529
|
}
|
1654
1530
|
|
1655
1531
|
.handsontable .htUIClearAll a, .handsontable .htUISelectAll a {
|
1656
|
-
color: #3283D8;
|
1657
1532
|
font-size: 0.75em;
|
1658
1533
|
}
|
1659
1534
|
|
@@ -1674,13 +1549,16 @@ textarea.HandsontableCopyPaste {
|
|
1674
1549
|
position: relative;
|
1675
1550
|
text-align: center;
|
1676
1551
|
}
|
1552
|
+
|
1677
1553
|
.handsontable .htUIInput input {
|
1678
1554
|
border-radius: 2px;
|
1679
1555
|
border: 1px solid #d2d1d1;
|
1680
1556
|
}
|
1557
|
+
|
1681
1558
|
.handsontable .htUIInput input:focus {
|
1682
1559
|
outline: 0;
|
1683
1560
|
}
|
1561
|
+
|
1684
1562
|
.handsontable .htUIInputIcon {
|
1685
1563
|
position: absolute;
|
1686
1564
|
}
|
@@ -1690,16 +1568,18 @@ textarea.HandsontableCopyPaste {
|
|
1690
1568
|
cursor: pointer;
|
1691
1569
|
display: inline-block;
|
1692
1570
|
}
|
1571
|
+
|
1693
1572
|
.handsontable .htUIInput.htUIButton input {
|
1694
1573
|
background-color: #eee;
|
1695
1574
|
color: #000;
|
1696
1575
|
cursor: pointer;
|
1697
1576
|
font-family: inherit;
|
1698
|
-
font-size: 0.
|
1577
|
+
font-size: 0.75em;
|
1699
1578
|
font-weight: bold;
|
1700
1579
|
height: 19px;
|
1701
1580
|
min-width: 64px;
|
1702
1581
|
}
|
1582
|
+
|
1703
1583
|
.handsontable .htUIInput.htUIButton input:hover {
|
1704
1584
|
border-color: #b9b9b9;
|
1705
1585
|
}
|
@@ -1713,6 +1593,7 @@ textarea.HandsontableCopyPaste {
|
|
1713
1593
|
border-color: #18804e;
|
1714
1594
|
color: #fff;
|
1715
1595
|
}
|
1596
|
+
|
1716
1597
|
.handsontable .htUIInput.htUIButtonOK input:hover {
|
1717
1598
|
border-color: #1a6f46;
|
1718
1599
|
}
|
@@ -1723,31 +1604,35 @@ textarea.HandsontableCopyPaste {
|
|
1723
1604
|
margin-bottom: 7px;
|
1724
1605
|
position: relative;
|
1725
1606
|
}
|
1607
|
+
|
1726
1608
|
.handsontable .htUISelectCaption {
|
1727
1609
|
background-color: #e8e8e8;
|
1728
1610
|
border-radius: 2px;
|
1729
1611
|
border: 1px solid #d2d1d1;
|
1730
1612
|
font-family: inherit;
|
1731
|
-
font-size: 0.
|
1613
|
+
font-size: 0.75em;
|
1732
1614
|
font-weight: bold;
|
1733
1615
|
padding: 3px 20px 3px 10px;
|
1734
1616
|
text-overflow: ellipsis;
|
1735
1617
|
white-space: nowrap;
|
1736
1618
|
overflow: hidden;
|
1737
1619
|
}
|
1620
|
+
|
1738
1621
|
.handsontable .htUISelectCaption:hover {
|
1739
1622
|
background-color: #e8e8e8;
|
1740
1623
|
border: 1px solid #b9b9b9;
|
1741
1624
|
}
|
1625
|
+
|
1742
1626
|
.handsontable .htUISelectDropdown:after {
|
1743
|
-
content:
|
1627
|
+
content: "▲";
|
1744
1628
|
font-size: 7px;
|
1745
1629
|
position: absolute;
|
1746
1630
|
right: 10px;
|
1747
1631
|
top: 0;
|
1748
1632
|
}
|
1633
|
+
|
1749
1634
|
.handsontable .htUISelectDropdown:before {
|
1750
|
-
content:
|
1635
|
+
content: "▼";
|
1751
1636
|
font-size: 7px;
|
1752
1637
|
position: absolute;
|
1753
1638
|
right: 10px;
|
@@ -1758,6 +1643,7 @@ textarea.HandsontableCopyPaste {
|
|
1758
1643
|
.handsontable .htUIMultipleSelect .handsontable .htCore {
|
1759
1644
|
border: none;
|
1760
1645
|
}
|
1646
|
+
|
1761
1647
|
.handsontable .htUIMultipleSelect .handsontable .htCore td:hover {
|
1762
1648
|
background-color: #F5F5F5;
|
1763
1649
|
}
|
@@ -1789,67 +1675,7 @@ textarea.HandsontableCopyPaste {
|
|
1789
1675
|
.handsontable .htFiltersMenuOperators {
|
1790
1676
|
padding-bottom: 5px;
|
1791
1677
|
}
|
1792
|
-
|
1793
|
-
.handsontable thead th.hiddenHeader:not(:first-of-type) {
|
1794
|
-
display: none;
|
1795
|
-
}
|
1796
|
-
|
1797
|
-
.handsontable th.ht_nestingLevels {
|
1798
|
-
text-align: left;
|
1799
|
-
padding-left: 7px;
|
1800
|
-
}
|
1801
|
-
|
1802
|
-
.handsontable th div.ht_nestingLevels {
|
1803
|
-
display: inline-block;
|
1804
|
-
position: absolute;
|
1805
|
-
left: 11px;
|
1806
|
-
}
|
1807
|
-
|
1808
|
-
.handsontable.innerBorderLeft th div.ht_nestingLevels,
|
1809
|
-
.handsontable.innerBorderLeft ~ .handsontable th div.ht_nestingLevels {
|
1810
|
-
right: 10px;
|
1811
|
-
}
|
1812
|
-
|
1813
|
-
.handsontable th span.ht_nestingLevel {
|
1814
|
-
display: inline-block;
|
1815
|
-
}
|
1816
|
-
|
1817
|
-
.handsontable th span.ht_nestingLevel_empty {
|
1818
|
-
display: inline-block;
|
1819
|
-
width: 10px;
|
1820
|
-
height: 1px;
|
1821
|
-
float: left;
|
1822
|
-
}
|
1823
|
-
|
1824
|
-
.handsontable th span.ht_nestingLevel::after {
|
1825
|
-
content: "\2510";
|
1826
|
-
font-size: 9px;
|
1827
|
-
display: inline-block;
|
1828
|
-
position: relative;
|
1829
|
-
bottom: 3px;
|
1830
|
-
}
|
1831
|
-
|
1832
|
-
|
1833
|
-
.handsontable th div.ht_nestingButton {
|
1834
|
-
display: inline-block;
|
1835
|
-
position: absolute;
|
1836
|
-
right: -2px;
|
1837
|
-
cursor: pointer;
|
1838
|
-
}
|
1839
|
-
|
1840
|
-
.handsontable th div.ht_nestingButton.ht_nestingExpand::after {
|
1841
|
-
content: "\002B";
|
1842
|
-
}
|
1843
|
-
|
1844
|
-
.handsontable th div.ht_nestingButton.ht_nestingCollapse::after {
|
1845
|
-
content: "\002D";
|
1846
|
-
}
|
1847
|
-
|
1848
|
-
.handsontable.innerBorderLeft th div.ht_nestingButton,
|
1849
|
-
.handsontable.innerBorderLeft ~ .handsontable th div.ht_nestingButton {
|
1850
|
-
right: 0;
|
1851
|
-
}
|
1852
|
-
|
1678
|
+
@charset "UTF-8";
|
1853
1679
|
/*
|
1854
1680
|
* Handsontable HiddenColumns
|
1855
1681
|
*/
|
@@ -1869,15 +1695,17 @@ textarea.HandsontableCopyPaste {
|
|
1869
1695
|
.handsontable th.afterHiddenColumn {
|
1870
1696
|
position: relative;
|
1871
1697
|
}
|
1698
|
+
|
1872
1699
|
.handsontable th.beforeHiddenColumn::after {
|
1873
1700
|
right: 1px;
|
1874
|
-
content:
|
1701
|
+
content: "◀";
|
1875
1702
|
}
|
1703
|
+
|
1876
1704
|
.handsontable th.afterHiddenColumn::before {
|
1877
1705
|
left: 1px;
|
1878
|
-
content:
|
1706
|
+
content: "▶";
|
1879
1707
|
}
|
1880
|
-
|
1708
|
+
@charset "UTF-8";
|
1881
1709
|
/*!
|
1882
1710
|
* Handsontable HiddenRows
|
1883
1711
|
*/
|
@@ -1896,20 +1724,283 @@ textarea.HandsontableCopyPaste {
|
|
1896
1724
|
}
|
1897
1725
|
|
1898
1726
|
.handsontable th.beforeHiddenRow::before {
|
1899
|
-
content:
|
1727
|
+
content: "▲";
|
1900
1728
|
bottom: 2px;
|
1901
1729
|
}
|
1902
1730
|
|
1903
1731
|
.handsontable th.afterHiddenRow::after {
|
1904
|
-
content:
|
1732
|
+
content: "▼";
|
1905
1733
|
top: 2px;
|
1906
1734
|
}
|
1735
|
+
|
1907
1736
|
.handsontable.ht__selection--rows tbody th.beforeHiddenRow.ht__highlight:before,
|
1908
1737
|
.handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight:after {
|
1909
1738
|
color: #eee;
|
1910
1739
|
}
|
1740
|
+
|
1911
1741
|
.handsontable td.afterHiddenRow.firstVisibleRow,
|
1912
1742
|
.handsontable th.afterHiddenRow.firstVisibleRow {
|
1913
1743
|
border-top: 1px solid #CCC;
|
1914
1744
|
}
|
1745
|
+
.htRowHeaders .ht_master.innerBorderLeft ~ .ht_clone_top_left_corner th:nth-child(2),
|
1746
|
+
.htRowHeaders .ht_master.innerBorderLeft ~ .ht_clone_left td:first-of-type {
|
1747
|
+
border-left: 0 none;
|
1748
|
+
}
|
1749
|
+
.handsontable .wtHider {
|
1750
|
+
position: relative;
|
1751
|
+
}
|
1752
|
+
|
1753
|
+
.handsontable.ht__manualColumnMove.after-selection--columns thead th.ht__highlight {
|
1754
|
+
cursor: move;
|
1755
|
+
cursor: -moz-grab;
|
1756
|
+
cursor: -webkit-grab;
|
1757
|
+
cursor: grab;
|
1758
|
+
}
|
1759
|
+
|
1760
|
+
.handsontable.ht__manualColumnMove.on-moving--columns,
|
1761
|
+
.handsontable.ht__manualColumnMove.on-moving--columns thead th.ht__highlight {
|
1762
|
+
cursor: move;
|
1763
|
+
cursor: -moz-grabbing;
|
1764
|
+
cursor: -webkit-grabbing;
|
1765
|
+
cursor: grabbing;
|
1766
|
+
}
|
1767
|
+
|
1768
|
+
.handsontable.ht__manualColumnMove.on-moving--columns .manualColumnResizer {
|
1769
|
+
display: none;
|
1770
|
+
}
|
1771
|
+
|
1772
|
+
.handsontable .ht__manualColumnMove--guideline,
|
1773
|
+
.handsontable .ht__manualColumnMove--backlight {
|
1774
|
+
position: absolute;
|
1775
|
+
height: 100%;
|
1776
|
+
display: none;
|
1777
|
+
}
|
1778
|
+
|
1779
|
+
.handsontable .ht__manualColumnMove--guideline {
|
1780
|
+
background: #757575;
|
1781
|
+
width: 2px;
|
1782
|
+
top: 0;
|
1783
|
+
margin-left: -1px;
|
1784
|
+
z-index: 205;
|
1785
|
+
}
|
1786
|
+
|
1787
|
+
.handsontable .ht__manualColumnMove--backlight {
|
1788
|
+
background: #343434;
|
1789
|
+
background: rgba(52, 52, 52, 0.25);
|
1790
|
+
display: none;
|
1791
|
+
z-index: 205;
|
1792
|
+
pointer-events: none;
|
1793
|
+
}
|
1794
|
+
|
1795
|
+
.handsontable.on-moving--columns.show-ui .ht__manualColumnMove--guideline,
|
1796
|
+
.handsontable.on-moving--columns .ht__manualColumnMove--backlight {
|
1797
|
+
display: block;
|
1798
|
+
}
|
1799
|
+
.handsontable .wtHider {
|
1800
|
+
position: relative;
|
1801
|
+
}
|
1802
|
+
|
1803
|
+
.handsontable.ht__manualRowMove.after-selection--rows tbody th.ht__highlight {
|
1804
|
+
cursor: move;
|
1805
|
+
cursor: -moz-grab;
|
1806
|
+
cursor: -webkit-grab;
|
1807
|
+
cursor: grab;
|
1808
|
+
}
|
1809
|
+
|
1810
|
+
.handsontable.ht__manualRowMove.on-moving--rows,
|
1811
|
+
.handsontable.ht__manualRowMove.on-moving--rows tbody th.ht__highlight {
|
1812
|
+
cursor: move;
|
1813
|
+
cursor: -moz-grabbing;
|
1814
|
+
cursor: -webkit-grabbing;
|
1815
|
+
cursor: grabbing;
|
1816
|
+
}
|
1817
|
+
|
1818
|
+
.handsontable.ht__manualRowMove.on-moving--rows .manualRowResizer {
|
1819
|
+
display: none;
|
1820
|
+
}
|
1821
|
+
|
1822
|
+
.handsontable .ht__manualRowMove--guideline,
|
1823
|
+
.handsontable .ht__manualRowMove--backlight {
|
1824
|
+
position: absolute;
|
1825
|
+
width: 100%;
|
1826
|
+
display: none;
|
1827
|
+
}
|
1828
|
+
|
1829
|
+
.handsontable .ht__manualRowMove--guideline {
|
1830
|
+
background: #757575;
|
1831
|
+
height: 2px;
|
1832
|
+
left: 0;
|
1833
|
+
margin-top: -1px;
|
1834
|
+
z-index: 205;
|
1835
|
+
}
|
1836
|
+
|
1837
|
+
.handsontable .ht__manualRowMove--backlight {
|
1838
|
+
background: #343434;
|
1839
|
+
background: rgba(52, 52, 52, 0.25);
|
1840
|
+
display: none;
|
1841
|
+
z-index: 205;
|
1842
|
+
pointer-events: none;
|
1843
|
+
}
|
1844
|
+
|
1845
|
+
.handsontable.on-moving--rows.show-ui .ht__manualRowMove--guideline,
|
1846
|
+
.handsontable.on-moving--rows .ht__manualRowMove--backlight {
|
1847
|
+
display: block;
|
1848
|
+
}
|
1849
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight]:not([class*=fullySelectedMergedCell]):before {
|
1850
|
+
opacity: 0;
|
1851
|
+
}
|
1852
|
+
|
1853
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-multiple]:before {
|
1854
|
+
opacity: 0.1;
|
1855
|
+
}
|
1856
|
+
|
1857
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-0]:before {
|
1858
|
+
opacity: 0.1;
|
1859
|
+
}
|
1915
1860
|
|
1861
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-1]:before {
|
1862
|
+
opacity: 0.2;
|
1863
|
+
}
|
1864
|
+
|
1865
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-2]:before {
|
1866
|
+
opacity: 0.27;
|
1867
|
+
}
|
1868
|
+
|
1869
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-3]:before {
|
1870
|
+
opacity: 0.35;
|
1871
|
+
}
|
1872
|
+
|
1873
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-4]:before {
|
1874
|
+
opacity: 0.41;
|
1875
|
+
}
|
1876
|
+
|
1877
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-5]:before {
|
1878
|
+
opacity: 0.47;
|
1879
|
+
}
|
1880
|
+
|
1881
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-6]:before {
|
1882
|
+
opacity: 0.54;
|
1883
|
+
}
|
1884
|
+
|
1885
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-7]:before {
|
1886
|
+
opacity: 0.58;
|
1887
|
+
}
|
1888
|
+
/* Column's number position */
|
1889
|
+
.handsontable span.colHeader.columnSorting::after {
|
1890
|
+
/* Centering start */
|
1891
|
+
top: 50%;
|
1892
|
+
/* Two extra pixels (-2 instead of -4) for purpose of proper positioning of numeric indicators, when `font-size` set to default */
|
1893
|
+
margin-top: -2px;
|
1894
|
+
/* Centering end */
|
1895
|
+
position: absolute;
|
1896
|
+
right: -15px;
|
1897
|
+
/* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */
|
1898
|
+
padding-left: 5px;
|
1899
|
+
font-size: 8px;
|
1900
|
+
height: 8px;
|
1901
|
+
line-height: 1.1;
|
1902
|
+
/* Workaround for IE9 - IE11 */
|
1903
|
+
text-decoration: underline;
|
1904
|
+
}
|
1905
|
+
|
1906
|
+
/* Workaround for IE9 - IE11, https://stackoverflow.com/a/21902566, https://stackoverflow.com/a/32120247 */
|
1907
|
+
.handsontable span.colHeader.columnSorting::after {
|
1908
|
+
text-decoration: none;
|
1909
|
+
}
|
1910
|
+
|
1911
|
+
/* We support up to 7 numeric indicators, describing order of column in sorted columns queue */
|
1912
|
+
.handsontable span.colHeader.columnSorting[class^=sort-]::after,
|
1913
|
+
.handsontable span.colHeader.columnSorting[class*=" sort-"]::after {
|
1914
|
+
content: "+";
|
1915
|
+
}
|
1916
|
+
|
1917
|
+
.handsontable span.colHeader.columnSorting.sort-1::after {
|
1918
|
+
content: "1";
|
1919
|
+
}
|
1920
|
+
|
1921
|
+
.handsontable span.colHeader.columnSorting.sort-2::after {
|
1922
|
+
content: "2";
|
1923
|
+
}
|
1924
|
+
|
1925
|
+
.handsontable span.colHeader.columnSorting.sort-3::after {
|
1926
|
+
content: "3";
|
1927
|
+
}
|
1928
|
+
|
1929
|
+
.handsontable span.colHeader.columnSorting.sort-4::after {
|
1930
|
+
content: "4";
|
1931
|
+
}
|
1932
|
+
|
1933
|
+
.handsontable span.colHeader.columnSorting.sort-5::after {
|
1934
|
+
content: "5";
|
1935
|
+
}
|
1936
|
+
|
1937
|
+
.handsontable span.colHeader.columnSorting.sort-6::after {
|
1938
|
+
content: "6";
|
1939
|
+
}
|
1940
|
+
|
1941
|
+
.handsontable span.colHeader.columnSorting.sort-7::after {
|
1942
|
+
content: "7";
|
1943
|
+
}
|
1944
|
+
|
1945
|
+
/* Drop-down menu widens header by 5 pixels, sort sequence numbers won't overlap the icon; mainly for the IE9+ */
|
1946
|
+
.htGhostTable th div button.changeType + span.colHeader.columnSorting:not(.indicatorDisabled) {
|
1947
|
+
padding-right: 5px;
|
1948
|
+
}
|
1949
|
+
.handsontable thead th.hiddenHeader:not(:first-of-type) {
|
1950
|
+
display: none;
|
1951
|
+
}
|
1952
|
+
@charset "UTF-8";
|
1953
|
+
.handsontable th.ht_nestingLevels {
|
1954
|
+
text-align: left;
|
1955
|
+
padding-left: 7px;
|
1956
|
+
}
|
1957
|
+
|
1958
|
+
.handsontable th div.ht_nestingLevels {
|
1959
|
+
display: inline-block;
|
1960
|
+
position: absolute;
|
1961
|
+
left: 11px;
|
1962
|
+
}
|
1963
|
+
|
1964
|
+
.handsontable.innerBorderLeft th div.ht_nestingLevels,
|
1965
|
+
.handsontable.innerBorderLeft ~ .handsontable th div.ht_nestingLevels {
|
1966
|
+
right: 10px;
|
1967
|
+
}
|
1968
|
+
|
1969
|
+
.handsontable th span.ht_nestingLevel {
|
1970
|
+
display: inline-block;
|
1971
|
+
}
|
1972
|
+
|
1973
|
+
.handsontable th span.ht_nestingLevel_empty {
|
1974
|
+
display: inline-block;
|
1975
|
+
width: 10px;
|
1976
|
+
height: 1px;
|
1977
|
+
float: left;
|
1978
|
+
}
|
1979
|
+
|
1980
|
+
.handsontable th span.ht_nestingLevel::after {
|
1981
|
+
content: "┐";
|
1982
|
+
font-size: 9px;
|
1983
|
+
display: inline-block;
|
1984
|
+
position: relative;
|
1985
|
+
bottom: 3px;
|
1986
|
+
}
|
1987
|
+
|
1988
|
+
.handsontable th div.ht_nestingButton {
|
1989
|
+
display: inline-block;
|
1990
|
+
position: absolute;
|
1991
|
+
right: -2px;
|
1992
|
+
cursor: pointer;
|
1993
|
+
}
|
1994
|
+
|
1995
|
+
.handsontable th div.ht_nestingButton.ht_nestingExpand::after {
|
1996
|
+
content: "+";
|
1997
|
+
}
|
1998
|
+
|
1999
|
+
.handsontable th div.ht_nestingButton.ht_nestingCollapse::after {
|
2000
|
+
content: "-";
|
2001
|
+
}
|
2002
|
+
|
2003
|
+
.handsontable.innerBorderLeft th div.ht_nestingButton,
|
2004
|
+
.handsontable.innerBorderLeft ~ .handsontable th div.ht_nestingButton {
|
2005
|
+
right: 0;
|
2006
|
+
}
|