handsontable 11.1.0 → 12.1.0

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