handsontable 0.0.0-next-9f084c0-20221208 → 0.0.0-next-ff80711-20221214

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 (562) hide show
  1. package/3rdparty/walkontable/src/border.js +11 -5
  2. package/3rdparty/walkontable/src/border.mjs +8 -2
  3. package/3rdparty/walkontable/src/calculator/viewportColumns.js +10 -1
  4. package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +10 -1
  5. package/3rdparty/walkontable/src/calculator/viewportRows.js +10 -1
  6. package/3rdparty/walkontable/src/calculator/viewportRows.mjs +10 -1
  7. package/3rdparty/walkontable/src/cell/coords.js +11 -2
  8. package/3rdparty/walkontable/src/cell/coords.mjs +11 -2
  9. package/3rdparty/walkontable/src/cell/range.js +11 -2
  10. package/3rdparty/walkontable/src/cell/range.mjs +11 -2
  11. package/3rdparty/walkontable/src/core/_base.js +15 -2
  12. package/3rdparty/walkontable/src/core/_base.mjs +15 -2
  13. package/3rdparty/walkontable/src/core/clone.js +11 -6
  14. package/3rdparty/walkontable/src/core/clone.mjs +11 -6
  15. package/3rdparty/walkontable/src/core/core.js +6 -1
  16. package/3rdparty/walkontable/src/core/core.mjs +6 -1
  17. package/3rdparty/walkontable/src/event.js +10 -1
  18. package/3rdparty/walkontable/src/event.mjs +10 -1
  19. package/3rdparty/walkontable/src/facade/core.js +14 -1
  20. package/3rdparty/walkontable/src/facade/core.mjs +14 -1
  21. package/3rdparty/walkontable/src/filter/column.js +14 -1
  22. package/3rdparty/walkontable/src/filter/column.mjs +14 -1
  23. package/3rdparty/walkontable/src/filter/row.js +14 -1
  24. package/3rdparty/walkontable/src/filter/row.mjs +14 -1
  25. package/3rdparty/walkontable/src/overlay/_base.js +15 -2
  26. package/3rdparty/walkontable/src/overlay/_base.mjs +15 -2
  27. package/3rdparty/walkontable/src/overlay/bottom.js +11 -6
  28. package/3rdparty/walkontable/src/overlay/bottom.mjs +11 -6
  29. package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.js +6 -1
  30. package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.mjs +6 -1
  31. package/3rdparty/walkontable/src/overlay/inlineStart.js +6 -1
  32. package/3rdparty/walkontable/src/overlay/inlineStart.mjs +6 -1
  33. package/3rdparty/walkontable/src/overlay/top.js +11 -6
  34. package/3rdparty/walkontable/src/overlay/top.mjs +11 -6
  35. package/3rdparty/walkontable/src/overlay/topInlineStartCorner.js +11 -6
  36. package/3rdparty/walkontable/src/overlay/topInlineStartCorner.mjs +11 -6
  37. package/3rdparty/walkontable/src/overlays.js +14 -2
  38. package/3rdparty/walkontable/src/overlays.mjs +14 -2
  39. package/3rdparty/walkontable/src/renderer/_base.js +14 -1
  40. package/3rdparty/walkontable/src/renderer/_base.mjs +14 -1
  41. package/3rdparty/walkontable/src/renderer/cells.js +6 -1
  42. package/3rdparty/walkontable/src/renderer/cells.mjs +6 -1
  43. package/3rdparty/walkontable/src/renderer/colGroup.js +6 -1
  44. package/3rdparty/walkontable/src/renderer/colGroup.mjs +6 -1
  45. package/3rdparty/walkontable/src/renderer/columnHeaders.js +6 -1
  46. package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +6 -1
  47. package/3rdparty/walkontable/src/renderer/index.js +14 -1
  48. package/3rdparty/walkontable/src/renderer/index.mjs +14 -1
  49. package/3rdparty/walkontable/src/renderer/rowHeaders.js +6 -1
  50. package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +6 -1
  51. package/3rdparty/walkontable/src/renderer/rows.js +8 -3
  52. package/3rdparty/walkontable/src/renderer/rows.mjs +8 -3
  53. package/3rdparty/walkontable/src/renderer/table.js +14 -1
  54. package/3rdparty/walkontable/src/renderer/table.mjs +14 -1
  55. package/3rdparty/walkontable/src/scroll.js +14 -2
  56. package/3rdparty/walkontable/src/scroll.mjs +14 -2
  57. package/3rdparty/walkontable/src/selection.js +9 -4
  58. package/3rdparty/walkontable/src/selection.mjs +7 -2
  59. package/3rdparty/walkontable/src/settings.js +15 -2
  60. package/3rdparty/walkontable/src/settings.mjs +15 -2
  61. package/3rdparty/walkontable/src/table/bottom.js +6 -1
  62. package/3rdparty/walkontable/src/table/bottom.mjs +6 -1
  63. package/3rdparty/walkontable/src/table/bottomInlineStartCorner.js +6 -1
  64. package/3rdparty/walkontable/src/table/bottomInlineStartCorner.mjs +6 -1
  65. package/3rdparty/walkontable/src/table/inlineStart.js +6 -1
  66. package/3rdparty/walkontable/src/table/inlineStart.mjs +6 -1
  67. package/3rdparty/walkontable/src/table/master.js +6 -1
  68. package/3rdparty/walkontable/src/table/master.mjs +6 -1
  69. package/3rdparty/walkontable/src/table/top.js +6 -1
  70. package/3rdparty/walkontable/src/table/top.mjs +6 -1
  71. package/3rdparty/walkontable/src/table/topInlineStartCorner.js +6 -1
  72. package/3rdparty/walkontable/src/table/topInlineStartCorner.mjs +6 -1
  73. package/3rdparty/walkontable/src/table.js +11 -5
  74. package/3rdparty/walkontable/src/table.mjs +9 -3
  75. package/3rdparty/walkontable/src/utils/column.js +10 -1
  76. package/3rdparty/walkontable/src/utils/column.mjs +10 -1
  77. package/3rdparty/walkontable/src/utils/nodesPool.js +14 -1
  78. package/3rdparty/walkontable/src/utils/nodesPool.mjs +14 -1
  79. package/3rdparty/walkontable/src/utils/orderView/sharedView.js +6 -1
  80. package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +6 -1
  81. package/3rdparty/walkontable/src/utils/orderView/view.js +14 -1
  82. package/3rdparty/walkontable/src/utils/orderView/view.mjs +14 -1
  83. package/3rdparty/walkontable/src/utils/orderView/viewSize.js +14 -1
  84. package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +14 -1
  85. package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +14 -1
  86. package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +14 -1
  87. package/3rdparty/walkontable/src/utils/row.js +14 -1
  88. package/3rdparty/walkontable/src/utils/row.mjs +14 -1
  89. package/3rdparty/walkontable/src/viewport.js +14 -1
  90. package/3rdparty/walkontable/src/viewport.mjs +14 -1
  91. package/CHANGELOG.md +172 -66
  92. package/base.js +2 -2
  93. package/base.mjs +2 -2
  94. package/core.js +1 -1
  95. package/core.mjs +1 -1
  96. package/dataMap/dataMap.js +7 -3
  97. package/dataMap/dataMap.mjs +5 -1
  98. package/dataMap/dataSource.js +12 -1
  99. package/dataMap/dataSource.mjs +12 -1
  100. package/dataMap/metaManager/index.js +13 -1
  101. package/dataMap/metaManager/index.mjs +13 -1
  102. package/dataMap/metaManager/lazyFactoryMap.js +7 -1
  103. package/dataMap/metaManager/lazyFactoryMap.mjs +7 -1
  104. package/dataMap/metaManager/metaLayers/cellMeta.js +9 -3
  105. package/dataMap/metaManager/metaLayers/cellMeta.mjs +7 -1
  106. package/dataMap/metaManager/metaLayers/columnMeta.js +14 -1
  107. package/dataMap/metaManager/metaLayers/columnMeta.mjs +14 -1
  108. package/dataMap/metaManager/metaLayers/globalMeta.js +15 -4
  109. package/dataMap/metaManager/metaLayers/globalMeta.mjs +15 -4
  110. package/dataMap/metaManager/metaLayers/tableMeta.js +14 -1
  111. package/dataMap/metaManager/metaLayers/tableMeta.mjs +14 -1
  112. package/dataMap/metaManager/mods/dynamicCellMeta.js +10 -1
  113. package/dataMap/metaManager/mods/dynamicCellMeta.mjs +10 -1
  114. package/dataMap/metaManager/mods/extendMetaProperties.js +10 -1
  115. package/dataMap/metaManager/mods/extendMetaProperties.mjs +10 -1
  116. package/dist/handsontable.css +9 -9
  117. package/dist/handsontable.full.css +9 -9
  118. package/dist/handsontable.full.js +2868 -7667
  119. package/dist/handsontable.full.min.css +2 -2
  120. package/dist/handsontable.full.min.js +76 -82
  121. package/dist/handsontable.js +1796 -1759
  122. package/dist/handsontable.min.css +2 -2
  123. package/dist/handsontable.min.js +3 -3
  124. package/dist/languages/all.js +106 -60
  125. package/dist/languages/all.min.js +1 -1
  126. package/dist/languages/ar-AR.js +50 -4
  127. package/dist/languages/ar-AR.min.js +1 -1
  128. package/dist/languages/cs-CZ.js +52 -6
  129. package/dist/languages/cs-CZ.min.js +1 -1
  130. package/dist/languages/de-CH.js +52 -6
  131. package/dist/languages/de-CH.min.js +1 -1
  132. package/dist/languages/de-DE.js +53 -7
  133. package/dist/languages/de-DE.min.js +1 -1
  134. package/dist/languages/en-US.js +55 -9
  135. package/dist/languages/en-US.min.js +1 -1
  136. package/dist/languages/es-MX.js +55 -9
  137. package/dist/languages/es-MX.min.js +1 -1
  138. package/dist/languages/fr-FR.js +55 -9
  139. package/dist/languages/fr-FR.min.js +1 -1
  140. package/dist/languages/it-IT.js +55 -9
  141. package/dist/languages/it-IT.min.js +1 -1
  142. package/dist/languages/ja-JP.js +83 -33
  143. package/dist/languages/ja-JP.min.js +1 -1
  144. package/dist/languages/ko-KR.js +84 -33
  145. package/dist/languages/ko-KR.min.js +1 -1
  146. package/dist/languages/lv-LV.js +85 -33
  147. package/dist/languages/lv-LV.min.js +1 -1
  148. package/dist/languages/nb-NO.js +86 -33
  149. package/dist/languages/nb-NO.min.js +1 -1
  150. package/dist/languages/nl-NL.js +87 -33
  151. package/dist/languages/nl-NL.min.js +1 -1
  152. package/dist/languages/pl-PL.js +88 -33
  153. package/dist/languages/pl-PL.min.js +1 -1
  154. package/dist/languages/pt-BR.js +68 -19
  155. package/dist/languages/pt-BR.min.js +1 -1
  156. package/dist/languages/ru-RU.js +68 -19
  157. package/dist/languages/ru-RU.min.js +1 -1
  158. package/dist/languages/sr-SP.js +55 -6
  159. package/dist/languages/sr-SP.min.js +1 -1
  160. package/dist/languages/zh-CN.js +55 -6
  161. package/dist/languages/zh-CN.min.js +1 -1
  162. package/dist/languages/zh-TW.js +55 -6
  163. package/dist/languages/zh-TW.min.js +1 -1
  164. package/editorManager.js +11 -5
  165. package/editorManager.mjs +8 -2
  166. package/editors/autocompleteEditor/autocompleteEditor.js +10 -5
  167. package/editors/autocompleteEditor/autocompleteEditor.mjs +9 -4
  168. package/editors/baseEditor/baseEditor.js +11 -6
  169. package/editors/baseEditor/baseEditor.mjs +10 -5
  170. package/editors/checkboxEditor/checkboxEditor.js +6 -1
  171. package/editors/checkboxEditor/checkboxEditor.mjs +6 -1
  172. package/editors/dateEditor/dateEditor.js +6 -1
  173. package/editors/dateEditor/dateEditor.mjs +6 -1
  174. package/editors/dropdownEditor/dropdownEditor.js +6 -1
  175. package/editors/dropdownEditor/dropdownEditor.mjs +6 -1
  176. package/editors/handsontableEditor/handsontableEditor.js +6 -1
  177. package/editors/handsontableEditor/handsontableEditor.mjs +6 -1
  178. package/editors/numericEditor/numericEditor.js +6 -1
  179. package/editors/numericEditor/numericEditor.mjs +6 -1
  180. package/editors/passwordEditor/passwordEditor.js +6 -1
  181. package/editors/passwordEditor/passwordEditor.mjs +6 -1
  182. package/editors/selectEditor/selectEditor.js +6 -1
  183. package/editors/selectEditor/selectEditor.mjs +6 -1
  184. package/editors/textEditor/textEditor.js +7 -2
  185. package/editors/textEditor/textEditor.mjs +7 -2
  186. package/editors/timeEditor/timeEditor.js +6 -1
  187. package/editors/timeEditor/timeEditor.mjs +6 -1
  188. package/eventManager.js +14 -1
  189. package/eventManager.mjs +14 -1
  190. package/helpers/mixed.js +2 -2
  191. package/helpers/mixed.mjs +2 -2
  192. package/helpers/object.js +6 -1
  193. package/helpers/object.mjs +6 -1
  194. package/i18n/languages/ar-AR.js +12 -7
  195. package/i18n/languages/ar-AR.mjs +14 -1
  196. package/i18n/languages/cs-CZ.js +12 -7
  197. package/i18n/languages/cs-CZ.mjs +14 -1
  198. package/i18n/languages/de-CH.js +12 -7
  199. package/i18n/languages/de-CH.mjs +14 -1
  200. package/i18n/languages/de-DE.js +12 -7
  201. package/i18n/languages/de-DE.mjs +14 -1
  202. package/i18n/languages/en-US.js +12 -7
  203. package/i18n/languages/en-US.mjs +14 -1
  204. package/i18n/languages/es-MX.js +12 -7
  205. package/i18n/languages/es-MX.mjs +14 -1
  206. package/i18n/languages/fr-FR.js +12 -7
  207. package/i18n/languages/fr-FR.mjs +14 -1
  208. package/i18n/languages/it-IT.js +12 -7
  209. package/i18n/languages/it-IT.mjs +14 -1
  210. package/i18n/languages/ja-JP.js +12 -7
  211. package/i18n/languages/ja-JP.mjs +14 -1
  212. package/i18n/languages/ko-KR.js +12 -7
  213. package/i18n/languages/ko-KR.mjs +14 -1
  214. package/i18n/languages/lv-LV.js +12 -7
  215. package/i18n/languages/lv-LV.mjs +14 -1
  216. package/i18n/languages/nb-NO.js +12 -7
  217. package/i18n/languages/nb-NO.mjs +14 -1
  218. package/i18n/languages/nl-NL.js +12 -7
  219. package/i18n/languages/nl-NL.mjs +14 -1
  220. package/i18n/languages/pl-PL.js +12 -7
  221. package/i18n/languages/pl-PL.mjs +14 -1
  222. package/i18n/languages/pt-BR.js +12 -7
  223. package/i18n/languages/pt-BR.mjs +14 -1
  224. package/i18n/languages/ru-RU.js +12 -7
  225. package/i18n/languages/ru-RU.mjs +14 -1
  226. package/i18n/languages/sr-SP.js +12 -7
  227. package/i18n/languages/sr-SP.mjs +14 -1
  228. package/i18n/languages/zh-CN.js +12 -7
  229. package/i18n/languages/zh-CN.mjs +14 -1
  230. package/i18n/languages/zh-TW.js +12 -7
  231. package/i18n/languages/zh-TW.mjs +14 -1
  232. package/languages/all.js +106 -60
  233. package/languages/ar-AR.js +50 -4
  234. package/languages/ar-AR.mjs +14 -1
  235. package/languages/cs-CZ.js +52 -6
  236. package/languages/cs-CZ.mjs +14 -1
  237. package/languages/de-CH.js +52 -6
  238. package/languages/de-CH.mjs +14 -1
  239. package/languages/de-DE.js +53 -7
  240. package/languages/de-DE.mjs +14 -1
  241. package/languages/en-US.js +55 -9
  242. package/languages/en-US.mjs +14 -1
  243. package/languages/es-MX.js +55 -9
  244. package/languages/es-MX.mjs +14 -1
  245. package/languages/fr-FR.js +55 -9
  246. package/languages/fr-FR.mjs +14 -1
  247. package/languages/index.js +106 -60
  248. package/languages/it-IT.js +55 -9
  249. package/languages/it-IT.mjs +14 -1
  250. package/languages/ja-JP.js +83 -33
  251. package/languages/ja-JP.mjs +14 -1
  252. package/languages/ko-KR.js +84 -33
  253. package/languages/ko-KR.mjs +14 -1
  254. package/languages/lv-LV.js +85 -33
  255. package/languages/lv-LV.mjs +14 -1
  256. package/languages/nb-NO.js +86 -33
  257. package/languages/nb-NO.mjs +14 -1
  258. package/languages/nl-NL.js +87 -33
  259. package/languages/nl-NL.mjs +14 -1
  260. package/languages/pl-PL.js +88 -33
  261. package/languages/pl-PL.mjs +14 -1
  262. package/languages/pt-BR.js +68 -19
  263. package/languages/pt-BR.mjs +14 -1
  264. package/languages/ru-RU.js +68 -19
  265. package/languages/ru-RU.mjs +14 -1
  266. package/languages/sr-SP.js +55 -6
  267. package/languages/sr-SP.mjs +14 -1
  268. package/languages/zh-CN.js +55 -6
  269. package/languages/zh-CN.mjs +14 -1
  270. package/languages/zh-TW.js +55 -6
  271. package/languages/zh-TW.mjs +14 -1
  272. package/package.json +1 -1
  273. package/pluginHooks.js +10 -1
  274. package/pluginHooks.mjs +10 -1
  275. package/plugins/autoColumnSize/autoColumnSize.js +7 -2
  276. package/plugins/autoColumnSize/autoColumnSize.mjs +7 -2
  277. package/plugins/autoRowSize/autoRowSize.js +7 -2
  278. package/plugins/autoRowSize/autoRowSize.mjs +7 -2
  279. package/plugins/autofill/autofill.js +7 -2
  280. package/plugins/autofill/autofill.mjs +7 -2
  281. package/plugins/base/base.js +8 -2
  282. package/plugins/base/base.mjs +8 -2
  283. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +6 -1
  284. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +6 -1
  285. package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +6 -1
  286. package/plugins/bindRowsWithHeaders/maps/looseBindsMap.mjs +6 -1
  287. package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +6 -1
  288. package/plugins/bindRowsWithHeaders/maps/strictBindsMap.mjs +6 -1
  289. package/plugins/collapsibleColumns/collapsibleColumns.js +10 -5
  290. package/plugins/collapsibleColumns/collapsibleColumns.mjs +9 -4
  291. package/plugins/columnSorting/columnSorting.js +8 -4
  292. package/plugins/columnSorting/columnSorting.mjs +8 -4
  293. package/plugins/columnSorting/columnStatesManager.js +12 -6
  294. package/plugins/columnSorting/columnStatesManager.mjs +9 -3
  295. package/plugins/columnSummary/columnSummary.js +8 -3
  296. package/plugins/columnSummary/columnSummary.mjs +8 -3
  297. package/plugins/columnSummary/endpoints.js +13 -1
  298. package/plugins/columnSummary/endpoints.mjs +13 -1
  299. package/plugins/comments/commentEditor.js +14 -1
  300. package/plugins/comments/commentEditor.mjs +14 -1
  301. package/plugins/comments/comments.js +7 -2
  302. package/plugins/comments/comments.mjs +7 -2
  303. package/plugins/comments/displaySwitch.js +14 -1
  304. package/plugins/comments/displaySwitch.mjs +14 -1
  305. package/plugins/contextMenu/commandExecutor.js +14 -1
  306. package/plugins/contextMenu/commandExecutor.mjs +14 -1
  307. package/plugins/contextMenu/contextMenu.js +6 -1
  308. package/plugins/contextMenu/contextMenu.mjs +6 -1
  309. package/plugins/contextMenu/cursor.js +14 -1
  310. package/plugins/contextMenu/cursor.mjs +14 -1
  311. package/plugins/contextMenu/itemsFactory.js +14 -1
  312. package/plugins/contextMenu/itemsFactory.mjs +14 -1
  313. package/plugins/contextMenu/menu.js +14 -3
  314. package/plugins/contextMenu/menu.mjs +13 -2
  315. package/plugins/contextMenu/predefinedItems/removeColumn.js +1 -1
  316. package/plugins/contextMenu/predefinedItems/removeColumn.mjs +1 -1
  317. package/plugins/contextMenu/predefinedItems/removeRow.js +1 -1
  318. package/plugins/contextMenu/predefinedItems/removeRow.mjs +1 -1
  319. package/plugins/contextMenu/predefinedItems.js +12 -7
  320. package/plugins/contextMenu/predefinedItems.mjs +14 -1
  321. package/plugins/copyPaste/clipboardData.js +14 -1
  322. package/plugins/copyPaste/clipboardData.mjs +14 -1
  323. package/plugins/copyPaste/copyPaste.js +10 -5
  324. package/plugins/copyPaste/copyPaste.mjs +10 -5
  325. package/plugins/copyPaste/copyableRanges.js +10 -1
  326. package/plugins/copyPaste/copyableRanges.mjs +10 -1
  327. package/plugins/copyPaste/focusableElement.js +10 -1
  328. package/plugins/copyPaste/focusableElement.mjs +10 -1
  329. package/plugins/copyPaste/pasteEvent.js +14 -1
  330. package/plugins/copyPaste/pasteEvent.mjs +14 -1
  331. package/plugins/customBorders/customBorders.js +12 -7
  332. package/plugins/customBorders/customBorders.mjs +11 -6
  333. package/plugins/dragToScroll/dragToScroll.js +6 -1
  334. package/plugins/dragToScroll/dragToScroll.mjs +6 -1
  335. package/plugins/dropdownMenu/dropdownMenu.js +6 -1
  336. package/plugins/dropdownMenu/dropdownMenu.mjs +6 -1
  337. package/plugins/exportFile/dataProvider.js +11 -5
  338. package/plugins/exportFile/dataProvider.mjs +8 -2
  339. package/plugins/exportFile/exportFile.js +8 -3
  340. package/plugins/exportFile/exportFile.mjs +6 -1
  341. package/plugins/exportFile/typeFactory.js +14 -1
  342. package/plugins/exportFile/typeFactory.mjs +14 -1
  343. package/plugins/exportFile/types/_base.js +14 -1
  344. package/plugins/exportFile/types/_base.mjs +14 -1
  345. package/plugins/exportFile/types/csv.js +6 -1
  346. package/plugins/exportFile/types/csv.mjs +6 -1
  347. package/plugins/filters/component/_base.js +14 -1
  348. package/plugins/filters/component/_base.mjs +14 -1
  349. package/plugins/filters/component/actionBar.js +8 -3
  350. package/plugins/filters/component/actionBar.mjs +6 -1
  351. package/plugins/filters/component/condition.js +8 -3
  352. package/plugins/filters/component/condition.mjs +6 -1
  353. package/plugins/filters/component/operators.js +8 -3
  354. package/plugins/filters/component/operators.mjs +8 -3
  355. package/plugins/filters/component/value.js +7 -2
  356. package/plugins/filters/component/value.mjs +7 -2
  357. package/plugins/filters/condition/beginsWith.js +1 -1
  358. package/plugins/filters/condition/beginsWith.mjs +1 -1
  359. package/plugins/filters/condition/between.js +1 -1
  360. package/plugins/filters/condition/between.mjs +1 -1
  361. package/plugins/filters/condition/byValue.js +1 -1
  362. package/plugins/filters/condition/byValue.mjs +1 -1
  363. package/plugins/filters/condition/contains.js +1 -1
  364. package/plugins/filters/condition/contains.mjs +1 -1
  365. package/plugins/filters/condition/date/after.js +1 -1
  366. package/plugins/filters/condition/date/after.mjs +1 -1
  367. package/plugins/filters/condition/date/before.js +1 -1
  368. package/plugins/filters/condition/date/before.mjs +1 -1
  369. package/plugins/filters/condition/endsWith.js +1 -1
  370. package/plugins/filters/condition/endsWith.mjs +1 -1
  371. package/plugins/filters/condition/equal.js +1 -1
  372. package/plugins/filters/condition/equal.mjs +1 -1
  373. package/plugins/filters/condition/greaterThan.js +1 -1
  374. package/plugins/filters/condition/greaterThan.mjs +1 -1
  375. package/plugins/filters/condition/greaterThanOrEqual.js +1 -1
  376. package/plugins/filters/condition/greaterThanOrEqual.mjs +1 -1
  377. package/plugins/filters/condition/lessThan.js +1 -1
  378. package/plugins/filters/condition/lessThan.mjs +1 -1
  379. package/plugins/filters/condition/lessThanOrEqual.js +1 -1
  380. package/plugins/filters/condition/lessThanOrEqual.mjs +1 -1
  381. package/plugins/filters/conditionCollection.js +10 -4
  382. package/plugins/filters/conditionCollection.mjs +18 -12
  383. package/plugins/filters/conditionUpdateObserver.js +13 -1
  384. package/plugins/filters/conditionUpdateObserver.mjs +13 -1
  385. package/plugins/filters/constants.js +14 -1
  386. package/plugins/filters/constants.mjs +14 -1
  387. package/plugins/filters/dataFilter.js +14 -1
  388. package/plugins/filters/dataFilter.mjs +14 -1
  389. package/plugins/filters/filters.js +7 -2
  390. package/plugins/filters/filters.mjs +7 -2
  391. package/plugins/filters/ui/_base.js +12 -7
  392. package/plugins/filters/ui/_base.mjs +14 -1
  393. package/plugins/filters/ui/input.js +6 -1
  394. package/plugins/filters/ui/input.mjs +6 -1
  395. package/plugins/filters/ui/link.js +6 -1
  396. package/plugins/filters/ui/link.mjs +6 -1
  397. package/plugins/filters/ui/multipleSelect.js +6 -1
  398. package/plugins/filters/ui/multipleSelect.mjs +6 -1
  399. package/plugins/filters/ui/radioInput.js +6 -1
  400. package/plugins/filters/ui/radioInput.mjs +6 -1
  401. package/plugins/filters/ui/select.js +6 -1
  402. package/plugins/filters/ui/select.mjs +6 -1
  403. package/plugins/formulas/engine/settings.js +12 -1
  404. package/plugins/formulas/engine/settings.mjs +12 -1
  405. package/plugins/formulas/formulas.js +10 -5
  406. package/plugins/formulas/formulas.mjs +10 -5
  407. package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +1 -1
  408. package/plugins/hiddenColumns/contextMenuItem/hideColumn.mjs +1 -1
  409. package/plugins/hiddenColumns/hiddenColumns.js +5 -1
  410. package/plugins/hiddenColumns/hiddenColumns.mjs +5 -1
  411. package/plugins/hiddenRows/contextMenuItem/hideRow.js +1 -1
  412. package/plugins/hiddenRows/contextMenuItem/hideRow.mjs +1 -1
  413. package/plugins/hiddenRows/hiddenRows.js +5 -1
  414. package/plugins/hiddenRows/hiddenRows.mjs +5 -1
  415. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +1 -1
  416. package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +1 -1
  417. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +1 -1
  418. package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +1 -1
  419. package/plugins/manualColumnFreeze/manualColumnFreeze.js +6 -1
  420. package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +6 -1
  421. package/plugins/manualColumnMove/manualColumnMove.js +6 -1
  422. package/plugins/manualColumnMove/manualColumnMove.mjs +6 -1
  423. package/plugins/manualColumnMove/ui/_base.js +14 -1
  424. package/plugins/manualColumnMove/ui/_base.mjs +14 -1
  425. package/plugins/manualColumnMove/ui/backlight.js +6 -1
  426. package/plugins/manualColumnMove/ui/backlight.mjs +6 -1
  427. package/plugins/manualColumnMove/ui/guideline.js +6 -1
  428. package/plugins/manualColumnMove/ui/guideline.mjs +6 -1
  429. package/plugins/manualColumnResize/manualColumnResize.js +6 -1
  430. package/plugins/manualColumnResize/manualColumnResize.mjs +6 -1
  431. package/plugins/manualRowMove/manualRowMove.js +6 -1
  432. package/plugins/manualRowMove/manualRowMove.mjs +6 -1
  433. package/plugins/manualRowMove/ui/_base.js +14 -1
  434. package/plugins/manualRowMove/ui/_base.mjs +14 -1
  435. package/plugins/manualRowMove/ui/backlight.js +6 -1
  436. package/plugins/manualRowMove/ui/backlight.mjs +6 -1
  437. package/plugins/manualRowMove/ui/guideline.js +6 -1
  438. package/plugins/manualRowMove/ui/guideline.mjs +6 -1
  439. package/plugins/manualRowResize/manualRowResize.js +6 -1
  440. package/plugins/manualRowResize/manualRowResize.mjs +6 -1
  441. package/plugins/mergeCells/calculations/autofill.js +11 -5
  442. package/plugins/mergeCells/calculations/autofill.mjs +8 -2
  443. package/plugins/mergeCells/calculations/selection.js +14 -1
  444. package/plugins/mergeCells/calculations/selection.mjs +14 -1
  445. package/plugins/mergeCells/cellCoords.js +14 -1
  446. package/plugins/mergeCells/cellCoords.mjs +14 -1
  447. package/plugins/mergeCells/cellsCollection.js +10 -4
  448. package/plugins/mergeCells/cellsCollection.mjs +7 -1
  449. package/plugins/mergeCells/mergeCells.js +7 -2
  450. package/plugins/mergeCells/mergeCells.mjs +7 -2
  451. package/plugins/multiColumnSorting/multiColumnSorting.js +6 -1
  452. package/plugins/multiColumnSorting/multiColumnSorting.mjs +6 -1
  453. package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +6 -1
  454. package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +6 -1
  455. package/plugins/nestedHeaders/nestedHeaders.js +10 -5
  456. package/plugins/nestedHeaders/nestedHeaders.mjs +17 -12
  457. package/plugins/nestedHeaders/stateManager/headersTree.js +9 -3
  458. package/plugins/nestedHeaders/stateManager/headersTree.mjs +9 -3
  459. package/plugins/nestedHeaders/stateManager/index.js +11 -3
  460. package/plugins/nestedHeaders/stateManager/index.mjs +17 -9
  461. package/plugins/nestedHeaders/stateManager/sourceSettings.js +11 -3
  462. package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +17 -9
  463. package/plugins/nestedHeaders/utils/ghostTable.js +15 -2
  464. package/plugins/nestedHeaders/utils/ghostTable.mjs +15 -2
  465. package/plugins/nestedRows/data/dataManager.js +8 -3
  466. package/plugins/nestedRows/data/dataManager.mjs +6 -1
  467. package/plugins/nestedRows/nestedRows.js +6 -1
  468. package/plugins/nestedRows/nestedRows.mjs +6 -1
  469. package/plugins/nestedRows/ui/_base.js +14 -1
  470. package/plugins/nestedRows/ui/_base.mjs +14 -1
  471. package/plugins/nestedRows/ui/collapsing.js +6 -1
  472. package/plugins/nestedRows/ui/collapsing.mjs +6 -1
  473. package/plugins/nestedRows/ui/contextMenu.js +7 -2
  474. package/plugins/nestedRows/ui/contextMenu.mjs +6 -1
  475. package/plugins/nestedRows/ui/headers.js +6 -1
  476. package/plugins/nestedRows/ui/headers.mjs +6 -1
  477. package/plugins/nestedRows/utils/rowMoveController.js +9 -3
  478. package/plugins/nestedRows/utils/rowMoveController.mjs +18 -12
  479. package/plugins/persistentState/persistentState.js +6 -1
  480. package/plugins/persistentState/persistentState.mjs +6 -1
  481. package/plugins/persistentState/storage.js +14 -1
  482. package/plugins/persistentState/storage.mjs +14 -1
  483. package/plugins/registry.js +1 -1
  484. package/plugins/registry.mjs +1 -1
  485. package/plugins/search/search.js +6 -1
  486. package/plugins/search/search.mjs +6 -1
  487. package/plugins/touchScroll/touchScroll.js +6 -1
  488. package/plugins/touchScroll/touchScroll.mjs +6 -1
  489. package/plugins/trimRows/trimRows.js +5 -1
  490. package/plugins/trimRows/trimRows.mjs +5 -1
  491. package/plugins/undoRedo/undoRedo.js +7 -2
  492. package/plugins/undoRedo/undoRedo.mjs +7 -2
  493. package/selection/highlight/highlight.js +8 -2
  494. package/selection/highlight/highlight.mjs +8 -2
  495. package/selection/highlight/types/activeHeader.js +13 -2
  496. package/selection/highlight/types/activeHeader.mjs +13 -2
  497. package/selection/highlight/types/area.js +13 -2
  498. package/selection/highlight/types/area.mjs +13 -2
  499. package/selection/highlight/types/cell.js +13 -2
  500. package/selection/highlight/types/cell.mjs +13 -2
  501. package/selection/highlight/types/customSelection.js +13 -2
  502. package/selection/highlight/types/customSelection.mjs +13 -2
  503. package/selection/highlight/types/fill.js +14 -3
  504. package/selection/highlight/types/fill.mjs +14 -3
  505. package/selection/highlight/types/header.js +13 -2
  506. package/selection/highlight/types/header.mjs +13 -2
  507. package/selection/highlight/types/index.js +14 -3
  508. package/selection/highlight/types/index.mjs +14 -3
  509. package/selection/highlight/visualSelection.js +11 -6
  510. package/selection/highlight/visualSelection.mjs +11 -6
  511. package/selection/range.js +7 -1
  512. package/selection/range.mjs +7 -1
  513. package/selection/selection.js +9 -4
  514. package/selection/selection.mjs +14 -9
  515. package/selection/transformation.js +14 -1
  516. package/selection/transformation.mjs +14 -1
  517. package/selection/utils.js +1 -1
  518. package/selection/utils.mjs +1 -1
  519. package/shortcuts/context.js +1 -1
  520. package/shortcuts/context.mjs +1 -1
  521. package/tableView.js +8 -3
  522. package/tableView.mjs +8 -3
  523. package/translations/changesObservable/observable.js +10 -1
  524. package/translations/changesObservable/observable.mjs +10 -1
  525. package/translations/changesObservable/observer.js +10 -1
  526. package/translations/changesObservable/observer.mjs +10 -1
  527. package/translations/indexMapper.js +9 -3
  528. package/translations/indexMapper.mjs +14 -8
  529. package/translations/mapCollections/aggregatedCollection.js +6 -1
  530. package/translations/mapCollections/aggregatedCollection.mjs +6 -1
  531. package/translations/mapCollections/mapCollection.js +10 -1
  532. package/translations/mapCollections/mapCollection.mjs +10 -1
  533. package/translations/maps/hidingMap.js +6 -1
  534. package/translations/maps/hidingMap.mjs +6 -1
  535. package/translations/maps/indexMap.js +14 -1
  536. package/translations/maps/indexMap.mjs +14 -1
  537. package/translations/maps/indexesSequence.js +6 -1
  538. package/translations/maps/indexesSequence.mjs +6 -1
  539. package/translations/maps/linkedPhysicalIndexToValueMap.js +10 -5
  540. package/translations/maps/linkedPhysicalIndexToValueMap.mjs +9 -4
  541. package/translations/maps/physicalIndexToValueMap.js +6 -1
  542. package/translations/maps/physicalIndexToValueMap.mjs +6 -1
  543. package/translations/maps/trimmingMap.js +6 -1
  544. package/translations/maps/trimmingMap.mjs +6 -1
  545. package/utils/dataStructures/linkedList.js +14 -1
  546. package/utils/dataStructures/linkedList.mjs +14 -1
  547. package/utils/dataStructures/priorityMap.js +1 -1
  548. package/utils/dataStructures/priorityMap.mjs +1 -1
  549. package/utils/dataStructures/queue.js +14 -1
  550. package/utils/dataStructures/queue.mjs +14 -1
  551. package/utils/dataStructures/stack.js +14 -1
  552. package/utils/dataStructures/stack.mjs +14 -1
  553. package/utils/dataStructures/tree.js +8 -2
  554. package/utils/dataStructures/tree.mjs +8 -2
  555. package/utils/dataStructures/uniqueMap.js +1 -1
  556. package/utils/dataStructures/uniqueMap.mjs +1 -1
  557. package/utils/ghostTable.js +10 -4
  558. package/utils/ghostTable.mjs +8 -2
  559. package/utils/interval.js +14 -1
  560. package/utils/interval.mjs +14 -1
  561. package/utils/samplesGenerator.js +11 -2
  562. package/utils/samplesGenerator.mjs +11 -2
