handsontable 0.0.0-next-7026906-20231107 → 0.0.0-next-7b93b7d-20231107

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 (316) hide show
  1. package/3rdparty/SheetClip/SheetClip.js +2 -2
  2. package/3rdparty/SheetClip/SheetClip.mjs +2 -2
  3. package/3rdparty/autoResize/autoResize.js +2 -2
  4. package/3rdparty/autoResize/autoResize.mjs +2 -2
  5. package/3rdparty/walkontable/src/calculator/viewportColumns.js +108 -85
  6. package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +108 -85
  7. package/3rdparty/walkontable/src/calculator/viewportRows.js +60 -52
  8. package/3rdparty/walkontable/src/calculator/viewportRows.mjs +60 -52
  9. package/3rdparty/walkontable/src/core/clone.js +6 -0
  10. package/3rdparty/walkontable/src/core/clone.mjs +6 -0
  11. package/3rdparty/walkontable/src/event.js +125 -74
  12. package/3rdparty/walkontable/src/event.mjs +125 -74
  13. package/3rdparty/walkontable/src/filter/column.js +16 -0
  14. package/3rdparty/walkontable/src/filter/column.mjs +16 -0
  15. package/3rdparty/walkontable/src/filter/row.js +16 -0
  16. package/3rdparty/walkontable/src/filter/row.mjs +16 -0
  17. package/3rdparty/walkontable/src/overlay/bottom.js +1 -1
  18. package/3rdparty/walkontable/src/overlay/bottom.mjs +1 -1
  19. package/3rdparty/walkontable/src/overlay/top.js +1 -1
  20. package/3rdparty/walkontable/src/overlay/top.mjs +1 -1
  21. package/3rdparty/walkontable/src/renderer/_base.js +12 -5
  22. package/3rdparty/walkontable/src/renderer/_base.mjs +12 -5
  23. package/3rdparty/walkontable/src/renderer/cells.js +6 -2
  24. package/3rdparty/walkontable/src/renderer/cells.mjs +6 -2
  25. package/3rdparty/walkontable/src/renderer/rowHeaders.js +6 -2
  26. package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +6 -2
  27. package/3rdparty/walkontable/src/renderer/rows.js +5 -0
  28. package/3rdparty/walkontable/src/renderer/rows.mjs +5 -0
  29. package/3rdparty/walkontable/src/renderer/table.js +24 -17
  30. package/3rdparty/walkontable/src/renderer/table.mjs +24 -17
  31. package/3rdparty/walkontable/src/scroll.js +2 -2
  32. package/3rdparty/walkontable/src/scroll.mjs +2 -2
  33. package/3rdparty/walkontable/src/selection/border/border.js +1 -1
  34. package/3rdparty/walkontable/src/selection/border/border.mjs +1 -1
  35. package/3rdparty/walkontable/src/settings.js +10 -10
  36. package/3rdparty/walkontable/src/settings.mjs +10 -10
  37. package/3rdparty/walkontable/src/table.js +3 -3
  38. package/3rdparty/walkontable/src/table.mjs +3 -3
  39. package/3rdparty/walkontable/src/utils/column.js +19 -4
  40. package/3rdparty/walkontable/src/utils/column.mjs +19 -4
  41. package/3rdparty/walkontable/src/utils/nodesPool.js +5 -0
  42. package/3rdparty/walkontable/src/utils/nodesPool.mjs +5 -0
  43. package/3rdparty/walkontable/src/utils/orderView/view.js +13 -6
  44. package/3rdparty/walkontable/src/utils/orderView/view.mjs +13 -6
  45. package/3rdparty/walkontable/src/utils/orderView/viewSize.js +9 -6
  46. package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +9 -6
  47. package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +7 -4
  48. package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +7 -4
  49. package/3rdparty/walkontable/src/utils/row.js +14 -2
  50. package/3rdparty/walkontable/src/utils/row.mjs +14 -2
  51. package/3rdparty/walkontable/src/viewport.js +9 -9
  52. package/3rdparty/walkontable/src/viewport.mjs +9 -9
  53. package/base.js +2 -2
  54. package/base.mjs +2 -2
  55. package/core.js +25 -25
  56. package/core.mjs +25 -25
  57. package/dataMap/dataMap.js +99 -90
  58. package/dataMap/dataMap.mjs +99 -90
  59. package/dataMap/dataSource.js +14 -8
  60. package/dataMap/dataSource.mjs +14 -8
  61. package/dataMap/metaManager/lazyFactoryMap.js +19 -7
  62. package/dataMap/metaManager/lazyFactoryMap.mjs +19 -7
  63. package/dataMap/metaManager/metaLayers/cellMeta.js +8 -3
  64. package/dataMap/metaManager/metaLayers/cellMeta.mjs +8 -3
  65. package/dataMap/metaManager/metaLayers/columnMeta.js +7 -1
  66. package/dataMap/metaManager/metaLayers/columnMeta.mjs +7 -1
  67. package/dataMap/metaManager/metaLayers/globalMeta.js +6 -1
  68. package/dataMap/metaManager/metaLayers/globalMeta.mjs +6 -1
  69. package/dataMap/metaManager/metaLayers/tableMeta.js +6 -2
  70. package/dataMap/metaManager/metaLayers/tableMeta.mjs +6 -2
  71. package/dataMap/metaManager/metaSchema.js +55 -55
  72. package/dataMap/metaManager/metaSchema.mjs +55 -55
  73. package/dataMap/metaManager/mods/dynamicCellMeta.js +7 -2
  74. package/dataMap/metaManager/mods/dynamicCellMeta.mjs +7 -2
  75. package/dataMap/metaManager/mods/extendMetaProperties.js +8 -4
  76. package/dataMap/metaManager/mods/extendMetaProperties.mjs +8 -4
  77. package/dataMap/metaManager/utils.js +2 -2
  78. package/dataMap/metaManager/utils.mjs +2 -2
  79. package/dist/handsontable.css +2 -2
  80. package/dist/handsontable.full.css +2 -2
  81. package/dist/handsontable.full.js +7244 -6347
  82. package/dist/handsontable.full.min.css +2 -2
  83. package/dist/handsontable.full.min.js +120 -120
  84. package/dist/handsontable.js +7243 -6346
  85. package/dist/handsontable.min.css +2 -2
  86. package/dist/handsontable.min.js +28 -28
  87. package/editorManager.js +105 -95
  88. package/editorManager.mjs +105 -95
  89. package/editors/autocompleteEditor/autocompleteEditor.js +47 -46
  90. package/editors/autocompleteEditor/autocompleteEditor.mjs +46 -45
  91. package/editors/baseEditor/baseEditor.js +23 -26
  92. package/editors/baseEditor/baseEditor.mjs +23 -26
  93. package/editors/dateEditor/dateEditor.js +24 -15
  94. package/editors/dateEditor/dateEditor.mjs +24 -15
  95. package/editors/dropdownEditor/dropdownEditor.js +1 -1
  96. package/editors/dropdownEditor/dropdownEditor.mjs +1 -1
  97. package/editors/handsontableEditor/handsontableEditor.js +4 -4
  98. package/editors/handsontableEditor/handsontableEditor.mjs +4 -4
  99. package/editors/textEditor/textEditor.js +23 -17
  100. package/editors/textEditor/textEditor.mjs +24 -18
  101. package/eventManager.js +8 -0
  102. package/eventManager.mjs +8 -0
  103. package/helpers/array.js +2 -2
  104. package/helpers/array.mjs +2 -2
  105. package/helpers/dom/element.js +7 -7
  106. package/helpers/dom/element.mjs +7 -7
  107. package/helpers/function.js +1 -1
  108. package/helpers/function.mjs +1 -1
  109. package/helpers/mixed.js +1 -1
  110. package/helpers/mixed.mjs +1 -1
  111. package/helpers/object.js +4 -4
  112. package/helpers/object.mjs +4 -4
  113. package/helpers/string.js +1 -1
  114. package/helpers/string.mjs +1 -1
  115. package/package.json +1 -1
  116. package/pluginHooks.d.ts +0 -2
  117. package/pluginHooks.js +12 -3
  118. package/pluginHooks.mjs +12 -3
  119. package/plugins/autoColumnSize/autoColumnSize.js +141 -130
  120. package/plugins/autoColumnSize/autoColumnSize.mjs +140 -129
  121. package/plugins/autoRowSize/autoRowSize.js +112 -125
  122. package/plugins/autoRowSize/autoRowSize.mjs +110 -123
  123. package/plugins/autofill/autofill.js +97 -102
  124. package/plugins/autofill/autofill.mjs +96 -101
  125. package/plugins/base/base.js +57 -22
  126. package/plugins/base/base.mjs +56 -22
  127. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +29 -24
  128. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +28 -23
  129. package/plugins/collapsibleColumns/collapsibleColumns.js +104 -107
  130. package/plugins/collapsibleColumns/collapsibleColumns.mjs +102 -104
  131. package/plugins/columnSorting/columnSorting.js +105 -98
  132. package/plugins/columnSorting/columnSorting.mjs +104 -97
  133. package/plugins/columnSorting/columnStatesManager.js +12 -6
  134. package/plugins/columnSorting/columnStatesManager.mjs +12 -6
  135. package/plugins/columnSummary/columnSummary.js +71 -58
  136. package/plugins/columnSummary/columnSummary.mjs +70 -57
  137. package/plugins/columnSummary/endpoints.js +20 -14
  138. package/plugins/columnSummary/endpoints.mjs +20 -14
  139. package/plugins/comments/commentEditor.js +30 -2
  140. package/plugins/comments/commentEditor.mjs +30 -2
  141. package/plugins/comments/comments.js +158 -169
  142. package/plugins/comments/comments.mjs +157 -168
  143. package/plugins/comments/displaySwitch.js +7 -3
  144. package/plugins/comments/displaySwitch.mjs +7 -3
  145. package/plugins/contextMenu/commandExecutor.js +15 -2
  146. package/plugins/contextMenu/commandExecutor.mjs +15 -2
  147. package/plugins/contextMenu/contextMenu.js +91 -101
  148. package/plugins/contextMenu/contextMenu.mjs +90 -100
  149. package/plugins/contextMenu/itemsFactory.js +19 -4
  150. package/plugins/contextMenu/itemsFactory.mjs +19 -4
  151. package/plugins/contextMenu/menu/cursor.js +36 -0
  152. package/plugins/contextMenu/menu/cursor.mjs +36 -0
  153. package/plugins/contextMenu/menu/menu.js +57 -5
  154. package/plugins/contextMenu/menu/menu.mjs +57 -5
  155. package/plugins/copyPaste/copyPaste.js +74 -75
  156. package/plugins/copyPaste/copyPaste.mjs +74 -75
  157. package/plugins/customBorders/customBorders.js +49 -48
  158. package/plugins/customBorders/customBorders.mjs +48 -47
  159. package/plugins/dragToScroll/dragToScroll.js +50 -54
  160. package/plugins/dragToScroll/dragToScroll.mjs +49 -52
  161. package/plugins/dropdownMenu/dropdownMenu.js +132 -129
  162. package/plugins/dropdownMenu/dropdownMenu.mjs +132 -129
  163. package/plugins/exportFile/dataProvider.js +7 -2
  164. package/plugins/exportFile/dataProvider.mjs +7 -2
  165. package/plugins/exportFile/exportFile.js +1 -1
  166. package/plugins/exportFile/exportFile.mjs +1 -1
  167. package/plugins/exportFile/types/_base.js +14 -6
  168. package/plugins/exportFile/types/_base.mjs +14 -6
  169. package/plugins/filters/component/actionBar.js +9 -0
  170. package/plugins/filters/component/actionBar.mjs +9 -0
  171. package/plugins/filters/component/condition.js +13 -0
  172. package/plugins/filters/component/condition.mjs +13 -0
  173. package/plugins/filters/component/operators.js +9 -0
  174. package/plugins/filters/component/operators.mjs +9 -0
  175. package/plugins/filters/component/value.js +9 -0
  176. package/plugins/filters/component/value.mjs +9 -0
  177. package/plugins/filters/conditionCollection.js +9 -4
  178. package/plugins/filters/conditionCollection.mjs +9 -4
  179. package/plugins/filters/conditionUpdateObserver.js +53 -42
  180. package/plugins/filters/conditionUpdateObserver.mjs +53 -42
  181. package/plugins/filters/dataFilter.js +9 -3
  182. package/plugins/filters/dataFilter.mjs +9 -3
  183. package/plugins/filters/filters.js +184 -189
  184. package/plugins/filters/filters.mjs +182 -187
  185. package/plugins/filters/ui/_base.js +1 -1
  186. package/plugins/filters/ui/_base.mjs +1 -1
  187. package/plugins/filters/utils.js +1 -1
  188. package/plugins/filters/utils.mjs +1 -1
  189. package/plugins/formulas/engine/settings.js +1 -1
  190. package/plugins/formulas/engine/settings.mjs +1 -1
  191. package/plugins/formulas/formulas.js +684 -602
  192. package/plugins/formulas/formulas.mjs +682 -600
  193. package/plugins/hiddenColumns/hiddenColumns.js +174 -169
  194. package/plugins/hiddenColumns/hiddenColumns.mjs +173 -168
  195. package/plugins/hiddenRows/hiddenRows.js +170 -165
  196. package/plugins/hiddenRows/hiddenRows.mjs +169 -164
  197. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +1 -1
  198. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +1 -1
  199. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +1 -1
  200. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +1 -1
  201. package/plugins/manualColumnFreeze/manualColumnFreeze.js +67 -54
  202. package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +64 -51
  203. package/plugins/manualColumnMove/manualColumnMove.js +287 -232
  204. package/plugins/manualColumnMove/manualColumnMove.mjs +286 -231
  205. package/plugins/manualColumnMove/ui/_base.js +9 -3
  206. package/plugins/manualColumnMove/ui/_base.mjs +9 -3
  207. package/plugins/manualColumnResize/manualColumnResize.js +291 -246
  208. package/plugins/manualColumnResize/manualColumnResize.mjs +290 -244
  209. package/plugins/manualRowMove/manualRowMove.js +223 -208
  210. package/plugins/manualRowMove/manualRowMove.mjs +222 -207
  211. package/plugins/manualRowMove/ui/_base.js +10 -5
  212. package/plugins/manualRowMove/ui/_base.mjs +10 -5
  213. package/plugins/manualRowResize/manualRowResize.js +254 -209
  214. package/plugins/manualRowResize/manualRowResize.mjs +253 -207
  215. package/plugins/mergeCells/calculations/autofill.js +9 -3
  216. package/plugins/mergeCells/calculations/autofill.mjs +9 -3
  217. package/plugins/mergeCells/calculations/selection.js +10 -4
  218. package/plugins/mergeCells/calculations/selection.mjs +10 -4
  219. package/plugins/mergeCells/cellCoords.js +16 -6
  220. package/plugins/mergeCells/cellCoords.mjs +16 -6
  221. package/plugins/mergeCells/cellsCollection.js +10 -4
  222. package/plugins/mergeCells/cellsCollection.mjs +10 -4
  223. package/plugins/mergeCells/mergeCells.js +582 -502
  224. package/plugins/mergeCells/mergeCells.mjs +580 -500
  225. package/plugins/multiColumnSorting/multiColumnSorting.js +13 -10
  226. package/plugins/multiColumnSorting/multiColumnSorting.mjs +13 -10
  227. package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +16 -28
  228. package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +16 -27
  229. package/plugins/nestedHeaders/nestedHeaders.js +542 -499
  230. package/plugins/nestedHeaders/nestedHeaders.mjs +554 -511
  231. package/plugins/nestedHeaders/stateManager/index.js +1 -1
  232. package/plugins/nestedHeaders/stateManager/index.mjs +1 -1
  233. package/plugins/nestedRows/data/dataManager.js +21 -15
  234. package/plugins/nestedRows/data/dataManager.mjs +21 -15
  235. package/plugins/nestedRows/nestedRows.js +326 -278
  236. package/plugins/nestedRows/nestedRows.mjs +325 -277
  237. package/plugins/nestedRows/ui/_base.js +7 -1
  238. package/plugins/nestedRows/ui/_base.mjs +7 -1
  239. package/plugins/nestedRows/ui/collapsing.js +2 -2
  240. package/plugins/nestedRows/ui/collapsing.mjs +2 -2
  241. package/plugins/nestedRows/ui/contextMenu.js +28 -18
  242. package/plugins/nestedRows/ui/contextMenu.mjs +28 -18
  243. package/plugins/nestedRows/utils/rowMoveController.js +12 -4
  244. package/plugins/nestedRows/utils/rowMoveController.mjs +12 -4
  245. package/plugins/persistentState/persistentState.js +14 -11
  246. package/plugins/persistentState/persistentState.mjs +14 -11
  247. package/plugins/persistentState/storage.js +11 -6
  248. package/plugins/persistentState/storage.mjs +11 -6
  249. package/plugins/registry.js +2 -2
  250. package/plugins/registry.mjs +2 -2
  251. package/plugins/search/search.js +57 -46
  252. package/plugins/search/search.mjs +56 -45
  253. package/plugins/touchScroll/touchScroll.js +102 -100
  254. package/plugins/touchScroll/touchScroll.mjs +100 -98
  255. package/plugins/trimRows/trimRows.js +33 -28
  256. package/plugins/trimRows/trimRows.mjs +32 -27
  257. package/plugins/undoRedo/undoRedo.js +2 -2
  258. package/plugins/undoRedo/undoRedo.mjs +2 -2
  259. package/renderers/autocompleteRenderer/autocompleteRenderer.js +11 -11
  260. package/renderers/autocompleteRenderer/autocompleteRenderer.mjs +11 -11
  261. package/renderers/baseRenderer/baseRenderer.js +2 -2
  262. package/renderers/baseRenderer/baseRenderer.mjs +2 -2
  263. package/renderers/checkboxRenderer/checkboxRenderer.js +23 -23
  264. package/renderers/checkboxRenderer/checkboxRenderer.mjs +23 -23
  265. package/renderers/dateRenderer/dateRenderer.js +4 -4
  266. package/renderers/dateRenderer/dateRenderer.mjs +4 -4
  267. package/renderers/handsontableRenderer/handsontableRenderer.js +4 -4
  268. package/renderers/handsontableRenderer/handsontableRenderer.mjs +4 -4
  269. package/renderers/htmlRenderer/htmlRenderer.js +4 -4
  270. package/renderers/htmlRenderer/htmlRenderer.mjs +4 -4
  271. package/renderers/numericRenderer/numericRenderer.js +3 -3
  272. package/renderers/numericRenderer/numericRenderer.mjs +3 -3
  273. package/renderers/passwordRenderer/passwordRenderer.js +3 -3
  274. package/renderers/passwordRenderer/passwordRenderer.mjs +3 -3
  275. package/renderers/selectRenderer/selectRenderer.js +4 -4
  276. package/renderers/selectRenderer/selectRenderer.mjs +4 -4
  277. package/renderers/textRenderer/textRenderer.js +5 -5
  278. package/renderers/textRenderer/textRenderer.mjs +5 -5
  279. package/renderers/timeRenderer/timeRenderer.js +3 -3
  280. package/renderers/timeRenderer/timeRenderer.mjs +3 -3
  281. package/selection/range.js +12 -2
  282. package/selection/range.mjs +12 -2
  283. package/selection/selection.js +3 -3
  284. package/selection/selection.mjs +3 -3
  285. package/tableView.js +208 -200
  286. package/tableView.mjs +208 -200
  287. package/translations/changesObservable/utils.js +2 -2
  288. package/translations/changesObservable/utils.mjs +2 -2
  289. package/translations/indexMapper.js +25 -22
  290. package/translations/indexMapper.mjs +25 -22
  291. package/translations/mapCollections/aggregatedCollection.js +8 -2
  292. package/translations/mapCollections/aggregatedCollection.mjs +8 -2
  293. package/translations/mapCollections/mapCollection.js +5 -2
  294. package/translations/mapCollections/mapCollection.mjs +5 -2
  295. package/translations/maps/indexMap.js +6 -1
  296. package/translations/maps/indexMap.mjs +6 -1
  297. package/translations/maps/utils/physicallyIndexed.js +2 -2
  298. package/translations/maps/utils/physicallyIndexed.mjs +2 -2
  299. package/utils/dataStructures/linkedList.js +10 -6
  300. package/utils/dataStructures/linkedList.mjs +10 -6
  301. package/utils/dataStructures/queue.js +1 -1
  302. package/utils/dataStructures/queue.mjs +1 -1
  303. package/utils/dataStructures/stack.js +1 -1
  304. package/utils/dataStructures/stack.mjs +1 -1
  305. package/utils/ghostTable.js +2 -2
  306. package/utils/ghostTable.mjs +2 -2
  307. package/utils/interval.js +73 -36
  308. package/utils/interval.mjs +73 -36
  309. package/utils/parseTable.js +1 -1
  310. package/utils/parseTable.mjs +1 -1
  311. package/validators/autocompleteValidator/autocompleteValidator.js +1 -1
  312. package/validators/autocompleteValidator/autocompleteValidator.mjs +1 -1
  313. package/validators/dateValidator/dateValidator.js +1 -1
  314. package/validators/dateValidator/dateValidator.mjs +1 -1
  315. package/validators/numericValidator/numericValidator.js +1 -1
  316. package/validators/numericValidator/numericValidator.mjs +1 -1
