handsontable 14.0.0-next-07c0a60-20231107 → 14.0.0-next-7ee54cb-20231108

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 (328) 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/cell/coords.js +7 -5
  10. package/3rdparty/walkontable/src/cell/coords.mjs +7 -5
  11. package/3rdparty/walkontable/src/core/clone.js +6 -0
  12. package/3rdparty/walkontable/src/core/clone.mjs +6 -0
  13. package/3rdparty/walkontable/src/event.js +125 -74
  14. package/3rdparty/walkontable/src/event.mjs +125 -74
  15. package/3rdparty/walkontable/src/filter/column.js +16 -0
  16. package/3rdparty/walkontable/src/filter/column.mjs +16 -0
  17. package/3rdparty/walkontable/src/filter/row.js +16 -0
  18. package/3rdparty/walkontable/src/filter/row.mjs +16 -0
  19. package/3rdparty/walkontable/src/overlay/bottom.js +1 -1
  20. package/3rdparty/walkontable/src/overlay/bottom.mjs +1 -1
  21. package/3rdparty/walkontable/src/overlay/top.js +1 -1
  22. package/3rdparty/walkontable/src/overlay/top.mjs +1 -1
  23. package/3rdparty/walkontable/src/renderer/_base.js +12 -5
  24. package/3rdparty/walkontable/src/renderer/_base.mjs +12 -5
  25. package/3rdparty/walkontable/src/renderer/cells.js +6 -2
  26. package/3rdparty/walkontable/src/renderer/cells.mjs +6 -2
  27. package/3rdparty/walkontable/src/renderer/rowHeaders.js +6 -2
  28. package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +6 -2
  29. package/3rdparty/walkontable/src/renderer/rows.js +5 -0
  30. package/3rdparty/walkontable/src/renderer/rows.mjs +5 -0
  31. package/3rdparty/walkontable/src/renderer/table.js +24 -17
  32. package/3rdparty/walkontable/src/renderer/table.mjs +24 -17
  33. package/3rdparty/walkontable/src/scroll.js +2 -2
  34. package/3rdparty/walkontable/src/scroll.mjs +2 -2
  35. package/3rdparty/walkontable/src/selection/border/border.js +1 -1
  36. package/3rdparty/walkontable/src/selection/border/border.mjs +1 -1
  37. package/3rdparty/walkontable/src/settings.js +10 -10
  38. package/3rdparty/walkontable/src/settings.mjs +10 -10
  39. package/3rdparty/walkontable/src/table.js +3 -3
  40. package/3rdparty/walkontable/src/table.mjs +3 -3
  41. package/3rdparty/walkontable/src/utils/column.js +19 -4
  42. package/3rdparty/walkontable/src/utils/column.mjs +19 -4
  43. package/3rdparty/walkontable/src/utils/nodesPool.js +5 -0
  44. package/3rdparty/walkontable/src/utils/nodesPool.mjs +5 -0
  45. package/3rdparty/walkontable/src/utils/orderView/view.js +13 -6
  46. package/3rdparty/walkontable/src/utils/orderView/view.mjs +13 -6
  47. package/3rdparty/walkontable/src/utils/orderView/viewSize.js +9 -6
  48. package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +9 -6
  49. package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +7 -4
  50. package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +7 -4
  51. package/3rdparty/walkontable/src/utils/row.js +14 -2
  52. package/3rdparty/walkontable/src/utils/row.mjs +14 -2
  53. package/3rdparty/walkontable/src/viewport.js +9 -9
  54. package/3rdparty/walkontable/src/viewport.mjs +9 -9
  55. package/base.js +2 -2
  56. package/base.mjs +2 -2
  57. package/core.js +31 -26
  58. package/core.mjs +31 -26
  59. package/dataMap/dataMap.js +99 -90
  60. package/dataMap/dataMap.mjs +99 -90
  61. package/dataMap/dataSource.js +14 -8
  62. package/dataMap/dataSource.mjs +14 -8
  63. package/dataMap/metaManager/lazyFactoryMap.js +19 -7
  64. package/dataMap/metaManager/lazyFactoryMap.mjs +19 -7
  65. package/dataMap/metaManager/metaLayers/cellMeta.js +8 -3
  66. package/dataMap/metaManager/metaLayers/cellMeta.mjs +8 -3
  67. package/dataMap/metaManager/metaLayers/columnMeta.js +7 -1
  68. package/dataMap/metaManager/metaLayers/columnMeta.mjs +7 -1
  69. package/dataMap/metaManager/metaLayers/globalMeta.js +6 -1
  70. package/dataMap/metaManager/metaLayers/globalMeta.mjs +6 -1
  71. package/dataMap/metaManager/metaLayers/tableMeta.js +6 -2
  72. package/dataMap/metaManager/metaLayers/tableMeta.mjs +6 -2
  73. package/dataMap/metaManager/metaSchema.js +55 -55
  74. package/dataMap/metaManager/metaSchema.mjs +55 -55
  75. package/dataMap/metaManager/mods/dynamicCellMeta.js +7 -2
  76. package/dataMap/metaManager/mods/dynamicCellMeta.mjs +7 -2
  77. package/dataMap/metaManager/mods/extendMetaProperties.js +8 -4
  78. package/dataMap/metaManager/mods/extendMetaProperties.mjs +8 -4
  79. package/dataMap/metaManager/utils.js +2 -2
  80. package/dataMap/metaManager/utils.mjs +2 -2
  81. package/dist/handsontable.css +2 -2
  82. package/dist/handsontable.full.css +2 -2
  83. package/dist/handsontable.full.js +7337 -6394
  84. package/dist/handsontable.full.min.css +2 -2
  85. package/dist/handsontable.full.min.js +154 -154
  86. package/dist/handsontable.js +7336 -6393
  87. package/dist/handsontable.min.css +2 -2
  88. package/dist/handsontable.min.js +28 -28
  89. package/editorManager.js +105 -95
  90. package/editorManager.mjs +105 -95
  91. package/editors/autocompleteEditor/autocompleteEditor.js +47 -46
  92. package/editors/autocompleteEditor/autocompleteEditor.mjs +46 -45
  93. package/editors/baseEditor/baseEditor.js +23 -26
  94. package/editors/baseEditor/baseEditor.mjs +23 -26
  95. package/editors/dateEditor/dateEditor.js +24 -15
  96. package/editors/dateEditor/dateEditor.mjs +24 -15
  97. package/editors/dropdownEditor/dropdownEditor.js +1 -1
  98. package/editors/dropdownEditor/dropdownEditor.mjs +1 -1
  99. package/editors/handsontableEditor/handsontableEditor.js +4 -4
  100. package/editors/handsontableEditor/handsontableEditor.mjs +4 -4
  101. package/editors/textEditor/textEditor.js +23 -17
  102. package/editors/textEditor/textEditor.mjs +24 -18
  103. package/eventManager.js +8 -0
  104. package/eventManager.mjs +8 -0
  105. package/helpers/array.js +2 -2
  106. package/helpers/array.mjs +2 -2
  107. package/helpers/dom/element.js +7 -7
  108. package/helpers/dom/element.mjs +7 -7
  109. package/helpers/function.js +1 -1
  110. package/helpers/function.mjs +1 -1
  111. package/helpers/mixed.js +1 -1
  112. package/helpers/mixed.mjs +1 -1
  113. package/helpers/object.js +4 -4
  114. package/helpers/object.mjs +4 -4
  115. package/helpers/string.js +1 -1
  116. package/helpers/string.mjs +1 -1
  117. package/package.json +1 -1
  118. package/pluginHooks.d.ts +0 -2
  119. package/pluginHooks.js +12 -3
  120. package/pluginHooks.mjs +12 -3
  121. package/plugins/autoColumnSize/autoColumnSize.js +141 -130
  122. package/plugins/autoColumnSize/autoColumnSize.mjs +140 -129
  123. package/plugins/autoRowSize/autoRowSize.js +112 -125
  124. package/plugins/autoRowSize/autoRowSize.mjs +110 -123
  125. package/plugins/autofill/autofill.js +98 -102
  126. package/plugins/autofill/autofill.mjs +97 -101
  127. package/plugins/base/base.js +61 -28
  128. package/plugins/base/base.mjs +60 -28
  129. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +29 -24
  130. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +28 -23
  131. package/plugins/collapsibleColumns/collapsibleColumns.js +104 -107
  132. package/plugins/collapsibleColumns/collapsibleColumns.mjs +102 -104
  133. package/plugins/columnSorting/columnSorting.js +107 -99
  134. package/plugins/columnSorting/columnSorting.mjs +106 -98
  135. package/plugins/columnSorting/columnStatesManager.js +12 -6
  136. package/plugins/columnSorting/columnStatesManager.mjs +12 -6
  137. package/plugins/columnSummary/columnSummary.js +71 -58
  138. package/plugins/columnSummary/columnSummary.mjs +70 -57
  139. package/plugins/columnSummary/endpoints.js +20 -14
  140. package/plugins/columnSummary/endpoints.mjs +20 -14
  141. package/plugins/comments/commentEditor.js +30 -2
  142. package/plugins/comments/commentEditor.mjs +30 -2
  143. package/plugins/comments/comments.js +158 -169
  144. package/plugins/comments/comments.mjs +157 -168
  145. package/plugins/comments/displaySwitch.js +7 -3
  146. package/plugins/comments/displaySwitch.mjs +7 -3
  147. package/plugins/contextMenu/commandExecutor.js +15 -2
  148. package/plugins/contextMenu/commandExecutor.mjs +15 -2
  149. package/plugins/contextMenu/contextMenu.js +96 -102
  150. package/plugins/contextMenu/contextMenu.mjs +95 -101
  151. package/plugins/contextMenu/itemsFactory.js +19 -4
  152. package/plugins/contextMenu/itemsFactory.mjs +19 -4
  153. package/plugins/contextMenu/menu/cursor.js +36 -0
  154. package/plugins/contextMenu/menu/cursor.mjs +36 -0
  155. package/plugins/contextMenu/menu/menu.js +57 -5
  156. package/plugins/contextMenu/menu/menu.mjs +57 -5
  157. package/plugins/contextMenu/predefinedItems/removeColumn.js +1 -1
  158. package/plugins/contextMenu/predefinedItems/removeColumn.mjs +1 -1
  159. package/plugins/contextMenu/predefinedItems/removeRow.js +1 -1
  160. package/plugins/contextMenu/predefinedItems/removeRow.mjs +1 -1
  161. package/plugins/copyPaste/copyPaste.js +74 -75
  162. package/plugins/copyPaste/copyPaste.mjs +74 -75
  163. package/plugins/customBorders/customBorders.js +57 -50
  164. package/plugins/customBorders/customBorders.mjs +56 -49
  165. package/plugins/dragToScroll/dragToScroll.js +50 -54
  166. package/plugins/dragToScroll/dragToScroll.mjs +49 -52
  167. package/plugins/dropdownMenu/dropdownMenu.js +136 -131
  168. package/plugins/dropdownMenu/dropdownMenu.mjs +136 -131
  169. package/plugins/exportFile/dataProvider.js +7 -2
  170. package/plugins/exportFile/dataProvider.mjs +7 -2
  171. package/plugins/exportFile/exportFile.js +1 -1
  172. package/plugins/exportFile/exportFile.mjs +1 -1
  173. package/plugins/exportFile/types/_base.js +14 -6
  174. package/plugins/exportFile/types/_base.mjs +14 -6
  175. package/plugins/filters/component/actionBar.js +9 -0
  176. package/plugins/filters/component/actionBar.mjs +9 -0
  177. package/plugins/filters/component/condition.js +13 -0
  178. package/plugins/filters/component/condition.mjs +13 -0
  179. package/plugins/filters/component/operators.js +9 -0
  180. package/plugins/filters/component/operators.mjs +9 -0
  181. package/plugins/filters/component/value.js +9 -0
  182. package/plugins/filters/component/value.mjs +9 -0
  183. package/plugins/filters/conditionCollection.js +9 -4
  184. package/plugins/filters/conditionCollection.mjs +9 -4
  185. package/plugins/filters/conditionUpdateObserver.js +53 -42
  186. package/plugins/filters/conditionUpdateObserver.mjs +53 -42
  187. package/plugins/filters/dataFilter.js +9 -3
  188. package/plugins/filters/dataFilter.mjs +9 -3
  189. package/plugins/filters/filters.js +184 -189
  190. package/plugins/filters/filters.mjs +182 -187
  191. package/plugins/filters/ui/_base.js +1 -1
  192. package/plugins/filters/ui/_base.mjs +1 -1
  193. package/plugins/filters/utils.js +1 -1
  194. package/plugins/filters/utils.mjs +1 -1
  195. package/plugins/formulas/engine/settings.js +1 -1
  196. package/plugins/formulas/engine/settings.mjs +1 -1
  197. package/plugins/formulas/formulas.js +684 -602
  198. package/plugins/formulas/formulas.mjs +682 -600
  199. package/plugins/hiddenColumns/hiddenColumns.js +174 -169
  200. package/plugins/hiddenColumns/hiddenColumns.mjs +173 -168
  201. package/plugins/hiddenRows/hiddenRows.js +170 -165
  202. package/plugins/hiddenRows/hiddenRows.mjs +169 -164
  203. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +1 -1
  204. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +1 -1
  205. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +1 -1
  206. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +1 -1
  207. package/plugins/manualColumnFreeze/manualColumnFreeze.js +66 -53
  208. package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +64 -51
  209. package/plugins/manualColumnMove/manualColumnMove.js +287 -232
  210. package/plugins/manualColumnMove/manualColumnMove.mjs +286 -231
  211. package/plugins/manualColumnMove/ui/_base.js +9 -3
  212. package/plugins/manualColumnMove/ui/_base.mjs +9 -3
  213. package/plugins/manualColumnResize/manualColumnResize.js +291 -246
  214. package/plugins/manualColumnResize/manualColumnResize.mjs +290 -244
  215. package/plugins/manualRowMove/manualRowMove.js +223 -208
  216. package/plugins/manualRowMove/manualRowMove.mjs +222 -207
  217. package/plugins/manualRowMove/ui/_base.js +10 -5
  218. package/plugins/manualRowMove/ui/_base.mjs +10 -5
  219. package/plugins/manualRowResize/manualRowResize.js +254 -209
  220. package/plugins/manualRowResize/manualRowResize.mjs +253 -207
  221. package/plugins/mergeCells/calculations/autofill.js +9 -3
  222. package/plugins/mergeCells/calculations/autofill.mjs +9 -3
  223. package/plugins/mergeCells/calculations/selection.js +10 -4
  224. package/plugins/mergeCells/calculations/selection.mjs +10 -4
  225. package/plugins/mergeCells/cellCoords.js +16 -6
  226. package/plugins/mergeCells/cellCoords.mjs +16 -6
  227. package/plugins/mergeCells/cellsCollection.js +10 -4
  228. package/plugins/mergeCells/cellsCollection.mjs +10 -4
  229. package/plugins/mergeCells/mergeCells.js +582 -502
  230. package/plugins/mergeCells/mergeCells.mjs +580 -500
  231. package/plugins/multiColumnSorting/multiColumnSorting.js +15 -11
  232. package/plugins/multiColumnSorting/multiColumnSorting.mjs +15 -11
  233. package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +16 -28
  234. package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +16 -27
  235. package/plugins/nestedHeaders/nestedHeaders.js +542 -499
  236. package/plugins/nestedHeaders/nestedHeaders.mjs +554 -511
  237. package/plugins/nestedHeaders/stateManager/index.js +1 -1
  238. package/plugins/nestedHeaders/stateManager/index.mjs +1 -1
  239. package/plugins/nestedRows/data/dataManager.js +21 -15
  240. package/plugins/nestedRows/data/dataManager.mjs +21 -15
  241. package/plugins/nestedRows/nestedRows.js +328 -279
  242. package/plugins/nestedRows/nestedRows.mjs +327 -278
  243. package/plugins/nestedRows/ui/_base.js +7 -1
  244. package/plugins/nestedRows/ui/_base.mjs +7 -1
  245. package/plugins/nestedRows/ui/collapsing.js +2 -2
  246. package/plugins/nestedRows/ui/collapsing.mjs +2 -2
  247. package/plugins/nestedRows/ui/contextMenu.js +28 -18
  248. package/plugins/nestedRows/ui/contextMenu.mjs +28 -18
  249. package/plugins/nestedRows/utils/rowMoveController.js +12 -4
  250. package/plugins/nestedRows/utils/rowMoveController.mjs +12 -4
  251. package/plugins/persistentState/persistentState.js +14 -11
  252. package/plugins/persistentState/persistentState.mjs +14 -11
  253. package/plugins/persistentState/storage.js +11 -6
  254. package/plugins/persistentState/storage.mjs +11 -6
  255. package/plugins/registry.js +2 -2
  256. package/plugins/registry.mjs +2 -2
  257. package/plugins/search/search.js +57 -46
  258. package/plugins/search/search.mjs +56 -45
  259. package/plugins/touchScroll/touchScroll.js +102 -100
  260. package/plugins/touchScroll/touchScroll.mjs +100 -98
  261. package/plugins/trimRows/trimRows.js +33 -28
  262. package/plugins/trimRows/trimRows.mjs +32 -27
  263. package/plugins/undoRedo/undoRedo.js +2 -2
  264. package/plugins/undoRedo/undoRedo.mjs +2 -2
  265. package/renderers/autocompleteRenderer/autocompleteRenderer.js +11 -11
  266. package/renderers/autocompleteRenderer/autocompleteRenderer.mjs +11 -11
  267. package/renderers/baseRenderer/baseRenderer.js +2 -2
  268. package/renderers/baseRenderer/baseRenderer.mjs +2 -2
  269. package/renderers/checkboxRenderer/checkboxRenderer.js +23 -23
  270. package/renderers/checkboxRenderer/checkboxRenderer.mjs +23 -23
  271. package/renderers/dateRenderer/dateRenderer.js +4 -4
  272. package/renderers/dateRenderer/dateRenderer.mjs +4 -4
  273. package/renderers/handsontableRenderer/handsontableRenderer.js +4 -4
  274. package/renderers/handsontableRenderer/handsontableRenderer.mjs +4 -4
  275. package/renderers/htmlRenderer/htmlRenderer.js +4 -4
  276. package/renderers/htmlRenderer/htmlRenderer.mjs +4 -4
  277. package/renderers/numericRenderer/numericRenderer.js +3 -3
  278. package/renderers/numericRenderer/numericRenderer.mjs +3 -3
  279. package/renderers/passwordRenderer/passwordRenderer.js +3 -3
  280. package/renderers/passwordRenderer/passwordRenderer.mjs +3 -3
  281. package/renderers/selectRenderer/selectRenderer.js +4 -4
  282. package/renderers/selectRenderer/selectRenderer.mjs +4 -4
  283. package/renderers/textRenderer/textRenderer.js +5 -5
  284. package/renderers/textRenderer/textRenderer.mjs +5 -5
  285. package/renderers/timeRenderer/timeRenderer.js +3 -3
  286. package/renderers/timeRenderer/timeRenderer.mjs +3 -3
  287. package/selection/highlight/highlight.js +1 -4
  288. package/selection/highlight/highlight.mjs +1 -4
  289. package/selection/range.js +12 -2
  290. package/selection/range.mjs +12 -2
  291. package/selection/selection.js +28 -10
  292. package/selection/selection.mjs +28 -10
  293. package/selection/utils.js +24 -14
  294. package/selection/utils.mjs +25 -15
  295. package/shortcuts/manager.js +1 -1
  296. package/shortcuts/manager.mjs +1 -1
  297. package/tableView.js +208 -200
  298. package/tableView.mjs +208 -200
  299. package/translations/changesObservable/utils.js +2 -2
  300. package/translations/changesObservable/utils.mjs +2 -2
  301. package/translations/indexMapper.js +25 -22
  302. package/translations/indexMapper.mjs +25 -22
  303. package/translations/mapCollections/aggregatedCollection.js +8 -2
  304. package/translations/mapCollections/aggregatedCollection.mjs +8 -2
  305. package/translations/mapCollections/mapCollection.js +5 -2
  306. package/translations/mapCollections/mapCollection.mjs +5 -2
  307. package/translations/maps/indexMap.js +6 -1
  308. package/translations/maps/indexMap.mjs +6 -1
  309. package/translations/maps/utils/physicallyIndexed.js +2 -2
  310. package/translations/maps/utils/physicallyIndexed.mjs +2 -2
  311. package/utils/dataStructures/linkedList.js +10 -6
  312. package/utils/dataStructures/linkedList.mjs +10 -6
  313. package/utils/dataStructures/queue.js +1 -1
  314. package/utils/dataStructures/queue.mjs +1 -1
  315. package/utils/dataStructures/stack.js +1 -1
  316. package/utils/dataStructures/stack.mjs +1 -1
  317. package/utils/ghostTable.js +2 -2
  318. package/utils/ghostTable.mjs +2 -2
  319. package/utils/interval.js +73 -36
  320. package/utils/interval.mjs +73 -36
  321. package/utils/parseTable.js +1 -1
  322. package/utils/parseTable.mjs +1 -1
  323. package/validators/autocompleteValidator/autocompleteValidator.js +1 -1
  324. package/validators/autocompleteValidator/autocompleteValidator.mjs +1 -1
  325. package/validators/dateValidator/dateValidator.js +1 -1
  326. package/validators/dateValidator/dateValidator.mjs +1 -1
  327. package/validators/numericValidator/numericValidator.js +1 -1
  328. package/validators/numericValidator/numericValidator.mjs +1 -1