@@ -1,22 +1,27 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
3
+ require("core-js/modules/es.symbol.iterator.js");
4
4
  require("core-js/modules/es.array.iterator.js");
5
- require("core-js/modules/es.object.to-string.js");
6
5
  require("core-js/modules/es.string.iterator.js");
7
- require("core-js/modules/es.weak-map.js");
8
6
  require("core-js/modules/web.dom-collections.iterator.js");
7
+ require("core-js/modules/es.weak-map.js");
9
8
  require("core-js/modules/es.object.get-own-property-descriptor.js");
10
- require("core-js/modules/es.symbol.js");
11
- require("core-js/modules/es.symbol.description.js");
12
- require("core-js/modules/es.symbol.iterator.js");
13
9
  exports.__esModule = true;
14
10
  exports.default = void 0;
11
+ require("core-js/modules/es.symbol.to-primitive.js");
12
+ require("core-js/modules/es.date.to-primitive.js");
13
+ require("core-js/modules/es.symbol.js");
14
+ require("core-js/modules/es.symbol.description.js");
15
+ require("core-js/modules/es.object.to-string.js");
16
+ require("core-js/modules/es.number.constructor.js");
15
17
  var C = _interopRequireWildcard(require("../constants"));
16
18
  var _dictionary;
17
19
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
18
20
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
21
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
22
+ 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; }
23
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
24
+ 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); }
20
25
  var dictionary = (_dictionary = {
21
26
  languageCode: 'ru-RU'
22
27
  }, _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ROW_ABOVE, 'Вставить строку выше'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ROW_BELOW, 'Вставить строку ниже'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_LEFT, 'Вставить столбец слева'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_RIGHT, 'Вставить столбец справа'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_ROW, ['Удалить строку', 'Удалить строки']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COLUMN, ['Удалить столбец', 'Удалить столбцы']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNDO, 'Отменить'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REDO, 'Повторить'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY, 'Только для чтения'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_CLEAR_COLUMN, 'Очистить столбец'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT, 'Выравнивание'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_LEFT, 'По левому краю'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_CENTER, 'По центру'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_RIGHT, 'По правому краю'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_JUSTIFY, 'По ширине'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_TOP, 'По верхнему краю'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_MIDDLE, 'По центру'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_BOTTOM, 'По нижнему краю'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_FREEZE_COLUMN, 'Закрепить столбец'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNFREEZE_COLUMN, 'Открепить столбец'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS, 'Границы'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_TOP, 'Сверху'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_RIGHT, 'Справа'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_BOTTOM, 'Снизу'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_LEFT, 'Слева'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_BORDERS, 'Удалить границу(ы)'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ADD_COMMENT, 'Добавить комментарий'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_EDIT_COMMENT, 'Редактировать комментарий'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COMMENT, 'Удалить комментарий'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY_COMMENT, 'Комментарий только для чтения'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_MERGE_CELLS, 'Объединить ячейки'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNMERGE_CELLS, 'Разделить ячейки'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_COPY, 'Копировать'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_CUT, 'Вырезать'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_INSERT_CHILD, 'Вставить дочернюю строку'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_DETACH_CHILD, 'Отделить от родителя'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_COLUMN, ['Скрыть столбец', 'Скрыть столбцы']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_COLUMN, ['Показать столбец', 'Показать столбцы']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_ROW, ['Скрыть строку', 'Скрыть строки']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_ROW, ['Показать строку', 'Показать строки']), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NONE, 'Отсутствует'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_EMPTY, 'Пусто'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_EMPTY, 'Не пусто'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_EQUAL, 'Равно'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_EQUAL, 'Не равно'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BEGINS_WITH, 'Начинается на'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_ENDS_WITH, 'Заканчивается на'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_CONTAINS, 'Содержит'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_CONTAIN, 'Не содержит'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN, 'Больше чем'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN_OR_EQUAL, 'Больше или равно'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN, 'Меньше чем'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN_OR_EQUAL, 'Меньше или равно'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BETWEEN, 'Между'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_BETWEEN, 'Не между'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_AFTER, 'После'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BEFORE, 'До'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_TODAY, 'Сегодня'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_TOMORROW, 'Завтра'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_YESTERDAY, 'Вчера'), _defineProperty(_dictionary, C.FILTERS_VALUES_BLANK_CELLS, 'Пустые ячейки'), _defineProperty(_dictionary, C.FILTERS_DIVS_FILTER_BY_CONDITION, 'Фильтр по условию'), _defineProperty(_dictionary, C.FILTERS_DIVS_FILTER_BY_VALUE, 'Фильтр по значению'), _defineProperty(_dictionary, C.FILTERS_LABELS_CONJUNCTION, 'И'), _defineProperty(_dictionary, C.FILTERS_LABELS_DISJUNCTION, 'Или'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_SELECT_ALL, 'Выбрать все'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_CLEAR, 'Убрать'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_OK, 'OK'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_CANCEL, 'Отмена'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SEARCH, 'Поиск'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_VALUE, 'Значение'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE, 'Второе значение'), _dictionary);