@@ -103,7 +103,7 @@ export default (() => {
103
103
  * @type {Set}
104
104
  * @default undefined
105
105
  */
106
- _automaticallyAssignedMetaProps: void 0,
106
+ _automaticallyAssignedMetaProps: undefined,
107
107
  /**
108
108
  * The `activeHeaderClassName` option lets you add a CSS class name
109
109
  * to every currently-active, currently-selected header (when a whole column or row is selected).
@@ -376,7 +376,7 @@ export default (() => {
376
376
  * },
377
377
  * ```
378
378
  */
379
- autoColumnSize: void 0,
379
+ autoColumnSize: undefined,
380
380
  /**
381
381
  * The `autoRowSize` option configures the [`AutoRowSize`](@/api/autoRowSize.md) plugin.
382
382
  *
@@ -415,7 +415,7 @@ export default (() => {
415
415
  * },
416
416
  * ```
417
417
  */
418
- autoRowSize: void 0,
418
+ autoRowSize: undefined,
419
419
  /**
420
420
  * With [`autoWrapCol`](#autowrapcol) enabled:
421
421
  * - When you select a bottom-most cell, pressing <kbd>**↓**</kbd> takes you to the top-most cell of the next column.
@@ -501,7 +501,7 @@ export default (() => {
501
501
  * bindRowsWithHeaders: true
502
502
  * ```
503
503
  */
504
- bindRowsWithHeaders: void 0,
504
+ bindRowsWithHeaders: undefined,
505
505
  /**
506
506
  * The `cell` option lets you apply [configuration options](@/guides/getting-started/configuration-options.md) to individual cells.
507
507
  *
@@ -572,7 +572,7 @@ export default (() => {
572
572
  * },
573
573
  * ```
574
574
  */
575
- cells: void 0,
575
+ cells: undefined,
576
576
  /**
577
577
  * The `checkedTemplate` option lets you configure what value
578
578
  * a checked [`checkbox`](@/guides/cell-types/checkbox-cell-type.md) cell has.
@@ -614,7 +614,7 @@ export default (() => {
614
614
  * ],
615
615
  * ```
616
616
  */
617
- checkedTemplate: void 0,
617
+ checkedTemplate: undefined,
618
618
  /**
619
619
  * The `className` option lets you add CSS class names to every currently-selected element.
620
620
  *
@@ -661,7 +661,7 @@ export default (() => {
661
661
  * className: ['first-class-name', 'second-class-name'],
662
662
  * ```
663
663
  */
664
- className: void 0,
664
+ className: undefined,
665
665
  /**
666
666
  * The `colHeaders` option configures your grid's column headers.
667
667
  *
@@ -729,7 +729,7 @@ export default (() => {
729
729
  * ],
730
730
  * ```
731
731
  */
732
- collapsibleColumns: void 0,
732
+ collapsibleColumns: undefined,
733
733
  /**
734
734
  * @description
735
735
  * The `columnHeaderHeight` option configures the height of column headers.
@@ -755,7 +755,7 @@ export default (() => {
755
755
  * columnHeaderHeight: [25, 30, 55],
756
756
  * ```
757
757
  */
758
- columnHeaderHeight: void 0,
758
+ columnHeaderHeight: undefined,
759
759
  /**
760
760
  * @description
761
761
  * The `columns` option lets you apply any other [configuration options](@/guides/getting-started/configuration-options.md) to individual columns (or ranges of columns).
@@ -808,7 +808,7 @@ export default (() => {
808
808
  * }
809
809
  * ```
810
810
  */
811
- columns: void 0,
811
+ columns: undefined,
812
812
  /**
813
813
  * @description
814
814
  * The `columnSorting` option configures the [`ColumnSorting`](@/api/columnSorting.md) plugin.
@@ -887,7 +887,7 @@ export default (() => {
887
887
  * }
888
888
  * ```
889
889
  */
890
- columnSorting: void 0,
890
+ columnSorting: undefined,
891
891
  /**
892
892
  * @description
893
893
  * The `columnSummary` option configures the [`ColumnSummary`](@/api/columnSummary.md) plugin.
@@ -941,7 +941,7 @@ export default (() => {
941
941
  * ],
942
942
  * ```
943
943
  */
944
- columnSummary: void 0,
944
+ columnSummary: undefined,
945
945
  /**
946
946
  * The `colWidths` option sets columns' widths, in pixels.
947
947
  *
@@ -990,7 +990,7 @@ export default (() => {
990
990
  * },
991
991
  * ```
992
992
  */
993
- colWidths: void 0,
993
+ colWidths: undefined,
994
994
  /**
995
995
  * The `commentedCellClassName` option lets you add a CSS class name to cells
996
996
  * that have comments.
@@ -1137,7 +1137,7 @@ export default (() => {
1137
1137
  * },
1138
1138
  * ```
1139
1139
  */
1140
- contextMenu: void 0,
1140
+ contextMenu: undefined,
1141
1141
  /**
1142
1142
  * @description
1143
1143
  * The `copyable` option determines whether a cell's value can be copied to the clipboard or not.
@@ -1331,7 +1331,7 @@ export default (() => {
1331
1331
  * currentColClassName: 'your-class-name',
1332
1332
  * ```
1333
1333
  */
1334
- currentColClassName: void 0,
1334
+ currentColClassName: undefined,
1335
1335
  /**
1336
1336
  * The `currentHeaderClassName` option lets you add a CSS class name
1337
1337
  * to every currently-visible, currently-selected header.
@@ -1388,7 +1388,7 @@ export default (() => {
1388
1388
  * currentRowClassName: 'your-class-name',
1389
1389
  * ```
1390
1390
  */
1391
- currentRowClassName: void 0,
1391
+ currentRowClassName: undefined,
1392
1392
  /**
1393
1393
  * @description
1394
1394
  * The `customBorders` option configures the [`CustomBorders`](@/api/customBorders.md) plugin.
@@ -1543,7 +1543,7 @@ export default (() => {
1543
1543
  * ]
1544
1544
  * ```
1545
1545
  */
1546
- data: void 0,
1546
+ data: undefined,
1547
1547
  /**
1548
1548
  * @description
1549
1549
  * When the [`data`](#data) option is set to an [array of objects](@/guides/getting-started/binding-to-data.md#array-of-objects)
@@ -1581,7 +1581,7 @@ export default (() => {
1581
1581
  * minSpareRows: 1
1582
1582
  * ```
1583
1583
  */
1584
- dataSchema: void 0,
1584
+ dataSchema: undefined,
1585
1585
  /**
1586
1586
  * The `dateFormat` option configures the date format accepted by [`date`](@/guides/cell-types/date-cell-type.md) cells.
1587
1587
  *
@@ -1640,7 +1640,7 @@ export default (() => {
1640
1640
  * @default undefined
1641
1641
  * @category Core
1642
1642
  */
1643
- datePickerConfig: void 0,
1643
+ datePickerConfig: undefined,
1644
1644
  /**
1645
1645
  * The `defaultDate` option configures the date displayed
1646
1646
  * in empty [`date`](@/guides/cell-types/date-cell-type.md) cells.
@@ -1668,7 +1668,7 @@ export default (() => {
1668
1668
  * ],
1669
1669
  * ```
1670
1670
  */
1671
- defaultDate: void 0,
1671
+ defaultDate: undefined,
1672
1672
  /**
1673
1673
  * @description
1674
1674
  * The `disableVisualSelection` option configures how
@@ -1795,7 +1795,7 @@ export default (() => {
1795
1795
  * },
1796
1796
  * ```
1797
1797
  */
1798
- dropdownMenu: void 0,
1798
+ dropdownMenu: undefined,
1799
1799
  /**
1800
1800
  * The `editor` option sets a [cell editor](@/guides/cell-functions/cell-editor.md) for a cell.
1801
1801
  *
@@ -1853,7 +1853,7 @@ export default (() => {
1853
1853
  * ]
1854
1854
  * ```
1855
1855
  */
1856
- editor: void 0,
1856
+ editor: undefined,
1857
1857
  /**
1858
1858
  * The `enterBeginsEditing` option configures the action of the <kbd>**Enter**</kbd> key.
1859
1859
  *
@@ -2081,7 +2081,7 @@ export default (() => {
2081
2081
  * filters: true,
2082
2082
  * ```
2083
2083
  */
2084
- filters: void 0,
2084
+ filters: undefined,
2085
2085
  /**
2086
2086
  * `fixedColumnsLeft` is a legacy option.
2087
2087
  *
@@ -2259,7 +2259,7 @@ export default (() => {
2259
2259
  * }
2260
2260
  * ```
2261
2261
  */
2262
- formulas: void 0,
2262
+ formulas: undefined,
2263
2263
  /**
2264
2264
  * The `fragmentSelection` option configures text selection settings.
2265
2265
  *
@@ -2319,7 +2319,7 @@ export default (() => {
2319
2319
  * },
2320
2320
  * ```
2321
2321
  */
2322
- height: void 0,
2322
+ height: undefined,
2323
2323
  /**
2324
2324
  * The `hiddenColumns` option configures the [`HiddenColumns`](@/api/hiddenColumns.md) plugin.
2325
2325
  *
@@ -2364,7 +2364,7 @@ export default (() => {
2364
2364
  * }
2365
2365
  * ```
2366
2366
  */
2367
- hiddenColumns: void 0,
2367
+ hiddenColumns: undefined,
2368
2368
  /**
2369
2369
  * The `hiddenRows` option configures the [`HiddenRows`](@/api/hiddenRows.md) plugin.
2370
2370
  *
@@ -2409,7 +2409,7 @@ export default (() => {
2409
2409
  * }
2410
2410
  * ```
2411
2411
  */
2412
- hiddenRows: void 0,
2412
+ hiddenRows: undefined,
2413
2413
  /**
2414
2414
  * The `invalidCellClassName` option lets you add a CSS class name to cells
2415
2415
  * that were marked as `invalid` by the [cell validator](@/guides/cell-functions/cell-validator.md).
@@ -2552,7 +2552,7 @@ export default (() => {
2552
2552
  * }],
2553
2553
  * ```
2554
2554
  */
2555
- label: void 0,
2555
+ label: undefined,
2556
2556
  /**
2557
2557
  * The `language` option configures Handsontable's [language](@/guides/internationalization/language.md) settings.
2558
2558
  *
@@ -2669,7 +2669,7 @@ export default (() => {
2669
2669
  * licenseKey: 'non-commercial-and-evaluation',
2670
2670
  * ```
2671
2671
  */
2672
- licenseKey: void 0,
2672
+ licenseKey: undefined,
2673
2673
  /**
2674
2674
  * The `locale` option configures Handsontable's [locale](@/guides/internationalization/locale.md) settings.
2675
2675
  *
@@ -2730,7 +2730,7 @@ export default (() => {
2730
2730
  * manualColumnFreeze: true,
2731
2731
  * ```
2732
2732
  */
2733
- manualColumnFreeze: void 0,
2733
+ manualColumnFreeze: undefined,
2734
2734
  /**
2735
2735
  * The `manualColumnMove` option configures the [`ManualColumnMove`](@/api/manualColumnMove.md) plugin.
2736
2736
  *
@@ -2762,7 +2762,7 @@ export default (() => {
2762
2762
  * manualColumnMove: [1, 4, 6],
2763
2763
  * ```
2764
2764
  */
2765
- manualColumnMove: void 0,
2765
+ manualColumnMove: undefined,
2766
2766
  /**
2767
2767
  * @description
2768
2768
  * The `manualColumnResize` option configures the [`ManualColumnResize`](@/api/manualColumnResize.md) plugin.
@@ -2795,7 +2795,7 @@ export default (() => {
2795
2795
  * manualColumnResize: [40, 50, 60],
2796
2796
  * ```
2797
2797
  */
2798
- manualColumnResize: void 0,
2798
+ manualColumnResize: undefined,
2799
2799
  /**
2800
2800
  * @description
2801
2801
  * The `manualRowMove` option configures the [`ManualRowMove`](@/api/manualRowMove.md) plugin.
@@ -2828,7 +2828,7 @@ export default (() => {
2828
2828
  * manualColumnMove: [1, 4, 6],
2829
2829
  * ```
2830
2830
  */
2831
- manualRowMove: void 0,
2831
+ manualRowMove: undefined,
2832
2832
  /**
2833
2833
  * @description
2834
2834
  * The `manualRowResize` option configures the [`ManualRowResize`](@/api/manualRowResize.md) plugin.
@@ -2861,7 +2861,7 @@ export default (() => {
2861
2861
  * manualRowResize: [40, 50, 60],
2862
2862
  * ```
2863
2863
  */
2864
- manualRowResize: void 0,
2864
+ manualRowResize: undefined,
2865
2865
  /**
2866
2866
  * The `maxCols` option sets a maximum number of columns.
2867
2867
  *
@@ -3123,7 +3123,7 @@ export default (() => {
3123
3123
  * }
3124
3124
  * ```
3125
3125
  */
3126
- multiColumnSorting: void 0,
3126
+ multiColumnSorting: undefined,
3127
3127
  /**
3128
3128
  * When set to `true`, the `navigableHeaders` option lets you navigate [row headers](@/guides/rows/row-header.md) and [column headers](@/guides/columns/column-header.md), using the arrow keys or the <kbd>**Tab**</kbd> key (if the [`disableTabNavigation`](#disabletabnavigation) option is set to `false`).
3129
3129
  *
@@ -3204,7 +3204,7 @@ export default (() => {
3204
3204
  * ],
3205
3205
  * ```
3206
3206
  */
3207
- nestedHeaders: void 0,
3207
+ nestedHeaders: undefined,
3208
3208
  /**
3209
3209
  * @description
3210
3210
  * The `nestedRows` option configures the [`NestedRows`](@/api/nestedRows.md) plugin.
@@ -3230,7 +3230,7 @@ export default (() => {
3230
3230
  * @default false
3231
3231
  * @category NestedRows
3232
3232
  */
3233
- nestedRows: void 0,
3233
+ nestedRows: undefined,
3234
3234
  /**
3235
3235
  * The `noWordWrapClassName` option lets you add a CSS class name
3236
3236
  * to each cell that has the [`wordWrap`](#wordWrap) option set to `false`.
@@ -3303,7 +3303,7 @@ export default (() => {
3303
3303
  * ],
3304
3304
  * ```
3305
3305
  */
3306
- numericFormat: void 0,
3306
+ numericFormat: undefined,
3307
3307
  /**
3308
3308
  * If the `observeDOMVisibility` option is set to `true`,
3309
3309
  * Handsontable rerenders every time it detects that the grid was made visible in the DOM.
@@ -3383,7 +3383,7 @@ export default (() => {
3383
3383
  * persistentState: true,
3384
3384
  * ```
3385
3385
  */
3386
- persistentState: void 0,
3386
+ persistentState: undefined,
3387
3387
  /**
3388
3388
  * The `placeholder` option lets you display placeholder text in every empty cell.
3389
3389
  *
@@ -3420,7 +3420,7 @@ export default (() => {
3420
3420
  * ],
3421
3421
  * ```
3422
3422
  */
3423
- placeholder: void 0,
3423
+ placeholder: undefined,
3424
3424
  /**
3425
3425
  * The `placeholderCellClassName` option lets you add a CSS class name to cells
3426
3426
  * that contain [`placeholder`](#placeholder) text.
@@ -3579,7 +3579,7 @@ export default (() => {
3579
3579
  * renderAllRows: true,
3580
3580
  * ```
3581
3581
  */
3582
- renderAllRows: void 0,
3582
+ renderAllRows: undefined,
3583
3583
  /**
3584
3584
  * @description
3585
3585
  * The `renderer` option sets a [cell renderer](@/guides/cell-functions/cell-renderer.md) for a cell.
@@ -3640,7 +3640,7 @@ export default (() => {
3640
3640
  * ]
3641
3641
  * ```
3642
3642
  */
3643
- renderer: void 0,
3643
+ renderer: undefined,
3644
3644
  /**
3645
3645
  * The `rowHeaders` option configures your grid's row headers.
3646
3646
  *
@@ -3675,7 +3675,7 @@ export default (() => {
3675
3675
  * },
3676
3676
  * ```
3677
3677
  */
3678
- rowHeaders: void 0,
3678
+ rowHeaders: undefined,
3679
3679
  /**
3680
3680
  * @description
3681
3681
  * The `rowHeaderWidth` option configures the width of row headers.
@@ -3701,7 +3701,7 @@ export default (() => {
3701
3701
  * rowHeaderWidth: [25, 30, 55],
3702
3702
  * ```
3703
3703
  */
3704
- rowHeaderWidth: void 0,
3704
+ rowHeaderWidth: undefined,
3705
3705
  /**
3706
3706
  * The `rowHeights` option sets rows' heights, in pixels.
3707
3707
  *
@@ -3747,7 +3747,7 @@ export default (() => {
3747
3747
  * },
3748
3748
  * ```
3749
3749
  */
3750
- rowHeights: void 0,
3750
+ rowHeights: undefined,
3751
3751
  /**
3752
3752
  * @description
3753
3753
  * The `search` option configures the [`Search`](@/api/search.md) plugin.
@@ -3888,7 +3888,7 @@ export default (() => {
3888
3888
  * ],
3889
3889
  * ```
3890
3890
  */
3891
- selectOptions: void 0,
3891
+ selectOptions: undefined,
3892
3892
  /**
3893
3893
  * @description
3894
3894
  * The `skipColumnOnPaste` option determines whether you can paste data into a given column.
@@ -4036,7 +4036,7 @@ export default (() => {
4036
4036
  * }],
4037
4037
  * ```
4038
4038
  */
4039
- source: void 0,
4039
+ source: undefined,
4040
4040
  /**
4041
4041
  * @description
4042
4042
  * If the [`data`](#data) option is not set, the `startCols` option sets the initial number of empty columns.
@@ -4135,7 +4135,7 @@ export default (() => {
4135
4135
  * ],
4136
4136
  * ```
4137
4137
  */
4138
- strict: void 0,
4138
+ strict: undefined,
4139
4139
  /**
4140
4140
  * The `tableClassName` option lets you add CSS class names
4141
4141
  * to every Handsontable instance inside the `container` element.
@@ -4175,7 +4175,7 @@ export default (() => {
4175
4175
  * tableClassName: ['first-class-name', 'second-class-name'],
4176
4176
  * ```
4177
4177
  */
4178
- tableClassName: void 0,
4178
+ tableClassName: undefined,
4179
4179
  /**
4180
4180
  * The `tabMoves` option configures the action of the <kbd>**Tab**</kbd> key.
4181
4181
  *
@@ -4241,7 +4241,7 @@ export default (() => {
4241
4241
  * ],
4242
4242
  * ```
4243
4243
  */
4244
- title: void 0,
4244
+ title: undefined,
4245
4245
  /**
4246
4246
  * The `trimDropdown` option configures the width of the [`autocomplete`](@/guides/cell-types/autocomplete-cell-type.md)
4247
4247
  * and [`dropdown`](@/guides/cell-types/dropdown-cell-type.md) lists.
@@ -4312,7 +4312,7 @@ export default (() => {
4312
4312
  * trimRows: [5, 10, 15],
4313
4313
  * ```
4314
4314
  */
4315
- trimRows: void 0,
4315
+ trimRows: undefined,
4316
4316
  /**
4317
4317
  * The `trimWhitespace` option configures automatic whitespace removal. This option
4318
4318
  * affects the cell renderer and the cell editor.
@@ -4436,7 +4436,7 @@ export default (() => {
4436
4436
  * ],
4437
4437
  * ```
4438
4438
  */
4439
- uncheckedTemplate: void 0,
4439
+ uncheckedTemplate: undefined,
4440
4440
  /**
4441
4441
  * The `undo` option configures the [`UndoRedo`](@/api/undoRedo.md) plugin.
4442
4442
  *
@@ -4466,7 +4466,7 @@ export default (() => {
4466
4466
  * undo: true,
4467
4467
  * ```
4468
4468
  */
4469
- undo: void 0,
4469
+ undo: undefined,
4470
4470
  /**
4471
4471
  * @description
4472
4472
  * The `validator` option sets a [cell validator](@/guides/cell-functions/cell-validator.md) for a cell.
@@ -4525,7 +4525,7 @@ export default (() => {
4525
4525
  * ],
4526
4526
  * ```
4527
4527
  */
4528
- validator: void 0,
4528
+ validator: undefined,
4529
4529
  /**
4530
4530
  * @description
4531
4531
  * The `viewportColumnRenderingOffset` option configures the number of columns
@@ -4648,7 +4648,7 @@ export default (() => {
4648
4648
  * },
4649
4649
  * ```
4650
4650
  */
4651
- width: void 0,
4651
+ width: undefined,
4652
4652
  /**
4653
4653
  * The `wordWrap` option configures whether content that exceeds a column's width is wrapped or not.
4654
4654
  *
@@ -1,10 +1,14 @@
1
1
  "use strict";
2
2
 
3
3
  exports.__esModule = true;
4
+ require("core-js/modules/es.error.cause.js");
4
5
  var _pluginHooks = _interopRequireDefault(require("../../../pluginHooks"));
5
6
  var _object = require("../../../helpers/object");
6
7
  var _function = require("../../../helpers/function");
7
8
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
9
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
10
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
11
+ function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
8
12
  /**
9
13
  * @class DynamicCellMetaMod
10
14
  *
@@ -25,11 +29,12 @@ class DynamicCellMetaMod {
25
29
  /**
26
30
  * @type {MetaManager}
27
31
  */
28
- this.metaManager = metaManager;
32
+ _defineProperty(this, "metaManager", void 0);
29
33
  /**
30
34
  * @type {Map}
31
35
  */
32
- this.metaSyncMemo = new Map();
36
+ _defineProperty(this, "metaSyncMemo", new Map());
37
+ this.metaManager = metaManager;
33
38
  metaManager.addLocalHook('afterGetCellMeta', cellMeta => this.extendCellMeta(cellMeta));
34
39
  _pluginHooks.default.getSingleton().add('beforeRender', forceFullRender => {
35
40
  if (forceFullRender) {
@@ -1,3 +1,7 @@
1
+ import "core-js/modules/es.error.cause.js";
2
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
3
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
4
+ function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
1
5
  import Hooks from "../../../pluginHooks.mjs";
2
6
  import { hasOwnProperty } from "../../../helpers/object.mjs";
3
7
  import { isFunction } from "../../../helpers/function.mjs";
@@ -21,11 +25,12 @@ export class DynamicCellMetaMod {
21
25
  /**
22
26
  * @type {MetaManager}
23
27
  */
24
- this.metaManager = metaManager;
28
+ _defineProperty(this, "metaManager", void 0);
25
29
  /**
26
30
  * @type {Map}
27
31
  */
28
- this.metaSyncMemo = new Map();
32
+ _defineProperty(this, "metaSyncMemo", new Map());
33
+ this.metaManager = metaManager;
29
34
  metaManager.addLocalHook('afterGetCellMeta', cellMeta => this.extendCellMeta(cellMeta));
30
35
  Hooks.getSingleton().add('beforeRender', forceFullRender => {
31
36
  if (forceFullRender) {
@@ -2,6 +2,9 @@
2
2
 
3
3
  exports.__esModule = true;
4
4
  require("core-js/modules/es.error.cause.js");
5
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
7
+ function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
5
8
  /**
6
9
  * @class ExtendMetaPropertiesMod
7
10
  */
@@ -10,15 +13,15 @@ class ExtendMetaPropertiesMod {
10
13
  /**
11
14
  * @type {MetaManager}
12
15
  */
13
- this.metaManager = metaManager;
16
+ _defineProperty(this, "metaManager", void 0);
14
17
  /**
15
18
  * @type {Set}
16
19
  */
17
- this.usageTracker = new Set();
20
+ _defineProperty(this, "usageTracker", new Set());
18
21
  /**
19
22
  * @type {Map}
20
23
  */
21
- this.propDescriptors = new Map([['ariaTags', {
24
+ _defineProperty(this, "propDescriptors", new Map([['ariaTags', {
22
25
  onChange(propName, value, isInitialChange) {
23
26
  if (!isInitialChange) {
24
27
  throw new Error(`The \`${propName}\` option can not be updated after the Handsontable instance was initialized.`);
@@ -41,7 +44,8 @@ class ExtendMetaPropertiesMod {
41
44
  throw new Error(`The \`${propName}\` option can not be updated after the Handsontable is initialized.`);
42
45
  }
43
46
  }
44
- }]]);
47
+ }]]));
48
+ this.metaManager = metaManager;
45
49
  this.extendMetaProps();
46
50
  }
47
51
 
@@ -1,4 +1,7 @@
1
1
  import "core-js/modules/es.error.cause.js";
2
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
3
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
4
+ function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
2
5
  /**
3
6
  * @class ExtendMetaPropertiesMod
4
7
  */
@@ -7,15 +10,15 @@ export class ExtendMetaPropertiesMod {
7
10
  /**
8
11
  * @type {MetaManager}
9
12
  */
10
- this.metaManager = metaManager;
13
+ _defineProperty(this, "metaManager", void 0);
11
14
  /**
12
15
  * @type {Set}
13
16
  */
14
- this.usageTracker = new Set();
17
+ _defineProperty(this, "usageTracker", new Set());
15
18
  /**
16
19
  * @type {Map}
17
20
  */
18
- this.propDescriptors = new Map([['ariaTags', {
21
+ _defineProperty(this, "propDescriptors", new Map([['ariaTags', {
19
22
  onChange(propName, value, isInitialChange) {
20
23
  if (!isInitialChange) {
21
24
  throw new Error(`The \`${propName}\` option can not be updated after the Handsontable instance was initialized.`);
@@ -38,7 +41,8 @@ export class ExtendMetaPropertiesMod {
38
41
  throw new Error(`The \`${propName}\` option can not be updated after the Handsontable is initialized.`);
39
42
  }
40
43
  }
41
- }]]);
44
+ }]]));
45
+ this.metaManager = metaManager;
42
46
  this.extendMetaProps();
43
47
  }
44
48
 
@@ -83,7 +83,7 @@ function columnFactory(TableMeta) {
83
83
 
84
84
  // Clear conflict settings
85
85
  for (let i = 0; i < conflictList.length; i++) {
86
- ColumnMeta.prototype[conflictList[i]] = void 0;
86
+ ColumnMeta.prototype[conflictList[i]] = undefined;
87
87
  }
88
88
  return ColumnMeta;
89
89
  }
@@ -117,5 +117,5 @@ function assert(condition, errorMessage) {
117
117
  * @returns {boolean}
118
118
  */
119
119
  function isNullish(variable) {
120
- return variable === null || variable === void 0;
120
+ return variable === null || variable === undefined;
121
121
  }
@@ -75,7 +75,7 @@ export function columnFactory(TableMeta) {
75
75
 
76
76
  // Clear conflict settings
77
77
  for (let i = 0; i < conflictList.length; i++) {
78
- ColumnMeta.prototype[conflictList[i]] = void 0;
78
+ ColumnMeta.prototype[conflictList[i]] = undefined;
79
79
  }
80
80
  return ColumnMeta;
81
81
  }
@@ -109,5 +109,5 @@ export function assert(condition, errorMessage) {
109
109
  * @returns {boolean}
110
110
  */
111
111
  export function isNullish(variable) {
112
- return variable === null || variable === void 0;
112
+ return variable === null || variable === undefined;
113
113
  }
@@ -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-7026906-20231107
29
- * Release date: 31/08/2023 (built at 07/11/2023 12:00:19)
28
+ * Version: 0.0.0-next-7b93b7d-20231107
29
+ * Release date: 31/08/2023 (built at 07/11/2023 14:24:49)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
@@ -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-7026906-20231107
29
- * Release date: 31/08/2023 (built at 07/11/2023 12:00:19)
28
+ * Version: 0.0.0-next-7b93b7d-20231107
29
+ * Release date: 31/08/2023 (built at 07/11/2023 14:24:49)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles