handsontable 0.0.0-next-fc6b71a-20231129 → 0.0.0-next-f76fee2-20231130

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of handsontable might be problematic. Click here for more details.

Files changed (360) hide show
  1. package/3rdparty/walkontable/src/calculator/constants.js +3 -6
  2. package/3rdparty/walkontable/src/calculator/viewportColumns.js +1 -2
  3. package/3rdparty/walkontable/src/calculator/viewportRows.js +1 -2
  4. package/3rdparty/walkontable/src/cell/coords.js +1 -2
  5. package/3rdparty/walkontable/src/cell/range.js +1 -2
  6. package/3rdparty/walkontable/src/event.js +1 -2
  7. package/3rdparty/walkontable/src/filter/column.js +1 -2
  8. package/3rdparty/walkontable/src/filter/row.js +1 -2
  9. package/3rdparty/walkontable/src/index.js +2 -2
  10. package/3rdparty/walkontable/src/overlay/constants.js +7 -14
  11. package/3rdparty/walkontable/src/overlays.js +1 -2
  12. package/3rdparty/walkontable/src/scroll.js +1 -2
  13. package/3rdparty/walkontable/src/selection/border/border.js +1 -2
  14. package/3rdparty/walkontable/src/selection/border/constants.js +2 -3
  15. package/3rdparty/walkontable/src/selection/constants.js +8 -16
  16. package/3rdparty/walkontable/src/selection/selection.js +1 -2
  17. package/3rdparty/walkontable/src/table/bottom.js +1 -2
  18. package/3rdparty/walkontable/src/table/bottomInlineStartCorner.js +1 -2
  19. package/3rdparty/walkontable/src/table/inlineStart.js +1 -2
  20. package/3rdparty/walkontable/src/table/master.js +1 -2
  21. package/3rdparty/walkontable/src/table/mixin/calculatedColumns.js +1 -2
  22. package/3rdparty/walkontable/src/table/mixin/calculatedRows.js +1 -2
  23. package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.js +1 -2
  24. package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.js +1 -2
  25. package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.js +1 -2
  26. package/3rdparty/walkontable/src/table/top.js +1 -2
  27. package/3rdparty/walkontable/src/table/topInlineStartCorner.js +1 -2
  28. package/3rdparty/walkontable/src/table.js +1 -2
  29. package/3rdparty/walkontable/src/utils/orderView/constants.js +3 -6
  30. package/3rdparty/walkontable/src/viewport.js +1 -2
  31. package/CHANGELOG.md +84 -15
  32. package/base.js +3 -4
  33. package/base.mjs +2 -2
  34. package/cellTypes/autocompleteType/autocompleteType.js +3 -5
  35. package/cellTypes/checkboxType/checkboxType.js +3 -5
  36. package/cellTypes/dateType/dateType.js +3 -5
  37. package/cellTypes/dropdownType/dropdownType.js +3 -5
  38. package/cellTypes/handsontableType/handsontableType.js +3 -5
  39. package/cellTypes/numericType/numericType.js +3 -5
  40. package/cellTypes/passwordType/passwordType.js +3 -5
  41. package/cellTypes/selectType/selectType.js +3 -5
  42. package/cellTypes/textType/textType.js +3 -5
  43. package/cellTypes/timeType/timeType.js +3 -5
  44. package/core.js +19 -9
  45. package/core.mjs +19 -9
  46. package/dataMap/dataMap.js +1 -2
  47. package/dataMap/dataSource.js +1 -2
  48. package/dataMap/metaManager/metaSchema.js +11 -11
  49. package/dataMap/metaManager/metaSchema.mjs +11 -11
  50. package/dist/handsontable.css +2 -2
  51. package/dist/handsontable.full.css +2 -2
  52. package/dist/handsontable.full.js +5147 -5188
  53. package/dist/handsontable.full.min.css +2 -2
  54. package/dist/handsontable.full.min.js +160 -150
  55. package/dist/handsontable.js +627 -1038
  56. package/dist/handsontable.min.css +2 -2
  57. package/dist/handsontable.min.js +31 -31
  58. package/dist/languages/all.js +19 -38
  59. package/dist/languages/all.min.js +1 -1
  60. package/dist/languages/ar-AR.js +1 -2
  61. package/dist/languages/cs-CZ.js +1 -2
  62. package/dist/languages/de-CH.js +1 -2
  63. package/dist/languages/de-DE.js +1 -2
  64. package/dist/languages/en-US.js +1 -2
  65. package/dist/languages/es-MX.js +1 -2
  66. package/dist/languages/fr-FR.js +1 -2
  67. package/dist/languages/it-IT.js +1 -2
  68. package/dist/languages/ja-JP.js +1 -2
  69. package/dist/languages/ko-KR.js +1 -2
  70. package/dist/languages/lv-LV.js +1 -2
  71. package/dist/languages/nb-NO.js +1 -2
  72. package/dist/languages/nl-NL.js +1 -2
  73. package/dist/languages/pl-PL.js +1 -2
  74. package/dist/languages/pt-BR.js +1 -2
  75. package/dist/languages/ru-RU.js +1 -2
  76. package/dist/languages/sr-SP.js +1 -2
  77. package/dist/languages/zh-CN.js +1 -2
  78. package/dist/languages/zh-TW.js +1 -2
  79. package/editorManager.js +2 -4
  80. package/editors/autocompleteEditor/autocompleteEditor.js +1 -2
  81. package/editors/baseEditor/baseEditor.js +3 -6
  82. package/editors/checkboxEditor/checkboxEditor.js +1 -2
  83. package/editors/dateEditor/dateEditor.js +1 -2
  84. package/editors/dropdownEditor/dropdownEditor.js +1 -2
  85. package/editors/handsontableEditor/handsontableEditor.js +1 -2
  86. package/editors/numericEditor/numericEditor.js +1 -2
  87. package/editors/passwordEditor/passwordEditor.js +1 -2
  88. package/editors/selectEditor/selectEditor.js +1 -2
  89. package/editors/textEditor/textEditor.js +1 -2
  90. package/editors/timeEditor/timeEditor.js +1 -2
  91. package/eventManager.js +1 -2
  92. package/helpers/dom/element.js +1 -2
  93. package/helpers/mixed.js +2 -2
  94. package/helpers/mixed.mjs +2 -2
  95. package/helpers/unicode.js +1 -2
  96. package/i18n/constants.js +84 -166
  97. package/i18n/languages/ar-AR.js +3 -4
  98. package/i18n/languages/cs-CZ.js +3 -4
  99. package/i18n/languages/de-CH.js +3 -4
  100. package/i18n/languages/de-DE.js +3 -4
  101. package/i18n/languages/en-US.js +3 -4
  102. package/i18n/languages/es-MX.js +3 -4
  103. package/i18n/languages/fr-FR.js +3 -4
  104. package/i18n/languages/it-IT.js +3 -4
  105. package/i18n/languages/ja-JP.js +3 -4
  106. package/i18n/languages/ko-KR.js +3 -4
  107. package/i18n/languages/lv-LV.js +3 -4
  108. package/i18n/languages/nb-NO.js +3 -4
  109. package/i18n/languages/nl-NL.js +3 -4
  110. package/i18n/languages/pl-PL.js +3 -4
  111. package/i18n/languages/pt-BR.js +3 -4
  112. package/i18n/languages/ru-RU.js +3 -4
  113. package/i18n/languages/sr-SP.js +3 -4
  114. package/i18n/languages/zh-CN.js +3 -4
  115. package/i18n/languages/zh-TW.js +3 -4
  116. package/i18n/registry.js +4 -6
  117. package/index.js +3 -4
  118. package/languages/all.js +19 -38
  119. package/languages/ar-AR.js +1 -2
  120. package/languages/cs-CZ.js +1 -2
  121. package/languages/de-CH.js +1 -2
  122. package/languages/de-DE.js +1 -2
  123. package/languages/en-US.js +1 -2
  124. package/languages/es-MX.js +1 -2
  125. package/languages/fr-FR.js +1 -2
  126. package/languages/index.js +19 -38
  127. package/languages/it-IT.js +1 -2
  128. package/languages/ja-JP.js +1 -2
  129. package/languages/ko-KR.js +1 -2
  130. package/languages/lv-LV.js +1 -2
  131. package/languages/nb-NO.js +1 -2
  132. package/languages/nl-NL.js +1 -2
  133. package/languages/pl-PL.js +1 -2
  134. package/languages/pt-BR.js +1 -2
  135. package/languages/ru-RU.js +1 -2
  136. package/languages/sr-SP.js +1 -2
  137. package/languages/zh-CN.js +1 -2
  138. package/languages/zh-TW.js +1 -2
  139. package/mixins/hooksRefRegisterer.js +1 -2
  140. package/mixins/localHooks.js +1 -2
  141. package/package.json +1 -1
  142. package/pluginHooks.js +6 -5
  143. package/pluginHooks.mjs +5 -3
  144. package/plugins/autoColumnSize/autoColumnSize.js +2 -4
  145. package/plugins/autoRowSize/autoRowSize.js +2 -4
  146. package/plugins/autofill/autofill.js +2 -4
  147. package/plugins/autofill/utils.js +1 -2
  148. package/plugins/base/base.js +1 -2
  149. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +2 -4
  150. package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +1 -2
  151. package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +1 -2
  152. package/plugins/collapsibleColumns/collapsibleColumns.js +2 -4
  153. package/plugins/columnSorting/columnSorting.js +4 -8
  154. package/plugins/columnSorting/sortFunction/checkbox.js +1 -2
  155. package/plugins/columnSorting/sortFunction/date.js +1 -2
  156. package/plugins/columnSorting/sortFunction/default.js +1 -2
  157. package/plugins/columnSorting/sortFunction/numeric.js +1 -2
  158. package/plugins/columnSorting/sortService/engine.js +3 -6
  159. package/plugins/columnSorting/utils.js +3 -6
  160. package/plugins/columnSummary/columnSummary.js +2 -4
  161. package/plugins/columnSummary/endpoints.js +1 -2
  162. package/plugins/comments/commentEditor.js +1 -2
  163. package/plugins/comments/comments.js +6 -12
  164. package/plugins/comments/contextMenuItem/addEditComment.js +2 -2
  165. package/plugins/comments/contextMenuItem/readOnlyComment.js +2 -2
  166. package/plugins/comments/contextMenuItem/removeComment.js +2 -2
  167. package/plugins/comments/displaySwitch.js +1 -2
  168. package/plugins/contextMenu/contextMenu.js +2 -4
  169. package/plugins/contextMenu/predefinedItems/alignment.js +3 -4
  170. package/plugins/contextMenu/predefinedItems/clearColumn.js +3 -4
  171. package/plugins/contextMenu/predefinedItems/columnLeft.js +3 -4
  172. package/plugins/contextMenu/predefinedItems/columnRight.js +3 -4
  173. package/plugins/contextMenu/predefinedItems/index.js +3 -4
  174. package/plugins/contextMenu/predefinedItems/noItems.js +1 -2
  175. package/plugins/contextMenu/predefinedItems/readOnly.js +3 -4
  176. package/plugins/contextMenu/predefinedItems/redo.js +3 -4
  177. package/plugins/contextMenu/predefinedItems/removeColumn.js +3 -4
  178. package/plugins/contextMenu/predefinedItems/removeRow.js +3 -4
  179. package/plugins/contextMenu/predefinedItems/rowAbove.js +3 -4
  180. package/plugins/contextMenu/predefinedItems/rowBelow.js +3 -4
  181. package/plugins/contextMenu/predefinedItems/separator.js +1 -2
  182. package/plugins/contextMenu/predefinedItems/undo.js +3 -4
  183. package/plugins/copyPaste/contextMenuItem/cut.js +2 -2
  184. package/plugins/copyPaste/copyPaste.js +2 -4
  185. package/plugins/customBorders/contextMenuItem/bottom.js +2 -2
  186. package/plugins/customBorders/contextMenuItem/left.js +2 -2
  187. package/plugins/customBorders/contextMenuItem/noBorders.js +2 -2
  188. package/plugins/customBorders/contextMenuItem/right.js +2 -2
  189. package/plugins/customBorders/contextMenuItem/top.js +2 -2
  190. package/plugins/customBorders/customBorders.js +4 -6
  191. package/plugins/dragToScroll/dragToScroll.js +2 -4
  192. package/plugins/dropdownMenu/dropdownMenu.js +2 -4
  193. package/plugins/exportFile/dataProvider.js +1 -2
  194. package/plugins/exportFile/exportFile.js +4 -6
  195. package/plugins/exportFile/typeFactory.js +5 -8
  196. package/plugins/exportFile/types/_base.js +1 -2
  197. package/plugins/exportFile/types/csv.js +1 -2
  198. package/plugins/filters/component/actionBar.js +2 -2
  199. package/plugins/filters/component/condition.js +2 -2
  200. package/plugins/filters/component/value.js +2 -2
  201. package/plugins/filters/condition/beginsWith.js +3 -4
  202. package/plugins/filters/condition/between.js +3 -4
  203. package/plugins/filters/condition/byValue.js +1 -2
  204. package/plugins/filters/condition/contains.js +3 -4
  205. package/plugins/filters/condition/date/after.js +3 -4
  206. package/plugins/filters/condition/date/before.js +3 -4
  207. package/plugins/filters/condition/date/today.js +3 -4
  208. package/plugins/filters/condition/date/tomorrow.js +3 -4
  209. package/plugins/filters/condition/date/yesterday.js +3 -4
  210. package/plugins/filters/condition/empty.js +3 -4
  211. package/plugins/filters/condition/endsWith.js +3 -4
  212. package/plugins/filters/condition/equal.js +3 -4
  213. package/plugins/filters/condition/false.js +1 -2
  214. package/plugins/filters/condition/greaterThan.js +3 -4
  215. package/plugins/filters/condition/greaterThanOrEqual.js +3 -4
  216. package/plugins/filters/condition/lessThan.js +3 -4
  217. package/plugins/filters/condition/lessThanOrEqual.js +3 -4
  218. package/plugins/filters/condition/none.js +3 -4
  219. package/plugins/filters/condition/notBetween.js +3 -4
  220. package/plugins/filters/condition/notContains.js +3 -4
  221. package/plugins/filters/condition/notEmpty.js +3 -4
  222. package/plugins/filters/condition/notEqual.js +3 -4
  223. package/plugins/filters/condition/true.js +1 -2
  224. package/plugins/filters/conditionCollection.js +1 -2
  225. package/plugins/filters/conditionRegisterer.js +1 -2
  226. package/plugins/filters/conditionUpdateObserver.js +1 -2
  227. package/plugins/filters/constants.js +4 -8
  228. package/plugins/filters/dataFilter.js +1 -2
  229. package/plugins/filters/filters.js +4 -6
  230. package/plugins/filters/logicalOperationRegisterer.js +1 -2
  231. package/plugins/filters/logicalOperations/conjunction.js +4 -6
  232. package/plugins/filters/logicalOperations/disjunction.js +4 -6
  233. package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +4 -6
  234. package/plugins/filters/ui/_base.js +2 -2
  235. package/plugins/filters/ui/multipleSelect.js +3 -4
  236. package/plugins/filters/ui/select.js +2 -2
  237. package/plugins/formulas/engine/settings.js +2 -4
  238. package/plugins/formulas/formulas.js +3 -6
  239. package/plugins/formulas/indexSyncer/axisSyncer.js +1 -2
  240. package/plugins/formulas/indexSyncer/index.js +1 -2
  241. package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +2 -2
  242. package/plugins/hiddenColumns/contextMenuItem/showColumn.js +2 -2
  243. package/plugins/hiddenColumns/hiddenColumns.js +2 -4
  244. package/plugins/hiddenRows/contextMenuItem/hideRow.js +2 -2
  245. package/plugins/hiddenRows/contextMenuItem/showRow.js +2 -2
  246. package/plugins/hiddenRows/hiddenRows.js +2 -4
  247. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +2 -2
  248. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +2 -2
  249. package/plugins/manualColumnFreeze/manualColumnFreeze.js +2 -4
  250. package/plugins/manualColumnMove/manualColumnMove.js +2 -4
  251. package/plugins/manualColumnMove/ui/_base.js +1 -2
  252. package/plugins/manualColumnMove/ui/backlight.js +1 -2
  253. package/plugins/manualColumnMove/ui/guideline.js +1 -2
  254. package/plugins/manualColumnResize/manualColumnResize.js +2 -4
  255. package/plugins/manualRowMove/manualRowMove.js +2 -4
  256. package/plugins/manualRowMove/ui/_base.js +1 -2
  257. package/plugins/manualRowMove/ui/backlight.js +1 -2
  258. package/plugins/manualRowMove/ui/guideline.js +1 -2
  259. package/plugins/manualRowResize/manualRowResize.js +2 -4
  260. package/plugins/mergeCells/calculations/autofill.js +1 -2
  261. package/plugins/mergeCells/calculations/selection.js +1 -2
  262. package/plugins/mergeCells/cellCoords.js +1 -2
  263. package/plugins/mergeCells/cellsCollection.js +1 -2
  264. package/plugins/mergeCells/contextMenuItem/toggleMerge.js +2 -2
  265. package/plugins/mergeCells/mergeCells.js +3 -5
  266. package/plugins/mergeCells/mergeCells.mjs +1 -1
  267. package/plugins/multiColumnSorting/multiColumnSorting.js +2 -4
  268. package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +2 -4
  269. package/plugins/nestedHeaders/nestedHeaders.js +2 -4
  270. package/plugins/nestedHeaders/stateManager/sourceSettings.js +1 -2
  271. package/plugins/nestedHeaders/utils/ghostTable.js +1 -2
  272. package/plugins/nestedRows/data/dataManager.js +1 -2
  273. package/plugins/nestedRows/nestedRows.js +2 -4
  274. package/plugins/nestedRows/ui/_base.js +1 -2
  275. package/plugins/nestedRows/ui/collapsing.js +1 -2
  276. package/plugins/nestedRows/ui/contextMenu.js +3 -4
  277. package/plugins/nestedRows/ui/headers.js +1 -2
  278. package/plugins/persistentState/persistentState.js +2 -4
  279. package/plugins/persistentState/storage.js +1 -2
  280. package/plugins/search/search.js +2 -4
  281. package/plugins/touchScroll/touchScroll.js +2 -4
  282. package/plugins/trimRows/trimRows.js +2 -4
  283. package/plugins/undoRedo/index.js +2 -2
  284. package/plugins/undoRedo/undoRedo.js +2 -4
  285. package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -2
  286. package/renderers/baseRenderer/baseRenderer.js +1 -2
  287. package/renderers/checkboxRenderer/checkboxRenderer.js +1 -2
  288. package/renderers/dateRenderer/dateRenderer.js +1 -2
  289. package/renderers/handsontableRenderer/handsontableRenderer.js +1 -2
  290. package/renderers/htmlRenderer/htmlRenderer.js +1 -2
  291. package/renderers/numericRenderer/numericRenderer.js +1 -2
  292. package/renderers/passwordRenderer/passwordRenderer.js +1 -2
  293. package/renderers/selectRenderer/selectRenderer.js +1 -2
  294. package/renderers/textRenderer/textRenderer.js +1 -2
  295. package/renderers/timeRenderer/timeRenderer.js +1 -2
  296. package/selection/highlight/highlight.js +1 -2
  297. package/selection/highlight/visualSelection.js +1 -2
  298. package/selection/range.js +1 -2
  299. package/selection/selection.js +3 -4
  300. package/selection/transformation.js +1 -2
  301. package/selection/utils.js +5 -10
  302. package/shortcutContexts/commands/editor/closeAndSave.js +2 -3
  303. package/shortcutContexts/commands/editor/closeWithoutSaving.js +2 -3
  304. package/shortcutContexts/commands/editor/fastOpen.js +2 -3
  305. package/shortcutContexts/commands/editor/open.js +2 -3
  306. package/shortcutContexts/commands/emptySelectedCells.js +2 -3
  307. package/shortcutContexts/commands/extendCellsSelection/down.js +2 -3
  308. package/shortcutContexts/commands/extendCellsSelection/downByViewportHeight.js +2 -3
  309. package/shortcutContexts/commands/extendCellsSelection/left.js +2 -3
  310. package/shortcutContexts/commands/extendCellsSelection/right.js +2 -3
  311. package/shortcutContexts/commands/extendCellsSelection/toColumns.js +2 -3
  312. package/shortcutContexts/commands/extendCellsSelection/toMostBottom.js +2 -3
  313. package/shortcutContexts/commands/extendCellsSelection/toMostInlineEnd.js +2 -3
  314. package/shortcutContexts/commands/extendCellsSelection/toMostInlineStart.js +2 -3
  315. package/shortcutContexts/commands/extendCellsSelection/toMostLeft.js +2 -3
  316. package/shortcutContexts/commands/extendCellsSelection/toMostRight.js +2 -3
  317. package/shortcutContexts/commands/extendCellsSelection/toMostTop.js +2 -3
  318. package/shortcutContexts/commands/extendCellsSelection/toRows.js +2 -3
  319. package/shortcutContexts/commands/extendCellsSelection/up.js +2 -3
  320. package/shortcutContexts/commands/extendCellsSelection/upByViewportHeight.js +2 -3
  321. package/shortcutContexts/commands/moveCellSelection/down.js +2 -3
  322. package/shortcutContexts/commands/moveCellSelection/downByViewportHeight.js +2 -3
  323. package/shortcutContexts/commands/moveCellSelection/inlineEnd.js +2 -3
  324. package/shortcutContexts/commands/moveCellSelection/inlineStart.js +2 -3
  325. package/shortcutContexts/commands/moveCellSelection/left.js +2 -3
  326. package/shortcutContexts/commands/moveCellSelection/right.js +2 -3
  327. package/shortcutContexts/commands/moveCellSelection/toMostBottom.js +2 -3
  328. package/shortcutContexts/commands/moveCellSelection/toMostBottomInlineEnd.js +2 -3
  329. package/shortcutContexts/commands/moveCellSelection/toMostInlineEnd.js +2 -3
  330. package/shortcutContexts/commands/moveCellSelection/toMostInlineStart.js +2 -3
  331. package/shortcutContexts/commands/moveCellSelection/toMostLeft.js +2 -3
  332. package/shortcutContexts/commands/moveCellSelection/toMostRight.js +2 -3
  333. package/shortcutContexts/commands/moveCellSelection/toMostTop.js +2 -3
  334. package/shortcutContexts/commands/moveCellSelection/toMostTopInlineStart.js +2 -3
  335. package/shortcutContexts/commands/moveCellSelection/up.js +2 -3
  336. package/shortcutContexts/commands/moveCellSelection/upByViewportHeight.js +2 -3
  337. package/shortcutContexts/commands/populateSelectedCellsData.js +2 -3
  338. package/shortcutContexts/commands/scrollToFocusedCell.js +2 -3
  339. package/shortcutContexts/commands/selectAllCells.js +2 -3
  340. package/shortcutContexts/commands/selectAllCellsAndHeaders.js +2 -3
  341. package/shortcutContexts/constants.js +2 -4
  342. package/shortcuts/context.js +1 -1
  343. package/shortcuts/context.mjs +1 -1
  344. package/shortcuts/manager.js +2 -2
  345. package/shortcuts/manager.mjs +2 -2
  346. package/tableView.js +1 -2
  347. package/utils/dataStructures/linkedList.js +1 -2
  348. package/utils/dataStructures/priorityMap.js +2 -4
  349. package/utils/dataStructures/queue.js +1 -2
  350. package/utils/dataStructures/stack.js +1 -2
  351. package/utils/dataStructures/tree.js +3 -6
  352. package/utils/ghostTable.js +1 -2
  353. package/utils/interval.js +1 -2
  354. package/utils/rootInstance.js +2 -4
  355. package/utils/samplesGenerator.js +1 -2
  356. package/utils/staticRegister.js +1 -2
  357. package/validators/autocompleteValidator/autocompleteValidator.js +1 -2
  358. package/validators/dateValidator/dateValidator.js +1 -2
  359. package/validators/numericValidator/numericValidator.js +1 -2
  360. package/validators/timeValidator/timeValidator.js +1 -2