@@ -1,13 +1,15 @@
1
1
  import "core-js/modules/es.error.cause.js";
2
2
  function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
3
3
  function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
4
+ 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; }
5
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
6
+ 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); }
4
7
  function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
5
8
  import { BasePlugin } from "../base/index.mjs";
6
9
  import { arrayEach } from "../../helpers/array.mjs";
7
10
  import { objectEach } from "../../helpers/object.mjs";
8
11
  import { CommandExecutor } from "../contextMenu/commandExecutor.mjs";
9
12
  import { getDocumentOffsetByElement } from "../contextMenu/utils.mjs";
10
- import EventManager from "../../eventManager.mjs";
11
13
  import { hasClass, setAttribute } from "../../helpers/dom/element.mjs";
12
14
  import { ItemsFactory } from "../contextMenu/itemsFactory.mjs";
13
15
  import { Menu } from "../contextMenu/menu/index.mjs";
@@ -76,6 +78,12 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
76
78
  * :::
77
79
  */
78
80
  var _addCustomShortcuts = /*#__PURE__*/new WeakSet();
81
+ var _onTableClick = /*#__PURE__*/new WeakSet();
82
+ var _onAfterGetColHeader = /*#__PURE__*/new WeakSet();
83
+ var _onMenuBeforeOpen = /*#__PURE__*/new WeakSet();
84
+ var _onMenuAfterOpen = /*#__PURE__*/new WeakSet();
85
+ var _onSubMenuAfterOpen = /*#__PURE__*/new WeakSet();
86
+ var _onMenuAfterClose = /*#__PURE__*/new WeakSet();
79
87
  export class DropdownMenu extends BasePlugin {
80
88
  static get PLUGIN_KEY() {
81
89
  return PLUGIN_KEY;
@@ -95,45 +103,83 @@ export class DropdownMenu extends BasePlugin {
95
103
  static get DEFAULT_ITEMS() {
96
104
  return [COLUMN_LEFT, COLUMN_RIGHT, SEPARATOR, REMOVE_COLUMN, SEPARATOR, CLEAR_COLUMN, SEPARATOR, READ_ONLY, SEPARATOR, ALIGNMENT];
97
105
  }
106
+
107
+ /**
108
+ * Instance of {@link CommandExecutor}.
109
+ *
110
+ * @private
111
+ * @type {CommandExecutor}
112
+ */
113
+
98
114
  constructor(hotInstance) {
99
115
  super(hotInstance);
116
+
117
+ // One listener for enable/disable functionality
100
118
  /**
101
- * Instance of {@link EventManager}.
119
+ * On menu after close listener.
102
120
  *
103
121
  * @private
104
- * @type {EventManager}
122
+ * @fires Hooks#afterDropdownMenuHide
105
123
  */
124
+ _classPrivateMethodInitSpec(this, _onMenuAfterClose);
106
125
  /**
107
- * Add custom shortcuts to the provided menu instance.
126
+ * Listener for the `afterSubmenuOpen` hook.
108
127
  *
109
- * @param {Menu} menuInstance The menu instance.
128
+ * @private
129
+ * @param {Menu} subMenuInstance The opened sub menu instance.
110
130
  */
111
- _classPrivateMethodInitSpec(this, _addCustomShortcuts);
112
- this.eventManager = new EventManager(this);
131
+ _classPrivateMethodInitSpec(this, _onSubMenuAfterOpen);
132
+ /**
133
+ * On menu after open listener.
134
+ *
135
+ * @private
136
+ * @fires Hooks#afterDropdownMenuShow
137
+ */
138
+ _classPrivateMethodInitSpec(this, _onMenuAfterOpen);
139
+ /**
140
+ * On menu before open listener.
141
+ *
142
+ * @private
143
+ * @fires Hooks#beforeDropdownMenuShow
144
+ */
145
+ _classPrivateMethodInitSpec(this, _onMenuBeforeOpen);
113
146
  /**
114
- * Instance of {@link CommandExecutor}.
147
+ * On after get column header listener.
115
148
  *
116
149
  * @private
117
- * @type {CommandExecutor}
150
+ * @param {number} col Visual column index.
151
+ * @param {HTMLTableCellElement} TH Header's TH element.
118
152
  */
119
- this.commandExecutor = new CommandExecutor(this.hot);
153
+ _classPrivateMethodInitSpec(this, _onAfterGetColHeader);
154
+ /**
155
+ * Table click listener.
156
+ *
157
+ * @private
158
+ * @param {Event} event The mouse event object.
159
+ */
160
+ _classPrivateMethodInitSpec(this, _onTableClick);
161
+ /**
162
+ * Add custom shortcuts to the provided menu instance.
163
+ *
164
+ * @param {Menu} menuInstance The menu instance.
165
+ */
166
+ _classPrivateMethodInitSpec(this, _addCustomShortcuts);
167
+ _defineProperty(this, "commandExecutor", new CommandExecutor(this.hot));
120
168
  /**
121
169
  * Instance of {@link ItemsFactory}.
122
170
  *
123
171
  * @private
124
172
  * @type {ItemsFactory}
125
173
  */
126
- this.itemsFactory = null;
174
+ _defineProperty(this, "itemsFactory", null);
127
175
  /**
128
176
  * Instance of {@link Menu}.
129
177
  *
130
178
  * @private
131
179
  * @type {Menu}
132
180
  */
133
- this.menu = null;
134
-
135
- // One listener for enable/disable functionality
136
- this.hot.addHook('afterGetColHeader', (col, TH) => this.onAfterGetColHeader(col, TH));
181
+ _defineProperty(this, "menu", null);
182
+ this.hot.addHook('afterGetColHeader', (col, TH) => _classPrivateMethodGet(this, _onAfterGetColHeader, _onAfterGetColHeader2).call(this, col, TH));
137
183
  }
138
184
 
139
185
  /**
@@ -182,10 +228,10 @@ export class DropdownMenu extends BasePlugin {
182
228
  });
183
229
  this.hot.runHooks('beforeDropdownMenuSetItems', menuItems);
184
230
  this.menu.setMenuItems(menuItems);
185
- this.menu.addLocalHook('beforeOpen', () => this.onMenuBeforeOpen());
186
- this.menu.addLocalHook('afterOpen', () => this.onMenuAfterOpen());
187
- this.menu.addLocalHook('afterSubmenuOpen', subMenuInstance => this.onSubMenuAfterOpen(subMenuInstance));
188
- this.menu.addLocalHook('afterClose', () => this.onMenuAfterClose());
231
+ this.menu.addLocalHook('beforeOpen', () => _classPrivateMethodGet(this, _onMenuBeforeOpen, _onMenuBeforeOpen2).call(this));
232
+ this.menu.addLocalHook('afterOpen', () => _classPrivateMethodGet(this, _onMenuAfterOpen, _onMenuAfterOpen2).call(this));
233
+ this.menu.addLocalHook('afterSubmenuOpen', subMenuInstance => _classPrivateMethodGet(this, _onSubMenuAfterOpen, _onSubMenuAfterOpen2).call(this, subMenuInstance));
234
+ this.menu.addLocalHook('afterClose', () => _classPrivateMethodGet(this, _onMenuAfterClose, _onMenuAfterClose2).call(this));
189
235
  this.menu.addLocalHook('executeCommand', function () {
190
236
  for (var _len = arguments.length, params = new Array(_len), _key = 0; _key < _len; _key++) {
191
237
  params[_key] = arguments[_key];
@@ -254,7 +300,8 @@ export class DropdownMenu extends BasePlugin {
254
300
  callback,
255
301
  runOnlyIf: () => {
256
302
  var _this$hot$getSelected;
257
- return ((_this$hot$getSelected = this.hot.getSelectedRangeLast()) === null || _this$hot$getSelected === void 0 ? void 0 : _this$hot$getSelected.highlight.isHeader()) && !this.menu.isOpened();
303
+ const highlight = (_this$hot$getSelected = this.hot.getSelectedRangeLast()) === null || _this$hot$getSelected === void 0 ? void 0 : _this$hot$getSelected.highlight;
304
+ return highlight && this.hot.selection.isCellVisible(highlight) && highlight.isHeader() && !this.menu.isOpened();
258
305
  },
259
306
  captureCtrl: true,
260
307
  group: SHORTCUTS_GROUP
@@ -263,7 +310,8 @@ export class DropdownMenu extends BasePlugin {
263
310
  callback,
264
311
  runOnlyIf: () => {
265
312
  var _this$hot$getSelected2;
266
- return ((_this$hot$getSelected2 = this.hot.getSelectedRangeLast()) === null || _this$hot$getSelected2 === void 0 ? void 0 : _this$hot$getSelected2.highlight.isCell()) && !this.menu.isOpened();
313
+ const highlight = (_this$hot$getSelected2 = this.hot.getSelectedRangeLast()) === null || _this$hot$getSelected2 === void 0 ? void 0 : _this$hot$getSelected2.highlight;
314
+ return highlight && this.hot.selection.isCellVisible(highlight) && highlight.isCell() && !this.menu.isOpened();
267
315
  },
268
316
  group: SHORTCUTS_GROUP
269
317
  }]);
@@ -284,7 +332,7 @@ export class DropdownMenu extends BasePlugin {
284
332
  * @private
285
333
  */
286
334
  registerEvents() {
287
- this.eventManager.addEventListener(this.hot.rootElement, 'click', event => this.onTableClick(event));
335
+ this.eventManager.addEventListener(this.hot.rootElement, 'click', event => _classPrivateMethodGet(this, _onTableClick, _onTableClick2).call(this, event));
288
336
  }
289
337
 
290
338
  /**
@@ -378,115 +426,6 @@ export class DropdownMenu extends BasePlugin {
378
426
  }
379
427
  }
380
428
  }
381
- /**
382
- * Table click listener.
383
- *
384
- * @private
385
- * @param {Event} event The mouse event object.
386
- */
387
- onTableClick(event) {
388
- event.stopPropagation();
389
- if (hasClass(event.target, BUTTON_CLASS_NAME)) {
390
- const offset = getDocumentOffsetByElement(this.menu.container, this.hot.rootDocument);
391
- const rect = event.target.getBoundingClientRect();
392
- this.open({
393
- left: rect.left + offset.left,
394
- top: rect.top + event.target.offsetHeight + 3 + offset.top
395
- }, {
396
- left: rect.width
397
- });
398
- }
399
- }
400
-
401
- /**
402
- * On after get column header listener.
403
- *
404
- * @private
405
- * @param {number} col Visual column index.
406
- * @param {HTMLTableCellElement} TH Header's TH element.
407
- */
408
- onAfterGetColHeader(col, TH) {
409
- // Corner or a higher-level header
410
- const headerRow = TH.parentNode;
411
- if (!headerRow) {
412
- return;
413
- }
414
- const headerRowList = headerRow.parentNode.childNodes;
415
- const level = Array.prototype.indexOf.call(headerRowList, headerRow);
416
- if (col < 0 || level !== headerRowList.length - 1) {
417
- return;
418
- }
419
- const existingButton = TH.querySelector(`.${BUTTON_CLASS_NAME}`);
420
-
421
- // Plugin enabled and buttons already exists, return.
422
- if (this.enabled && existingButton) {
423
- return;
424
- }
425
- // Plugin disabled and buttons still exists, so remove them.
426
- if (!this.enabled) {
427
- if (existingButton) {
428
- existingButton.parentNode.removeChild(existingButton);
429
- }
430
- return;
431
- }
432
- const button = this.hot.rootDocument.createElement('button');
433
- button.className = BUTTON_CLASS_NAME;
434
- button.type = 'button';
435
- button.tabIndex = -1;
436
- if (this.hot.getSettings().ariaTags) {
437
- setAttribute(button, [A11Y_LABEL(this.hot.getTranslatedPhrase(COLUMN_HEADER_LABEL_OPEN_MENU))]);
438
- setAttribute(TH, [A11Y_HASPOPUP('menu')]);
439
- }
440
-
441
- // prevent page reload on button click
442
- button.onclick = function () {
443
- return false;
444
- };
445
- TH.firstChild.insertBefore(button, TH.firstChild.firstChild);
446
- }
447
-
448
- /**
449
- * On menu before open listener.
450
- *
451
- * @private
452
- * @fires Hooks#beforeDropdownMenuShow
453
- */
454
- onMenuBeforeOpen() {
455
- this.hot.runHooks('beforeDropdownMenuShow', this);
456
- }
457
-
458
- /**
459
- * On menu after open listener.
460
- *
461
- * @private
462
- * @fires Hooks#afterDropdownMenuShow
463
- */
464
- onMenuAfterOpen() {
465
- this.hot.runHooks('afterDropdownMenuShow', this);
466
- _classPrivateMethodGet(this, _addCustomShortcuts, _addCustomShortcuts2).call(this, this.menu);
467
- }
468
-
469
- /**
470
- * Listener for the `afterSubmenuOpen` hook.
471
- *
472
- * @private
473
- * @param {Menu} subMenuInstance The opened sub menu instance.
474
- */
475
- onSubMenuAfterOpen(subMenuInstance) {
476
- _classPrivateMethodGet(this, _addCustomShortcuts, _addCustomShortcuts2).call(this, subMenuInstance);
477
- }
478
-
479
- /**
480
- * On menu after close listener.
481
- *
482
- * @private
483
- * @fires Hooks#afterDropdownMenuHide
484
- */
485
- onMenuAfterClose() {
486
- this.hot.listen();
487
- this.hot.runHooks('afterDropdownMenuHide', this);
488
- }
489
-
490
429
  /**
491
430
  * Destroys the plugin instance.
492
431
  */
@@ -504,6 +443,72 @@ function _addCustomShortcuts2(menuInstance) {
504
443
  callback: () => false
505
444
  }]);
506
445
  }
