handsontable 0.0.0-next-9ec04ce-20221121
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.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/3rdparty/SheetClip/SheetClip.js +128 -0
- package/3rdparty/SheetClip/SheetClip.mjs +123 -0
- package/3rdparty/SheetClip/index.js +7 -0
- package/3rdparty/SheetClip/index.mjs +1 -0
- package/3rdparty/autoResize/autoResize.js +164 -0
- package/3rdparty/autoResize/autoResize.mjs +160 -0
- package/3rdparty/autoResize/index.js +6 -0
- package/3rdparty/autoResize/index.mjs +1 -0
- package/3rdparty/walkontable/src/border.js +746 -0
- package/3rdparty/walkontable/src/border.mjs +741 -0
- package/3rdparty/walkontable/src/calculator/constants.js +30 -0
- package/3rdparty/walkontable/src/calculator/constants.mjs +23 -0
- package/3rdparty/walkontable/src/calculator/index.js +22 -0
- package/3rdparty/walkontable/src/calculator/index.mjs +4 -0
- package/3rdparty/walkontable/src/calculator/viewportColumns.d.ts +18 -0
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +297 -0
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +292 -0
- package/3rdparty/walkontable/src/calculator/viewportRows.js +175 -0
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +170 -0
- package/3rdparty/walkontable/src/cell/coords.d.ts +16 -0
- package/3rdparty/walkontable/src/cell/coords.js +185 -0
- package/3rdparty/walkontable/src/cell/coords.mjs +180 -0
- package/3rdparty/walkontable/src/cell/range.d.ts +59 -0
- package/3rdparty/walkontable/src/cell/range.js +888 -0
- package/3rdparty/walkontable/src/cell/range.mjs +882 -0
- package/3rdparty/walkontable/src/core/_base.js +395 -0
- package/3rdparty/walkontable/src/core/_base.mjs +390 -0
- package/3rdparty/walkontable/src/core/clone.js +59 -0
- package/3rdparty/walkontable/src/core/clone.mjs +54 -0
- package/3rdparty/walkontable/src/core/core.js +130 -0
- package/3rdparty/walkontable/src/core/core.mjs +125 -0
- package/3rdparty/walkontable/src/event.js +401 -0
- package/3rdparty/walkontable/src/event.mjs +396 -0
- package/3rdparty/walkontable/src/facade/core.js +236 -0
- package/3rdparty/walkontable/src/facade/core.mjs +231 -0
- package/3rdparty/walkontable/src/filter/column.js +107 -0
- package/3rdparty/walkontable/src/filter/column.mjs +102 -0
- package/3rdparty/walkontable/src/filter/row.js +107 -0
- package/3rdparty/walkontable/src/filter/row.mjs +102 -0
- package/3rdparty/walkontable/src/index.d.ts +1 -0
- package/3rdparty/walkontable/src/index.js +37 -0
- package/3rdparty/walkontable/src/index.mjs +10 -0
- package/3rdparty/walkontable/src/overlay/_base.js +363 -0
- package/3rdparty/walkontable/src/overlay/_base.mjs +357 -0
- package/3rdparty/walkontable/src/overlay/bottom.js +397 -0
- package/3rdparty/walkontable/src/overlay/bottom.mjs +391 -0
- package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.js +140 -0
- package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.mjs +134 -0
- package/3rdparty/walkontable/src/overlay/constants.js +26 -0
- package/3rdparty/walkontable/src/overlay/constants.mjs +15 -0
- package/3rdparty/walkontable/src/overlay/index.js +34 -0
- package/3rdparty/walkontable/src/overlay/index.mjs +7 -0
- package/3rdparty/walkontable/src/overlay/inlineStart.js +385 -0
- package/3rdparty/walkontable/src/overlay/inlineStart.mjs +379 -0
- package/3rdparty/walkontable/src/overlay/top.js +415 -0
- package/3rdparty/walkontable/src/overlay/top.mjs +409 -0
- package/3rdparty/walkontable/src/overlay/topInlineStartCorner.js +130 -0
- package/3rdparty/walkontable/src/overlay/topInlineStartCorner.mjs +124 -0
- package/3rdparty/walkontable/src/overlays.js +675 -0
- package/3rdparty/walkontable/src/overlays.mjs +670 -0
- package/3rdparty/walkontable/src/renderer/_base.js +83 -0
- package/3rdparty/walkontable/src/renderer/_base.mjs +78 -0
- package/3rdparty/walkontable/src/renderer/cells.js +127 -0
- package/3rdparty/walkontable/src/renderer/cells.mjs +122 -0
- package/3rdparty/walkontable/src/renderer/colGroup.js +101 -0
- package/3rdparty/walkontable/src/renderer/colGroup.mjs +96 -0
- package/3rdparty/walkontable/src/renderer/columnHeaders.js +115 -0
- package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +110 -0
- package/3rdparty/walkontable/src/renderer/index.js +118 -0
- package/3rdparty/walkontable/src/renderer/index.mjs +107 -0
- package/3rdparty/walkontable/src/renderer/rowHeaders.js +119 -0
- package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +114 -0
- package/3rdparty/walkontable/src/renderer/rows.js +99 -0
- package/3rdparty/walkontable/src/renderer/rows.mjs +94 -0
- package/3rdparty/walkontable/src/renderer/table.js +317 -0
- package/3rdparty/walkontable/src/renderer/table.mjs +313 -0
- package/3rdparty/walkontable/src/scroll.js +316 -0
- package/3rdparty/walkontable/src/scroll.mjs +311 -0
- package/3rdparty/walkontable/src/selection.js +349 -0
- package/3rdparty/walkontable/src/selection.mjs +343 -0
- package/3rdparty/walkontable/src/settings.js +306 -0
- package/3rdparty/walkontable/src/settings.mjs +302 -0
- package/3rdparty/walkontable/src/table/bottom.js +56 -0
- package/3rdparty/walkontable/src/table/bottom.mjs +50 -0
- package/3rdparty/walkontable/src/table/bottomInlineStartCorner.js +57 -0
- package/3rdparty/walkontable/src/table/bottomInlineStartCorner.mjs +51 -0
- package/3rdparty/walkontable/src/table/inlineStart.js +53 -0
- package/3rdparty/walkontable/src/table/inlineStart.mjs +47 -0
- package/3rdparty/walkontable/src/table/master.js +132 -0
- package/3rdparty/walkontable/src/table/master.mjs +126 -0
- package/3rdparty/walkontable/src/table/mixin/calculatedColumns.js +93 -0
- package/3rdparty/walkontable/src/table/mixin/calculatedColumns.mjs +88 -0
- package/3rdparty/walkontable/src/table/mixin/calculatedRows.js +93 -0
- package/3rdparty/walkontable/src/table/mixin/calculatedRows.mjs +88 -0
- package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.js +85 -0
- package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.mjs +80 -0
- package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.js +90 -0
- package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.mjs +85 -0
- package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.js +85 -0
- package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.mjs +80 -0
- package/3rdparty/walkontable/src/table/top.js +56 -0
- package/3rdparty/walkontable/src/table/top.mjs +50 -0
- package/3rdparty/walkontable/src/table/topInlineStartCorner.js +57 -0
- package/3rdparty/walkontable/src/table/topInlineStartCorner.mjs +51 -0
- package/3rdparty/walkontable/src/table.js +1171 -0
- package/3rdparty/walkontable/src/table.mjs +1165 -0
- package/3rdparty/walkontable/src/types.js +98 -0
- package/3rdparty/walkontable/src/types.mjs +97 -0
- package/3rdparty/walkontable/src/utils/column.js +121 -0
- package/3rdparty/walkontable/src/utils/column.mjs +117 -0
- package/3rdparty/walkontable/src/utils/nodesPool.js +48 -0
- package/3rdparty/walkontable/src/utils/nodesPool.mjs +44 -0
- package/3rdparty/walkontable/src/utils/orderView/constants.js +30 -0
- package/3rdparty/walkontable/src/utils/orderView/constants.mjs +23 -0
- package/3rdparty/walkontable/src/utils/orderView/index.js +8 -0
- package/3rdparty/walkontable/src/utils/orderView/index.mjs +3 -0
- package/3rdparty/walkontable/src/utils/orderView/sharedView.js +81 -0
- package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +76 -0
- package/3rdparty/walkontable/src/utils/orderView/view.js +216 -0
- package/3rdparty/walkontable/src/utils/orderView/view.mjs +211 -0
- package/3rdparty/walkontable/src/utils/orderView/viewSize.js +68 -0
- package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +64 -0
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +137 -0
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +132 -0
- package/3rdparty/walkontable/src/utils/row.js +43 -0
- package/3rdparty/walkontable/src/utils/row.mjs +39 -0
- package/3rdparty/walkontable/src/viewport.js +491 -0
- package/3rdparty/walkontable/src/viewport.mjs +486 -0
- package/CHANGELOG.md +716 -0
- package/LICENSE.txt +25 -0
- package/README.md +140 -0
- package/base.d.ts +3 -0
- package/base.js +54 -0
- package/base.mjs +44 -0
- package/cellTypes/autocompleteType/autocompleteType.d.ts +17 -0
- package/cellTypes/autocompleteType/autocompleteType.js +16 -0
- package/cellTypes/autocompleteType/autocompleteType.mjs +10 -0
- package/cellTypes/autocompleteType/index.d.ts +1 -0
- package/cellTypes/autocompleteType/index.js +7 -0
- package/cellTypes/autocompleteType/index.mjs +1 -0
- package/cellTypes/base.d.ts +14 -0
- package/cellTypes/checkboxType/checkboxType.d.ts +14 -0
- package/cellTypes/checkboxType/checkboxType.js +14 -0
- package/cellTypes/checkboxType/checkboxType.mjs +8 -0
- package/cellTypes/checkboxType/index.d.ts +1 -0
- package/cellTypes/checkboxType/index.js +7 -0
- package/cellTypes/checkboxType/index.mjs +1 -0
- package/cellTypes/dateType/dateType.d.ts +17 -0
- package/cellTypes/dateType/dateType.js +17 -0
- package/cellTypes/dateType/dateType.mjs +11 -0
- package/cellTypes/dateType/index.d.ts +1 -0
- package/cellTypes/dateType/index.js +7 -0
- package/cellTypes/dateType/index.mjs +1 -0
- package/cellTypes/dropdownType/dropdownType.d.ts +17 -0
- package/cellTypes/dropdownType/dropdownType.js +17 -0
- package/cellTypes/dropdownType/dropdownType.mjs +11 -0
- package/cellTypes/dropdownType/index.d.ts +1 -0
- package/cellTypes/dropdownType/index.js +7 -0
- package/cellTypes/dropdownType/index.mjs +1 -0
- package/cellTypes/handsontableType/handsontableType.d.ts +14 -0
- package/cellTypes/handsontableType/handsontableType.js +15 -0
- package/cellTypes/handsontableType/handsontableType.mjs +9 -0
- package/cellTypes/handsontableType/index.d.ts +1 -0
- package/cellTypes/handsontableType/index.js +7 -0
- package/cellTypes/handsontableType/index.mjs +1 -0
- package/cellTypes/index.d.ts +47 -0
- package/cellTypes/index.js +52 -0
- package/cellTypes/index.mjs +26 -0
- package/cellTypes/numericType/index.d.ts +1 -0
- package/cellTypes/numericType/index.js +7 -0
- package/cellTypes/numericType/index.mjs +1 -0
- package/cellTypes/numericType/numericType.d.ts +17 -0
- package/cellTypes/numericType/numericType.js +17 -0
- package/cellTypes/numericType/numericType.mjs +11 -0
- package/cellTypes/passwordType/index.d.ts +1 -0
- package/cellTypes/passwordType/index.js +7 -0
- package/cellTypes/passwordType/index.mjs +1 -0
- package/cellTypes/passwordType/passwordType.d.ts +14 -0
- package/cellTypes/passwordType/passwordType.js +15 -0
- package/cellTypes/passwordType/passwordType.mjs +9 -0
- package/cellTypes/registry.d.ts +18 -0
- package/cellTypes/registry.js +60 -0
- package/cellTypes/registry.mjs +51 -0
- package/cellTypes/textType/index.d.ts +1 -0
- package/cellTypes/textType/index.js +7 -0
- package/cellTypes/textType/index.mjs +1 -0
- package/cellTypes/textType/textType.d.ts +14 -0
- package/cellTypes/textType/textType.js +14 -0
- package/cellTypes/textType/textType.mjs +8 -0
- package/cellTypes/timeType/index.d.ts +1 -0
- package/cellTypes/timeType/index.js +7 -0
- package/cellTypes/timeType/index.mjs +1 -0
- package/cellTypes/timeType/timeType.d.ts +17 -0
- package/cellTypes/timeType/timeType.js +16 -0
- package/cellTypes/timeType/timeType.mjs +10 -0
- package/common.d.ts +74 -0
- package/core.d.ts +167 -0
- package/core.js +4684 -0
- package/core.mjs +4679 -0
- package/dataMap/dataMap.js +975 -0
- package/dataMap/dataMap.mjs +970 -0
- package/dataMap/dataSource.js +325 -0
- package/dataMap/dataSource.mjs +320 -0
- package/dataMap/index.js +16 -0
- package/dataMap/index.mjs +7 -0
- package/dataMap/metaManager/index.js +339 -0
- package/dataMap/metaManager/index.mjs +334 -0
- package/dataMap/metaManager/lazyFactoryMap.js +370 -0
- package/dataMap/metaManager/lazyFactoryMap.mjs +366 -0
- package/dataMap/metaManager/metaLayers/cellMeta.js +275 -0
- package/dataMap/metaManager/metaLayers/cellMeta.mjs +270 -0
- package/dataMap/metaManager/metaLayers/columnMeta.js +153 -0
- package/dataMap/metaManager/metaLayers/columnMeta.mjs +148 -0
- package/dataMap/metaManager/metaLayers/globalMeta.js +103 -0
- package/dataMap/metaManager/metaLayers/globalMeta.mjs +98 -0
- package/dataMap/metaManager/metaLayers/tableMeta.js +73 -0
- package/dataMap/metaManager/metaLayers/tableMeta.mjs +69 -0
- package/dataMap/metaManager/metaSchema.js +4610 -0
- package/dataMap/metaManager/metaSchema.mjs +4605 -0
- package/dataMap/metaManager/mods/dynamicCellMeta.js +107 -0
- package/dataMap/metaManager/mods/dynamicCellMeta.mjs +101 -0
- package/dataMap/metaManager/mods/extendMetaProperties.js +104 -0
- package/dataMap/metaManager/mods/extendMetaProperties.mjs +99 -0
- package/dataMap/metaManager/utils.js +99 -0
- package/dataMap/metaManager/utils.mjs +91 -0
- package/dataMap/replaceData.js +119 -0
- package/dataMap/replaceData.mjs +115 -0
- package/dist/README.md +54 -0
- package/dist/handsontable.css +1941 -0
- package/dist/handsontable.full.css +2172 -0
- package/dist/handsontable.full.js +150392 -0
- package/dist/handsontable.full.min.css +47 -0
- package/dist/handsontable.full.min.js +869 -0
- package/dist/handsontable.js +94075 -0
- package/dist/handsontable.min.css +43 -0
- package/dist/handsontable.min.js +31 -0
- package/dist/languages/all.js +583 -0
- package/dist/languages/all.min.js +1 -0
- package/dist/languages/ar-AR.js +157 -0
- package/dist/languages/ar-AR.min.js +1 -0
- package/dist/languages/cs-CZ.js +157 -0
- package/dist/languages/cs-CZ.min.js +1 -0
- package/dist/languages/de-CH.js +158 -0
- package/dist/languages/de-CH.min.js +1 -0
- package/dist/languages/de-DE.js +159 -0
- package/dist/languages/de-DE.min.js +1 -0
- package/dist/languages/en-US.js +160 -0
- package/dist/languages/en-US.min.js +1 -0
- package/dist/languages/es-MX.js +161 -0
- package/dist/languages/es-MX.min.js +1 -0
- package/dist/languages/fr-FR.js +162 -0
- package/dist/languages/fr-FR.min.js +1 -0
- package/dist/languages/it-IT.js +164 -0
- package/dist/languages/it-IT.min.js +1 -0
- package/dist/languages/ja-JP.js +161 -0
- package/dist/languages/ja-JP.min.js +1 -0
- package/dist/languages/ko-KR.js +161 -0
- package/dist/languages/ko-KR.min.js +1 -0
- package/dist/languages/lv-LV.js +161 -0
- package/dist/languages/lv-LV.min.js +1 -0
- package/dist/languages/nb-NO.js +161 -0
- package/dist/languages/nb-NO.min.js +1 -0
- package/dist/languages/nl-NL.js +161 -0
- package/dist/languages/nl-NL.min.js +1 -0
- package/dist/languages/pl-PL.js +161 -0
- package/dist/languages/pl-PL.min.js +1 -0
- package/dist/languages/pt-BR.js +161 -0
- package/dist/languages/pt-BR.min.js +1 -0
- package/dist/languages/ru-RU.js +161 -0
- package/dist/languages/ru-RU.min.js +1 -0
- package/dist/languages/sr-SP.js +161 -0
- package/dist/languages/sr-SP.min.js +1 -0
- package/dist/languages/zh-CN.js +161 -0
- package/dist/languages/zh-CN.min.js +1 -0
- package/dist/languages/zh-TW.js +161 -0
- package/dist/languages/zh-TW.min.js +1 -0
- package/editorManager.js +522 -0
- package/editorManager.mjs +514 -0
- package/editors/autocompleteEditor/autocompleteEditor.d.ts +29 -0
- package/editors/autocompleteEditor/autocompleteEditor.js +584 -0
- package/editors/autocompleteEditor/autocompleteEditor.mjs +578 -0
- package/editors/autocompleteEditor/index.d.ts +1 -0
- package/editors/autocompleteEditor/index.js +7 -0
- package/editors/autocompleteEditor/index.mjs +1 -0
- package/editors/baseEditor/baseEditor.d.ts +45 -0
- package/editors/baseEditor/baseEditor.js +688 -0
- package/editors/baseEditor/baseEditor.mjs +679 -0
- package/editors/baseEditor/index.d.ts +1 -0
- package/editors/baseEditor/index.js +8 -0
- package/editors/baseEditor/index.mjs +1 -0
- package/editors/checkboxEditor/checkboxEditor.d.ts +12 -0
- package/editors/checkboxEditor/checkboxEditor.js +85 -0
- package/editors/checkboxEditor/checkboxEditor.mjs +79 -0
- package/editors/checkboxEditor/index.d.ts +1 -0
- package/editors/checkboxEditor/index.js +7 -0
- package/editors/checkboxEditor/index.mjs +1 -0
- package/editors/dateEditor/dateEditor.d.ts +18 -0
- package/editors/dateEditor/dateEditor.js +325 -0
- package/editors/dateEditor/dateEditor.mjs +318 -0
- package/editors/dateEditor/index.d.ts +1 -0
- package/editors/dateEditor/index.js +7 -0
- package/editors/dateEditor/index.mjs +1 -0
- package/editors/dropdownEditor/dropdownEditor.d.ts +7 -0
- package/editors/dropdownEditor/dropdownEditor.js +81 -0
- package/editors/dropdownEditor/dropdownEditor.mjs +74 -0
- package/editors/dropdownEditor/index.d.ts +1 -0
- package/editors/dropdownEditor/index.js +7 -0
- package/editors/dropdownEditor/index.mjs +1 -0
- package/editors/handsontableEditor/handsontableEditor.d.ts +10 -0
- package/editors/handsontableEditor/handsontableEditor.js +306 -0
- package/editors/handsontableEditor/handsontableEditor.mjs +300 -0
- package/editors/handsontableEditor/index.d.ts +1 -0
- package/editors/handsontableEditor/index.js +7 -0
- package/editors/handsontableEditor/index.mjs +1 -0
- package/editors/index.d.ts +56 -0
- package/editors/index.js +63 -0
- package/editors/index.mjs +30 -0
- package/editors/numericEditor/index.d.ts +1 -0
- package/editors/numericEditor/index.js +7 -0
- package/editors/numericEditor/index.mjs +1 -0
- package/editors/numericEditor/numericEditor.d.ts +7 -0
- package/editors/numericEditor/numericEditor.js +49 -0
- package/editors/numericEditor/numericEditor.mjs +43 -0
- package/editors/passwordEditor/index.d.ts +1 -0
- package/editors/passwordEditor/index.js +7 -0
- package/editors/passwordEditor/index.mjs +1 -0
- package/editors/passwordEditor/passwordEditor.d.ts +7 -0
- package/editors/passwordEditor/passwordEditor.js +68 -0
- package/editors/passwordEditor/passwordEditor.mjs +62 -0
- package/editors/registry.d.ts +29 -0
- package/editors/registry.js +106 -0
- package/editors/registry.mjs +94 -0
- package/editors/selectEditor/index.d.ts +1 -0
- package/editors/selectEditor/index.js +7 -0
- package/editors/selectEditor/index.mjs +1 -0
- package/editors/selectEditor/selectEditor.d.ts +16 -0
- package/editors/selectEditor/selectEditor.js +302 -0
- package/editors/selectEditor/selectEditor.mjs +296 -0
- package/editors/textEditor/caretPositioner.js +37 -0
- package/editors/textEditor/caretPositioner.mjs +33 -0
- package/editors/textEditor/index.d.ts +1 -0
- package/editors/textEditor/index.js +7 -0
- package/editors/textEditor/index.mjs +1 -0
- package/editors/textEditor/textEditor.d.ts +24 -0
- package/editors/textEditor/textEditor.js +612 -0
- package/editors/textEditor/textEditor.mjs +605 -0
- package/editors/timeEditor/index.d.ts +1 -0
- package/editors/timeEditor/index.js +7 -0
- package/editors/timeEditor/index.mjs +1 -0
- package/editors/timeEditor/timeEditor.d.ts +7 -0
- package/editors/timeEditor/timeEditor.js +70 -0
- package/editors/timeEditor/timeEditor.mjs +64 -0
- package/eventManager.d.ts +13 -0
- package/eventManager.js +236 -0
- package/eventManager.mjs +231 -0
- package/handsontable-non-commercial-license.pdf +0 -0
- package/helpers/array.d.ts +18 -0
- package/helpers/array.js +353 -0
- package/helpers/array.mjs +333 -0
- package/helpers/browser.d.ts +25 -0
- package/helpers/browser.js +231 -0
- package/helpers/browser.mjs +210 -0
- package/helpers/console.d.ts +4 -0
- package/helpers/console.js +65 -0
- package/helpers/console.mjs +56 -0
- package/helpers/data.d.ts +12 -0
- package/helpers/data.js +247 -0
- package/helpers/data.mjs +234 -0
- package/helpers/date.d.ts +1 -0
- package/helpers/date.js +22 -0
- package/helpers/date.mjs +18 -0
- package/helpers/dom/element.d.ts +49 -0
- package/helpers/dom/element.js +1117 -0
- package/helpers/dom/element.mjs +1064 -0
- package/helpers/dom/event.d.ts +4 -0
- package/helpers/dom/event.js +46 -0
- package/helpers/dom/event.mjs +39 -0
- package/helpers/dom/index.d.ts +2 -0
- package/helpers/feature.d.ts +11 -0
- package/helpers/feature.js +184 -0
- package/helpers/feature.mjs +172 -0
- package/helpers/function.d.ts +10 -0
- package/helpers/function.js +319 -0
- package/helpers/function.mjs +307 -0
- package/helpers/index.d.ts +14 -0
- package/helpers/mixed.d.ts +5 -0
- package/helpers/mixed.js +230 -0
- package/helpers/mixed.mjs +220 -0
- package/helpers/number.d.ts +5 -0
- package/helpers/number.js +142 -0
- package/helpers/number.mjs +134 -0
- package/helpers/object.d.ts +16 -0
- package/helpers/object.js +371 -0
- package/helpers/object.mjs +352 -0
- package/helpers/string.d.ts +7 -0
- package/helpers/string.js +115 -0
- package/helpers/string.mjs +104 -0
- package/helpers/templateLiteralTag.d.ts +1 -0
- package/helpers/templateLiteralTag.js +26 -0
- package/helpers/templateLiteralTag.mjs +22 -0
- package/helpers/unicode.d.ts +73 -0
- package/helpers/unicode.js +158 -0
- package/helpers/unicode.mjs +148 -0
- package/helpers/wrappers/jquery.js +50 -0
- package/helpers/wrappers/jquery.mjs +46 -0
- package/i18n/constants.js +162 -0
- package/i18n/constants.mjs +82 -0
- package/i18n/index.d.ts +2 -0
- package/i18n/index.js +18 -0
- package/i18n/index.mjs +2 -0
- package/i18n/languages/ar-AR.js +25 -0
- package/i18n/languages/ar-AR.mjs +15 -0
- package/i18n/languages/cs-CZ.js +24 -0
- package/i18n/languages/cs-CZ.mjs +14 -0
- package/i18n/languages/de-CH.d.ts +5 -0
- package/i18n/languages/de-CH.js +24 -0
- package/i18n/languages/de-CH.mjs +14 -0
- package/i18n/languages/de-DE.d.ts +5 -0
- package/i18n/languages/de-DE.js +24 -0
- package/i18n/languages/de-DE.mjs +14 -0
- package/i18n/languages/en-US.d.ts +5 -0
- package/i18n/languages/en-US.js +24 -0
- package/i18n/languages/en-US.mjs +14 -0
- package/i18n/languages/es-MX.d.ts +5 -0
- package/i18n/languages/es-MX.js +24 -0
- package/i18n/languages/es-MX.mjs +13 -0
- package/i18n/languages/fr-FR.d.ts +5 -0
- package/i18n/languages/fr-FR.js +24 -0
- package/i18n/languages/fr-FR.mjs +14 -0
- package/i18n/languages/index.d.ts +35 -0
- package/i18n/languages/index.js +42 -0
- package/i18n/languages/index.mjs +20 -0
- package/i18n/languages/it-IT.d.ts +5 -0
- package/i18n/languages/it-IT.js +24 -0
- package/i18n/languages/it-IT.mjs +14 -0
- package/i18n/languages/ja-JP.d.ts +5 -0
- package/i18n/languages/ja-JP.js +24 -0
- package/i18n/languages/ja-JP.mjs +14 -0
- package/i18n/languages/ko-KR.d.ts +5 -0
- package/i18n/languages/ko-KR.js +24 -0
- package/i18n/languages/ko-KR.mjs +14 -0
- package/i18n/languages/lv-LV.d.ts +5 -0
- package/i18n/languages/lv-LV.js +24 -0
- package/i18n/languages/lv-LV.mjs +14 -0
- package/i18n/languages/nb-NO.d.ts +5 -0
- package/i18n/languages/nb-NO.js +24 -0
- package/i18n/languages/nb-NO.mjs +14 -0
- package/i18n/languages/nl-NL.d.ts +5 -0
- package/i18n/languages/nl-NL.js +24 -0
- package/i18n/languages/nl-NL.mjs +14 -0
- package/i18n/languages/pl-PL.d.ts +5 -0
- package/i18n/languages/pl-PL.js +24 -0
- package/i18n/languages/pl-PL.mjs +14 -0
- package/i18n/languages/pt-BR.d.ts +5 -0
- package/i18n/languages/pt-BR.js +24 -0
- package/i18n/languages/pt-BR.mjs +14 -0
- package/i18n/languages/ru-RU.d.ts +5 -0
- package/i18n/languages/ru-RU.js +24 -0
- package/i18n/languages/ru-RU.mjs +14 -0
- package/i18n/languages/sr-SP.js +24 -0
- package/i18n/languages/sr-SP.mjs +14 -0
- package/i18n/languages/zh-CN.d.ts +5 -0
- package/i18n/languages/zh-CN.js +24 -0
- package/i18n/languages/zh-CN.mjs +14 -0
- package/i18n/languages/zh-TW.d.ts +5 -0
- package/i18n/languages/zh-TW.js +24 -0
- package/i18n/languages/zh-TW.mjs +14 -0
- package/i18n/phraseFormatters/index.js +31 -0
- package/i18n/phraseFormatters/index.mjs +26 -0
- package/i18n/phraseFormatters/pluralize.js +21 -0
- package/i18n/phraseFormatters/pluralize.mjs +17 -0
- package/i18n/phraseFormatters/substituteVariables.js +22 -0
- package/i18n/phraseFormatters/substituteVariables.mjs +18 -0
- package/i18n/registry.d.ts +13 -0
- package/i18n/registry.js +180 -0
- package/i18n/registry.mjs +155 -0
- package/i18n/utils.js +90 -0
- package/i18n/utils.mjs +83 -0
- package/index.d.ts +520 -0
- package/index.js +130 -0
- package/index.mjs +112 -0
- package/languages/all.js +583 -0
- package/languages/ar-AR.js +157 -0
- package/languages/ar-AR.mjs +17 -0
- package/languages/cs-CZ.js +157 -0
- package/languages/cs-CZ.mjs +16 -0
- package/languages/de-CH.js +158 -0
- package/languages/de-CH.mjs +16 -0
- package/languages/de-DE.js +159 -0
- package/languages/de-DE.mjs +16 -0
- package/languages/en-US.js +160 -0
- package/languages/en-US.mjs +16 -0
- package/languages/es-MX.js +161 -0
- package/languages/es-MX.mjs +15 -0
- package/languages/fr-FR.js +162 -0
- package/languages/fr-FR.mjs +16 -0
- package/languages/index.js +583 -0
- package/languages/index.mjs +20 -0
- package/languages/it-IT.js +164 -0
- package/languages/it-IT.mjs +16 -0
- package/languages/ja-JP.js +161 -0
- package/languages/ja-JP.mjs +16 -0
- package/languages/ko-KR.js +161 -0
- package/languages/ko-KR.mjs +16 -0
- package/languages/lv-LV.js +161 -0
- package/languages/lv-LV.mjs +16 -0
- package/languages/nb-NO.js +161 -0
- package/languages/nb-NO.mjs +16 -0
- package/languages/nl-NL.js +161 -0
- package/languages/nl-NL.mjs +16 -0
- package/languages/pl-PL.js +161 -0
- package/languages/pl-PL.mjs +16 -0
- package/languages/pt-BR.js +161 -0
- package/languages/pt-BR.mjs +16 -0
- package/languages/ru-RU.js +161 -0
- package/languages/ru-RU.mjs +16 -0
- package/languages/sr-SP.js +161 -0
- package/languages/sr-SP.mjs +16 -0
- package/languages/zh-CN.js +161 -0
- package/languages/zh-CN.mjs +16 -0
- package/languages/zh-TW.js +161 -0
- package/languages/zh-TW.mjs +16 -0
- package/mixins/hooksRefRegisterer.js +61 -0
- package/mixins/hooksRefRegisterer.mjs +56 -0
- package/mixins/localHooks.js +71 -0
- package/mixins/localHooks.mjs +66 -0
- package/package.json +751 -0
- package/pluginHooks.d.ts +256 -0
- package/pluginHooks.js +2750 -0
- package/pluginHooks.mjs +2744 -0
- package/plugins/autoColumnSize/autoColumnSize.d.ts +27 -0
- package/plugins/autoColumnSize/autoColumnSize.js +796 -0
- package/plugins/autoColumnSize/autoColumnSize.mjs +788 -0
- package/plugins/autoColumnSize/index.d.ts +1 -0
- package/plugins/autoColumnSize/index.js +8 -0
- package/plugins/autoColumnSize/index.mjs +1 -0
- package/plugins/autoRowSize/autoRowSize.d.ts +27 -0
- package/plugins/autoRowSize/autoRowSize.js +735 -0
- package/plugins/autoRowSize/autoRowSize.mjs +727 -0
- package/plugins/autoRowSize/index.d.ts +1 -0
- package/plugins/autoRowSize/index.js +8 -0
- package/plugins/autoRowSize/index.mjs +1 -0
- package/plugins/autofill/autofill.d.ts +18 -0
- package/plugins/autofill/autofill.js +694 -0
- package/plugins/autofill/autofill.mjs +687 -0
- package/plugins/autofill/index.d.ts +1 -0
- package/plugins/autofill/index.js +8 -0
- package/plugins/autofill/index.mjs +1 -0
- package/plugins/autofill/utils.js +134 -0
- package/plugins/autofill/utils.mjs +126 -0
- package/plugins/base/base.d.ts +27 -0
- package/plugins/base/base.js +345 -0
- package/plugins/base/base.mjs +339 -0
- package/plugins/base/index.d.ts +1 -0
- package/plugins/base/index.js +7 -0
- package/plugins/base/index.mjs +1 -0
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.d.ts +9 -0
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +169 -0
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +161 -0
- package/plugins/bindRowsWithHeaders/index.d.ts +1 -0
- package/plugins/bindRowsWithHeaders/index.js +8 -0
- package/plugins/bindRowsWithHeaders/index.mjs +1 -0
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +80 -0
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.mjs +75 -0
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +103 -0
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.mjs +98 -0
- package/plugins/collapsibleColumns/collapsibleColumns.d.ts +22 -0
- package/plugins/collapsibleColumns/collapsibleColumns.js +592 -0
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +584 -0
- package/plugins/collapsibleColumns/index.d.ts +1 -0
- package/plugins/collapsibleColumns/index.js +8 -0
- package/plugins/collapsibleColumns/index.mjs +1 -0
- package/plugins/columnSorting/columnSorting.d.ts +30 -0
- package/plugins/columnSorting/columnSorting.js +865 -0
- package/plugins/columnSorting/columnSorting.mjs +857 -0
- package/plugins/columnSorting/columnStatesManager.js +273 -0
- package/plugins/columnSorting/columnStatesManager.mjs +268 -0
- package/plugins/columnSorting/domHelpers.js +54 -0
- package/plugins/columnSorting/domHelpers.mjs +49 -0
- package/plugins/columnSorting/index.d.ts +1 -0
- package/plugins/columnSorting/index.js +8 -0
- package/plugins/columnSorting/index.mjs +1 -0
- package/plugins/columnSorting/rootComparator.js +52 -0
- package/plugins/columnSorting/rootComparator.mjs +48 -0
- package/plugins/columnSorting/sortFunction/checkbox.js +64 -0
- package/plugins/columnSorting/sortFunction/checkbox.mjs +58 -0
- package/plugins/columnSorting/sortFunction/date.js +61 -0
- package/plugins/columnSorting/sortFunction/date.mjs +54 -0
- package/plugins/columnSorting/sortFunction/default.js +65 -0
- package/plugins/columnSorting/sortFunction/default.mjs +59 -0
- package/plugins/columnSorting/sortFunction/numeric.js +49 -0
- package/plugins/columnSorting/sortFunction/numeric.mjs +43 -0
- package/plugins/columnSorting/sortService/engine.js +26 -0
- package/plugins/columnSorting/sortService/engine.mjs +18 -0
- package/plugins/columnSorting/sortService/index.js +13 -0
- package/plugins/columnSorting/sortService/index.mjs +3 -0
- package/plugins/columnSorting/sortService/registry.js +37 -0
- package/plugins/columnSorting/sortService/registry.mjs +30 -0
- package/plugins/columnSorting/utils.js +122 -0
- package/plugins/columnSorting/utils.mjs +110 -0
- package/plugins/columnSummary/columnSummary.d.ts +72 -0
- package/plugins/columnSummary/columnSummary.js +544 -0
- package/plugins/columnSummary/columnSummary.mjs +536 -0
- package/plugins/columnSummary/endpoints.js +557 -0
- package/plugins/columnSummary/endpoints.mjs +552 -0
- package/plugins/columnSummary/index.d.ts +1 -0
- package/plugins/columnSummary/index.js +8 -0
- package/plugins/columnSummary/index.mjs +1 -0
- package/plugins/columnSummary/utils.js +13 -0
- package/plugins/columnSummary/utils.mjs +9 -0
- package/plugins/comments/commentEditor.js +241 -0
- package/plugins/comments/commentEditor.mjs +236 -0
- package/plugins/comments/comments.d.ts +50 -0
- package/plugins/comments/comments.js +942 -0
- package/plugins/comments/comments.mjs +932 -0
- package/plugins/comments/displaySwitch.js +115 -0
- package/plugins/comments/displaySwitch.mjs +109 -0
- package/plugins/comments/index.d.ts +1 -0
- package/plugins/comments/index.js +8 -0
- package/plugins/comments/index.mjs +1 -0
- package/plugins/contextMenu/commandExecutor.js +113 -0
- package/plugins/contextMenu/commandExecutor.mjs +108 -0
- package/plugins/contextMenu/contextMenu.d.ts +65 -0
- package/plugins/contextMenu/contextMenu.js +445 -0
- package/plugins/contextMenu/contextMenu.mjs +437 -0
- package/plugins/contextMenu/cursor.js +126 -0
- package/plugins/contextMenu/cursor.mjs +121 -0
- package/plugins/contextMenu/index.d.ts +1 -0
- package/plugins/contextMenu/index.js +8 -0
- package/plugins/contextMenu/index.mjs +1 -0
- package/plugins/contextMenu/itemsFactory.js +136 -0
- package/plugins/contextMenu/itemsFactory.mjs +131 -0
- package/plugins/contextMenu/menu.js +1003 -0
- package/plugins/contextMenu/menu.mjs +997 -0
- package/plugins/contextMenu/predefinedItems/alignment.js +277 -0
- package/plugins/contextMenu/predefinedItems/alignment.mjs +259 -0
- package/plugins/contextMenu/predefinedItems/clearColumn.js +47 -0
- package/plugins/contextMenu/predefinedItems/clearColumn.mjs +29 -0
- package/plugins/contextMenu/predefinedItems/columnLeft.js +57 -0
- package/plugins/contextMenu/predefinedItems/columnLeft.mjs +39 -0
- package/plugins/contextMenu/predefinedItems/columnRight.js +55 -0
- package/plugins/contextMenu/predefinedItems/columnRight.mjs +37 -0
- package/plugins/contextMenu/predefinedItems/noItems.js +22 -0
- package/plugins/contextMenu/predefinedItems/noItems.mjs +16 -0
- package/plugins/contextMenu/predefinedItems/readOnly.js +69 -0
- package/plugins/contextMenu/predefinedItems/readOnly.mjs +51 -0
- package/plugins/contextMenu/predefinedItems/redo.js +42 -0
- package/plugins/contextMenu/predefinedItems/redo.mjs +24 -0
- package/plugins/contextMenu/predefinedItems/removeColumn.js +79 -0
- package/plugins/contextMenu/predefinedItems/removeColumn.mjs +68 -0
- package/plugins/contextMenu/predefinedItems/removeRow.js +78 -0
- package/plugins/contextMenu/predefinedItems/removeRow.mjs +67 -0
- package/plugins/contextMenu/predefinedItems/rowAbove.js +53 -0
- package/plugins/contextMenu/predefinedItems/rowAbove.mjs +35 -0
- package/plugins/contextMenu/predefinedItems/rowBelow.js +51 -0
- package/plugins/contextMenu/predefinedItems/rowBelow.mjs +33 -0
- package/plugins/contextMenu/predefinedItems/separator.js +16 -0
- package/plugins/contextMenu/predefinedItems/separator.mjs +10 -0
- package/plugins/contextMenu/predefinedItems/undo.js +42 -0
- package/plugins/contextMenu/predefinedItems/undo.mjs +24 -0
- package/plugins/contextMenu/predefinedItems.js +76 -0
- package/plugins/contextMenu/predefinedItems.mjs +57 -0
- package/plugins/contextMenu/utils.js +278 -0
- package/plugins/contextMenu/utils.mjs +261 -0
- package/plugins/copyPaste/clipboardData.js +29 -0
- package/plugins/copyPaste/clipboardData.mjs +25 -0
- package/plugins/copyPaste/contextMenuItem/copy.js +45 -0
- package/plugins/copyPaste/contextMenuItem/copy.mjs +29 -0
- package/plugins/copyPaste/contextMenuItem/cut.js +45 -0
- package/plugins/copyPaste/contextMenuItem/cut.mjs +29 -0
- package/plugins/copyPaste/copyPaste.d.ts +35 -0
- package/plugins/copyPaste/copyPaste.js +721 -0
- package/plugins/copyPaste/copyPaste.mjs +713 -0
- package/plugins/copyPaste/focusableElement.js +210 -0
- package/plugins/copyPaste/focusableElement.mjs +204 -0
- package/plugins/copyPaste/index.d.ts +1 -0
- package/plugins/copyPaste/index.js +8 -0
- package/plugins/copyPaste/index.mjs +1 -0
- package/plugins/copyPaste/pasteEvent.js +17 -0
- package/plugins/copyPaste/pasteEvent.mjs +12 -0
- package/plugins/customBorders/contextMenuItem/bottom.js +39 -0
- package/plugins/customBorders/contextMenuItem/bottom.mjs +23 -0
- package/plugins/customBorders/contextMenuItem/index.js +14 -0
- package/plugins/customBorders/contextMenuItem/index.mjs +6 -0
- package/plugins/customBorders/contextMenuItem/left.js +40 -0
- package/plugins/customBorders/contextMenuItem/left.mjs +24 -0
- package/plugins/customBorders/contextMenuItem/noBorders.js +36 -0
- package/plugins/customBorders/contextMenuItem/noBorders.mjs +20 -0
- package/plugins/customBorders/contextMenuItem/right.js +40 -0
- package/plugins/customBorders/contextMenuItem/right.mjs +24 -0
- package/plugins/customBorders/contextMenuItem/top.js +39 -0
- package/plugins/customBorders/contextMenuItem/top.mjs +23 -0
- package/plugins/customBorders/customBorders.d.ts +38 -0
- package/plugins/customBorders/customBorders.js +887 -0
- package/plugins/customBorders/customBorders.mjs +877 -0
- package/plugins/customBorders/index.d.ts +1 -0
- package/plugins/customBorders/index.js +8 -0
- package/plugins/customBorders/index.mjs +1 -0
- package/plugins/customBorders/utils.js +265 -0
- package/plugins/customBorders/utils.mjs +249 -0
- package/plugins/dragToScroll/dragToScroll.d.ts +15 -0
- package/plugins/dragToScroll/dragToScroll.js +335 -0
- package/plugins/dragToScroll/dragToScroll.mjs +327 -0
- package/plugins/dragToScroll/index.d.ts +1 -0
- package/plugins/dragToScroll/index.js +8 -0
- package/plugins/dragToScroll/index.mjs +1 -0
- package/plugins/dropdownMenu/dropdownMenu.d.ts +24 -0
- package/plugins/dropdownMenu/dropdownMenu.js +511 -0
- package/plugins/dropdownMenu/dropdownMenu.mjs +504 -0
- package/plugins/dropdownMenu/index.d.ts +1 -0
- package/plugins/dropdownMenu/index.js +8 -0
- package/plugins/dropdownMenu/index.mjs +1 -0
- package/plugins/exportFile/dataProvider.js +200 -0
- package/plugins/exportFile/dataProvider.mjs +195 -0
- package/plugins/exportFile/exportFile.d.ts +12 -0
- package/plugins/exportFile/exportFile.js +262 -0
- package/plugins/exportFile/exportFile.mjs +250 -0
- package/plugins/exportFile/index.d.ts +1 -0
- package/plugins/exportFile/index.js +8 -0
- package/plugins/exportFile/index.mjs +1 -0
- package/plugins/exportFile/typeFactory.js +30 -0
- package/plugins/exportFile/typeFactory.mjs +21 -0
- package/plugins/exportFile/types/_base.js +78 -0
- package/plugins/exportFile/types/_base.mjs +73 -0
- package/plugins/exportFile/types/csv.js +131 -0
- package/plugins/exportFile/types/csv.mjs +125 -0
- package/plugins/filters/component/_base.js +169 -0
- package/plugins/filters/component/_base.mjs +163 -0
- package/plugins/filters/component/actionBar.js +161 -0
- package/plugins/filters/component/actionBar.mjs +151 -0
- package/plugins/filters/component/condition.js +325 -0
- package/plugins/filters/component/condition.mjs +316 -0
- package/plugins/filters/component/operators.js +222 -0
- package/plugins/filters/component/operators.mjs +216 -0
- package/plugins/filters/component/value.js +278 -0
- package/plugins/filters/component/value.mjs +269 -0
- package/plugins/filters/condition/beginsWith.js +50 -0
- package/plugins/filters/condition/beginsWith.mjs +39 -0
- package/plugins/filters/condition/between.js +64 -0
- package/plugins/filters/condition/between.mjs +53 -0
- package/plugins/filters/condition/byValue.js +48 -0
- package/plugins/filters/condition/byValue.mjs +42 -0
- package/plugins/filters/condition/contains.js +50 -0
- package/plugins/filters/condition/contains.mjs +39 -0
- package/plugins/filters/condition/date/after.js +55 -0
- package/plugins/filters/condition/date/after.mjs +43 -0
- package/plugins/filters/condition/date/before.js +55 -0
- package/plugins/filters/condition/date/before.mjs +43 -0
- package/plugins/filters/condition/date/today.js +39 -0
- package/plugins/filters/condition/date/today.mjs +20 -0
- package/plugins/filters/condition/date/tomorrow.js +39 -0
- package/plugins/filters/condition/date/tomorrow.mjs +20 -0
- package/plugins/filters/condition/date/yesterday.js +39 -0
- package/plugins/filters/condition/date/yesterday.mjs +20 -0
- package/plugins/filters/condition/empty.js +35 -0
- package/plugins/filters/condition/empty.mjs +17 -0
- package/plugins/filters/condition/endsWith.js +50 -0
- package/plugins/filters/condition/endsWith.mjs +39 -0
- package/plugins/filters/condition/equal.js +49 -0
- package/plugins/filters/condition/equal.mjs +38 -0
- package/plugins/filters/condition/false.js +18 -0
- package/plugins/filters/condition/false.mjs +12 -0
- package/plugins/filters/condition/greaterThan.js +52 -0
- package/plugins/filters/condition/greaterThan.mjs +41 -0
- package/plugins/filters/condition/greaterThanOrEqual.js +52 -0
- package/plugins/filters/condition/greaterThanOrEqual.mjs +41 -0
- package/plugins/filters/condition/lessThan.js +52 -0
- package/plugins/filters/condition/lessThan.mjs +41 -0
- package/plugins/filters/condition/lessThanOrEqual.js +52 -0
- package/plugins/filters/condition/lessThanOrEqual.mjs +41 -0
- package/plugins/filters/condition/none.js +33 -0
- package/plugins/filters/condition/none.mjs +15 -0
- package/plugins/filters/condition/notBetween.js +36 -0
- package/plugins/filters/condition/notBetween.mjs +18 -0
- package/plugins/filters/condition/notContains.js +36 -0
- package/plugins/filters/condition/notContains.mjs +18 -0
- package/plugins/filters/condition/notEmpty.js +36 -0
- package/plugins/filters/condition/notEmpty.mjs +18 -0
- package/plugins/filters/condition/notEqual.js +36 -0
- package/plugins/filters/condition/notEqual.mjs +18 -0
- package/plugins/filters/condition/true.js +18 -0
- package/plugins/filters/condition/true.mjs +12 -0
- package/plugins/filters/conditionCollection.d.ts +32 -0
- package/plugins/filters/conditionCollection.js +343 -0
- package/plugins/filters/conditionCollection.mjs +337 -0
- package/plugins/filters/conditionRegisterer.js +61 -0
- package/plugins/filters/conditionRegisterer.mjs +53 -0
- package/plugins/filters/conditionUpdateObserver.d.ts +10 -0
- package/plugins/filters/conditionUpdateObserver.js +248 -0
- package/plugins/filters/conditionUpdateObserver.mjs +242 -0
- package/plugins/filters/constants.js +103 -0
- package/plugins/filters/constants.mjs +69 -0
- package/plugins/filters/dataFilter.js +98 -0
- package/plugins/filters/dataFilter.mjs +93 -0
- package/plugins/filters/filters.d.ts +56 -0
- package/plugins/filters/filters.js +1037 -0
- package/plugins/filters/filters.mjs +1026 -0
- package/plugins/filters/index.d.ts +1 -0
- package/plugins/filters/index.js +8 -0
- package/plugins/filters/index.mjs +1 -0
- package/plugins/filters/logicalOperationRegisterer.js +50 -0
- package/plugins/filters/logicalOperationRegisterer.mjs +42 -0
- package/plugins/filters/logicalOperations/conjunction.js +36 -0
- package/plugins/filters/logicalOperations/conjunction.mjs +18 -0
- package/plugins/filters/logicalOperations/disjunction.js +36 -0
- package/plugins/filters/logicalOperations/disjunction.mjs +18 -0
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +40 -0
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.mjs +22 -0
- package/plugins/filters/ui/_base.js +249 -0
- package/plugins/filters/ui/_base.mjs +231 -0
- package/plugins/filters/ui/input.js +140 -0
- package/plugins/filters/ui/input.mjs +134 -0
- package/plugins/filters/ui/link.js +86 -0
- package/plugins/filters/ui/link.mjs +80 -0
- package/plugins/filters/ui/multipleSelect.js +441 -0
- package/plugins/filters/ui/multipleSelect.mjs +434 -0
- package/plugins/filters/ui/radioInput.js +130 -0
- package/plugins/filters/ui/radioInput.mjs +124 -0
- package/plugins/filters/ui/select.js +269 -0
- package/plugins/filters/ui/select.mjs +261 -0
- package/plugins/filters/utils.js +143 -0
- package/plugins/filters/utils.mjs +134 -0
- package/plugins/formulas/engine/register.js +259 -0
- package/plugins/formulas/engine/register.mjs +247 -0
- package/plugins/formulas/engine/settings.js +115 -0
- package/plugins/formulas/engine/settings.mjs +107 -0
- package/plugins/formulas/formulas.d.ts +31 -0
- package/plugins/formulas/formulas.js +1229 -0
- package/plugins/formulas/formulas.mjs +1221 -0
- package/plugins/formulas/index.d.ts +1 -0
- package/plugins/formulas/index.js +8 -0
- package/plugins/formulas/index.mjs +1 -0
- package/plugins/formulas/utils.js +24 -0
- package/plugins/formulas/utils.mjs +19 -0
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +76 -0
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.mjs +67 -0
- package/plugins/hiddenColumns/contextMenuItem/showColumn.js +124 -0
- package/plugins/hiddenColumns/contextMenuItem/showColumn.mjs +115 -0
- package/plugins/hiddenColumns/hiddenColumns.d.ts +21 -0
- package/plugins/hiddenColumns/hiddenColumns.js +620 -0
- package/plugins/hiddenColumns/hiddenColumns.mjs +612 -0
- package/plugins/hiddenColumns/index.d.ts +1 -0
- package/plugins/hiddenColumns/index.js +8 -0
- package/plugins/hiddenColumns/index.mjs +1 -0
- package/plugins/hiddenRows/contextMenuItem/hideRow.js +76 -0
- package/plugins/hiddenRows/contextMenuItem/hideRow.mjs +67 -0
- package/plugins/hiddenRows/contextMenuItem/showRow.js +124 -0
- package/plugins/hiddenRows/contextMenuItem/showRow.mjs +115 -0
- package/plugins/hiddenRows/hiddenRows.d.ts +21 -0
- package/plugins/hiddenRows/hiddenRows.js +612 -0
- package/plugins/hiddenRows/hiddenRows.mjs +604 -0
- package/plugins/hiddenRows/index.d.ts +1 -0
- package/plugins/hiddenRows/index.js +8 -0
- package/plugins/hiddenRows/index.mjs +1 -0
- package/plugins/index.d.ts +111 -0
- package/plugins/index.js +115 -0
- package/plugins/index.mjs +75 -0
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +58 -0
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +49 -0
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +58 -0
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +49 -0
- package/plugins/manualColumnFreeze/index.d.ts +1 -0
- package/plugins/manualColumnFreeze/index.js +8 -0
- package/plugins/manualColumnFreeze/index.mjs +1 -0
- package/plugins/manualColumnFreeze/manualColumnFreeze.d.ts +11 -0
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +250 -0
- package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +242 -0
- package/plugins/manualColumnMove/index.d.ts +1 -0
- package/plugins/manualColumnMove/index.js +8 -0
- package/plugins/manualColumnMove/index.mjs +1 -0
- package/plugins/manualColumnMove/manualColumnMove.d.ts +14 -0
- package/plugins/manualColumnMove/manualColumnMove.js +775 -0
- package/plugins/manualColumnMove/manualColumnMove.mjs +767 -0
- package/plugins/manualColumnMove/ui/_base.js +209 -0
- package/plugins/manualColumnMove/ui/_base.mjs +204 -0
- package/plugins/manualColumnMove/ui/backlight.js +60 -0
- package/plugins/manualColumnMove/ui/backlight.mjs +54 -0
- package/plugins/manualColumnMove/ui/guideline.js +60 -0
- package/plugins/manualColumnMove/ui/guideline.mjs +54 -0
- package/plugins/manualColumnResize/index.d.ts +1 -0
- package/plugins/manualColumnResize/index.js +8 -0
- package/plugins/manualColumnResize/index.mjs +1 -0
- package/plugins/manualColumnResize/manualColumnResize.d.ts +30 -0
- package/plugins/manualColumnResize/manualColumnResize.js +690 -0
- package/plugins/manualColumnResize/manualColumnResize.mjs +680 -0
- package/plugins/manualRowMove/index.d.ts +1 -0
- package/plugins/manualRowMove/index.js +8 -0
- package/plugins/manualRowMove/index.mjs +1 -0
- package/plugins/manualRowMove/manualRowMove.d.ts +14 -0
- package/plugins/manualRowMove/manualRowMove.js +757 -0
- package/plugins/manualRowMove/manualRowMove.mjs +749 -0
- package/plugins/manualRowMove/ui/_base.js +196 -0
- package/plugins/manualRowMove/ui/_base.mjs +191 -0
- package/plugins/manualRowMove/ui/backlight.js +60 -0
- package/plugins/manualRowMove/ui/backlight.mjs +54 -0
- package/plugins/manualRowMove/ui/guideline.js +60 -0
- package/plugins/manualRowMove/ui/guideline.mjs +54 -0
- package/plugins/manualRowResize/index.d.ts +1 -0
- package/plugins/manualRowResize/index.js +8 -0
- package/plugins/manualRowResize/index.mjs +1 -0
- package/plugins/manualRowResize/manualRowResize.d.ts +29 -0
- package/plugins/manualRowResize/manualRowResize.js +652 -0
- package/plugins/manualRowResize/manualRowResize.mjs +642 -0
- package/plugins/mergeCells/calculations/autofill.js +464 -0
- package/plugins/mergeCells/calculations/autofill.mjs +459 -0
- package/plugins/mergeCells/calculations/selection.js +204 -0
- package/plugins/mergeCells/calculations/selection.mjs +199 -0
- package/plugins/mergeCells/cellCoords.js +347 -0
- package/plugins/mergeCells/cellCoords.mjs +342 -0
- package/plugins/mergeCells/cellsCollection.js +344 -0
- package/plugins/mergeCells/cellsCollection.mjs +338 -0
- package/plugins/mergeCells/contextMenuItem/toggleMerge.js +55 -0
- package/plugins/mergeCells/contextMenuItem/toggleMerge.mjs +38 -0
- package/plugins/mergeCells/index.d.ts +1 -0
- package/plugins/mergeCells/index.js +8 -0
- package/plugins/mergeCells/index.mjs +1 -0
- package/plugins/mergeCells/mergeCells.d.ts +22 -0
- package/plugins/mergeCells/mergeCells.js +1290 -0
- package/plugins/mergeCells/mergeCells.mjs +1282 -0
- package/plugins/mergeCells/utils.js +30 -0
- package/plugins/mergeCells/utils.mjs +26 -0
- package/plugins/multiColumnSorting/domHelpers.js +44 -0
- package/plugins/multiColumnSorting/domHelpers.mjs +39 -0
- package/plugins/multiColumnSorting/index.d.ts +1 -0
- package/plugins/multiColumnSorting/index.js +8 -0
- package/plugins/multiColumnSorting/index.mjs +1 -0
- package/plugins/multiColumnSorting/multiColumnSorting.d.ts +8 -0
- package/plugins/multiColumnSorting/multiColumnSorting.js +336 -0
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +329 -0
- package/plugins/multiColumnSorting/rootComparator.js +55 -0
- package/plugins/multiColumnSorting/rootComparator.mjs +51 -0
- package/plugins/multiColumnSorting/utils.js +16 -0
- package/plugins/multiColumnSorting/utils.mjs +12 -0
- package/plugins/multipleSelectionHandles/index.d.ts +1 -0
- package/plugins/multipleSelectionHandles/index.js +8 -0
- package/plugins/multipleSelectionHandles/index.mjs +1 -0
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.d.ts +21 -0
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +394 -0
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +386 -0
- package/plugins/nestedHeaders/index.d.ts +1 -0
- package/plugins/nestedHeaders/index.js +8 -0
- package/plugins/nestedHeaders/index.mjs +1 -0
- package/plugins/nestedHeaders/nestedHeaders.d.ts +17 -0
- package/plugins/nestedHeaders/nestedHeaders.js +666 -0
- package/plugins/nestedHeaders/nestedHeaders.mjs +658 -0
- package/plugins/nestedHeaders/stateManager/headersTree.js +288 -0
- package/plugins/nestedHeaders/stateManager/headersTree.mjs +283 -0
- package/plugins/nestedHeaders/stateManager/index.js +417 -0
- package/plugins/nestedHeaders/stateManager/index.mjs +412 -0
- package/plugins/nestedHeaders/stateManager/matrixGenerator.js +102 -0
- package/plugins/nestedHeaders/stateManager/matrixGenerator.mjs +99 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/collapse.js +98 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/collapse.mjs +94 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/expand.js +95 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/expand.mjs +91 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/hideColumn.js +54 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/hideColumn.mjs +50 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/index.js +40 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/index.mjs +35 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/showColumn.js +55 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/showColumn.mjs +51 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/utils/tree.js +61 -0
- package/plugins/nestedHeaders/stateManager/nodeModifiers/utils/tree.mjs +55 -0
- package/plugins/nestedHeaders/stateManager/settingsNormalizer.js +122 -0
- package/plugins/nestedHeaders/stateManager/settingsNormalizer.mjs +119 -0
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +250 -0
- package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +245 -0
- package/plugins/nestedHeaders/stateManager/utils.js +75 -0
- package/plugins/nestedHeaders/stateManager/utils.mjs +70 -0
- package/plugins/nestedHeaders/utils/ghostTable.js +167 -0
- package/plugins/nestedHeaders/utils/ghostTable.mjs +162 -0
- package/plugins/nestedRows/data/dataManager.js +809 -0
- package/plugins/nestedRows/data/dataManager.mjs +804 -0
- package/plugins/nestedRows/index.d.ts +1 -0
- package/plugins/nestedRows/index.js +8 -0
- package/plugins/nestedRows/index.mjs +1 -0
- package/plugins/nestedRows/nestedRows.d.ts +12 -0
- package/plugins/nestedRows/nestedRows.js +592 -0
- package/plugins/nestedRows/nestedRows.mjs +584 -0
- package/plugins/nestedRows/ui/_base.js +28 -0
- package/plugins/nestedRows/ui/_base.mjs +23 -0
- package/plugins/nestedRows/ui/collapsing.js +562 -0
- package/plugins/nestedRows/ui/collapsing.mjs +556 -0
- package/plugins/nestedRows/ui/contextMenu.js +147 -0
- package/plugins/nestedRows/ui/contextMenu.mjs +138 -0
- package/plugins/nestedRows/ui/headers.js +157 -0
- package/plugins/nestedRows/ui/headers.mjs +151 -0
- package/plugins/nestedRows/utils/rowMoveController.js +331 -0
- package/plugins/nestedRows/utils/rowMoveController.mjs +327 -0
- package/plugins/persistentState/index.d.ts +1 -0
- package/plugins/persistentState/index.js +8 -0
- package/plugins/persistentState/index.mjs +1 -0
- package/plugins/persistentState/persistentState.d.ts +13 -0
- package/plugins/persistentState/persistentState.js +207 -0
- package/plugins/persistentState/persistentState.mjs +199 -0
- package/plugins/persistentState/storage.js +138 -0
- package/plugins/persistentState/storage.mjs +133 -0
- package/plugins/registry.d.ts +9 -0
- package/plugins/registry.js +150 -0
- package/plugins/registry.mjs +146 -0
- package/plugins/search/index.d.ts +1 -0
- package/plugins/search/index.js +8 -0
- package/plugins/search/index.mjs +1 -0
- package/plugins/search/search.d.ts +28 -0
- package/plugins/search/search.js +377 -0
- package/plugins/search/search.mjs +370 -0
- package/plugins/touchScroll/index.d.ts +1 -0
- package/plugins/touchScroll/index.js +8 -0
- package/plugins/touchScroll/index.mjs +1 -0
- package/plugins/touchScroll/touchScroll.d.ts +13 -0
- package/plugins/touchScroll/touchScroll.js +250 -0
- package/plugins/touchScroll/touchScroll.mjs +243 -0
- package/plugins/trimRows/index.d.ts +1 -0
- package/plugins/trimRows/index.js +8 -0
- package/plugins/trimRows/index.mjs +1 -0
- package/plugins/trimRows/trimRows.d.ts +17 -0
- package/plugins/trimRows/trimRows.js +393 -0
- package/plugins/trimRows/trimRows.mjs +386 -0
- package/plugins/undoRedo/index.d.ts +1 -0
- package/plugins/undoRedo/index.js +18 -0
- package/plugins/undoRedo/index.mjs +2 -0
- package/plugins/undoRedo/undoRedo.d.ts +49 -0
- package/plugins/undoRedo/undoRedo.js +935 -0
- package/plugins/undoRedo/undoRedo.mjs +928 -0
- package/registry.d.ts +6 -0
- package/registry.js +35 -0
- package/registry.mjs +26 -0
- package/renderers/autocompleteRenderer/autocompleteRenderer.d.ts +5 -0
- package/renderers/autocompleteRenderer/autocompleteRenderer.js +59 -0
- package/renderers/autocompleteRenderer/autocompleteRenderer.mjs +52 -0
- package/renderers/autocompleteRenderer/index.d.ts +1 -0
- package/renderers/autocompleteRenderer/index.js +7 -0
- package/renderers/autocompleteRenderer/index.mjs +1 -0
- package/renderers/base.d.ts +3 -0
- package/renderers/baseRenderer/baseRenderer.d.ts +5 -0
- package/renderers/baseRenderer/baseRenderer.js +46 -0
- package/renderers/baseRenderer/baseRenderer.mjs +39 -0
- package/renderers/baseRenderer/index.d.ts +1 -0
- package/renderers/baseRenderer/index.js +7 -0
- package/renderers/baseRenderer/index.mjs +1 -0
- package/renderers/checkboxRenderer/checkboxRenderer.d.ts +5 -0
- package/renderers/checkboxRenderer/checkboxRenderer.js +398 -0
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +391 -0
- package/renderers/checkboxRenderer/index.d.ts +1 -0
- package/renderers/checkboxRenderer/index.js +7 -0
- package/renderers/checkboxRenderer/index.mjs +1 -0
- package/renderers/htmlRenderer/htmlRenderer.d.ts +5 -0
- package/renderers/htmlRenderer/htmlRenderer.js +25 -0
- package/renderers/htmlRenderer/htmlRenderer.mjs +19 -0
- package/renderers/htmlRenderer/index.d.ts +1 -0
- package/renderers/htmlRenderer/index.js +7 -0
- package/renderers/htmlRenderer/index.mjs +1 -0
- package/renderers/index.d.ts +45 -0
- package/renderers/index.js +48 -0
- package/renderers/index.mjs +24 -0
- package/renderers/numericRenderer/index.d.ts +1 -0
- package/renderers/numericRenderer/index.js +7 -0
- package/renderers/numericRenderer/index.mjs +1 -0
- package/renderers/numericRenderer/numericRenderer.d.ts +5 -0
- package/renderers/numericRenderer/numericRenderer.js +57 -0
- package/renderers/numericRenderer/numericRenderer.mjs +50 -0
- package/renderers/passwordRenderer/index.d.ts +1 -0
- package/renderers/passwordRenderer/index.js +7 -0
- package/renderers/passwordRenderer/index.mjs +1 -0
- package/renderers/passwordRenderer/passwordRenderer.d.ts +5 -0
- package/renderers/passwordRenderer/passwordRenderer.js +32 -0
- package/renderers/passwordRenderer/passwordRenderer.mjs +26 -0
- package/renderers/registry.d.ts +18 -0
- package/renderers/registry.js +48 -0
- package/renderers/registry.mjs +38 -0
- package/renderers/textRenderer/index.d.ts +1 -0
- package/renderers/textRenderer/index.js +7 -0
- package/renderers/textRenderer/index.mjs +1 -0
- package/renderers/textRenderer/textRenderer.d.ts +5 -0
- package/renderers/textRenderer/textRenderer.js +48 -0
- package/renderers/textRenderer/textRenderer.mjs +42 -0
- package/renderers/timeRenderer/index.d.ts +1 -0
- package/renderers/timeRenderer/index.js +7 -0
- package/renderers/timeRenderer/index.mjs +1 -0
- package/renderers/timeRenderer/timeRenderer.d.ts +5 -0
- package/renderers/timeRenderer/timeRenderer.js +26 -0
- package/renderers/timeRenderer/timeRenderer.mjs +20 -0
- package/selection/highlight/constants.js +16 -0
- package/selection/highlight/constants.mjs +6 -0
- package/selection/highlight/highlight.js +330 -0
- package/selection/highlight/highlight.mjs +325 -0
- package/selection/highlight/types/activeHeader.js +38 -0
- package/selection/highlight/types/activeHeader.mjs +32 -0
- package/selection/highlight/types/area.js +49 -0
- package/selection/highlight/types/area.mjs +43 -0
- package/selection/highlight/types/cell.js +46 -0
- package/selection/highlight/types/cell.mjs +40 -0
- package/selection/highlight/types/customSelection.js +41 -0
- package/selection/highlight/types/customSelection.mjs +35 -0
- package/selection/highlight/types/fill.js +41 -0
- package/selection/highlight/types/fill.mjs +35 -0
- package/selection/highlight/types/header.js +49 -0
- package/selection/highlight/types/header.mjs +43 -0
- package/selection/highlight/types/index.js +43 -0
- package/selection/highlight/types/index.mjs +39 -0
- package/selection/highlight/visualSelection.js +277 -0
- package/selection/highlight/visualSelection.mjs +272 -0
- package/selection/index.d.ts +5 -0
- package/selection/index.js +30 -0
- package/selection/index.mjs +6 -0
- package/selection/mouseEventHandler.js +135 -0
- package/selection/mouseEventHandler.mjs +129 -0
- package/selection/range.js +173 -0
- package/selection/range.mjs +168 -0
- package/selection/selection.js +802 -0
- package/selection/selection.mjs +796 -0
- package/selection/transformation.js +169 -0
- package/selection/transformation.mjs +163 -0
- package/selection/utils.js +256 -0
- package/selection/utils.mjs +242 -0
- package/settings.d.ts +210 -0
- package/shortcuts/context.d.ts +20 -0
- package/shortcuts/context.js +241 -0
- package/shortcuts/context.mjs +236 -0
- package/shortcuts/index.d.ts +1 -0
- package/shortcuts/index.js +6 -0
- package/shortcuts/index.mjs +1 -0
- package/shortcuts/keyObserver.js +58 -0
- package/shortcuts/keyObserver.mjs +54 -0
- package/shortcuts/manager.d.ts +10 -0
- package/shortcuts/manager.js +165 -0
- package/shortcuts/manager.mjs +159 -0
- package/shortcuts/recorder.js +165 -0
- package/shortcuts/recorder.mjs +161 -0
- package/shortcuts/utils.js +58 -0
- package/shortcuts/utils.mjs +51 -0
- package/tableView.js +1313 -0
- package/tableView.mjs +1307 -0
- package/translations/changesObservable/observable.js +175 -0
- package/translations/changesObservable/observable.mjs +170 -0
- package/translations/changesObservable/observer.js +100 -0
- package/translations/changesObservable/observer.mjs +94 -0
- package/translations/changesObservable/utils.js +50 -0
- package/translations/changesObservable/utils.mjs +46 -0
- package/translations/index.d.ts +1 -0
- package/translations/index.js +29 -0
- package/translations/index.mjs +4 -0
- package/translations/indexMapper.d.ts +48 -0
- package/translations/indexMapper.js +865 -0
- package/translations/indexMapper.mjs +859 -0
- package/translations/mapCollections/aggregatedCollection.js +139 -0
- package/translations/mapCollections/aggregatedCollection.mjs +134 -0
- package/translations/mapCollections/index.js +18 -0
- package/translations/mapCollections/index.mjs +2 -0
- package/translations/mapCollections/mapCollection.js +164 -0
- package/translations/mapCollections/mapCollection.mjs +156 -0
- package/translations/maps/hidingMap.js +63 -0
- package/translations/maps/hidingMap.mjs +58 -0
- package/translations/maps/index.js +59 -0
- package/translations/maps/index.mjs +29 -0
- package/translations/maps/indexMap.d.ts +10 -0
- package/translations/maps/indexMap.js +203 -0
- package/translations/maps/indexMap.mjs +197 -0
- package/translations/maps/indexesSequence.js +82 -0
- package/translations/maps/indexesSequence.mjs +77 -0
- package/translations/maps/linkedPhysicalIndexToValueMap.js +216 -0
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +211 -0
- package/translations/maps/physicalIndexToValueMap.js +76 -0
- package/translations/maps/physicalIndexToValueMap.mjs +71 -0
- package/translations/maps/trimmingMap.js +63 -0
- package/translations/maps/trimmingMap.mjs +58 -0
- package/translations/maps/utils/actionsOnIndexes.js +42 -0
- package/translations/maps/utils/actionsOnIndexes.mjs +37 -0
- package/translations/maps/utils/index.js +28 -0
- package/translations/maps/utils/index.mjs +22 -0
- package/translations/maps/utils/indexesSequence.js +52 -0
- package/translations/maps/utils/indexesSequence.mjs +47 -0
- package/translations/maps/utils/physicallyIndexed.js +61 -0
- package/translations/maps/utils/physicallyIndexed.mjs +56 -0
- package/utils/dataStructures/linkedList.js +263 -0
- package/utils/dataStructures/linkedList.mjs +258 -0
- package/utils/dataStructures/priorityMap.js +106 -0
- package/utils/dataStructures/priorityMap.mjs +99 -0
- package/utils/dataStructures/queue.js +83 -0
- package/utils/dataStructures/queue.mjs +78 -0
- package/utils/dataStructures/stack.js +83 -0
- package/utils/dataStructures/stack.mjs +78 -0
- package/utils/dataStructures/tree.js +254 -0
- package/utils/dataStructures/tree.mjs +246 -0
- package/utils/dataStructures/uniqueMap.js +144 -0
- package/utils/dataStructures/uniqueMap.mjs +140 -0
- package/utils/dataStructures/uniqueSet.js +78 -0
- package/utils/dataStructures/uniqueSet.mjs +74 -0
- package/utils/ghostTable.js +536 -0
- package/utils/ghostTable.mjs +531 -0
- package/utils/interval.js +134 -0
- package/utils/interval.mjs +129 -0
- package/utils/parseTable.d.ts +5 -0
- package/utils/parseTable.js +305 -0
- package/utils/parseTable.mjs +299 -0
- package/utils/rootInstance.js +48 -0
- package/utils/rootInstance.mjs +38 -0
- package/utils/samplesGenerator.js +210 -0
- package/utils/samplesGenerator.mjs +205 -0
- package/utils/staticRegister.js +92 -0
- package/utils/staticRegister.mjs +86 -0
- package/validators/autocompleteValidator/autocompleteValidator.d.ts +5 -0
- package/validators/autocompleteValidator/autocompleteValidator.js +56 -0
- package/validators/autocompleteValidator/autocompleteValidator.mjs +50 -0
- package/validators/autocompleteValidator/index.d.ts +1 -0
- package/validators/autocompleteValidator/index.js +7 -0
- package/validators/autocompleteValidator/index.mjs +1 -0
- package/validators/base.d.ts +6 -0
- package/validators/dateValidator/dateValidator.d.ts +5 -0
- package/validators/dateValidator/dateValidator.js +77 -0
- package/validators/dateValidator/dateValidator.mjs +69 -0
- package/validators/dateValidator/index.d.ts +1 -0
- package/validators/dateValidator/index.js +8 -0
- package/validators/dateValidator/index.mjs +1 -0
- package/validators/index.d.ts +33 -0
- package/validators/index.js +32 -0
- package/validators/index.mjs +16 -0
- package/validators/numericValidator/index.d.ts +1 -0
- package/validators/numericValidator/index.js +7 -0
- package/validators/numericValidator/index.mjs +1 -0
- package/validators/numericValidator/numericValidator.d.ts +5 -0
- package/validators/numericValidator/numericValidator.js +30 -0
- package/validators/numericValidator/numericValidator.mjs +24 -0
- package/validators/registry.d.ts +18 -0
- package/validators/registry.js +48 -0
- package/validators/registry.mjs +38 -0
- package/validators/timeValidator/index.d.ts +1 -0
- package/validators/timeValidator/index.js +7 -0
- package/validators/timeValidator/index.mjs +1 -0
- package/validators/timeValidator/timeValidator.d.ts +5 -0
- package/validators/timeValidator/timeValidator.js +66 -0
- package/validators/timeValidator/timeValidator.mjs +60 -0
@@ -0,0 +1,1941 @@
|
|
1
|
+
/*!
|
2
|
+
* Copyright (c) HANDSONCODE sp. z o. o.
|
3
|
+
*
|
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.
|
7
|
+
*
|
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.
|
11
|
+
*
|
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.
|
15
|
+
*
|
16
|
+
* Your use of this software for commercial purposes is subject to the terms included in an applicable
|
17
|
+
* license agreement.
|
18
|
+
*
|
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.
|
21
|
+
*
|
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: 0.0.0-next-9ec04ce-20221121
|
29
|
+
* Release date: 25/10/2022 (built at 21/11/2022 14:46:18)
|
30
|
+
*/
|
31
|
+
/**
|
32
|
+
* Fix for bootstrap styles
|
33
|
+
*/
|
34
|
+
.handsontable .table th, .handsontable .table td {
|
35
|
+
border-top: none;
|
36
|
+
}
|
37
|
+
|
38
|
+
.handsontable tr {
|
39
|
+
background: #fff;
|
40
|
+
}
|
41
|
+
|
42
|
+
.handsontable td {
|
43
|
+
background-color: inherit;
|
44
|
+
}
|
45
|
+
|
46
|
+
.handsontable .table caption + thead tr:first-child th,
|
47
|
+
.handsontable .table caption + thead tr:first-child td,
|
48
|
+
.handsontable .table colgroup + thead tr:first-child th,
|
49
|
+
.handsontable .table colgroup + thead tr:first-child td,
|
50
|
+
.handsontable .table thead:first-child tr:first-child th,
|
51
|
+
.handsontable .table thead:first-child tr:first-child td {
|
52
|
+
border-top: 1px solid #CCCCCC;
|
53
|
+
}
|
54
|
+
|
55
|
+
/* table-bordered */
|
56
|
+
.handsontable .table-bordered {
|
57
|
+
border: 0;
|
58
|
+
border-collapse: separate;
|
59
|
+
}
|
60
|
+
|
61
|
+
.handsontable .table-bordered th,
|
62
|
+
.handsontable .table-bordered td {
|
63
|
+
border-left: none;
|
64
|
+
}
|
65
|
+
|
66
|
+
.handsontable .table-bordered th:first-child,
|
67
|
+
.handsontable .table-bordered td:first-child {
|
68
|
+
border-left: 1px solid #CCCCCC;
|
69
|
+
}
|
70
|
+
|
71
|
+
.handsontable .table > tbody > tr > td,
|
72
|
+
.handsontable .table > tbody > tr > th,
|
73
|
+
.handsontable .table > tfoot > tr > td,
|
74
|
+
.handsontable .table > tfoot > tr > th,
|
75
|
+
.handsontable .table > thead > tr > td,
|
76
|
+
.handsontable .table > thead > tr > th {
|
77
|
+
line-height: 21px;
|
78
|
+
padding: 0;
|
79
|
+
}
|
80
|
+
|
81
|
+
.col-lg-1.handsontable, .col-lg-10.handsontable, .col-lg-11.handsontable, .col-lg-12.handsontable,
|
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,
|
83
|
+
.col-md-1.handsontable, .col-md-10.handsontable, .col-md-11.handsontable, .col-md-12.handsontable,
|
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,
|
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 {
|
89
|
+
padding-left: 0;
|
90
|
+
padding-right: 0;
|
91
|
+
}
|
92
|
+
|
93
|
+
.handsontable .table-striped > tbody > tr:nth-of-type(even) {
|
94
|
+
background-color: #FFF;
|
95
|
+
}
|
96
|
+
.handsontable {
|
97
|
+
position: relative;
|
98
|
+
}
|
99
|
+
|
100
|
+
.handsontable .hide {
|
101
|
+
display: none;
|
102
|
+
}
|
103
|
+
|
104
|
+
.handsontable .relative {
|
105
|
+
position: relative;
|
106
|
+
}
|
107
|
+
|
108
|
+
.handsontable .wtHider {
|
109
|
+
width: 0;
|
110
|
+
}
|
111
|
+
|
112
|
+
.handsontable .wtSpreader {
|
113
|
+
position: relative;
|
114
|
+
/*must be 0, otherwise blank space appears in scroll demo after scrolling max to the right */
|
115
|
+
width: 0;
|
116
|
+
height: auto;
|
117
|
+
}
|
118
|
+
|
119
|
+
.handsontable table,
|
120
|
+
.handsontable tbody,
|
121
|
+
.handsontable thead,
|
122
|
+
.handsontable td,
|
123
|
+
.handsontable th,
|
124
|
+
.handsontable input,
|
125
|
+
.handsontable textarea,
|
126
|
+
.handsontable div {
|
127
|
+
box-sizing: content-box;
|
128
|
+
-webkit-box-sizing: content-box;
|
129
|
+
-moz-box-sizing: content-box;
|
130
|
+
}
|
131
|
+
|
132
|
+
.handsontable input,
|
133
|
+
.handsontable textarea {
|
134
|
+
min-height: initial;
|
135
|
+
}
|
136
|
+
|
137
|
+
.handsontable table.htCore {
|
138
|
+
border-collapse: separate;
|
139
|
+
/* it must be separate, otherwise there are offset miscalculations in WebKit: http://stackoverflow.com/questions/2655987/border-collapse-differences-in-ff-and-webkit */
|
140
|
+
/* this actually only changes appearance of user selection - does not make text unselectable */
|
141
|
+
/* -webkit-user-select: none;
|
142
|
+
-khtml-user-select: none;
|
143
|
+
-moz-user-select: none;
|
144
|
+
-o-user-select: none;
|
145
|
+
-ms-user-select: none;
|
146
|
+
user-select: none; // no browser supports unprefixed version
|
147
|
+
*/
|
148
|
+
border-spacing: 0;
|
149
|
+
margin: 0;
|
150
|
+
border-width: 0;
|
151
|
+
table-layout: fixed;
|
152
|
+
width: 0;
|
153
|
+
outline-width: 0;
|
154
|
+
cursor: default;
|
155
|
+
/* reset bootstrap table style. for more info see: https://github.com/handsontable/handsontable/issues/224 */
|
156
|
+
max-width: none;
|
157
|
+
max-height: none;
|
158
|
+
}
|
159
|
+
|
160
|
+
.handsontable col {
|
161
|
+
width: 50px;
|
162
|
+
}
|
163
|
+
|
164
|
+
.handsontable col.rowHeader {
|
165
|
+
width: 50px;
|
166
|
+
}
|
167
|
+
|
168
|
+
.handsontable th,
|
169
|
+
.handsontable td {
|
170
|
+
border-top-width: 0;
|
171
|
+
border-left-width: 0;
|
172
|
+
border-right: 1px solid #ccc;
|
173
|
+
border-bottom: 1px solid #ccc;
|
174
|
+
height: 22px;
|
175
|
+
empty-cells: show;
|
176
|
+
line-height: 21px;
|
177
|
+
padding: 0 4px 0 4px;
|
178
|
+
/* top, bottom padding different than 0 is handled poorly by FF with HTML5 doctype */
|
179
|
+
background-color: #fff;
|
180
|
+
vertical-align: top;
|
181
|
+
overflow: hidden;
|
182
|
+
outline-width: 0;
|
183
|
+
white-space: pre-wrap;
|
184
|
+
}
|
185
|
+
|
186
|
+
[dir=rtl].handsontable th, [dir=rtl].handsontable td {
|
187
|
+
border-right-width: 0;
|
188
|
+
border-left: 1px solid #ccc;
|
189
|
+
}
|
190
|
+
|
191
|
+
.handsontable th:last-child {
|
192
|
+
/*Foundation framework fix*/
|
193
|
+
border-left: none;
|
194
|
+
border-right: 1px solid #ccc;
|
195
|
+
border-bottom: 1px solid #ccc;
|
196
|
+
}
|
197
|
+
|
198
|
+
[dir=rtl].handsontable th:last-child {
|
199
|
+
/*Foundation framework fix*/
|
200
|
+
border-right: none;
|
201
|
+
border-left: 1px solid #ccc;
|
202
|
+
}
|
203
|
+
|
204
|
+
.handsontable th:first-child,
|
205
|
+
.handsontable th:nth-child(2),
|
206
|
+
.handsontable td:first-of-type {
|
207
|
+
border-left: 1px solid #ccc;
|
208
|
+
}
|
209
|
+
|
210
|
+
[dir=rtl].handsontable th:first-child, [dir=rtl].handsontable th:nth-child(2), [dir=rtl].handsontable td:first-of-type {
|
211
|
+
border-right: 1px solid #ccc;
|
212
|
+
}
|
213
|
+
|
214
|
+
/* It removes double right border from first column header when row headers are disabled */
|
215
|
+
.handsontable .ht_clone_top th:nth-child(2) {
|
216
|
+
border-left-width: 0;
|
217
|
+
border-right: 1px solid #ccc;
|
218
|
+
}
|
219
|
+
|
220
|
+
[dir=rtl].handsontable .ht_clone_top th:nth-child(2) {
|
221
|
+
border-right-width: 0;
|
222
|
+
border-left: 1px solid #ccc;
|
223
|
+
}
|
224
|
+
|
225
|
+
.handsontable.htRowHeaders thead tr th:nth-child(2) {
|
226
|
+
border-left: 1px solid #ccc;
|
227
|
+
}
|
228
|
+
|
229
|
+
[dir=rtl].handsontable.htRowHeaders thead tr th:nth-child(2) {
|
230
|
+
border-right: 1px solid #ccc;
|
231
|
+
}
|
232
|
+
|
233
|
+
.handsontable tr:first-child th,
|
234
|
+
.handsontable tr:first-child td {
|
235
|
+
border-top: 1px solid #ccc;
|
236
|
+
}
|
237
|
+
|
238
|
+
.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable tbody tr th,
|
239
|
+
.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
|
240
|
+
border-right-width: 0;
|
241
|
+
border-left: 1px solid #ccc;
|
242
|
+
}
|
243
|
+
|
244
|
+
[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable tbody tr th, [dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
|
245
|
+
border-left-width: 0;
|
246
|
+
border-right: 1px solid #ccc;
|
247
|
+
}
|
248
|
+
|
249
|
+
/*
|
250
|
+
innerBorderTop - Property controlled by top overlay
|
251
|
+
innerBorderBottom - Property controlled by bottom overlay
|
252
|
+
*/
|
253
|
+
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr:last-child th,
|
254
|
+
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) ~ .handsontable thead tr:last-child th,
|
255
|
+
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr.lastChild th,
|
256
|
+
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) ~ .handsontable thead tr.lastChild th {
|
257
|
+
border-bottom-width: 0;
|
258
|
+
}
|
259
|
+
|
260
|
+
.handsontable th {
|
261
|
+
background-color: #f0f0f0;
|
262
|
+
color: #222;
|
263
|
+
text-align: center;
|
264
|
+
font-weight: normal;
|
265
|
+
white-space: nowrap;
|
266
|
+
}
|
267
|
+
|
268
|
+
.handsontable thead th {
|
269
|
+
padding: 0;
|
270
|
+
}
|
271
|
+
|
272
|
+
.handsontable th.active {
|
273
|
+
background-color: #ccc;
|
274
|
+
}
|
275
|
+
|
276
|
+
.handsontable thead th .relative {
|
277
|
+
padding: 2px 4px;
|
278
|
+
}
|
279
|
+
|
280
|
+
.handsontable span.colHeader {
|
281
|
+
display: inline-block;
|
282
|
+
line-height: 1.1;
|
283
|
+
}
|
284
|
+
|
285
|
+
/* Selection */
|
286
|
+
.handsontable .wtBorder {
|
287
|
+
position: absolute;
|
288
|
+
font-size: 0;
|
289
|
+
}
|
290
|
+
|
291
|
+
.handsontable .wtBorder.hidden {
|
292
|
+
display: none !important;
|
293
|
+
}
|
294
|
+
|
295
|
+
/* A layer order of the selection types */
|
296
|
+
.handsontable .wtBorder.current {
|
297
|
+
z-index: 10;
|
298
|
+
}
|
299
|
+
|
300
|
+
.handsontable .wtBorder.area {
|
301
|
+
z-index: 8;
|
302
|
+
}
|
303
|
+
|
304
|
+
.handsontable .wtBorder.fill {
|
305
|
+
z-index: 6;
|
306
|
+
}
|
307
|
+
|
308
|
+
/* fill handle */
|
309
|
+
.handsontable .wtBorder.corner {
|
310
|
+
font-size: 0;
|
311
|
+
cursor: crosshair;
|
312
|
+
}
|
313
|
+
|
314
|
+
.ht_clone_master {
|
315
|
+
z-index: 100;
|
316
|
+
}
|
317
|
+
|
318
|
+
.ht_clone_inline_start {
|
319
|
+
z-index: 120;
|
320
|
+
}
|
321
|
+
|
322
|
+
.ht_clone_bottom {
|
323
|
+
z-index: 130;
|
324
|
+
}
|
325
|
+
|
326
|
+
.ht_clone_bottom_inline_start_corner {
|
327
|
+
z-index: 150;
|
328
|
+
}
|
329
|
+
|
330
|
+
.ht_clone_top {
|
331
|
+
z-index: 160;
|
332
|
+
}
|
333
|
+
|
334
|
+
.ht_clone_top_inline_start_corner {
|
335
|
+
z-index: 180;
|
336
|
+
}
|
337
|
+
|
338
|
+
.handsontable col.hidden {
|
339
|
+
width: 0 !important;
|
340
|
+
}
|
341
|
+
|
342
|
+
.handsontable tr.hidden,
|
343
|
+
.handsontable tr.hidden td,
|
344
|
+
.handsontable tr.hidden th {
|
345
|
+
display: none;
|
346
|
+
}
|
347
|
+
|
348
|
+
.ht_master,
|
349
|
+
.ht_clone_inline_start,
|
350
|
+
.ht_clone_top,
|
351
|
+
.ht_clone_bottom {
|
352
|
+
overflow: hidden;
|
353
|
+
}
|
354
|
+
|
355
|
+
.ht_master .wtHolder {
|
356
|
+
overflow: auto;
|
357
|
+
}
|
358
|
+
|
359
|
+
.handsontable .ht_master thead,
|
360
|
+
.handsontable .ht_master tr th,
|
361
|
+
.handsontable .ht_clone_inline_start thead {
|
362
|
+
visibility: hidden;
|
363
|
+
}
|
364
|
+
|
365
|
+
.ht_clone_top .wtHolder,
|
366
|
+
.ht_clone_inline_start .wtHolder,
|
367
|
+
.ht_clone_bottom .wtHolder {
|
368
|
+
overflow: hidden;
|
369
|
+
}
|
370
|
+
@charset "UTF-8";
|
371
|
+
.handsontable {
|
372
|
+
touch-action: manipulation;
|
373
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
|
374
|
+
font-size: 13px;
|
375
|
+
font-weight: normal;
|
376
|
+
color: #373737;
|
377
|
+
}
|
378
|
+
|
379
|
+
.handsontable a {
|
380
|
+
color: #104acc;
|
381
|
+
}
|
382
|
+
|
383
|
+
.handsontable.htAutoSize {
|
384
|
+
visibility: hidden;
|
385
|
+
left: -99000px;
|
386
|
+
position: absolute;
|
387
|
+
top: -99000px;
|
388
|
+
}
|
389
|
+
|
390
|
+
.handsontable td.htInvalid {
|
391
|
+
/*gives priority over td.area selection background*/
|
392
|
+
background-color: #ff4c42 !important;
|
393
|
+
}
|
394
|
+
|
395
|
+
.handsontable td.htNoWrap {
|
396
|
+
white-space: nowrap;
|
397
|
+
}
|
398
|
+
|
399
|
+
#hot-display-license-info {
|
400
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
|
401
|
+
font-size: 10px;
|
402
|
+
font-weight: normal;
|
403
|
+
color: #373737;
|
404
|
+
padding: 5px 0 3px 0;
|
405
|
+
text-align: left;
|
406
|
+
}
|
407
|
+
|
408
|
+
#hot-display-license-info a {
|
409
|
+
color: #104acc;
|
410
|
+
font-size: 10px;
|
411
|
+
}
|
412
|
+
|
413
|
+
/* plugins */
|
414
|
+
/* row + column resizer*/
|
415
|
+
.handsontable .manualColumnResizer {
|
416
|
+
position: absolute;
|
417
|
+
top: 0;
|
418
|
+
cursor: col-resize;
|
419
|
+
z-index: 210;
|
420
|
+
width: 5px;
|
421
|
+
height: 25px;
|
422
|
+
}
|
423
|
+
|
424
|
+
.handsontable .manualRowResizer {
|
425
|
+
position: absolute;
|
426
|
+
left: 0;
|
427
|
+
cursor: row-resize;
|
428
|
+
z-index: 210;
|
429
|
+
height: 5px;
|
430
|
+
width: 50px;
|
431
|
+
}
|
432
|
+
|
433
|
+
.handsontable .manualColumnResizer:hover,
|
434
|
+
.handsontable .manualColumnResizer.active,
|
435
|
+
.handsontable .manualRowResizer:hover,
|
436
|
+
.handsontable .manualRowResizer.active {
|
437
|
+
background-color: #34a9db;
|
438
|
+
}
|
439
|
+
|
440
|
+
.handsontable .manualColumnResizerGuide {
|
441
|
+
position: absolute;
|
442
|
+
right: unset;
|
443
|
+
top: 0;
|
444
|
+
background-color: #34a9db;
|
445
|
+
display: none;
|
446
|
+
width: 0;
|
447
|
+
border-right: 1px dashed #777;
|
448
|
+
border-left: none;
|
449
|
+
margin-left: 5px;
|
450
|
+
margin-right: unset;
|
451
|
+
}
|
452
|
+
|
453
|
+
[dir=rtl].handsontable .manualColumnResizerGuide {
|
454
|
+
left: unset;
|
455
|
+
border-left: 1px dashed #777;
|
456
|
+
border-right: none;
|
457
|
+
margin-right: 5px;
|
458
|
+
margin-left: unset;
|
459
|
+
}
|
460
|
+
|
461
|
+
.handsontable .manualRowResizerGuide {
|
462
|
+
position: absolute;
|
463
|
+
left: 0;
|
464
|
+
bottom: 0;
|
465
|
+
background-color: #34a9db;
|
466
|
+
display: none;
|
467
|
+
height: 0;
|
468
|
+
border-bottom: 1px dashed #777;
|
469
|
+
margin-top: 5px;
|
470
|
+
}
|
471
|
+
|
472
|
+
.handsontable .manualColumnResizerGuide.active,
|
473
|
+
.handsontable .manualRowResizerGuide.active {
|
474
|
+
display: block;
|
475
|
+
z-index: 209;
|
476
|
+
}
|
477
|
+
|
478
|
+
.handsontable .columnSorting {
|
479
|
+
position: relative;
|
480
|
+
}
|
481
|
+
|
482
|
+
.handsontable .columnSorting.sortAction:hover {
|
483
|
+
text-decoration: underline;
|
484
|
+
cursor: pointer;
|
485
|
+
} /* Arrow position */
|
486
|
+
.handsontable span.colHeader.columnSorting::before {
|
487
|
+
/* Centering start */
|
488
|
+
top: 50%;
|
489
|
+
/* One extra pixel for purpose of proper positioning of sorting arrow, when `font-size` set to default */
|
490
|
+
margin-top: -6px;
|
491
|
+
/* Centering end */
|
492
|
+
/* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
|
493
|
+
padding-left: 8px;
|
494
|
+
padding-right: 0;
|
495
|
+
position: absolute;
|
496
|
+
right: -9px;
|
497
|
+
left: unset;
|
498
|
+
content: "";
|
499
|
+
height: 10px;
|
500
|
+
width: 5px;
|
501
|
+
background-size: contain;
|
502
|
+
background-repeat: no-repeat;
|
503
|
+
background-position-x: right;
|
504
|
+
}
|
505
|
+
|
506
|
+
[dir=rtl].handsontable span.colHeader.columnSorting::before {
|
507
|
+
/* Centering end */
|
508
|
+
/* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
|
509
|
+
padding-right: 8px;
|
510
|
+
padding-left: 0;
|
511
|
+
left: -9px;
|
512
|
+
right: unset;
|
513
|
+
background-position-x: left;
|
514
|
+
}
|
515
|
+
|
516
|
+
.handsontable span.colHeader.columnSorting.ascending::before {
|
517
|
+
/* arrow up; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
|
518
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC");
|
519
|
+
}
|
520
|
+
|
521
|
+
.handsontable span.colHeader.columnSorting.descending::before {
|
522
|
+
/* arrow down; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
|
523
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=");
|
524
|
+
}
|
525
|
+
|
526
|
+
.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::after {
|
527
|
+
content: "*";
|
528
|
+
display: inline-block;
|
529
|
+
position: relative;
|
530
|
+
/* The multi-line header and header with longer text need more padding to not hide arrow,
|
531
|
+
we make header wider in `GhostTable` to make some space for arrow which is positioned absolutely in the main table */
|
532
|
+
padding-right: 20px;
|
533
|
+
}
|
534
|
+
|
535
|
+
.handsontable td.area,
|
536
|
+
.handsontable td.area-1,
|
537
|
+
.handsontable td.area-2,
|
538
|
+
.handsontable td.area-3,
|
539
|
+
.handsontable td.area-4,
|
540
|
+
.handsontable td.area-5,
|
541
|
+
.handsontable td.area-6,
|
542
|
+
.handsontable td.area-7 {
|
543
|
+
position: relative;
|
544
|
+
}
|
545
|
+
|
546
|
+
.handsontable td.area:before,
|
547
|
+
.handsontable td.area-1:before,
|
548
|
+
.handsontable td.area-2:before,
|
549
|
+
.handsontable td.area-3:before,
|
550
|
+
.handsontable td.area-4:before,
|
551
|
+
.handsontable td.area-5:before,
|
552
|
+
.handsontable td.area-6:before,
|
553
|
+
.handsontable td.area-7:before {
|
554
|
+
content: "";
|
555
|
+
position: absolute;
|
556
|
+
top: 0;
|
557
|
+
left: 0;
|
558
|
+
right: 0;
|
559
|
+
bottom: 0;
|
560
|
+
/* Fix for IE9 to spread the ":before" pseudo element to 100% height of the parent element */
|
561
|
+
bottom: -100% \9 ;
|
562
|
+
background: #005eff;
|
563
|
+
}
|
564
|
+
|
565
|
+
/* Fix for IE10 and IE11 to spread the ":before" pseudo element to 100% height of the parent element */
|
566
|
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
567
|
+
.handsontable td.area:before,
|
568
|
+
.handsontable td.area-1:before,
|
569
|
+
.handsontable td.area-2:before,
|
570
|
+
.handsontable td.area-3:before,
|
571
|
+
.handsontable td.area-4:before,
|
572
|
+
.handsontable td.area-5:before,
|
573
|
+
.handsontable td.area-6:before,
|
574
|
+
.handsontable td.area-7:before {
|
575
|
+
bottom: -100%;
|
576
|
+
}
|
577
|
+
}
|
578
|
+
.handsontable td.area:before {
|
579
|
+
opacity: 0.1;
|
580
|
+
}
|
581
|
+
|
582
|
+
.handsontable td.area-1:before {
|
583
|
+
opacity: 0.2;
|
584
|
+
}
|
585
|
+
|
586
|
+
.handsontable td.area-2:before {
|
587
|
+
opacity: 0.27;
|
588
|
+
}
|
589
|
+
|
590
|
+
.handsontable td.area-3:before {
|
591
|
+
opacity: 0.35;
|
592
|
+
}
|
593
|
+
|
594
|
+
.handsontable td.area-4:before {
|
595
|
+
opacity: 0.41;
|
596
|
+
}
|
597
|
+
|
598
|
+
.handsontable td.area-5:before {
|
599
|
+
opacity: 0.47;
|
600
|
+
}
|
601
|
+
|
602
|
+
.handsontable td.area-6:before {
|
603
|
+
opacity: 0.54;
|
604
|
+
}
|
605
|
+
|
606
|
+
.handsontable td.area-7:before {
|
607
|
+
opacity: 0.58;
|
608
|
+
}
|
609
|
+
|
610
|
+
.handsontable tbody th.ht__highlight,
|
611
|
+
.handsontable thead th.ht__highlight {
|
612
|
+
background-color: #dcdcdc;
|
613
|
+
}
|
614
|
+
|
615
|
+
.handsontable tbody th.ht__active_highlight,
|
616
|
+
.handsontable thead th.ht__active_highlight {
|
617
|
+
background-color: #8eb0e7;
|
618
|
+
color: #000;
|
619
|
+
}
|
620
|
+
|
621
|
+
.handsontableInput {
|
622
|
+
border: none;
|
623
|
+
outline-width: 0;
|
624
|
+
margin: 0;
|
625
|
+
padding: 1px 5px 0 5px;
|
626
|
+
font-family: inherit;
|
627
|
+
line-height: 21px;
|
628
|
+
font-size: inherit;
|
629
|
+
box-shadow: 0 0 0 2px #5292F7 inset;
|
630
|
+
resize: none;
|
631
|
+
/*below are needed to overwrite stuff added by jQuery UI Bootstrap theme*/
|
632
|
+
display: block;
|
633
|
+
color: #000;
|
634
|
+
border-radius: 0;
|
635
|
+
background-color: #FFF;
|
636
|
+
/*overwrite styles potentionally made by a framework*/
|
637
|
+
}
|
638
|
+
|
639
|
+
.handsontableInput:focus {
|
640
|
+
outline: none;
|
641
|
+
}
|
642
|
+
|
643
|
+
.handsontableInputHolder {
|
644
|
+
position: absolute;
|
645
|
+
top: 0;
|
646
|
+
left: 0;
|
647
|
+
}
|
648
|
+
|
649
|
+
.htSelectEditor {
|
650
|
+
-webkit-appearance: menulist-button !important;
|
651
|
+
position: absolute;
|
652
|
+
width: auto;
|
653
|
+
}
|
654
|
+
|
655
|
+
.htSelectEditor:focus {
|
656
|
+
outline: none;
|
657
|
+
}
|
658
|
+
|
659
|
+
/*
|
660
|
+
TextRenderer readOnly cell
|
661
|
+
*/
|
662
|
+
.handsontable .htDimmed {
|
663
|
+
color: #777;
|
664
|
+
}
|
665
|
+
|
666
|
+
.handsontable .htSubmenu {
|
667
|
+
position: relative;
|
668
|
+
}
|
669
|
+
|
670
|
+
.handsontable .htSubmenu :after {
|
671
|
+
content: "▶";
|
672
|
+
color: #777;
|
673
|
+
position: absolute;
|
674
|
+
right: 5px;
|
675
|
+
font-size: 9px;
|
676
|
+
}
|
677
|
+
|
678
|
+
[dir=rtl].handsontable .htSubmenu :after {
|
679
|
+
content: "";
|
680
|
+
}
|
681
|
+
|
682
|
+
[dir=rtl].handsontable .htSubmenu :before {
|
683
|
+
content: "◀";
|
684
|
+
color: #777;
|
685
|
+
position: absolute;
|
686
|
+
left: 5px;
|
687
|
+
font-size: 9px;
|
688
|
+
}
|
689
|
+
|
690
|
+
/*
|
691
|
+
TextRenderer horizontal alignment
|
692
|
+
*/
|
693
|
+
.handsontable .htLeft {
|
694
|
+
text-align: left;
|
695
|
+
}
|
696
|
+
|
697
|
+
.handsontable .htCenter {
|
698
|
+
text-align: center;
|
699
|
+
}
|
700
|
+
|
701
|
+
.handsontable .htRight {
|
702
|
+
text-align: right;
|
703
|
+
}
|
704
|
+
|
705
|
+
.handsontable .htJustify {
|
706
|
+
text-align: justify;
|
707
|
+
}
|
708
|
+
|
709
|
+
/*
|
710
|
+
TextRenderer vertical alignment
|
711
|
+
*/
|
712
|
+
.handsontable .htTop {
|
713
|
+
vertical-align: top;
|
714
|
+
}
|
715
|
+
|
716
|
+
.handsontable .htMiddle {
|
717
|
+
vertical-align: middle;
|
718
|
+
}
|
719
|
+
|
720
|
+
.handsontable .htBottom {
|
721
|
+
vertical-align: bottom;
|
722
|
+
}
|
723
|
+
|
724
|
+
/*
|
725
|
+
TextRenderer placeholder value
|
726
|
+
*/
|
727
|
+
.handsontable .htPlaceholder {
|
728
|
+
color: #999;
|
729
|
+
}
|
730
|
+
|
731
|
+
/**
|
732
|
+
* Handsontable listbox theme
|
733
|
+
*/
|
734
|
+
.handsontable.listbox {
|
735
|
+
margin: 0;
|
736
|
+
}
|
737
|
+
|
738
|
+
.handsontable.listbox .ht_master table {
|
739
|
+
border: 1px solid #ccc;
|
740
|
+
border-collapse: separate;
|
741
|
+
background: white;
|
742
|
+
}
|
743
|
+
|
744
|
+
.handsontable.listbox th,
|
745
|
+
.handsontable.listbox tr:first-child th,
|
746
|
+
.handsontable.listbox tr:last-child th,
|
747
|
+
.handsontable.listbox tr:first-child td,
|
748
|
+
.handsontable.listbox td {
|
749
|
+
border-color: transparent !important;
|
750
|
+
}
|
751
|
+
|
752
|
+
.handsontable.listbox th,
|
753
|
+
.handsontable.listbox td {
|
754
|
+
white-space: nowrap;
|
755
|
+
text-overflow: ellipsis;
|
756
|
+
}
|
757
|
+
|
758
|
+
.handsontable.listbox td.htDimmed {
|
759
|
+
cursor: default;
|
760
|
+
color: inherit;
|
761
|
+
font-style: inherit;
|
762
|
+
}
|
763
|
+
|
764
|
+
.handsontable.listbox .wtBorder {
|
765
|
+
visibility: hidden;
|
766
|
+
}
|
767
|
+
|
768
|
+
.handsontable.listbox tr td.current,
|
769
|
+
.handsontable.listbox tr:hover td {
|
770
|
+
background: #eee;
|
771
|
+
}
|
772
|
+
|
773
|
+
.ht_editor_hidden {
|
774
|
+
z-index: -1;
|
775
|
+
}
|
776
|
+
|
777
|
+
.ht_editor_visible {
|
778
|
+
z-index: 200;
|
779
|
+
}
|
780
|
+
|
781
|
+
.handsontable td.htSearchResult {
|
782
|
+
background: #fcedd9;
|
783
|
+
color: #583707;
|
784
|
+
}
|
785
|
+
|
786
|
+
.handsontable .collapsibleIndicator {
|
787
|
+
position: absolute;
|
788
|
+
top: 50%;
|
789
|
+
transform: translate(0%, -50%);
|
790
|
+
left: unset;
|
791
|
+
right: 5px;
|
792
|
+
border: 1px solid #A6A6A6;
|
793
|
+
line-height: 8px;
|
794
|
+
color: #222;
|
795
|
+
border-radius: 10px;
|
796
|
+
font-size: 10px;
|
797
|
+
width: 10px;
|
798
|
+
height: 10px;
|
799
|
+
cursor: pointer;
|
800
|
+
-webkit-box-shadow: 0 0 0 6px rgb(238, 238, 238);
|
801
|
+
-moz-box-shadow: 0 0 0 6px rgb(238, 238, 238);
|
802
|
+
box-shadow: 0 0 0 6px rgb(238, 238, 238);
|
803
|
+
background: #eee;
|
804
|
+
text-align: center;
|
805
|
+
}
|
806
|
+
|
807
|
+
[dir=rtl].handsontable .collapsibleIndicator {
|
808
|
+
right: unset;
|
809
|
+
left: 5px;
|
810
|
+
}
|
811
|
+
/*
|
812
|
+
|
813
|
+
Handsontable Mobile Text Editor stylesheet
|
814
|
+
|
815
|
+
*/
|
816
|
+
.handsontable.mobile,
|
817
|
+
.handsontable.mobile .wtHolder {
|
818
|
+
-webkit-touch-callout: none;
|
819
|
+
-webkit-user-select: none;
|
820
|
+
-khtml-user-select: none;
|
821
|
+
-moz-user-select: none;
|
822
|
+
-ms-user-select: none;
|
823
|
+
user-select: none;
|
824
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
825
|
+
-webkit-overflow-scrolling: touch;
|
826
|
+
}
|
827
|
+
|
828
|
+
.handsontable.mobile .handsontableInput:focus {
|
829
|
+
-webkit-box-shadow: 0 0 0 2px #5292f7 inset;
|
830
|
+
-moz-box-shadow: 0 0 0 2px #5292f7 inset;
|
831
|
+
box-shadow: 0 0 0 2px #5292f7 inset;
|
832
|
+
-webkit-appearance: none;
|
833
|
+
}
|
834
|
+
|
835
|
+
.topSelectionHandle:not(.ht_master .topSelectionHandle),
|
836
|
+
.topSelectionHandle-HitArea:not(.ht_master .topSelectionHandle-HitArea) {
|
837
|
+
z-index: 9999;
|
838
|
+
}
|
839
|
+
|
840
|
+
/* Initial left/top coordinates - overwritten when actual position is set */
|
841
|
+
.handsontable .topSelectionHandle,
|
842
|
+
.handsontable .topSelectionHandle-HitArea,
|
843
|
+
.handsontable .bottomSelectionHandle,
|
844
|
+
.handsontable .bottomSelectionHandle-HitArea {
|
845
|
+
left: -10000px;
|
846
|
+
right: unset;
|
847
|
+
top: -10000px;
|
848
|
+
}
|
849
|
+
|
850
|
+
[dir=rtl].handsontable .topSelectionHandle, [dir=rtl].handsontable .topSelectionHandle-HitArea, [dir=rtl].handsontable .bottomSelectionHandle, [dir=rtl].handsontable .bottomSelectionHandle-HitArea {
|
851
|
+
right: -10000px;
|
852
|
+
left: unset;
|
853
|
+
}
|
854
|
+
|
855
|
+
.handsontable.hide-tween {
|
856
|
+
-webkit-animation: opacity-hide 0.3s;
|
857
|
+
animation: opacity-hide 0.3s;
|
858
|
+
animation-fill-mode: forwards;
|
859
|
+
-webkit-animation-fill-mode: forwards;
|
860
|
+
}
|
861
|
+
|
862
|
+
.handsontable.show-tween {
|
863
|
+
-webkit-animation: opacity-show 0.3s;
|
864
|
+
animation: opacity-show 0.3s;
|
865
|
+
animation-fill-mode: forwards;
|
866
|
+
-webkit-animation-fill-mode: forwards;
|
867
|
+
}
|
868
|
+
/*
|
869
|
+
AutocompleteRenderer down arrow
|
870
|
+
*/
|
871
|
+
.handsontable .htAutocompleteArrow {
|
872
|
+
float: right;
|
873
|
+
font-size: 10px;
|
874
|
+
color: #EEE;
|
875
|
+
cursor: default;
|
876
|
+
width: 16px;
|
877
|
+
text-align: center;
|
878
|
+
}
|
879
|
+
|
880
|
+
[dir=rtl].handsontable .htAutocompleteArrow {
|
881
|
+
float: left;
|
882
|
+
}
|
883
|
+
|
884
|
+
.handsontable td .htAutocompleteArrow:hover {
|
885
|
+
color: #777;
|
886
|
+
}
|
887
|
+
|
888
|
+
.handsontable td.area .htAutocompleteArrow {
|
889
|
+
color: #d3d3d3;
|
890
|
+
}
|
891
|
+
/*
|
892
|
+
CheckboxRenderer
|
893
|
+
*/
|
894
|
+
.handsontable .htCheckboxRendererInput {
|
895
|
+
display: inline-block;
|
896
|
+
}
|
897
|
+
|
898
|
+
.handsontable .htCheckboxRendererInput.noValue {
|
899
|
+
opacity: 0.5;
|
900
|
+
}
|
901
|
+
|
902
|
+
.handsontable .htCheckboxRendererLabel {
|
903
|
+
font-size: inherit;
|
904
|
+
vertical-align: middle;
|
905
|
+
cursor: pointer;
|
906
|
+
display: inline-block;
|
907
|
+
}
|
908
|
+
|
909
|
+
.handsontable .htCheckboxRendererLabel.fullWidth {
|
910
|
+
width: 100%;
|
911
|
+
}
|
912
|
+
.handsontable .htCommentCell {
|
913
|
+
position: relative;
|
914
|
+
}
|
915
|
+
|
916
|
+
.handsontable .htCommentCell:after {
|
917
|
+
content: "";
|
918
|
+
position: absolute;
|
919
|
+
top: 0;
|
920
|
+
right: 0;
|
921
|
+
left: unset;
|
922
|
+
border-left: 6px solid transparent;
|
923
|
+
border-right: none;
|
924
|
+
border-top: 6px solid black;
|
925
|
+
}
|
926
|
+
|
927
|
+
[dir=rtl].handsontable .htCommentCell:after {
|
928
|
+
left: 0;
|
929
|
+
right: unset;
|
930
|
+
border-right: 6px solid transparent;
|
931
|
+
border-left: none;
|
932
|
+
}
|
933
|
+
|
934
|
+
.htCommentsContainer .htComments {
|
935
|
+
display: none;
|
936
|
+
z-index: 1059;
|
937
|
+
position: absolute;
|
938
|
+
}
|
939
|
+
|
940
|
+
.htCommentsContainer .htCommentTextArea {
|
941
|
+
box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px;
|
942
|
+
-webkit-box-sizing: border-box;
|
943
|
+
-moz-box-sizing: border-box;
|
944
|
+
box-sizing: border-box;
|
945
|
+
border: none;
|
946
|
+
border-left: 3px solid #ccc;
|
947
|
+
border-right: none;
|
948
|
+
background-color: #fff;
|
949
|
+
width: 215px;
|
950
|
+
height: 90px;
|
951
|
+
font-size: 12px;
|
952
|
+
padding: 5px;
|
953
|
+
outline: 0px !important;
|
954
|
+
-webkit-appearance: none;
|
955
|
+
}
|
956
|
+
|
957
|
+
[dir=rtl].htCommentsContainer .htCommentTextArea {
|
958
|
+
border-right: 3px solid #ccc;
|
959
|
+
border-left: none;
|
960
|
+
}
|
961
|
+
|
962
|
+
.htCommentsContainer .htCommentTextArea:focus {
|
963
|
+
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;
|
964
|
+
border-left: 3px solid #5292f7;
|
965
|
+
border-right: none;
|
966
|
+
}
|
967
|
+
|
968
|
+
[dir=rtl].htCommentsContainer .htCommentTextArea:focus {
|
969
|
+
border-right: 3px solid #5292f7;
|
970
|
+
border-left: none;
|
971
|
+
}
|
972
|
+
/*!
|
973
|
+
* Handsontable ContextMenu
|
974
|
+
*/
|
975
|
+
.htContextMenu:not(.htGhostTable) {
|
976
|
+
display: none;
|
977
|
+
position: absolute;
|
978
|
+
/* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
|
979
|
+
z-index: 1060;
|
980
|
+
}
|
981
|
+
|
982
|
+
.htContextMenu .ht_clone_top,
|
983
|
+
.htContextMenu .ht_clone_bottom,
|
984
|
+
.htContextMenu .ht_clone_inline_start,
|
985
|
+
.htContextMenu .ht_clone_top_inline_start_corner,
|
986
|
+
.htContextMenu .ht_clone_bottom_inline_start_corner {
|
987
|
+
display: none;
|
988
|
+
}
|
989
|
+
|
990
|
+
.htContextMenu .ht_master table.htCore {
|
991
|
+
border-color: #ccc;
|
992
|
+
border-style: solid;
|
993
|
+
border-top-width: 1px;
|
994
|
+
border-bottom-width: 2px;
|
995
|
+
border-left-width: 1px;
|
996
|
+
border-right-width: 2px;
|
997
|
+
}
|
998
|
+
|
999
|
+
[dir=rtl].htContextMenu .ht_master table.htCore {
|
1000
|
+
border-right-width: 1px;
|
1001
|
+
border-left-width: 2px;
|
1002
|
+
}
|
1003
|
+
|
1004
|
+
.htContextMenu .wtBorder {
|
1005
|
+
visibility: hidden;
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
.htContextMenu table tbody tr td {
|
1009
|
+
background: white;
|
1010
|
+
border-width: 0;
|
1011
|
+
padding: 4px 6px 0 6px;
|
1012
|
+
cursor: pointer;
|
1013
|
+
overflow: hidden;
|
1014
|
+
white-space: nowrap;
|
1015
|
+
text-overflow: ellipsis;
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
.htContextMenu table tbody tr td:first-child {
|
1019
|
+
border-top-width: 0;
|
1020
|
+
border-bottom-width: 0;
|
1021
|
+
border-left-width: 0;
|
1022
|
+
border-right-width: 0;
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
[dir=rtl].htContextMenu table tbody tr td:first-child {
|
1026
|
+
border-right-width: 0;
|
1027
|
+
border-left-width: 0;
|
1028
|
+
}
|
1029
|
+
|
1030
|
+
.htContextMenu table tbody tr td.htDimmed {
|
1031
|
+
font-style: normal;
|
1032
|
+
color: #323232;
|
1033
|
+
}
|
1034
|
+
|
1035
|
+
.htContextMenu table tbody tr td.current,
|
1036
|
+
.htContextMenu table tbody tr td.zeroclipboard-is-hover {
|
1037
|
+
background: #f3f3f3;
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
.htContextMenu table tbody tr td.htSeparator {
|
1041
|
+
border-top: 1px solid #e6e6e6;
|
1042
|
+
height: 0;
|
1043
|
+
padding: 0;
|
1044
|
+
cursor: default;
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
.htContextMenu table tbody tr td.htDisabled {
|
1048
|
+
color: #999;
|
1049
|
+
cursor: default;
|
1050
|
+
}
|
1051
|
+
|
1052
|
+
.htContextMenu table tbody tr td.htDisabled:hover {
|
1053
|
+
background: #fff;
|
1054
|
+
color: #999;
|
1055
|
+
cursor: default;
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
.htContextMenu table tbody tr.htHidden {
|
1059
|
+
display: none;
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
.htContextMenu table tbody tr td .htItemWrapper {
|
1063
|
+
margin-left: 10px;
|
1064
|
+
margin-right: 6px;
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
.htContextMenu table tbody tr td div span.selected {
|
1068
|
+
margin-top: -2px;
|
1069
|
+
position: absolute;
|
1070
|
+
left: 4px;
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
.htContextMenu .ht_master .wtHolder {
|
1074
|
+
overflow: hidden;
|
1075
|
+
}
|
1076
|
+
textarea.HandsontableCopyPaste {
|
1077
|
+
position: fixed !important;
|
1078
|
+
top: 0 !important;
|
1079
|
+
right: 100% !important;
|
1080
|
+
overflow: hidden;
|
1081
|
+
opacity: 0;
|
1082
|
+
outline: 0 none !important;
|
1083
|
+
}
|
1084
|
+
@charset "UTF-8";
|
1085
|
+
/*!
|
1086
|
+
* Handsontable DropdownMenu
|
1087
|
+
*/
|
1088
|
+
.handsontable .changeType {
|
1089
|
+
background: #eee;
|
1090
|
+
border-radius: 2px;
|
1091
|
+
border: 1px solid #bbb;
|
1092
|
+
color: #bbb;
|
1093
|
+
font-size: 9px;
|
1094
|
+
line-height: 9px;
|
1095
|
+
padding: 2px;
|
1096
|
+
margin: 3px 1px 0 5px;
|
1097
|
+
float: right;
|
1098
|
+
}
|
1099
|
+
|
1100
|
+
[dir=rtl].handsontable .changeType {
|
1101
|
+
float: left;
|
1102
|
+
}
|
1103
|
+
|
1104
|
+
.handsontable .changeType:before {
|
1105
|
+
content: "▼ ";
|
1106
|
+
}
|
1107
|
+
|
1108
|
+
.handsontable .changeType:hover {
|
1109
|
+
border: 1px solid #777;
|
1110
|
+
color: #777;
|
1111
|
+
cursor: pointer;
|
1112
|
+
}
|
1113
|
+
|
1114
|
+
.htDropdownMenu:not(.htGhostTable) {
|
1115
|
+
display: none;
|
1116
|
+
position: absolute;
|
1117
|
+
/* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
|
1118
|
+
z-index: 1060;
|
1119
|
+
}
|
1120
|
+
|
1121
|
+
.htDropdownMenu .ht_clone_top,
|
1122
|
+
.htDropdownMenu .ht_clone_bottom,
|
1123
|
+
.htDropdownMenu .ht_clone_inline_start,
|
1124
|
+
.htDropdownMenu .ht_clone_top_inline_start_corner,
|
1125
|
+
.htDropdownMenu .ht_clone_bottom_inline_start_corner {
|
1126
|
+
display: none;
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
.htDropdownMenu table.htCore {
|
1130
|
+
border-color: #ccc;
|
1131
|
+
border-style: solid;
|
1132
|
+
border-top-width: 1px;
|
1133
|
+
border-bottom-width: 2px;
|
1134
|
+
border-left-width: 1px;
|
1135
|
+
border-right-width: 2px;
|
1136
|
+
}
|
1137
|
+
|
1138
|
+
[dir=rtl].htDropdownMenu table.htCore {
|
1139
|
+
border-right-width: 1px;
|
1140
|
+
border-left-width: 2px;
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
.htDropdownMenu .wtBorder {
|
1144
|
+
visibility: hidden;
|
1145
|
+
}
|
1146
|
+
|
1147
|
+
.htDropdownMenu table tbody tr td {
|
1148
|
+
background: white;
|
1149
|
+
border-width: 0;
|
1150
|
+
padding: 4px 6px 0 6px;
|
1151
|
+
cursor: pointer;
|
1152
|
+
overflow: hidden;
|
1153
|
+
white-space: nowrap;
|
1154
|
+
text-overflow: ellipsis;
|
1155
|
+
}
|
1156
|
+
|
1157
|
+
.htDropdownMenu table tbody tr td:first-child {
|
1158
|
+
border-top-width: 0;
|
1159
|
+
border-right-width: 0;
|
1160
|
+
border-bottom-width: 0;
|
1161
|
+
border-left-width: 0;
|
1162
|
+
}
|
1163
|
+
|
1164
|
+
[dir=rtl].htDropdownMenu table tbody tr td:first-child {
|
1165
|
+
border-left-width: 0;
|
1166
|
+
border-right-width: 0;
|
1167
|
+
}
|
1168
|
+
|
1169
|
+
.htDropdownMenu table tbody tr td.htDimmed {
|
1170
|
+
font-style: normal;
|
1171
|
+
color: #323232;
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
.htDropdownMenu table tbody tr td.current,
|
1175
|
+
.htDropdownMenu table tbody tr td.zeroclipboard-is-hover {
|
1176
|
+
background: #e9e9e9;
|
1177
|
+
}
|
1178
|
+
|
1179
|
+
.htDropdownMenu table tbody tr td.htSeparator {
|
1180
|
+
border-top: 1px solid #e6e6e6;
|
1181
|
+
height: 0;
|
1182
|
+
padding: 0;
|
1183
|
+
cursor: default;
|
1184
|
+
}
|
1185
|
+
|
1186
|
+
.htDropdownMenu table tbody tr td.htDisabled {
|
1187
|
+
color: #999;
|
1188
|
+
}
|
1189
|
+
|
1190
|
+
.htDropdownMenu table tbody tr td.htDisabled:hover {
|
1191
|
+
background: #fff;
|
1192
|
+
color: #999;
|
1193
|
+
cursor: default;
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
.htDropdownMenu:not(.htGhostTable) table tbody tr.htHidden {
|
1197
|
+
display: none;
|
1198
|
+
}
|
1199
|
+
|
1200
|
+
.htDropdownMenu table tbody tr td .htItemWrapper {
|
1201
|
+
margin-left: 10px;
|
1202
|
+
margin-right: 10px;
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
.htDropdownMenu table tbody tr td div span.selected {
|
1206
|
+
margin-top: -2px;
|
1207
|
+
position: absolute;
|
1208
|
+
left: 4px;
|
1209
|
+
}
|
1210
|
+
|
1211
|
+
.htDropdownMenu .ht_master .wtHolder {
|
1212
|
+
overflow: hidden;
|
1213
|
+
}
|
1214
|
+
@charset "UTF-8";
|
1215
|
+
/*!
|
1216
|
+
* Handsontable Filters
|
1217
|
+
*/
|
1218
|
+
/* Conditions menu */
|
1219
|
+
.htFiltersConditionsMenu:not(.htGhostTable) {
|
1220
|
+
display: none;
|
1221
|
+
position: absolute;
|
1222
|
+
z-index: 1070;
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
.htFiltersConditionsMenu .ht_clone_top,
|
1226
|
+
.htFiltersConditionsMenu .ht_clone_inline_start,
|
1227
|
+
.htFiltersConditionsMenu .ht_clone_corner {
|
1228
|
+
display: none;
|
1229
|
+
}
|
1230
|
+
|
1231
|
+
.htFiltersConditionsMenu table.htCore {
|
1232
|
+
border: 1px solid #bbb;
|
1233
|
+
border-bottom-width: 2px;
|
1234
|
+
border-right-width: 2px;
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
.htFiltersConditionsMenu .wtBorder {
|
1238
|
+
visibility: hidden;
|
1239
|
+
}
|
1240
|
+
|
1241
|
+
.htFiltersConditionsMenu table tbody tr td {
|
1242
|
+
background: white;
|
1243
|
+
border-width: 0;
|
1244
|
+
padding: 4px 6px 0 6px;
|
1245
|
+
cursor: pointer;
|
1246
|
+
overflow: hidden;
|
1247
|
+
white-space: nowrap;
|
1248
|
+
text-overflow: ellipsis;
|
1249
|
+
}
|
1250
|
+
|
1251
|
+
.htFiltersConditionsMenu table tbody tr td:first-child {
|
1252
|
+
border-top-width: 0;
|
1253
|
+
border-right-width: 0;
|
1254
|
+
border-bottom-width: 0;
|
1255
|
+
border-left-width: 0;
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
[dir=rtl].htFiltersConditionsMenu table tbody tr td:first-child {
|
1259
|
+
border-left-width: 0;
|
1260
|
+
border-right-width: 0;
|
1261
|
+
}
|
1262
|
+
|
1263
|
+
.htFiltersConditionsMenu table tbody tr td.htDimmed {
|
1264
|
+
font-style: normal;
|
1265
|
+
color: #323232;
|
1266
|
+
}
|
1267
|
+
|
1268
|
+
.htFiltersConditionsMenu table tbody tr td.current,
|
1269
|
+
.htFiltersConditionsMenu table tbody tr td.zeroclipboard-is-hover {
|
1270
|
+
background: #e9e9e9;
|
1271
|
+
}
|
1272
|
+
|
1273
|
+
.htFiltersConditionsMenu table tbody tr td.htSeparator {
|
1274
|
+
border-top: 1px solid #e6e6e6;
|
1275
|
+
height: 0;
|
1276
|
+
padding: 0;
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
.htFiltersConditionsMenu table tbody tr td.htDisabled {
|
1280
|
+
color: #999;
|
1281
|
+
}
|
1282
|
+
|
1283
|
+
.htFiltersConditionsMenu table tbody tr td.htDisabled:hover {
|
1284
|
+
background: #fff;
|
1285
|
+
color: #999;
|
1286
|
+
cursor: default;
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
.htFiltersConditionsMenu table tbody tr td .htItemWrapper {
|
1290
|
+
margin-left: 10px;
|
1291
|
+
margin-right: 10px;
|
1292
|
+
}
|
1293
|
+
|
1294
|
+
.htFiltersConditionsMenu table tbody tr td div span.selected {
|
1295
|
+
margin-top: -2px;
|
1296
|
+
position: absolute;
|
1297
|
+
left: 4px;
|
1298
|
+
}
|
1299
|
+
|
1300
|
+
.htFiltersConditionsMenu .ht_master .wtHolder {
|
1301
|
+
overflow: hidden;
|
1302
|
+
}
|
1303
|
+
|
1304
|
+
.handsontable .htMenuFiltering {
|
1305
|
+
border-bottom: 1px dotted #ccc;
|
1306
|
+
height: 135px;
|
1307
|
+
overflow: hidden;
|
1308
|
+
}
|
1309
|
+
|
1310
|
+
.handsontable .ht_master table td.htCustomMenuRenderer {
|
1311
|
+
background-color: #fff;
|
1312
|
+
cursor: auto;
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
/* Menu label */
|
1316
|
+
.handsontable .htFiltersMenuLabel {
|
1317
|
+
font-size: 0.75em;
|
1318
|
+
}
|
1319
|
+
|
1320
|
+
/* Component action bar */
|
1321
|
+
.handsontable .htFiltersMenuActionBar {
|
1322
|
+
text-align: center;
|
1323
|
+
padding-top: 10px;
|
1324
|
+
padding-bottom: 3px;
|
1325
|
+
}
|
1326
|
+
|
1327
|
+
/* Component filter by conditional */
|
1328
|
+
.handsontable .htFiltersMenuCondition.border {
|
1329
|
+
border-bottom: 1px dotted #ccc !important;
|
1330
|
+
}
|
1331
|
+
|
1332
|
+
.handsontable .htFiltersMenuCondition .htUIInput {
|
1333
|
+
padding: 0 0 5px 0;
|
1334
|
+
}
|
1335
|
+
|
1336
|
+
/* Component filter by value */
|
1337
|
+
.handsontable .htFiltersMenuValue {
|
1338
|
+
border-bottom: 1px dotted #ccc !important;
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch {
|
1342
|
+
padding: 0;
|
1343
|
+
}
|
1344
|
+
|
1345
|
+
.handsontable .htFiltersMenuCondition .htUIInput input,
|
1346
|
+
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input {
|
1347
|
+
font-family: inherit;
|
1348
|
+
font-size: 0.75em;
|
1349
|
+
padding: 4px;
|
1350
|
+
box-sizing: border-box;
|
1351
|
+
width: 100%;
|
1352
|
+
}
|
1353
|
+
|
1354
|
+
.htUIMultipleSelect .ht_master .wtHolder {
|
1355
|
+
overflow-y: scroll;
|
1356
|
+
}
|
1357
|
+
|
1358
|
+
.handsontable .htFiltersActive .changeType {
|
1359
|
+
border: 1px solid #509272;
|
1360
|
+
color: #18804e;
|
1361
|
+
background-color: #d2e0d9;
|
1362
|
+
}
|
1363
|
+
|
1364
|
+
.handsontable .htUISelectAll {
|
1365
|
+
margin-left: 0;
|
1366
|
+
margin-right: 10px;
|
1367
|
+
}
|
1368
|
+
|
1369
|
+
[dir=rtl].handsontable .htUISelectAll {
|
1370
|
+
margin-right: 0;
|
1371
|
+
margin-left: 10px;
|
1372
|
+
}
|
1373
|
+
|
1374
|
+
.handsontable .htUIClearAll, .handsontable .htUISelectAll {
|
1375
|
+
display: inline-block;
|
1376
|
+
}
|
1377
|
+
|
1378
|
+
.handsontable .htUIClearAll a, .handsontable .htUISelectAll a {
|
1379
|
+
font-size: 0.75em;
|
1380
|
+
}
|
1381
|
+
|
1382
|
+
.handsontable .htUISelectionControls {
|
1383
|
+
text-align: right;
|
1384
|
+
}
|
1385
|
+
|
1386
|
+
[dir=rtl].handsontable .htUISelectionControls {
|
1387
|
+
text-align: left;
|
1388
|
+
}
|
1389
|
+
|
1390
|
+
.handsontable .htCheckboxRendererInput {
|
1391
|
+
margin-top: 0;
|
1392
|
+
margin-right: 5px;
|
1393
|
+
margin-bottom: 0;
|
1394
|
+
margin-left: 0;
|
1395
|
+
vertical-align: middle;
|
1396
|
+
height: 1em;
|
1397
|
+
}
|
1398
|
+
|
1399
|
+
[dir=rtl].handsontable .htCheckboxRendererInput {
|
1400
|
+
margin-left: 5px;
|
1401
|
+
margin-right: 0;
|
1402
|
+
}
|
1403
|
+
|
1404
|
+
/* UI elements */
|
1405
|
+
/* Input */
|
1406
|
+
.handsontable .htUIInput {
|
1407
|
+
padding: 3px 0 7px 0;
|
1408
|
+
position: relative;
|
1409
|
+
text-align: center;
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
.handsontable .htUIInput input {
|
1413
|
+
border-radius: 2px;
|
1414
|
+
border: 1px solid #d2d1d1;
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
.handsontable .htUIInput input:focus {
|
1418
|
+
outline: 0;
|
1419
|
+
}
|
1420
|
+
|
1421
|
+
.handsontable .htUIInputIcon {
|
1422
|
+
position: absolute;
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
/* Button */
|
1426
|
+
.handsontable .htUIInput.htUIButton {
|
1427
|
+
cursor: pointer;
|
1428
|
+
display: inline-block;
|
1429
|
+
}
|
1430
|
+
|
1431
|
+
.handsontable .htUIInput.htUIButton input {
|
1432
|
+
background-color: #eee;
|
1433
|
+
color: #000;
|
1434
|
+
cursor: pointer;
|
1435
|
+
font-family: inherit;
|
1436
|
+
font-size: 0.75em;
|
1437
|
+
font-weight: bold;
|
1438
|
+
height: 19px;
|
1439
|
+
min-width: 64px;
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
.handsontable .htUIInput.htUIButton input:hover {
|
1443
|
+
border-color: #b9b9b9;
|
1444
|
+
}
|
1445
|
+
|
1446
|
+
.handsontable .htUIInput.htUIButtonOK {
|
1447
|
+
margin-left: 0;
|
1448
|
+
margin-right: 10px;
|
1449
|
+
}
|
1450
|
+
|
1451
|
+
[dir=rtl].handsontable .htUIInput.htUIButtonOK {
|
1452
|
+
margin-right: 0;
|
1453
|
+
margin-left: 10px;
|
1454
|
+
}
|
1455
|
+
|
1456
|
+
.handsontable .htUIInput.htUIButtonOK input {
|
1457
|
+
background-color: #0f9d58;
|
1458
|
+
border-color: #18804e;
|
1459
|
+
color: #fff;
|
1460
|
+
}
|
1461
|
+
|
1462
|
+
.handsontable .htUIInput.htUIButtonOK input:hover {
|
1463
|
+
border-color: #1a6f46;
|
1464
|
+
}
|
1465
|
+
|
1466
|
+
/* Select */
|
1467
|
+
.handsontable .htUISelect {
|
1468
|
+
cursor: pointer;
|
1469
|
+
margin-bottom: 7px;
|
1470
|
+
position: relative;
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
.handsontable .htUISelectCaption {
|
1474
|
+
background-color: #e8e8e8;
|
1475
|
+
border-radius: 2px;
|
1476
|
+
border: 1px solid #d2d1d1;
|
1477
|
+
font-family: inherit;
|
1478
|
+
font-size: 0.75em;
|
1479
|
+
font-weight: bold;
|
1480
|
+
padding: 3px 20px 3px 10px;
|
1481
|
+
text-overflow: ellipsis;
|
1482
|
+
white-space: nowrap;
|
1483
|
+
overflow: hidden;
|
1484
|
+
}
|
1485
|
+
|
1486
|
+
.handsontable .htUISelectCaption:hover {
|
1487
|
+
background-color: #e8e8e8;
|
1488
|
+
border: 1px solid #b9b9b9;
|
1489
|
+
}
|
1490
|
+
|
1491
|
+
.handsontable .htUISelectDropdown:after {
|
1492
|
+
content: "▲";
|
1493
|
+
font-size: 7px;
|
1494
|
+
position: absolute;
|
1495
|
+
right: 10px;
|
1496
|
+
top: 0;
|
1497
|
+
}
|
1498
|
+
|
1499
|
+
.handsontable .htUISelectDropdown:before {
|
1500
|
+
content: "▼";
|
1501
|
+
font-size: 7px;
|
1502
|
+
position: absolute;
|
1503
|
+
right: 10px;
|
1504
|
+
top: 8px;
|
1505
|
+
}
|
1506
|
+
|
1507
|
+
/* SelectMultiple */
|
1508
|
+
.handsontable .htUIMultipleSelect .handsontable .htCore {
|
1509
|
+
border: none;
|
1510
|
+
}
|
1511
|
+
|
1512
|
+
.handsontable .htUIMultipleSelect .handsontable .htCore td:hover {
|
1513
|
+
background-color: #F5F5F5;
|
1514
|
+
}
|
1515
|
+
|
1516
|
+
.handsontable .htUIMultipleSelectSearch input {
|
1517
|
+
border-radius: 2px;
|
1518
|
+
border: 1px solid #d2d1d1;
|
1519
|
+
padding: 3px;
|
1520
|
+
}
|
1521
|
+
|
1522
|
+
.handsontable .htUIRadio {
|
1523
|
+
display: inline-block;
|
1524
|
+
margin-left: 0;
|
1525
|
+
margin-right: 5px;
|
1526
|
+
height: 100%;
|
1527
|
+
}
|
1528
|
+
|
1529
|
+
[dir=rtl].handsontable .htUIRadio {
|
1530
|
+
margin-right: 0;
|
1531
|
+
margin-left: 5px;
|
1532
|
+
}
|
1533
|
+
|
1534
|
+
.handsontable .htUIRadio:last-child {
|
1535
|
+
margin-right: 0;
|
1536
|
+
}
|
1537
|
+
|
1538
|
+
.handsontable .htUIRadio > input[type=radio] {
|
1539
|
+
margin-left: 0;
|
1540
|
+
margin-right: 0.5ex;
|
1541
|
+
}
|
1542
|
+
|
1543
|
+
[dir=rtl].handsontable .htUIRadio > input[type=radio] {
|
1544
|
+
margin-right: 0;
|
1545
|
+
margin-left: 0.5ex;
|
1546
|
+
}
|
1547
|
+
|
1548
|
+
.handsontable .htUIRadio label {
|
1549
|
+
vertical-align: middle;
|
1550
|
+
}
|
1551
|
+
|
1552
|
+
.handsontable .htFiltersMenuOperators {
|
1553
|
+
padding-bottom: 5px;
|
1554
|
+
}
|
1555
|
+
@charset "UTF-8";
|
1556
|
+
/*
|
1557
|
+
* Handsontable HiddenColumns
|
1558
|
+
*/
|
1559
|
+
.handsontable th.beforeHiddenColumn {
|
1560
|
+
position: relative;
|
1561
|
+
}
|
1562
|
+
|
1563
|
+
.handsontable th.beforeHiddenColumn::after,
|
1564
|
+
.handsontable th.afterHiddenColumn::before {
|
1565
|
+
color: #bbb;
|
1566
|
+
position: absolute;
|
1567
|
+
top: 50%;
|
1568
|
+
font-size: 5pt;
|
1569
|
+
transform: translateY(-50%);
|
1570
|
+
}
|
1571
|
+
|
1572
|
+
.handsontable th.afterHiddenColumn {
|
1573
|
+
position: relative;
|
1574
|
+
}
|
1575
|
+
|
1576
|
+
.handsontable th.beforeHiddenColumn::after {
|
1577
|
+
right: 1px;
|
1578
|
+
content: "◀"; /* left arrow */
|
1579
|
+
}
|
1580
|
+
|
1581
|
+
[dir=rtl].handsontable th.beforeHiddenColumn::after {
|
1582
|
+
right: initial;
|
1583
|
+
left: 1px;
|
1584
|
+
content: "▶"; /* right arrow */
|
1585
|
+
}
|
1586
|
+
|
1587
|
+
.handsontable th.afterHiddenColumn::before {
|
1588
|
+
left: 1px;
|
1589
|
+
content: "▶"; /* right arrow */
|
1590
|
+
}
|
1591
|
+
|
1592
|
+
[dir=rtl].handsontable th.afterHiddenColumn::before {
|
1593
|
+
right: 1px;
|
1594
|
+
left: initial;
|
1595
|
+
content: "◀"; /* left arrow */
|
1596
|
+
}
|
1597
|
+
@charset "UTF-8";
|
1598
|
+
/*!
|
1599
|
+
* Handsontable HiddenRows
|
1600
|
+
*/
|
1601
|
+
.handsontable th.beforeHiddenRow::before,
|
1602
|
+
.handsontable th.afterHiddenRow::after {
|
1603
|
+
color: #bbb;
|
1604
|
+
font-size: 6pt;
|
1605
|
+
line-height: 6pt;
|
1606
|
+
position: absolute;
|
1607
|
+
left: 2px;
|
1608
|
+
}
|
1609
|
+
|
1610
|
+
.handsontable th.beforeHiddenRow,
|
1611
|
+
.handsontable th.afterHiddenRow {
|
1612
|
+
position: relative;
|
1613
|
+
}
|
1614
|
+
|
1615
|
+
.handsontable th.beforeHiddenRow::before {
|
1616
|
+
content: "▲";
|
1617
|
+
bottom: 2px;
|
1618
|
+
}
|
1619
|
+
|
1620
|
+
.handsontable th.afterHiddenRow::after {
|
1621
|
+
content: "▼";
|
1622
|
+
top: 2px;
|
1623
|
+
}
|
1624
|
+
|
1625
|
+
.handsontable.ht__selection--rows tbody th.beforeHiddenRow.ht__highlight:before,
|
1626
|
+
.handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight:after {
|
1627
|
+
color: #eee;
|
1628
|
+
}
|
1629
|
+
|
1630
|
+
.handsontable td.afterHiddenRow.firstVisibleRow,
|
1631
|
+
.handsontable th.afterHiddenRow.firstVisibleRow {
|
1632
|
+
border-top: 1px solid #CCC;
|
1633
|
+
}
|
1634
|
+
.htRowHeaders .ht_master.innerBorderInlineStart ~ .ht_clone_top_inline_start_corner th:nth-child(2),
|
1635
|
+
.htRowHeaders .ht_master.innerBorderInlineStart ~ .ht_clone_inline_start td:first-of-type {
|
1636
|
+
border-left: 0 none;
|
1637
|
+
}
|
1638
|
+
.handsontable .wtHider {
|
1639
|
+
position: relative;
|
1640
|
+
}
|
1641
|
+
|
1642
|
+
.handsontable.ht__manualColumnMove.after-selection--columns thead th.ht__highlight {
|
1643
|
+
cursor: move;
|
1644
|
+
cursor: -moz-grab;
|
1645
|
+
cursor: -webkit-grab;
|
1646
|
+
cursor: grab;
|
1647
|
+
}
|
1648
|
+
|
1649
|
+
.handsontable.ht__manualColumnMove.on-moving--columns,
|
1650
|
+
.handsontable.ht__manualColumnMove.on-moving--columns thead th.ht__highlight {
|
1651
|
+
cursor: move;
|
1652
|
+
cursor: -moz-grabbing;
|
1653
|
+
cursor: -webkit-grabbing;
|
1654
|
+
cursor: grabbing;
|
1655
|
+
}
|
1656
|
+
|
1657
|
+
.handsontable.ht__manualColumnMove.on-moving--columns .manualColumnResizer {
|
1658
|
+
display: none;
|
1659
|
+
}
|
1660
|
+
|
1661
|
+
.handsontable .ht__manualColumnMove--guideline,
|
1662
|
+
.handsontable .ht__manualColumnMove--backlight {
|
1663
|
+
position: absolute;
|
1664
|
+
height: 100%;
|
1665
|
+
display: none;
|
1666
|
+
}
|
1667
|
+
|
1668
|
+
.handsontable .ht__manualColumnMove--guideline {
|
1669
|
+
background: #757575;
|
1670
|
+
width: 2px;
|
1671
|
+
top: 0;
|
1672
|
+
margin-inline-start: -1px;
|
1673
|
+
margin-inline-end: 0;
|
1674
|
+
z-index: 205;
|
1675
|
+
}
|
1676
|
+
|
1677
|
+
.handsontable .ht__manualColumnMove--backlight {
|
1678
|
+
background: #343434;
|
1679
|
+
background: rgba(52, 52, 52, 0.25);
|
1680
|
+
display: none;
|
1681
|
+
z-index: 205;
|
1682
|
+
pointer-events: none;
|
1683
|
+
}
|
1684
|
+
|
1685
|
+
.handsontable.on-moving--columns.show-ui .ht__manualColumnMove--guideline,
|
1686
|
+
.handsontable.on-moving--columns .ht__manualColumnMove--backlight {
|
1687
|
+
display: block;
|
1688
|
+
}
|
1689
|
+
.handsontable .wtHider {
|
1690
|
+
position: relative;
|
1691
|
+
}
|
1692
|
+
|
1693
|
+
.handsontable.ht__manualRowMove.after-selection--rows tbody th.ht__highlight {
|
1694
|
+
cursor: move;
|
1695
|
+
cursor: -moz-grab;
|
1696
|
+
cursor: -webkit-grab;
|
1697
|
+
cursor: grab;
|
1698
|
+
}
|
1699
|
+
|
1700
|
+
.handsontable.ht__manualRowMove.on-moving--rows,
|
1701
|
+
.handsontable.ht__manualRowMove.on-moving--rows tbody th.ht__highlight {
|
1702
|
+
cursor: move;
|
1703
|
+
cursor: -moz-grabbing;
|
1704
|
+
cursor: -webkit-grabbing;
|
1705
|
+
cursor: grabbing;
|
1706
|
+
}
|
1707
|
+
|
1708
|
+
.handsontable.ht__manualRowMove.on-moving--rows .manualRowResizer {
|
1709
|
+
display: none;
|
1710
|
+
}
|
1711
|
+
|
1712
|
+
.handsontable .ht__manualRowMove--guideline,
|
1713
|
+
.handsontable .ht__manualRowMove--backlight {
|
1714
|
+
position: absolute;
|
1715
|
+
width: 100%;
|
1716
|
+
display: none;
|
1717
|
+
}
|
1718
|
+
|
1719
|
+
.handsontable .ht__manualRowMove--guideline {
|
1720
|
+
background: #757575;
|
1721
|
+
height: 2px;
|
1722
|
+
left: 0;
|
1723
|
+
margin-top: -1px;
|
1724
|
+
z-index: 205;
|
1725
|
+
}
|
1726
|
+
|
1727
|
+
.handsontable .ht__manualRowMove--backlight {
|
1728
|
+
background: #343434;
|
1729
|
+
background: rgba(52, 52, 52, 0.25);
|
1730
|
+
display: none;
|
1731
|
+
z-index: 205;
|
1732
|
+
pointer-events: none;
|
1733
|
+
}
|
1734
|
+
|
1735
|
+
.handsontable.on-moving--rows.show-ui .ht__manualRowMove--guideline,
|
1736
|
+
.handsontable.on-moving--rows .ht__manualRowMove--backlight {
|
1737
|
+
display: block;
|
1738
|
+
}
|
1739
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight]:not([class*=fullySelectedMergedCell]):before {
|
1740
|
+
opacity: 0;
|
1741
|
+
}
|
1742
|
+
|
1743
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-multiple]:before {
|
1744
|
+
opacity: 0.1;
|
1745
|
+
}
|
1746
|
+
|
1747
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-0]:before {
|
1748
|
+
opacity: 0.1;
|
1749
|
+
}
|
1750
|
+
|
1751
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-1]:before {
|
1752
|
+
opacity: 0.2;
|
1753
|
+
}
|
1754
|
+
|
1755
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-2]:before {
|
1756
|
+
opacity: 0.27;
|
1757
|
+
}
|
1758
|
+
|
1759
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-3]:before {
|
1760
|
+
opacity: 0.35;
|
1761
|
+
}
|
1762
|
+
|
1763
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-4]:before {
|
1764
|
+
opacity: 0.41;
|
1765
|
+
}
|
1766
|
+
|
1767
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-5]:before {
|
1768
|
+
opacity: 0.47;
|
1769
|
+
}
|
1770
|
+
|
1771
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-6]:before {
|
1772
|
+
opacity: 0.54;
|
1773
|
+
}
|
1774
|
+
|
1775
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-7]:before {
|
1776
|
+
opacity: 0.58;
|
1777
|
+
}
|
1778
|
+
/* Column's number position */
|
1779
|
+
.handsontable span.colHeader.columnSorting::after {
|
1780
|
+
/* Centering start */
|
1781
|
+
top: 50%;
|
1782
|
+
/* Two extra pixels (-2 instead of -4) for purpose of proper positioning of numeric indicators, when `font-size` set to default */
|
1783
|
+
margin-top: -2px;
|
1784
|
+
/* Centering end */
|
1785
|
+
position: absolute;
|
1786
|
+
right: -15px;
|
1787
|
+
left: unset;
|
1788
|
+
/* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */
|
1789
|
+
padding-left: 5px;
|
1790
|
+
padding-right: unset;
|
1791
|
+
font-size: 8px;
|
1792
|
+
height: 8px;
|
1793
|
+
line-height: 1.1;
|
1794
|
+
/* Workaround for IE9 - IE11 */
|
1795
|
+
text-decoration: underline;
|
1796
|
+
}
|
1797
|
+
|
1798
|
+
[dir=rtl].handsontable span.colHeader.columnSorting::after {
|
1799
|
+
left: -15px;
|
1800
|
+
right: unset;
|
1801
|
+
/* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */
|
1802
|
+
padding-right: 5px;
|
1803
|
+
padding-left: unset;
|
1804
|
+
}
|
1805
|
+
|
1806
|
+
/* Workaround for IE9 - IE11, https://stackoverflow.com/a/21902566, https://stackoverflow.com/a/32120247 */
|
1807
|
+
.handsontable span.colHeader.columnSorting::after {
|
1808
|
+
text-decoration: none;
|
1809
|
+
}
|
1810
|
+
|
1811
|
+
/* We support up to 7 numeric indicators, describing order of column in sorted columns queue */
|
1812
|
+
.handsontable span.colHeader.columnSorting[class^=sort-]::after,
|
1813
|
+
.handsontable span.colHeader.columnSorting[class*=" sort-"]::after {
|
1814
|
+
content: "+";
|
1815
|
+
}
|
1816
|
+
|
1817
|
+
.handsontable span.colHeader.columnSorting.sort-1::after {
|
1818
|
+
content: "1";
|
1819
|
+
}
|
1820
|
+
|
1821
|
+
.handsontable span.colHeader.columnSorting.sort-2::after {
|
1822
|
+
content: "2";
|
1823
|
+
}
|
1824
|
+
|
1825
|
+
.handsontable span.colHeader.columnSorting.sort-3::after {
|
1826
|
+
content: "3";
|
1827
|
+
}
|
1828
|
+
|
1829
|
+
.handsontable span.colHeader.columnSorting.sort-4::after {
|
1830
|
+
content: "4";
|
1831
|
+
}
|
1832
|
+
|
1833
|
+
.handsontable span.colHeader.columnSorting.sort-5::after {
|
1834
|
+
content: "5";
|
1835
|
+
}
|
1836
|
+
|
1837
|
+
.handsontable span.colHeader.columnSorting.sort-6::after {
|
1838
|
+
content: "6";
|
1839
|
+
}
|
1840
|
+
|
1841
|
+
.handsontable span.colHeader.columnSorting.sort-7::after {
|
1842
|
+
content: "7";
|
1843
|
+
}
|
1844
|
+
|
1845
|
+
/* Drop-down menu widens header by 5 pixels, sort sequence numbers won't overlap the icon; mainly for the IE9+ */
|
1846
|
+
.htGhostTable th div button.changeType + span.colHeader.columnSorting:not(.indicatorDisabled) {
|
1847
|
+
padding-right: 5px;
|
1848
|
+
}
|
1849
|
+
.handsontable thead th.hiddenHeader:not(:first-of-type) {
|
1850
|
+
display: none;
|
1851
|
+
}
|
1852
|
+
@charset "UTF-8";
|
1853
|
+
.handsontable th.ht_nestingLevels {
|
1854
|
+
text-align: left;
|
1855
|
+
padding-left: 7px;
|
1856
|
+
}
|
1857
|
+
|
1858
|
+
[dir=rtl].handsontable th.ht_nestingLevels {
|
1859
|
+
text-align: right;
|
1860
|
+
padding-right: 7px;
|
1861
|
+
}
|
1862
|
+
|
1863
|
+
.handsontable th div.ht_nestingLevels {
|
1864
|
+
display: inline-block;
|
1865
|
+
position: absolute;
|
1866
|
+
left: 11px;
|
1867
|
+
right: unset;
|
1868
|
+
}
|
1869
|
+
|
1870
|
+
[dir=rtl].handsontable th div.ht_nestingLevels {
|
1871
|
+
right: 11px;
|
1872
|
+
left: unset;
|
1873
|
+
}
|
1874
|
+
|
1875
|
+
.handsontable.innerBorderInlineStart th div.ht_nestingLevels,
|
1876
|
+
.handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingLevels {
|
1877
|
+
right: 10px;
|
1878
|
+
left: unset;
|
1879
|
+
}
|
1880
|
+
|
1881
|
+
[dir=rtl].handsontable.innerBorderInlineStart th div.ht_nestingLevels, [dir=rtl].handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingLevels {
|
1882
|
+
left: 10px;
|
1883
|
+
right: unset;
|
1884
|
+
}
|
1885
|
+
|
1886
|
+
.handsontable th span.ht_nestingLevel {
|
1887
|
+
display: inline-block;
|
1888
|
+
}
|
1889
|
+
|
1890
|
+
.handsontable th span.ht_nestingLevel_empty {
|
1891
|
+
display: inline-block;
|
1892
|
+
width: 10px;
|
1893
|
+
height: 1px;
|
1894
|
+
float: left;
|
1895
|
+
}
|
1896
|
+
|
1897
|
+
[dir=rtl].handsontable th span.ht_nestingLevel_empty {
|
1898
|
+
float: right;
|
1899
|
+
}
|
1900
|
+
|
1901
|
+
.handsontable th span.ht_nestingLevel::after {
|
1902
|
+
content: "┐";
|
1903
|
+
font-size: 9px;
|
1904
|
+
display: inline-block;
|
1905
|
+
position: relative;
|
1906
|
+
bottom: 3px;
|
1907
|
+
}
|
1908
|
+
|
1909
|
+
.handsontable th div.ht_nestingButton {
|
1910
|
+
display: inline-block;
|
1911
|
+
position: absolute;
|
1912
|
+
right: -2px;
|
1913
|
+
left: unset;
|
1914
|
+
cursor: pointer;
|
1915
|
+
}
|
1916
|
+
|
1917
|
+
[dir=rtl].handsontable th div.ht_nestingButton {
|
1918
|
+
left: -2px;
|
1919
|
+
right: unset;
|
1920
|
+
}
|
1921
|
+
|
1922
|
+
.handsontable th div.ht_nestingButton.ht_nestingExpand::after {
|
1923
|
+
content: "+";
|
1924
|
+
}
|
1925
|
+
|
1926
|
+
.handsontable th div.ht_nestingButton.ht_nestingCollapse::after {
|
1927
|
+
content: "-";
|
1928
|
+
}
|
1929
|
+
|
1930
|
+
.handsontable.innerBorderInlineStart th div.ht_nestingButton,
|
1931
|
+
.handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingButton {
|
1932
|
+
right: 0;
|
1933
|
+
left: unset;
|
1934
|
+
}
|
1935
|
+
|
1936
|
+
[dir=rtl].handsontable.innerBorderInlineStart th div.ht_nestingButton, [dir=rtl].handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingButton {
|
1937
|
+
left: 0;
|
1938
|
+
right: unset;
|
1939
|
+
}
|
1940
|
+
|
1941
|
+
/*# sourceMappingURL=handsontable.css.map*/
|