@@ -25,8 +25,8 @@
25
25
  * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
26
26
  * USE OR INABILITY TO USE THIS SOFTWARE.
27
27
  *
28
- * Version: 0.0.0-next-fc6b71a-20231129
29
- * Release date: 31/08/2023 (built at 29/11/2023 14:09:11)
28
+ * Version: 0.0.0-next-f76fee2-20231130
29
+ * Release date: 30/11/2023 (built at 30/11/2023 11:41:19)
30
30
  */.handsontable .table td,.handsontable .table th{border-top:none}.handsontable tr{background:#fff}.handsontable td{background-color:inherit}.handsontable .table caption+thead tr:first-child td,.handsontable .table caption+thead tr:first-child th,.handsontable .table colgroup+thead tr:first-child td,.handsontable .table colgroup+thead tr:first-child th,.handsontable .table thead:first-child tr:first-child td,.handsontable .table thead:first-child tr:first-child th{border-top:1px solid #ccc}.handsontable .table-bordered{border:0;border-collapse:separate}.handsontable .table-bordered td,.handsontable .table-bordered th{border-left:none}.handsontable .table-bordered td:first-child,.handsontable .table-bordered th:first-child{border-left:1px solid #ccc}.handsontable .table>tbody>tr>td,.handsontable .table>tbody>tr>th,.handsontable .table>tfoot>tr>td,.handsontable .table>tfoot>tr>th,.handsontable .table>thead>tr>td,.handsontable .table>thead>tr>th{line-height:21px;padding:0}.col-lg-1.handsontable,.col-lg-10.handsontable,.col-lg-11.handsontable,.col-lg-12.handsontable,.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,.col-md-1.handsontable,.col-md-10.handsontable,.col-md-11.handsontable,.col-md-12.handsontable,.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,.col-sm-10.handsontable,.col-sm-11.handsontable,.col-sm-12.handsontable,.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,.col-xs-10.handsontable,.col-xs-11.handsontable,.col-xs-12.handsontable,.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{padding-left:0;padding-right:0}.handsontable .table-striped>tbody>tr:nth-of-type(2n){background-color:#fff}.handsontable{position:relative}.handsontable .hide{display:none}.handsontable .relative{position:relative}.handsontable .wtHider{width:0}.handsontable .wtSpreader{height:auto;position:relative;width:0}.handsontable div,.handsontable input,.handsontable table,.handsontable tbody,.handsontable td,.handsontable textarea,.handsontable th,.handsontable thead{box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box}.handsontable input,.handsontable textarea{min-height:auto}.handsontable table.htCore{border-collapse:separate;border-spacing:0;border-width:0;cursor:default;margin:0;max-height:none;max-width:none;outline-width:0;table-layout:fixed;width:0}.handsontable col,.handsontable col.rowHeader{width:50px}.handsontable td,.handsontable th{background-color:#fff;border-bottom:1px solid #ccc;border-left-width:0;border-right:1px solid #ccc;border-top-width:0;empty-cells:show;height:22px;line-height:21px;outline:none;outline-width:0;overflow:hidden;padding:0 4px;vertical-align:top;white-space:pre-wrap}[dir=rtl].handsontable td,[dir=rtl].handsontable th{border-left:1px solid #ccc;border-right-width:0}.handsontable th:last-child{border-bottom:1px solid #ccc;border-left:none;border-right:1px solid #ccc}[dir=rtl].handsontable th:last-child{border-left:1px solid #ccc;border-right:none}.handsontable td:first-of-type,.handsontable th:first-child,.handsontable th:nth-child(2){border-left:1px solid #ccc}[dir=rtl].handsontable td:first-of-type,[dir=rtl].handsontable th:first-child,[dir=rtl].handsontable th:nth-child(2){border-right:1px solid #ccc}.handsontable .ht_clone_top th:nth-child(2){border-left-width:0;border-right:1px solid #ccc}[dir=rtl].handsontable .ht_clone_top th:nth-child(2){border-left:1px solid #ccc;border-right-width:0}.handsontable.htRowHeaders thead tr th:nth-child(2){border-left:1px solid #ccc}[dir=rtl].handsontable.htRowHeaders thead tr th:nth-child(2){border-right:1px solid #ccc}.handsontable tr:first-child td,.handsontable tr:first-child th{border-top:1px solid #ccc}.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable tbody tr th,.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top) thead tr th:first-child{border-left:1px solid #ccc;border-right-width:0}[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{border-left-width:0;border-right:1px solid #ccc}.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr.lastChild th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr:last-child th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom)~.handsontable thead tr.lastChild th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom)~.handsontable thead tr:last-child th{border-bottom-width:0}.handsontable th{background-color:#f0f0f0;color:#222;font-weight:400;text-align:center;white-space:nowrap}.handsontable thead th{padding:0}.handsontable th.active{background-color:#ccc}.handsontable thead th .relative{padding:2px 4px}.handsontable span.colHeader{display:inline-block;line-height:1.1}.handsontable .wtBorder{font-size:0;position:absolute}.handsontable .wtBorder.hidden{display:none!important}.handsontable .wtBorder.current{z-index:10}.handsontable .wtBorder.area{z-index:8}.handsontable .wtBorder.fill{z-index:6}.handsontable .wtBorder.corner{cursor:crosshair;font-size:0}.ht_clone_master{z-index:100}.ht_clone_inline_start{z-index:120}.ht_clone_bottom{z-index:130}.ht_clone_bottom_inline_start_corner{z-index:150}.ht_clone_top{z-index:160}.ht_clone_top_inline_start_corner{z-index:180}.handsontable col.hidden{width:0!important}.handsontable tr.hidden,.handsontable tr.hidden td,.handsontable tr.hidden th{display:none}.ht_clone_bottom,.ht_clone_inline_start,.ht_clone_top,.ht_master{overflow:hidden}.ht_master .wtHolder{overflow:auto}.handsontable .ht_clone_inline_start thead,.handsontable .ht_master thead,.handsontable .ht_master tr th{visibility:hidden}.ht_clone_bottom .wtHolder,.ht_clone_inline_start .wtHolder,.ht_clone_top .wtHolder{overflow:hidden}.handsontable{color:#373737;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif;font-size:13px;font-weight:400;touch-action:manipulation}.handsontable a{color:#104acc}.handsontable.htAutoSize{left:-99000px;position:absolute;top:-99000px;visibility:hidden}.handsontable td.htInvalid{background-color:#ffbeba!important}.handsontable td.htNoWrap{white-space:nowrap}.handsontable td.invisibleSelection,.handsontable th.invisibleSelection{outline:none}.handsontable td.invisibleSelection::selection,.handsontable th.invisibleSelection::selection{background:hsla(0,0%,100%,0)}.hot-display-license-info{color:#373737;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif;font-size:10px;font-weight:400;padding:5px 0 3px;text-align:left}.hot-display-license-info a{color:#104acc;font-size:10px}.handsontable .htFocusCatcher{border:0;height:0;margin:0;opacity:0;padding:0;position:absolute;width:0;z-index:-1}.handsontable .manualColumnResizer{cursor:col-resize;height:25px;position:absolute;top:0;width:5px;z-index:210}.handsontable .manualRowResizer{cursor:row-resize;height:5px;left:0;position:absolute;width:50px;z-index:210}.handsontable .manualColumnResizer.active,.handsontable .manualColumnResizer:hover,.handsontable .manualRowResizer.active,.handsontable .manualRowResizer:hover{background-color:#34a9db}.handsontable .manualColumnResizerGuide{background-color:#34a9db;border-left:none;border-right:1px dashed #777;display:none;margin-left:5px;margin-right:unset;position:absolute;right:unset;top:0;width:0}[dir=rtl].handsontable .manualColumnResizerGuide{border-left:1px dashed #777;border-right:none;left:unset;margin-left:unset;margin-right:5px}.handsontable .manualRowResizerGuide{background-color:#34a9db;border-bottom:1px dashed #777;bottom:0;display:none;height:0;left:0;margin-top:5px;position:absolute}.handsontable .manualColumnResizerGuide.active,.handsontable .manualRowResizerGuide.active{display:block;z-index:209}.handsontable .columnSorting{position:relative}.handsontable .columnSorting.sortAction:hover{cursor:pointer;text-decoration:underline}.handsontable span.colHeader.columnSorting:before{background-position-x:right;background-repeat:no-repeat;background-size:contain;content:"";height:10px;left:unset;margin-top:-6px;padding-left:8px;padding-right:0;position:absolute;right:-9px;top:50%;width:5px}[dir=rtl].handsontable span.colHeader.columnSorting:before{background-position-x:left;left:-9px;padding-left:0;padding-right:8px;right:unset}.handsontable span.colHeader.columnSorting.ascending:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC)}.handsontable span.colHeader.columnSorting.descending:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=)}.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled):before{content:"*";display:inline-block;padding-right:20px;position:relative}.handsontable td.area,.handsontable td.area-1,.handsontable td.area-2,.handsontable td.area-3,.handsontable td.area-4,.handsontable td.area-5,.handsontable td.area-6,.handsontable td.area-7{position:relative}.handsontable td.area-1:before,.handsontable td.area-2:before,.handsontable td.area-3:before,.handsontable td.area-4:before,.handsontable td.area-5:before,.handsontable td.area-6:before,.handsontable td.area-7:before,.handsontable td.area:before{background:#005eff;bottom:0;bottom:-100%\9;content:"";left:0;position:absolute;right:0;top:0}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.handsontable td.area-1:before,.handsontable td.area-2:before,.handsontable td.area-3:before,.handsontable td.area-4:before,.handsontable td.area-5:before,.handsontable td.area-6:before,.handsontable td.area-7:before,.handsontable td.area:before{bottom:-100%}}.handsontable td.area:before{opacity:.1}.handsontable td.area-1:before{opacity:.2}.handsontable td.area-2:before{opacity:.27}.handsontable td.area-3:before{opacity:.35}.handsontable td.area-4:before{opacity:.41}.handsontable td.area-5:before{opacity:.47}.handsontable td.area-6:before{opacity:.54}.handsontable td.area-7:before{opacity:.58}.handsontable tbody th.current,.handsontable thead th.current{box-shadow:inset 0 0 0 2px #4b89ff}.handsontable tbody th.ht__highlight,.handsontable thead th.ht__highlight{background-color:#dcdcdc}.handsontable tbody th.ht__active_highlight,.handsontable thead th.ht__active_highlight{background-color:#8eb0e7;color:#000}.handsontableInput{background-color:#fff;border:none;border-radius:0;box-shadow:inset 0 0 0 2px #5292f7;color:#000;display:block;font-family:inherit;font-size:inherit;line-height:21px;margin:0;outline-width:0;padding:1px 5px 0;resize:none}.handsontableInput:focus{outline:none}.handsontableInputHolder{left:0;position:absolute;top:0}.htSelectEditor{-webkit-appearance:menulist-button!important;position:absolute;width:auto}.htSelectEditor:focus{outline:none}.handsontable .htDimmed{color:#777}.handsontable .htSubmenu{position:relative}.handsontable .htSubmenu :after{color:#777;content:"▶";font-size:9px;position:absolute;right:5px}[dir=rtl].handsontable .htSubmenu :after{content:""}[dir=rtl].handsontable .htSubmenu :before{color:#777;content:"◀";font-size:9px;left:5px;position:absolute}.handsontable .htLeft{text-align:left}.handsontable .htCenter{text-align:center}.handsontable .htRight{text-align:right}.handsontable .htJustify{text-align:justify}.handsontable .htTop{vertical-align:top}.handsontable .htMiddle{vertical-align:middle}.handsontable .htBottom{vertical-align:bottom}.handsontable .htPlaceholder{color:#999}.handsontable.listbox{margin:0}.handsontable.listbox .ht_master table{background:#fff;border:1px solid #ccc;border-collapse:separate}.handsontable.listbox td,.handsontable.listbox th,.handsontable.listbox tr:first-child td,.handsontable.listbox tr:first-child th,.handsontable.listbox tr:last-child th{border-color:transparent!important}.handsontable.listbox td,.handsontable.listbox th{text-overflow:ellipsis;white-space:nowrap}.handsontable.listbox td.htDimmed{color:inherit;cursor:default;font-style:inherit}.handsontable.listbox .wtBorder{visibility:hidden}.handsontable.listbox tr td.current,.handsontable.listbox tr:hover td{background:#eee}.ht_editor_hidden{z-index:-1}.ht_editor_visible{z-index:200}.handsontable td.htSearchResult{background:#fcedd9;color:#583707}.handsontable .collapsibleIndicator{background:#eee;border:1px solid #a6a6a6;border-radius:10px;-webkit-box-shadow:0 0 0 6px #eee;-moz-box-shadow:0 0 0 6px #eee;box-shadow:0 0 0 3px #eee;color:#222;cursor:pointer;font-size:10px;height:10px;left:unset;line-height:8px;position:absolute;right:5px;text-align:center;top:50%;transform:translateY(-50%);width:10px}[dir=rtl].handsontable .collapsibleIndicator{left:5px;right:unset}.handsontable.mobile,.handsontable.mobile .wtHolder{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-overflow-scrolling:touch;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.handsontable.mobile .handsontableInput:focus{-webkit-appearance:none;-webkit-box-shadow:inset 0 0 0 2px #5292f7;-moz-box-shadow:inset 0 0 0 2px #5292f7;box-shadow:inset 0 0 0 2px #5292f7}.handsontable .bottomSelectionHandle,.handsontable .bottomSelectionHandle-HitArea,.handsontable .topSelectionHandle,.handsontable .topSelectionHandle-HitArea{left:-10000px;right:unset;top:-10000px;z-index:9999}[dir=rtl].handsontable .bottomSelectionHandle,[dir=rtl].handsontable .bottomSelectionHandle-HitArea,[dir=rtl].handsontable .topSelectionHandle,[dir=rtl].handsontable .topSelectionHandle-HitArea{left:unset;right:-10000px}.handsontable.hide-tween{-webkit-animation:opacity-hide .3s;animation:opacity-hide .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable.show-tween{-webkit-animation:opacity-show .3s;animation:opacity-show .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}
31
31
  /*!
32
32
  * Pikaday