446
+ function _onTableClick2(event) {
447
+ event.stopPropagation();
448
+ if (hasClass(event.target, BUTTON_CLASS_NAME)) {
449
+ const offset = getDocumentOffsetByElement(this.menu.container, this.hot.rootDocument);
450
+ const rect = event.target.getBoundingClientRect();
451
+ this.open({
452
+ left: rect.left + offset.left,
453
+ top: rect.top + event.target.offsetHeight + 3 + offset.top
454
+ }, {
455
+ left: rect.width
456
+ });
457
+ }
458
+ }
459
+ function _onAfterGetColHeader2(col, TH) {
460
+ // Corner or a higher-level header
461
+ const headerRow = TH.parentNode;
462
+ if (!headerRow) {
463
+ return;
464
+ }
465
+ const headerRowList = headerRow.parentNode.childNodes;
466
+ const level = Array.prototype.indexOf.call(headerRowList, headerRow);
467
+ if (col < 0 || level !== headerRowList.length - 1) {
468
+ return;
469
+ }
470
+ const existingButton = TH.querySelector(`.${BUTTON_CLASS_NAME}`);
471
+
472
+ // Plugin enabled and buttons already exists, return.
473
+ if (this.enabled && existingButton) {
474
+ return;
475
+ }
476
+ // Plugin disabled and buttons still exists, so remove them.
477
+ if (!this.enabled) {
478
+ if (existingButton) {
479
+ existingButton.parentNode.removeChild(existingButton);
480
+ }
481
+ return;
482
+ }
483
+ const button = this.hot.rootDocument.createElement('button');
484
+ button.className = BUTTON_CLASS_NAME;
485
+ button.type = 'button';
486
+ button.tabIndex = -1;
487
+ if (this.hot.getSettings().ariaTags) {
488
+ setAttribute(button, [A11Y_LABEL(this.hot.getTranslatedPhrase(COLUMN_HEADER_LABEL_OPEN_MENU))]);
489
+ setAttribute(TH, [A11Y_HASPOPUP('menu')]);
490
+ }
491
+
492
+ // prevent page reload on button click
493
+ button.onclick = function () {
494
+ return false;
495
+ };
496
+ TH.firstChild.insertBefore(button, TH.firstChild.firstChild);
497
+ }
498
+ function _onMenuBeforeOpen2() {
499
+ this.hot.runHooks('beforeDropdownMenuShow', this);
500
+ }
501
+ function _onMenuAfterOpen2() {
502
+ this.hot.runHooks('afterDropdownMenuShow', this);
503
+ _classPrivateMethodGet(this, _addCustomShortcuts, _addCustomShortcuts2).call(this, this.menu);
504
+ }
505
+ function _onSubMenuAfterOpen2(subMenuInstance) {
506
+ _classPrivateMethodGet(this, _addCustomShortcuts, _addCustomShortcuts2).call(this, subMenuInstance);
507
+ }
508
+ function _onMenuAfterClose2() {
509
+ this.hot.listen();
510
+ this.hot.runHooks('afterDropdownMenuHide', this);
511
+ }
507
512
  DropdownMenu.SEPARATOR = {
508
513
  name: SEPARATOR
509
514
  };