@@ -1,5 +1,18 @@
1
+ import "core-js/modules/es.symbol.to-primitive.js";
2
+ import "core-js/modules/es.date.to-primitive.js";
3
+ import "core-js/modules/es.symbol.js";
4
+ import "core-js/modules/es.symbol.description.js";
5
+ import "core-js/modules/es.object.to-string.js";
6
+ import "core-js/modules/es.number.constructor.js";
7
+ import "core-js/modules/es.symbol.iterator.js";
8
+ import "core-js/modules/es.array.iterator.js";
9
+ import "core-js/modules/es.string.iterator.js";
10
+ import "core-js/modules/web.dom-collections.iterator.js";
11
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1
12
  var _dictionary;
2
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
13
+ 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; }
14
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
15
+ 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); }
3
16
  /**
4
17
  * @preserve
5
18
  * Authors: Alexey Rogachev
@@ -1,22 +1,27 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
3
+ require("core-js/modules/es.symbol.iterator.js");
4
4
  require("core-js/modules/es.array.iterator.js");
5
- require("core-js/modules/es.object.to-string.js");
6
5
  require("core-js/modules/es.string.iterator.js");
7
- require("core-js/modules/es.weak-map.js");
8
6
  require("core-js/modules/web.dom-collections.iterator.js");
7
+ require("core-js/modules/es.weak-map.js");
9
8
  require("core-js/modules/es.object.get-own-property-descriptor.js");
10
- require("core-js/modules/es.symbol.js");
11
- require("core-js/modules/es.symbol.description.js");
12
- require("core-js/modules/es.symbol.iterator.js");
13
9
  exports.__esModule = true;
14
10
  exports.default = void 0;
11
+ require("core-js/modules/es.symbol.to-primitive.js");
12
+ require("core-js/modules/es.date.to-primitive.js");
13
+ require("core-js/modules/es.symbol.js");
14
+ require("core-js/modules/es.symbol.description.js");
15
+ require("core-js/modules/es.object.to-string.js");
16
+ require("core-js/modules/es.number.constructor.js");
15
17
  var C = _interopRequireWildcard(require("../constants"));
16
18
  var _dictionary;
17
19
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
18
20
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
21
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
22
+ 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; }
23
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
24
+ 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); }
20
25
  var dictionary = (_dictionary = {
21
26
  languageCode: 'sr-SP'
22
27
  }, _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_NO_ITEMS, 'Nema dostupnih opcija'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ROW_ABOVE, 'Unesi red iznad'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ROW_BELOW, 'Unesi red ispod'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_LEFT, 'Unesi kolonu levo'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_RIGHT, 'Insert kolonu desno'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_ROW, ['Ukloni red', 'Ukloni redove']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COLUMN, ['Ukloni kolonu', 'Ukloni kolone']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNDO, 'Poništi'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REDO, 'Ponovi'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY, 'Samo za čitanje'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_CLEAR_COLUMN, 'Obriši kolonu'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT, 'Poravnanje'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_LEFT, 'Levo'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_CENTER, 'Centar'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_RIGHT, 'Desno'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_JUSTIFY, 'Složeno'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_TOP, 'Gore'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_MIDDLE, 'Sredina'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_BOTTOM, 'Dole'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_FREEZE_COLUMN, 'Zamrzni kolonu'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNFREEZE_COLUMN, 'Odmrzni kolonu'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS, 'Ivica'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_TOP, 'Gore'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_RIGHT, 'Desno'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_BOTTOM, 'Dole'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_LEFT, 'Levo'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_BORDERS, 'Ukloni ivicu(e)'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ADD_COMMENT, 'Dodaj komentar'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_EDIT_COMMENT, 'Izmeni komentar'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COMMENT, 'Obriši komentar'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY_COMMENT, 'Komentar samo za čitanje'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_MERGE_CELLS, 'Spoji ćelije'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNMERGE_CELLS, 'Odvoji ćelije'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_COPY, 'Kopiraj'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_CUT, 'Iseci'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_INSERT_CHILD, 'Unesi ugnježdeni red'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_DETACH_CHILD, 'Odvoji ugnježdeni red'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_COLUMN, ['Sakrij kolonu', 'Sakrij kolone']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_COLUMN, ['Prikaži kolonu', 'Prikaži kolone']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_ROW, ['Sakrij red', 'Sakrij redove']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_ROW, ['Prikaži red', 'Prikaži redove']), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NONE, 'Nema'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_EMPTY, 'Je prazno'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_EMPTY, 'Nije prazno'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_EQUAL, 'Je jednako'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_EQUAL, 'Nije jednako'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BEGINS_WITH, 'Počinje sa'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_ENDS_WITH, 'Završava se sa'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_CONTAINS, 'Sadrži'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_CONTAIN, 'Ne sadrži'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN, 'Veće od'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN_OR_EQUAL, 'Veće od ili jednako'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN, 'Manje od'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN_OR_EQUAL, 'Manje od ili jednako'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BETWEEN, 'Je između'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_BETWEEN, 'Nije između'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_AFTER, 'Posle'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BEFORE, 'Pre'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_TODAY, 'Danas'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_TOMORROW, 'Sutra'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_YESTERDAY, 'Juče'), _defineProperty(_dictionary, C.FILTERS_VALUES_BLANK_CELLS, 'Prazne ćelije'), _defineProperty(_dictionary, C.FILTERS_DIVS_FILTER_BY_CONDITION, 'Filtriraj po uslovu'), _defineProperty(_dictionary, C.FILTERS_DIVS_FILTER_BY_VALUE, 'Filtriraj po vrednosti'), _defineProperty(_dictionary, C.FILTERS_LABELS_CONJUNCTION, 'I'), _defineProperty(_dictionary, C.FILTERS_LABELS_DISJUNCTION, 'Ili'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_SELECT_ALL, 'Selektuj sve'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_CLEAR, 'Očisti'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_OK, 'U redu'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_CANCEL, 'Otkaži'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SEARCH, 'Pretraga'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_VALUE, 'Vrednost'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE, 'Druga vrednost'), _dictionary);
@@ -1,5 +1,18 @@
1
+ import "core-js/modules/es.symbol.to-primitive.js";
2
+ import "core-js/modules/es.date.to-primitive.js";
3
+ import "core-js/modules/es.symbol.js";
4
+ import "core-js/modules/es.symbol.description.js";
5
+ import "core-js/modules/es.object.to-string.js";
6
+ import "core-js/modules/es.number.constructor.js";
7
+ import "core-js/modules/es.symbol.iterator.js";
8
+ import "core-js/modules/es.array.iterator.js";
9
+ import "core-js/modules/es.string.iterator.js";
10
+ import "core-js/modules/web.dom-collections.iterator.js";
11
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1
12
  var _dictionary;
2
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
13
+ 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; }
14
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
15
+ 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); }
3
16
  /**
4
17
  * @preserve
5
18
  * Author: Ivan Zarkovic
@@ -1,22 +1,27 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
3
+ require("core-js/modules/es.symbol.iterator.js");
4
4
  require("core-js/modules/es.array.iterator.js");
5
- require("core-js/modules/es.object.to-string.js");
6
5
  require("core-js/modules/es.string.iterator.js");
7
- require("core-js/modules/es.weak-map.js");
8
6
  require("core-js/modules/web.dom-collections.iterator.js");
7
+ require("core-js/modules/es.weak-map.js");
9
8
  require("core-js/modules/es.object.get-own-property-descriptor.js");
10
- require("core-js/modules/es.symbol.js");
11
- require("core-js/modules/es.symbol.description.js");
12
- require("core-js/modules/es.symbol.iterator.js");
13
9
  exports.__esModule = true;
14
10
  exports.default = void 0;
11
+ require("core-js/modules/es.symbol.to-primitive.js");
12
+ require("core-js/modules/es.date.to-primitive.js");
13
+ require("core-js/modules/es.symbol.js");
14
+ require("core-js/modules/es.symbol.description.js");
15
+ require("core-js/modules/es.object.to-string.js");
16
+ require("core-js/modules/es.number.constructor.js");
15
17
  var C = _interopRequireWildcard(require("../constants"));
16
18
  var _dictionary;
17
19
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
18
20
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
21
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
22
+ 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; }
23
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
24
+ 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); }
20
25
  var dictionary = (_dictionary = {
21
26
  languageCode: 'zh-CN'
22
27
  }, _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ROW_ABOVE, '上方插入行'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ROW_BELOW, '下方插入行'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_LEFT, '左方插入列'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_RIGHT, '右方插入列'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_ROW, ['移除该行', '移除多行']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COLUMN, ['移除该列', '移除多列']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNDO, '撤销'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REDO, '恢复'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY, '只读'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_CLEAR_COLUMN, '清空该列'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT, '对齐'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_LEFT, '左对齐'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_CENTER, '水平居中'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_RIGHT, '右对齐'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_JUSTIFY, '两端对齐'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_TOP, '顶端对齐'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_MIDDLE, '垂直居中'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_BOTTOM, '底端对齐'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_FREEZE_COLUMN, '冻结该列'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNFREEZE_COLUMN, '取消冻结'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS, '边框'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_TOP, '上'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_RIGHT, '右'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_BOTTOM, '下'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_LEFT, '左'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_BORDERS, '移除边框'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ADD_COMMENT, '插入批注'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_EDIT_COMMENT, '编辑批注'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COMMENT, '删除批注'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY_COMMENT, '只读批注'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_MERGE_CELLS, '合并'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNMERGE_CELLS, '取消合并'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_COPY, '复制'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_CUT, '剪切'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_INSERT_CHILD, '插入子行'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_DETACH_CHILD, '与母行分离'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_COLUMN, ['隐藏该列', '隐藏多列']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_COLUMN, ['显示该列', '显示多列']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_ROW, ['隐藏该行', '隐藏多行']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_ROW, ['显示该行', '显示多行']), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NONE, '无'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_EMPTY, '为空'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_EMPTY, '不为空'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_EQUAL, '等于'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_EQUAL, '不等于'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BEGINS_WITH, '开头是'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_ENDS_WITH, '结尾是'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_CONTAINS, '包含'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_CONTAIN, '不包含'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN, '大于'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN_OR_EQUAL, '大于或等于'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN, '小于'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN_OR_EQUAL, '小于或等于'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BETWEEN, '在此范围'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_BETWEEN, '不在此范围'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_AFTER, '之后'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BEFORE, '之前'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_TODAY, '今天'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_TOMORROW, '明天'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_YESTERDAY, '昨天'), _defineProperty(_dictionary, C.FILTERS_VALUES_BLANK_CELLS, '空白单元格'), _defineProperty(_dictionary, C.FILTERS_DIVS_FILTER_BY_CONDITION, '按条件过滤'), _defineProperty(_dictionary, C.FILTERS_DIVS_FILTER_BY_VALUE, '按值过滤'), _defineProperty(_dictionary, C.FILTERS_LABELS_CONJUNCTION, '且'), _defineProperty(_dictionary, C.FILTERS_LABELS_DISJUNCTION, '或'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_SELECT_ALL, '全选'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_CLEAR, '清除'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_OK, '确认'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_CANCEL, '取消'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SEARCH, '搜索'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_VALUE, '值'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE, '第二值'), _dictionary);
@@ -1,5 +1,18 @@
1
+ import "core-js/modules/es.symbol.to-primitive.js";
2
+ import "core-js/modules/es.date.to-primitive.js";
3
+ import "core-js/modules/es.symbol.js";
4
+ import "core-js/modules/es.symbol.description.js";
5
+ import "core-js/modules/es.object.to-string.js";
6
+ import "core-js/modules/es.number.constructor.js";
7
+ import "core-js/modules/es.symbol.iterator.js";
8
+ import "core-js/modules/es.array.iterator.js";
9
+ import "core-js/modules/es.string.iterator.js";
10
+ import "core-js/modules/web.dom-collections.iterator.js";
11
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1
12
  var _dictionary;
2
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
13
+ 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; }
14
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
15
+ 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); }
3
16
  /**
4
17
  * @preserve
5
18
  * Authors: soakit
@@ -1,22 +1,27 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
3
+ require("core-js/modules/es.symbol.iterator.js");
4
4
  require("core-js/modules/es.array.iterator.js");
5
- require("core-js/modules/es.object.to-string.js");
6
5
  require("core-js/modules/es.string.iterator.js");
7
- require("core-js/modules/es.weak-map.js");
8
6
  require("core-js/modules/web.dom-collections.iterator.js");
7
+ require("core-js/modules/es.weak-map.js");
9
8
  require("core-js/modules/es.object.get-own-property-descriptor.js");
10
- require("core-js/modules/es.symbol.js");
11
- require("core-js/modules/es.symbol.description.js");
12
- require("core-js/modules/es.symbol.iterator.js");
13
9
  exports.__esModule = true;
14
10
  exports.default = void 0;
11
+ require("core-js/modules/es.symbol.to-primitive.js");
12
+ require("core-js/modules/es.date.to-primitive.js");
13
+ require("core-js/modules/es.symbol.js");
14
+ require("core-js/modules/es.symbol.description.js");
15
+ require("core-js/modules/es.object.to-string.js");
16
+ require("core-js/modules/es.number.constructor.js");
15
17
  var C = _interopRequireWildcard(require("../constants"));
16
18
  var _dictionary;
17
19
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
18
20
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
21
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
22
+ 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; }
23
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
24
+ 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); }
20
25
  var dictionary = (_dictionary = {
21
26
  languageCode: 'zh-TW'
22
27
  }, _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ROW_ABOVE, '上方插入列'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ROW_BELOW, '下方插入列'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_LEFT, '左方插入欄'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_RIGHT, '右方插入欄'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_ROW, ['移除該列', '移除多列']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COLUMN, ['移除該欄', '移除多欄']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNDO, '復原'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REDO, '取消復原'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY, '唯讀'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_CLEAR_COLUMN, '清空該欄'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT, '對齊'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_LEFT, '靠左'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_CENTER, '水平置中'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_RIGHT, '靠右'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_JUSTIFY, '左右對齊'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_TOP, '靠上'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_MIDDLE, '垂直置中'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_BOTTOM, '靠下'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_FREEZE_COLUMN, '凍結欄位'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNFREEZE_COLUMN, '取消凍結欄位'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS, '邊界'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_TOP, '上'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_RIGHT, '右'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_BOTTOM, '下'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_LEFT, '左'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_BORDERS, '移除邊界'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_ADD_COMMENT, '加入評論'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_EDIT_COMMENT, '編輯評論'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COMMENT, '刪除評論'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY_COMMENT, '唯讀評論'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_MERGE_CELLS, '合併欄位'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_UNMERGE_CELLS, '取消合併欄位'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_COPY, '複製'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_CUT, '剪下'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_INSERT_CHILD, '插入子列'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_DETACH_CHILD, '與母列分離'), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_COLUMN, ['隱藏該欄', '隱藏多欄']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_COLUMN, ['顯示該欄', '顯示多欄']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_ROW, ['隱藏該列', '隱藏多列']), _defineProperty(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_ROW, ['顯示該列', '顯示多列']), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NONE, '無'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_EMPTY, '為空'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_EMPTY, '不為空'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_EQUAL, '等於'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_EQUAL, '不等於'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BEGINS_WITH, '開頭是'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_ENDS_WITH, '結尾是'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_CONTAINS, '包含'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_CONTAIN, '不包含'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN, '大於'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN_OR_EQUAL, '大於或等於'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN, '小於'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN_OR_EQUAL, '小於或等於'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BETWEEN, '在此範圍'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_NOT_BETWEEN, '不在此範圍'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_AFTER, '之後'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_BEFORE, '之前'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_TODAY, '今天'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_TOMORROW, '明天'), _defineProperty(_dictionary, C.FILTERS_CONDITIONS_YESTERDAY, '昨天'), _defineProperty(_dictionary, C.FILTERS_VALUES_BLANK_CELLS, '空白格'), _defineProperty(_dictionary, C.FILTERS_DIVS_FILTER_BY_CONDITION, '依條件過濾'), _defineProperty(_dictionary, C.FILTERS_DIVS_FILTER_BY_VALUE, '依值過濾'), _defineProperty(_dictionary, C.FILTERS_LABELS_CONJUNCTION, '且'), _defineProperty(_dictionary, C.FILTERS_LABELS_DISJUNCTION, '或'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_SELECT_ALL, '全選'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_CLEAR, '清除'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_OK, '確認'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_CANCEL, '取消'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SEARCH, '搜尋'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_VALUE, '值'), _defineProperty(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE, '第二值'), _dictionary);
@@ -1,5 +1,18 @@
1
+ import "core-js/modules/es.symbol.to-primitive.js";
2
+ import "core-js/modules/es.date.to-primitive.js";
3
+ import "core-js/modules/es.symbol.js";
4
+ import "core-js/modules/es.symbol.description.js";
5
+ import "core-js/modules/es.object.to-string.js";
6
+ import "core-js/modules/es.number.constructor.js";
7
+ import "core-js/modules/es.symbol.iterator.js";
8
+ import "core-js/modules/es.array.iterator.js";
9
+ import "core-js/modules/es.string.iterator.js";
10
+ import "core-js/modules/web.dom-collections.iterator.js";
11
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1
12
  var _dictionary;
2
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
13
+ 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; }
14
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
15
+ 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); }
3
16
  /**
4
17
  * @preserve
5
18
  * Authors: Phyllis Yen