@@ -2,7 +2,11 @@
2
2
 
3
3
  exports.__esModule = true;
4
4
  require("core-js/modules/es.array.push.js");
5
+ require("core-js/modules/es.error.cause.js");
5
6
  var _number = require("../../helpers/number");
7
+ 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; }
8
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
9
+ 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); }
6
10
  /**
7
11
  * @private
8
12
  */
@@ -13,13 +17,14 @@ class DataProvider {
13
17
  *
14
18
  * @type {Core}
15
19
  */
16
- this.hot = hotInstance;
20
+ _defineProperty(this, "hot", void 0);
17
21
  /**
18
22
  * Format type class options.
19
23
  *
20
24
  * @type {object}
21
25
  */
22
- this.options = {};
26
+ _defineProperty(this, "options", {});
27
+ this.hot = hotInstance;
23
28
  }
24
29
 
25
30
  /**
@@ -1,4 +1,8 @@
1
1
  import "core-js/modules/es.array.push.js";
2
+ import "core-js/modules/es.error.cause.js";
3
+ 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; }
4
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
5
+ 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
6
  import { rangeEach } from "../../helpers/number.mjs";
3
7
  /**
4
8
  * @private
@@ -10,13 +14,14 @@ class DataProvider {
10
14
  *
11
15
  * @type {Core}
12
16
  */
13
- this.hot = hotInstance;
17
+ _defineProperty(this, "hot", void 0);
14
18
  /**
15
19
  * Format type class options.
16
20
  *
17
21
  * @type {object}
18
22
  */
19
- this.options = {};
23
+ _defineProperty(this, "options", {});
24
+ this.hot = hotInstance;
20
25
  }
21
26
 
22
27
  /**
@@ -159,7 +159,7 @@ class ExportFile extends _base.BasePlugin {
159
159
  const URL = rootWindow.URL || rootWindow.webkitURL;
160
160
  const a = rootDocument.createElement('a');
161
161
  const name = `${formatter.options.filename}.${formatter.options.fileExtension}`;
162
- if (a.download !== void 0) {
162
+ if (a.download !== undefined) {
163
163
  const url = URL.createObjectURL(blob);
164
164
  a.style.display = 'none';
165
165
  a.setAttribute('href', url);
@@ -153,7 +153,7 @@ export class ExportFile extends BasePlugin {
153
153
  const URL = rootWindow.URL || rootWindow.webkitURL;
154
154
  const a = rootDocument.createElement('a');
155
155
  const name = `${formatter.options.filename}.${formatter.options.fileExtension}`;
156
- if (a.download !== void 0) {
156
+ if (a.download !== undefined) {
157
157
  const url = URL.createObjectURL(blob);
158
158
  a.style.display = 'none';
159
159
  a.setAttribute('href', url);
@@ -1,8 +1,12 @@
1
1
  "use strict";
2
2
 
3
3
  exports.__esModule = true;
4
+ require("core-js/modules/es.error.cause.js");
4
5
  var _object = require("../../../helpers/object");
5
6
  var _string = require("../../../helpers/string");
7
+ 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; }
8
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
9
+ 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); }
6
10
  /**
7
11
  * @private
8
12
  */
@@ -26,18 +30,22 @@ class BaseType {
26
30
  range: []
27
31
  };
28
32
  }
33
+
34
+ /**
35
+ * Data provider.
36
+ *
37
+ * @type {DataProvider}
38
+ */
39
+
29
40
  constructor(dataProvider, options) {
30
- /**
31
- * Data provider.
32
- *
33
- * @type {DataProvider}
34
- */
35
- this.dataProvider = dataProvider;
41
+ _defineProperty(this, "dataProvider", void 0);
36
42
  /**
37
43
  * Format type class options.
38
44
  *
39
45
  * @type {object}
40
46
  */
47
+ _defineProperty(this, "options", void 0);
48
+ this.dataProvider = dataProvider;
41
49
  this.options = this._mergeOptions(options);
42
50
  this.dataProvider.setOptions(this.options);
43
51
  }
@@ -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 { extend, clone } from "../../../helpers/object.mjs";
2
6
  import { substitute } from "../../../helpers/string.mjs";
3
7
  /**
@@ -23,18 +27,22 @@ class BaseType {
23
27
  range: []
24
28
  };
25
29
  }
30
+
31
+ /**
32
+ * Data provider.
33
+ *
34
+ * @type {DataProvider}
35
+ */
36
+
26
37
  constructor(dataProvider, options) {
27
- /**
28
- * Data provider.
29
- *
30
- * @type {DataProvider}
31
- */
32
- this.dataProvider = dataProvider;
38
+ _defineProperty(this, "dataProvider", void 0);
33
39
  /**
34
40
  * Format type class options.
35
41
  *
36
42
  * @type {object}
37
43
  */
44
+ _defineProperty(this, "options", void 0);
45
+ this.dataProvider = dataProvider;
38
46
  this.options = this._mergeOptions(options);
39
47
  this.dataProvider.setOptions(this.options);
40
48
  }
@@ -13,6 +13,9 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
13
13
  function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
14
14
  function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
15
15
  function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
16
+ 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; }
17
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
18
+ 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); }
16
19
  function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
17
20
  /**
18
21
  * @private
@@ -38,6 +41,12 @@ class ActionBarComponent extends _base.BaseComponent {
38
41
  * @param {InputUI} button InputUI object.
39
42
  */
40
43
  _classPrivateMethodInitSpec(this, _onButtonClick);
44
+ /**
45
+ * The name of the component.
46
+ *
47
+ * @type {string}
48
+ */
49
+ _defineProperty(this, "name", '');
41
50
  this.name = options.name;
42
51
  this.elements.push(new _input.InputUI(this.hot, {
43
52
  type: 'button',
@@ -3,6 +3,9 @@ var _class;
3
3
  import "core-js/modules/es.array.push.js";
4
4
  function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
5
5
  function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
6
+ 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; }
7
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
8
+ 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); }
6
9
  function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
7
10
  import { addClass } from "../../../helpers/dom/element.mjs";
8
11
  import { arrayEach } from "../../../helpers/array.mjs";
@@ -33,6 +36,12 @@ export class ActionBarComponent extends BaseComponent {
33
36
  * @param {InputUI} button InputUI object.
34
37
  */
35
38
  _classPrivateMethodInitSpec(this, _onButtonClick);
39
+ /**
40
+ * The name of the component.
41
+ *
42
+ * @type {string}
43
+ */
44
+ _defineProperty(this, "name", '');
36
45
  this.name = options.name;
37
46
  this.elements.push(new InputUI(this.hot, {
38
47
  type: 'button',
@@ -18,6 +18,9 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
18
18
  function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
19
19
  function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
20
20
  function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
21
+ 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; }
22
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
23
+ 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); }
21
24
  function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
22
25
  /**
23
26
  * @private
@@ -43,6 +46,16 @@ class ConditionComponent extends _base.BaseComponent {
43
46
  * @param {object} command Menu item object (command).
44
47
  */
45
48
  _classPrivateMethodInitSpec(this, _onConditionSelect);
49
+ /**
50
+ * The name of the component.
51
+ *
52
+ * @type {string}
53
+ */
54
+ _defineProperty(this, "name", '');
55
+ /**
56
+ * @type {boolean}
57
+ */
58
+ _defineProperty(this, "addSeparator", false);
46
59
  this.name = options.name;
47
60
  this.addSeparator = options.addSeparator;
48
61
  this.elements.push(new _select.SelectUI(this.hot, {
@@ -2,6 +2,9 @@ import "core-js/modules/es.array.push.js";
2
2
  import "core-js/modules/es.error.cause.js";
3
3
  function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
4
4
  function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
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
  function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
6
9
  import { addClass } from "../../../helpers/dom/element.mjs";
7
10
  import { stopImmediatePropagation } from "../../../helpers/dom/event.mjs";
@@ -38,6 +41,16 @@ export class ConditionComponent extends BaseComponent {
38
41
  * @param {object} command Menu item object (command).
39
42
  */
40
43
  _classPrivateMethodInitSpec(this, _onConditionSelect);
44
+ /**
45
+ * The name of the component.
46
+ *
47
+ * @type {string}
48
+ */
49
+ _defineProperty(this, "name", '');
50
+ /**
51
+ * @type {boolean}
52
+ */
53
+ _defineProperty(this, "addSeparator", false);
41
54
  this.name = options.name;
42
55
  this.addSeparator = options.addSeparator;
43
56
  this.elements.push(new SelectUI(this.hot, {
@@ -14,6 +14,9 @@ var _disjunctionWithExtraCondition = require("../logicalOperations/disjunctionWi
14
14
  var _radioInput = require("../ui/radioInput");
15
15
  function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
16
16
  function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
17
+ 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; }
18
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
19
+ 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); }
17
20
  function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
18
21
  const SELECTED_AT_START_ELEMENT_INDEX = 0;
19
22
 
@@ -34,6 +37,12 @@ class OperatorsComponent extends _base.BaseComponent {
34
37
  * @param {Event} event The DOM event object.
35
38
  */
36
39
  _classPrivateMethodInitSpec(this, _onRadioInputChange);
40
+ /**
41
+ * The name of the component.
42
+ *
43
+ * @type {string}
44
+ */
45
+ _defineProperty(this, "name", '');
37
46
  this.name = options.name;
38
47
  this.buildOperatorsElement();
39
48
  }