@fileverse-dev/fortune-core 1.0.4 → 1.0.6

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 (346) hide show
  1. package/{dist/packages/core/src → es}/api/cell.d.ts +10 -10
  2. package/es/api/cell.js +204 -0
  3. package/{dist/packages/core/src → es}/api/common.d.ts +66 -66
  4. package/es/api/common.js +79 -0
  5. package/{dist/packages/core/src → es}/api/errors.d.ts +2 -2
  6. package/es/api/errors.js +2 -0
  7. package/{dist/packages/core/src → es}/api/index.d.ts +9 -9
  8. package/es/api/index.js +8 -0
  9. package/{dist/packages/core/src → es}/api/merge.d.ts +5 -5
  10. package/es/api/merge.js +15 -0
  11. package/{dist/packages/core/src → es}/api/range.d.ts +22 -22
  12. package/es/api/range.js +123 -0
  13. package/{dist/packages/core/src → es}/api/rowcol.d.ts +14 -14
  14. package/es/api/rowcol.js +207 -0
  15. package/{dist/packages/core/src → es}/api/sheet.d.ts +10 -10
  16. package/es/api/sheet.js +128 -0
  17. package/{dist/packages/core/src → es}/api/workbook.d.ts +15 -15
  18. package/es/api/workbook.js +85 -0
  19. package/{dist/packages/core/src → es}/canvas.d.ts +46 -46
  20. package/es/canvas.js +1350 -0
  21. package/{dist/packages/core/src → es}/context.d.ts +197 -197
  22. package/es/context.js +380 -0
  23. package/{dist/packages/core/src → es}/events/copy.d.ts +2 -2
  24. package/es/events/copy.js +78 -0
  25. package/{dist/packages/core/src → es}/events/index.d.ts +4 -4
  26. package/es/events/index.js +4 -0
  27. package/{dist/packages/core/src → es}/events/keyboard.d.ts +6 -6
  28. package/es/events/keyboard.js +332 -0
  29. package/{dist/packages/core/src → es}/events/mouse.d.ts +22 -22
  30. package/es/events/mouse.js +1725 -0
  31. package/{dist/packages/core/src → es}/events/paste.d.ts +3 -3
  32. package/es/events/paste.js +1358 -0
  33. package/{dist/packages/core/src → es}/index.d.ts +10 -10
  34. package/es/index.js +10 -0
  35. package/{dist/packages/core/src → es}/locale/en.d.ts +992 -992
  36. package/es/locale/en.js +10564 -0
  37. package/{dist/packages/core/src → es}/locale/es.d.ts +1134 -1134
  38. package/es/locale/es.js +10010 -0
  39. package/{dist/packages/core/src → es}/locale/hi.d.ts +1030 -1030
  40. package/es/locale/hi.js +10550 -0
  41. package/{dist/packages/core/src → es}/locale/index.d.ts +1049 -1049
  42. package/es/locale/index.js +23 -0
  43. package/{dist/packages/core/src → es}/locale/zh.d.ts +1048 -1048
  44. package/es/locale/zh.js +10568 -0
  45. package/{dist/packages/core/src → es}/locale/zh_tw.d.ts +1187 -1187
  46. package/es/locale/zh_tw.js +10072 -0
  47. package/{dist/packages/core/src → es}/modules/ConditionFormat.d.ts +17 -17
  48. package/es/modules/ConditionFormat.js +1258 -0
  49. package/{dist/packages/core/src → es}/modules/border.d.ts +3 -3
  50. package/es/modules/border.js +1240 -0
  51. package/{dist/packages/core/src → es}/modules/cell.d.ts +32 -32
  52. package/es/modules/cell.js +1055 -0
  53. package/{dist/packages/core/src → es}/modules/clipboard.d.ts +3 -3
  54. package/es/modules/clipboard.js +36 -0
  55. package/{dist/packages/core/src → es}/modules/color.d.ts +1 -1
  56. package/es/modules/color.js +1 -0
  57. package/{dist/packages/core/src → es}/modules/comment.d.ts +97 -97
  58. package/es/modules/comment.js +597 -0
  59. package/{dist/packages/core/src → es}/modules/conditionalFormat.d.ts +2 -2
  60. package/es/modules/conditionalFormat.js +441 -0
  61. package/{dist/packages/core/src → es}/modules/cursor.d.ts +3 -3
  62. package/es/modules/cursor.js +62 -0
  63. package/{dist/packages/core/src → es}/modules/dataVerification.d.ts +11 -11
  64. package/es/modules/dataVerification.js +700 -0
  65. package/{dist/packages/core/src → es}/modules/dropCell.d.ts +10 -10
  66. package/es/modules/dropCell.js +2266 -0
  67. package/{dist/packages/core/src → es}/modules/filter.d.ts +45 -45
  68. package/es/modules/filter.js +434 -0
  69. package/{dist/packages/core/src → es}/modules/format.d.ts +6 -6
  70. package/es/modules/format.js +323 -0
  71. package/{dist/packages/core/src → es}/modules/formula.d.ts +54 -54
  72. package/es/modules/formula.js +2301 -0
  73. package/{dist/packages/core/src → es}/modules/freeze.d.ts +5 -5
  74. package/es/modules/freeze.js +148 -0
  75. package/{dist/packages/core/src → es}/modules/hyperlink.d.ts +21 -21
  76. package/es/modules/hyperlink.js +216 -0
  77. package/{dist/packages/core/src → es}/modules/iframe.d.ts +12 -12
  78. package/es/modules/iframe.js +220 -0
  79. package/{dist/packages/core/src → es}/modules/image.d.ts +31 -31
  80. package/es/modules/image.js +253 -0
  81. package/{dist/packages/core/src → es}/modules/index.d.ts +36 -36
  82. package/es/modules/index.js +36 -0
  83. package/{dist/packages/core/src → es}/modules/inline-string.d.ts +36 -36
  84. package/es/modules/inline-string.js +437 -0
  85. package/{dist/packages/core/src → es}/modules/location.d.ts +6 -6
  86. package/es/modules/location.js +46 -0
  87. package/{dist/packages/core/src → es}/modules/locationCondition.d.ts +21 -21
  88. package/es/modules/locationCondition.js +218 -0
  89. package/{dist/packages/core/src → es}/modules/merge.d.ts +3 -3
  90. package/es/modules/merge.js +216 -0
  91. package/{dist/packages/core/src → es}/modules/mobile.d.ts +5 -5
  92. package/es/modules/mobile.js +33 -0
  93. package/{dist/packages/core/src → es}/modules/moveCells.d.ts +5 -5
  94. package/es/modules/moveCells.js +348 -0
  95. package/{dist/packages/core/src → es}/modules/protection.d.ts +5 -5
  96. package/es/modules/protection.js +96 -0
  97. package/{dist/packages/core/src → es}/modules/refresh.d.ts +3 -3
  98. package/es/modules/refresh.js +34 -0
  99. package/{dist/packages/core/src → es}/modules/rowcol.d.ts +19 -19
  100. package/es/modules/rowcol.js +1922 -0
  101. package/{dist/packages/core/src → es}/modules/screenshot.d.ts +2 -2
  102. package/es/modules/screenshot.js +90 -0
  103. package/{dist/packages/core/src → es}/modules/searchReplace.d.ts +36 -36
  104. package/es/modules/searchReplace.js +388 -0
  105. package/{dist/packages/core/src → es}/modules/selection.d.ts +46 -46
  106. package/es/modules/selection.js +1674 -0
  107. package/{dist/packages/core/src → es}/modules/sheet.d.ts +10 -10
  108. package/es/modules/sheet.js +237 -0
  109. package/{dist/packages/core/src → es}/modules/sort.d.ts +7 -7
  110. package/es/modules/sort.js +150 -0
  111. package/{dist/packages/core/src → es}/modules/splitColumn.d.ts +5 -5
  112. package/es/modules/splitColumn.js +126 -0
  113. package/es/modules/ssf.js +1533 -0
  114. package/{dist/packages/core/src → es}/modules/text.d.ts +10 -10
  115. package/es/modules/text.js +1207 -0
  116. package/{dist/packages/core/src → es}/modules/toolbar.d.ts +32 -32
  117. package/es/modules/toolbar.js +970 -0
  118. package/{dist/packages/core/src → es}/modules/validation.d.ts +19 -19
  119. package/es/modules/validation.js +190 -0
  120. package/{dist/packages/core/src → es}/modules/zoom.d.ts +3 -3
  121. package/es/modules/zoom.js +29 -0
  122. package/{dist/packages/core/src → es}/settings.d.ts +100 -100
  123. package/es/settings.js +36 -0
  124. package/{dist/packages/core/src → es}/types.d.ts +371 -371
  125. package/es/types.js +1 -0
  126. package/{dist/packages/core/src → es}/utils/freeze.d.ts +7 -7
  127. package/es/utils/freeze.js +86 -0
  128. package/{dist/packages/core/src → es}/utils/index.d.ts +18 -18
  129. package/es/utils/index.js +173 -0
  130. package/{dist/packages/core/src → es}/utils/patch.d.ts +37 -37
  131. package/es/utils/patch.js +381 -0
  132. package/lib/api/cell.d.ts +10 -0
  133. package/lib/api/cell.js +215 -0
  134. package/lib/api/common.d.ts +66 -0
  135. package/lib/api/common.js +88 -0
  136. package/lib/api/errors.d.ts +2 -0
  137. package/lib/api/errors.js +8 -0
  138. package/lib/api/index.d.ts +9 -0
  139. package/lib/api/index.js +101 -0
  140. package/lib/api/merge.d.ts +5 -0
  141. package/lib/api/merge.js +22 -0
  142. package/lib/api/range.d.ts +22 -0
  143. package/lib/api/range.js +138 -0
  144. package/lib/api/rowcol.d.ts +14 -0
  145. package/lib/api/rowcol.js +222 -0
  146. package/lib/api/sheet.d.ts +10 -0
  147. package/lib/api/sheet.js +145 -0
  148. package/lib/api/workbook.d.ts +15 -0
  149. package/lib/api/workbook.js +98 -0
  150. package/lib/canvas.d.ts +46 -0
  151. package/lib/canvas.js +1356 -0
  152. package/lib/context.d.ts +197 -0
  153. package/lib/context.js +392 -0
  154. package/lib/events/copy.d.ts +2 -0
  155. package/lib/events/copy.js +85 -0
  156. package/lib/events/index.d.ts +4 -0
  157. package/lib/events/index.js +49 -0
  158. package/lib/events/keyboard.d.ts +6 -0
  159. package/lib/events/keyboard.js +342 -0
  160. package/lib/events/mouse.d.ts +22 -0
  161. package/lib/events/mouse.js +1744 -0
  162. package/lib/events/paste.d.ts +3 -0
  163. package/lib/events/paste.js +1366 -0
  164. package/lib/index.d.ts +10 -0
  165. package/lib/index.js +109 -0
  166. package/lib/locale/en.d.ts +992 -0
  167. package/lib/locale/en.js +10570 -0
  168. package/lib/locale/es.d.ts +1134 -0
  169. package/lib/locale/es.js +10016 -0
  170. package/lib/locale/hi.d.ts +1030 -0
  171. package/lib/locale/hi.js +10556 -0
  172. package/lib/locale/index.d.ts +1049 -0
  173. package/lib/locale/index.js +29 -0
  174. package/lib/locale/zh.d.ts +1048 -0
  175. package/lib/locale/zh.js +10574 -0
  176. package/lib/locale/zh_tw.d.ts +1187 -0
  177. package/lib/locale/zh_tw.js +10078 -0
  178. package/lib/modules/ConditionFormat.d.ts +17 -0
  179. package/lib/modules/ConditionFormat.js +1273 -0
  180. package/lib/modules/border.d.ts +3 -0
  181. package/lib/modules/border.js +1248 -0
  182. package/lib/modules/cell.d.ts +32 -0
  183. package/lib/modules/cell.js +1085 -0
  184. package/lib/modules/clipboard.d.ts +3 -0
  185. package/lib/modules/clipboard.js +42 -0
  186. package/lib/modules/color.d.ts +1 -0
  187. package/lib/modules/color.js +7 -0
  188. package/lib/modules/comment.d.ts +97 -0
  189. package/lib/modules/comment.js +625 -0
  190. package/lib/modules/conditionalFormat.d.ts +2 -0
  191. package/lib/modules/conditionalFormat.js +447 -0
  192. package/lib/modules/cursor.d.ts +3 -0
  193. package/lib/modules/cursor.js +70 -0
  194. package/lib/modules/dataVerification.d.ts +11 -0
  195. package/lib/modules/dataVerification.js +715 -0
  196. package/lib/modules/dropCell.d.ts +10 -0
  197. package/lib/modules/dropCell.js +2282 -0
  198. package/lib/modules/filter.d.ts +45 -0
  199. package/lib/modules/filter.js +448 -0
  200. package/lib/modules/format.d.ts +6 -0
  201. package/lib/modules/format.js +334 -0
  202. package/lib/modules/formula.d.ts +54 -0
  203. package/lib/modules/formula.js +2330 -0
  204. package/lib/modules/freeze.d.ts +5 -0
  205. package/lib/modules/freeze.js +158 -0
  206. package/lib/modules/hyperlink.d.ts +21 -0
  207. package/lib/modules/hyperlink.js +232 -0
  208. package/lib/modules/iframe.d.ts +12 -0
  209. package/lib/modules/iframe.js +236 -0
  210. package/lib/modules/image.d.ts +31 -0
  211. package/lib/modules/image.js +272 -0
  212. package/lib/modules/index.d.ts +36 -0
  213. package/lib/modules/index.js +401 -0
  214. package/lib/modules/inline-string.d.ts +36 -0
  215. package/lib/modules/inline-string.js +452 -0
  216. package/lib/modules/location.d.ts +6 -0
  217. package/lib/modules/location.js +57 -0
  218. package/lib/modules/locationCondition.d.ts +21 -0
  219. package/lib/modules/locationCondition.js +229 -0
  220. package/lib/modules/merge.d.ts +3 -0
  221. package/lib/modules/merge.js +223 -0
  222. package/lib/modules/mobile.d.ts +5 -0
  223. package/lib/modules/mobile.js +41 -0
  224. package/lib/modules/moveCells.d.ts +5 -0
  225. package/lib/modules/moveCells.js +357 -0
  226. package/lib/modules/protection.d.ts +5 -0
  227. package/lib/modules/protection.js +106 -0
  228. package/lib/modules/refresh.d.ts +3 -0
  229. package/lib/modules/refresh.js +40 -0
  230. package/lib/modules/rowcol.d.ts +19 -0
  231. package/lib/modules/rowcol.js +1935 -0
  232. package/lib/modules/screenshot.d.ts +2 -0
  233. package/lib/modules/screenshot.js +96 -0
  234. package/lib/modules/searchReplace.d.ts +36 -0
  235. package/lib/modules/searchReplace.js +402 -0
  236. package/lib/modules/selection.d.ts +46 -0
  237. package/lib/modules/selection.js +1703 -0
  238. package/lib/modules/sheet.d.ts +10 -0
  239. package/lib/modules/sheet.js +250 -0
  240. package/lib/modules/sort.d.ts +7 -0
  241. package/lib/modules/sort.js +159 -0
  242. package/lib/modules/splitColumn.d.ts +5 -0
  243. package/lib/modules/splitColumn.js +136 -0
  244. package/lib/modules/ssf.js +1539 -0
  245. package/lib/modules/text.d.ts +10 -0
  246. package/lib/modules/text.js +1221 -0
  247. package/lib/modules/toolbar.d.ts +32 -0
  248. package/lib/modules/toolbar.js +1003 -0
  249. package/lib/modules/validation.d.ts +19 -0
  250. package/lib/modules/validation.js +205 -0
  251. package/lib/modules/zoom.d.ts +3 -0
  252. package/lib/modules/zoom.js +36 -0
  253. package/lib/settings.d.ts +100 -0
  254. package/lib/settings.js +42 -0
  255. package/lib/types.d.ts +371 -0
  256. package/lib/types.js +5 -0
  257. package/lib/utils/freeze.d.ts +7 -0
  258. package/lib/utils/freeze.js +92 -0
  259. package/lib/utils/index.d.ts +18 -0
  260. package/lib/utils/index.js +231 -0
  261. package/lib/utils/patch.d.ts +37 -0
  262. package/lib/utils/patch.js +392 -0
  263. package/package.json +7 -6
  264. package/dist/index.esm.js +0 -80255
  265. package/dist/index.js +0 -80601
  266. package/dist/packages/react/src/components/ChangeColor/index.d.ts +0 -7
  267. package/dist/packages/react/src/components/ConditionFormat/ConditionRules.d.ts +0 -6
  268. package/dist/packages/react/src/components/ConditionFormat/index.d.ts +0 -7
  269. package/dist/packages/react/src/components/ContextMenu/Divider.d.ts +0 -3
  270. package/dist/packages/react/src/components/ContextMenu/FilterMenu.d.ts +0 -3
  271. package/dist/packages/react/src/components/ContextMenu/Menu.d.ts +0 -8
  272. package/dist/packages/react/src/components/ContextMenu/SheetTab.d.ts +0 -4
  273. package/dist/packages/react/src/components/ContextMenu/index.d.ts +0 -5
  274. package/dist/packages/react/src/components/CustomSort/index.d.ts +0 -4
  275. package/dist/packages/react/src/components/DataVerification/DropdownList.d.ts +0 -4
  276. package/dist/packages/react/src/components/DataVerification/RangeDialog.d.ts +0 -4
  277. package/dist/packages/react/src/components/DataVerification/getDisplayedRangeTxt.d.ts +0 -2
  278. package/dist/packages/react/src/components/DataVerification/index.d.ts +0 -4
  279. package/dist/packages/react/src/components/Dialog/index.d.ts +0 -15
  280. package/dist/packages/react/src/components/DuneChartsInputModal/DuneChartsInputModal.d.ts +0 -11
  281. package/dist/packages/react/src/components/DunePreview/DunePreview.d.ts +0 -13
  282. package/dist/packages/react/src/components/FilterOption/index.d.ts +0 -5
  283. package/dist/packages/react/src/components/FormatSearch/index.d.ts +0 -6
  284. package/dist/packages/react/src/components/FormulaSearch/index.d.ts +0 -5
  285. package/dist/packages/react/src/components/FxEditor/NameBox.d.ts +0 -3
  286. package/dist/packages/react/src/components/FxEditor/index.d.ts +0 -4
  287. package/dist/packages/react/src/components/IFrameBoxs/iFrameBoxs.d.ts +0 -4
  288. package/dist/packages/react/src/components/ImgBoxs/index.d.ts +0 -3
  289. package/dist/packages/react/src/components/LinkEidtCard/index.d.ts +0 -5
  290. package/dist/packages/react/src/components/LocationCondition/index.d.ts +0 -3
  291. package/dist/packages/react/src/components/MessageBox/index.d.ts +0 -9
  292. package/dist/packages/react/src/components/NotationBoxes/index.d.ts +0 -3
  293. package/dist/packages/react/src/components/ResetColumnWidth/index.d.ts +0 -2
  294. package/dist/packages/react/src/components/SVGDefines.d.ts +0 -5
  295. package/dist/packages/react/src/components/SVGIcon.d.ts +0 -9
  296. package/dist/packages/react/src/components/SearchReplace/index.d.ts +0 -6
  297. package/dist/packages/react/src/components/Sheet/index.d.ts +0 -8
  298. package/dist/packages/react/src/components/SheetList/SheetHiddenButton.d.ts +0 -8
  299. package/dist/packages/react/src/components/SheetList/SheetListItem.d.ts +0 -9
  300. package/dist/packages/react/src/components/SheetList/index.d.ts +0 -4
  301. package/dist/packages/react/src/components/SheetOverlay/ColumnHeader.d.ts +0 -3
  302. package/dist/packages/react/src/components/SheetOverlay/ContentEditable.d.ts +0 -11
  303. package/dist/packages/react/src/components/SheetOverlay/FormulaHint/index.d.ts +0 -4
  304. package/dist/packages/react/src/components/SheetOverlay/FormulaSearch/constant.d.ts +0 -63
  305. package/dist/packages/react/src/components/SheetOverlay/FormulaSearch/index.d.ts +0 -4
  306. package/dist/packages/react/src/components/SheetOverlay/InputBox.d.ts +0 -3
  307. package/dist/packages/react/src/components/SheetOverlay/RowHeader.d.ts +0 -3
  308. package/dist/packages/react/src/components/SheetOverlay/ScrollBar/index.d.ts +0 -7
  309. package/dist/packages/react/src/components/SheetOverlay/index.d.ts +0 -4
  310. package/dist/packages/react/src/components/SheetTab/SheetItem.d.ts +0 -8
  311. package/dist/packages/react/src/components/SheetTab/index.d.ts +0 -4
  312. package/dist/packages/react/src/components/SplitColumn/index.d.ts +0 -3
  313. package/dist/packages/react/src/components/Toolbar/Button.d.ts +0 -12
  314. package/dist/packages/react/src/components/Toolbar/ColorPicker.d.ts +0 -6
  315. package/dist/packages/react/src/components/Toolbar/Combo.d.ts +0 -12
  316. package/dist/packages/react/src/components/Toolbar/CustomBorder.d.ts +0 -7
  317. package/dist/packages/react/src/components/Toolbar/CustomButton.d.ts +0 -11
  318. package/dist/packages/react/src/components/Toolbar/CustomColor.d.ts +0 -8
  319. package/dist/packages/react/src/components/Toolbar/CustomIcon.d.ts +0 -9
  320. package/dist/packages/react/src/components/Toolbar/Divider.d.ts +0 -4
  321. package/dist/packages/react/src/components/Toolbar/MoreItemsContainer.d.ts +0 -6
  322. package/dist/packages/react/src/components/Toolbar/Select.d.ts +0 -14
  323. package/dist/packages/react/src/components/Toolbar/index.d.ts +0 -10
  324. package/dist/packages/react/src/components/Workbook/api.d.ts +0 -1177
  325. package/dist/packages/react/src/components/Workbook/index.d.ts +0 -1185
  326. package/dist/packages/react/src/components/ZoomControl/index.d.ts +0 -4
  327. package/dist/packages/react/src/components/index.d.ts +0 -4
  328. package/dist/packages/react/src/constants.d.ts +0 -1
  329. package/dist/packages/react/src/context/index.d.ts +0 -25
  330. package/dist/packages/react/src/context/modal.d.ts +0 -10
  331. package/dist/packages/react/src/hooks/useAlert.d.ts +0 -4
  332. package/dist/packages/react/src/hooks/useDialog.d.ts +0 -5
  333. package/dist/packages/react/src/hooks/useOutsideClick.d.ts +0 -2
  334. package/dist/packages/react/src/hooks/usePrevious.d.ts +0 -2
  335. package/dist/packages/react/src/index.d.ts +0 -1
  336. package/dist/packages/react/src/utils/datepickerStyles.d.ts +0 -2
  337. package/dist/stories/API.stories.d.ts +0 -1210
  338. package/dist/stories/Collabration.stories.d.ts +0 -2359
  339. package/dist/stories/Features.stories.d.ts +0 -9430
  340. package/dist/stories/data/cell.d.ts +0 -983
  341. package/dist/stories/data/dataVerification.d.ts +0 -131
  342. package/dist/stories/data/empty.d.ts +0 -10
  343. package/dist/stories/data/formula.d.ts +0 -362
  344. package/dist/stories/data/freeze.d.ts +0 -34
  345. package/dist/stories/data/protected.d.ts +0 -40
  346. package/dist/stories/utils.d.ts +0 -1
@@ -1,1185 +0,0 @@
1
- import { Settings, Context, CellWithRowAndCol, Sheet as SheetType, Op, CellMatrix } from "@fileverse-dev/fortune-core";
2
- import React from "react";
3
- import "./index.css";
4
- import { generateAPIs } from "./api";
5
- export type WorkbookInstance = ReturnType<typeof generateAPIs>;
6
- type AdditionalProps = {
7
- onChange?: (data: SheetType[]) => void;
8
- onOp?: (op: Op[]) => void;
9
- };
10
- declare const Workbook: React.ForwardRefExoticComponent<Settings & AdditionalProps & React.RefAttributes<{
11
- applyOp: (ops: Op[]) => void;
12
- getCellValue: (row: number, column: number, options?: import("../../../../core/src/api").CommonOptions & {
13
- type?: "v" | "m" | "mc" | "f" | "ct" | "qp" | "spl" | "bg" | "lo" | "rt" | "ps" | "hl" | keyof import("@fileverse-dev/fortune-core").CellStyle | undefined;
14
- }) => any;
15
- onboardingActiveCell: (functionName: string) => void;
16
- initializeComment: (row: number, column: number) => void;
17
- setCellValue: (row: number, column: number, value: any, options?: import("../../../../core/src/api").CommonOptions & {
18
- type?: "v" | "m" | "mc" | "f" | "ct" | "qp" | "spl" | "bg" | "lo" | "rt" | "ps" | "hl" | keyof import("@fileverse-dev/fortune-core").CellStyle | undefined;
19
- }) => void;
20
- clearCell: (row: number, column: number, options?: import("../../../../core/src/api").CommonOptions) => void;
21
- setCellFormat: (row: number, column: number, attr: "v" | "m" | "mc" | "f" | "ct" | "qp" | "spl" | "bg" | "lo" | "rt" | "ps" | "hl" | keyof import("@fileverse-dev/fortune-core").CellStyle, value: any, options?: import("../../../../core/src/api").CommonOptions) => void;
22
- autoFillCell: (copyRange: import("@fileverse-dev/fortune-core").SingleRange, applyRange: import("@fileverse-dev/fortune-core").SingleRange, direction: "up" | "down" | "left" | "right") => void;
23
- freeze: (type: "row" | "column" | "both", range: {
24
- row: number;
25
- column: number;
26
- }, options?: import("../../../../core/src/api").CommonOptions) => void;
27
- insertRowOrColumn: (type: "row" | "column", index: number, count: number, direction?: "lefttop" | "rightbottom", options?: import("../../../../core/src/api").CommonOptions) => void;
28
- deleteRowOrColumn: (type: "row" | "column", start: number, end: number, options?: import("../../../../core/src/api").CommonOptions) => void;
29
- hideRowOrColumn: (rowOrColInfo: string[], type: "row" | "column") => void;
30
- showRowOrColumn: (rowOrColInfo: string[], type: "row" | "column") => void;
31
- setRowHeight: (rowInfo: Record<string, number>, options?: import("../../../../core/src/api").CommonOptions, custom?: boolean) => void;
32
- setColumnWidth: (columnInfo: Record<string, number>, options?: import("../../../../core/src/api").CommonOptions, custom?: boolean) => void;
33
- getRowHeight: (rows: number[], options?: import("../../../../core/src/api").CommonOptions) => Record<number, number>;
34
- getColumnWidth: (columns: number[], options?: import("../../../../core/src/api").CommonOptions) => Record<number, number>;
35
- getSelection: () => {
36
- row: number[];
37
- column: number[];
38
- }[] | undefined;
39
- getFlattenRange: (range: import("@fileverse-dev/fortune-core").Range) => {
40
- r: number;
41
- c: number;
42
- }[];
43
- getCellsByFlattenRange: (range?: {
44
- r: number;
45
- c: number;
46
- }[] | undefined) => (import("@fileverse-dev/fortune-core").Cell | null)[];
47
- getSelectionCoordinates: () => string[];
48
- getCellsByRange: (range: import("@fileverse-dev/fortune-core").Selection, options?: import("../../../../core/src/api").CommonOptions) => (import("@fileverse-dev/fortune-core").Cell | null)[][];
49
- getHtmlByRange: (range: import("@fileverse-dev/fortune-core").Range, options?: import("../../../../core/src/api").CommonOptions) => string | null;
50
- setSelection: (range: import("@fileverse-dev/fortune-core").Range, options?: import("../../../../core/src/api").CommonOptions) => void;
51
- setCellValuesByRange: (data: any[][], range: import("@fileverse-dev/fortune-core").SingleRange, options?: import("../../../../core/src/api").CommonOptions) => void;
52
- setCellFormatByRange: (attr: "v" | "m" | "mc" | "f" | "ct" | "qp" | "spl" | "bg" | "lo" | "rt" | "ps" | "hl" | keyof import("@fileverse-dev/fortune-core").CellStyle, value: any, range: import("@fileverse-dev/fortune-core").SingleRange | import("@fileverse-dev/fortune-core").Range, options?: import("../../../../core/src/api").CommonOptions) => void;
53
- mergeCells: (ranges: import("@fileverse-dev/fortune-core").Range, type: string, options?: import("../../../../core/src/api").CommonOptions) => void;
54
- cancelMerge: (ranges: import("@fileverse-dev/fortune-core").Range, options?: import("../../../../core/src/api").CommonOptions) => void;
55
- getAllSheets: () => SheetType[];
56
- getSheet: (options?: import("../../../../core/src/api").CommonOptions) => {
57
- celldata: CellWithRowAndCol[];
58
- name: string;
59
- config?: import("@fileverse-dev/fortune-core").SheetConfig | undefined;
60
- order?: number | undefined;
61
- color?: string | undefined;
62
- data?: CellMatrix | undefined;
63
- id?: string | undefined;
64
- images?: import("@fileverse-dev/fortune-core").Image[] | undefined;
65
- iframes?: {
66
- id: string;
67
- src: string;
68
- left: number;
69
- top: number;
70
- width: number;
71
- height: number;
72
- }[] | undefined;
73
- zoomRatio?: number | undefined;
74
- column?: number | undefined;
75
- row?: number | undefined;
76
- addRows?: number | undefined;
77
- status?: number | undefined;
78
- hide?: number | undefined;
79
- luckysheet_select_save?: import("@fileverse-dev/fortune-core").Selection[] | undefined;
80
- luckysheet_selection_range?: {
81
- row: number[];
82
- column: number[];
83
- }[] | undefined;
84
- calcChain?: any[] | undefined;
85
- defaultRowHeight?: number | undefined;
86
- defaultColWidth?: number | undefined;
87
- showGridLines?: number | boolean | undefined;
88
- pivotTable?: any;
89
- isPivotTable?: boolean | undefined;
90
- filter?: Record<string, any> | undefined;
91
- filter_select?: {
92
- row: number[];
93
- column: number[];
94
- } | undefined;
95
- luckysheet_conditionformat_save?: any[] | undefined;
96
- luckysheet_alternateformat_save?: any[] | undefined;
97
- dataVerification?: any;
98
- conditionRules?: import("@fileverse-dev/fortune-core").ConditionRulesProps | undefined;
99
- hyperlink?: Record<string, {
100
- linkType: string;
101
- linkAddress: string;
102
- }> | undefined;
103
- dynamicArray_compute?: any;
104
- dynamicArray?: any[] | undefined;
105
- frozen?: {
106
- type: "row" | "column" | "both" | "rangeRow" | "rangeColumn" | "rangeBoth";
107
- range?: {
108
- row_focus: number;
109
- column_focus: number;
110
- } | undefined;
111
- } | undefined;
112
- };
113
- addSheet: () => void;
114
- deleteSheet: (options?: import("../../../../core/src/api").CommonOptions) => void;
115
- updateSheet: (data: SheetType[]) => void;
116
- activateSheet: (options?: import("../../../../core/src/api").CommonOptions) => void;
117
- setSheetName: (name: string, options?: import("../../../../core/src/api").CommonOptions) => void;
118
- setSheetOrder: (orderList: Record<string, number>) => void;
119
- scroll: (options: {
120
- scrollLeft?: number | undefined;
121
- scrollTop?: number | undefined;
122
- targetRow?: number | undefined;
123
- targetColumn?: number | undefined;
124
- }) => void;
125
- addPresences: (newPresences: import("@fileverse-dev/fortune-core").Presence[]) => void;
126
- removePresences: (arr: {
127
- username: string;
128
- userId?: string | undefined;
129
- }[]) => void;
130
- handleUndo: () => void;
131
- handleRedo: () => void;
132
- calculateFormula: () => void;
133
- dataToCelldata: (data: CellMatrix | undefined) => CellWithRowAndCol[];
134
- celldataToData: (celldata: CellWithRowAndCol[], rowCount?: number | undefined, colCount?: number | undefined) => CellMatrix | null;
135
- insertFunction: (selectedFuncIndex: number, filteredFunctionList: any[], callback?: (() => void) | undefined) => void;
136
- getLocaleContext: () => {
137
- generalDialog: {
138
- partiallyError: string;
139
- readOnlyError: string;
140
- dataNullError: string;
141
- noSelectionError: string;
142
- cannotSelectMultiple: string;
143
- };
144
- functionlist: ({
145
- n: string;
146
- t: number;
147
- d: string;
148
- a: string;
149
- m: number[];
150
- p: {
151
- name: string;
152
- detail: string;
153
- example: string;
154
- require: string;
155
- repeat: string;
156
- type: string;
157
- }[];
158
- } | {
159
- n: string;
160
- t: number;
161
- d: string;
162
- a: string;
163
- p: {
164
- name: string;
165
- detail: string;
166
- example: string;
167
- require: string;
168
- repeat: string;
169
- type: string;
170
- }[];
171
- m?: undefined;
172
- } | {
173
- n: string;
174
- t: string;
175
- d: string;
176
- a: string;
177
- m: number[];
178
- p: {
179
- name: string;
180
- example: string;
181
- detail: string;
182
- require: string;
183
- repeat: string;
184
- type: string;
185
- }[];
186
- })[];
187
- toolbar: {
188
- toolbar: string;
189
- undo: string;
190
- redo: string;
191
- "clear-format": string;
192
- "format-painter": string;
193
- "currency-format": string;
194
- "percentage-format": string;
195
- "number-decrease": string;
196
- "number-increase": string;
197
- moreFormats: string;
198
- "border-all": string;
199
- "merge-all": string;
200
- font: string;
201
- "font-size": string;
202
- bold: string;
203
- italic: string;
204
- "strike-through": string;
205
- underline: string;
206
- "font-color": string;
207
- "align-left": string;
208
- "align-center": string;
209
- "align-right": string;
210
- "align-top": string;
211
- "align-mid": string;
212
- "align-bottom": string;
213
- chooseColor: string;
214
- resetColor: string;
215
- customColor: string;
216
- alternatingColors: string;
217
- confirmColor: string;
218
- cancelColor: string;
219
- collapse: string;
220
- background: string;
221
- border: string;
222
- borderStyle: string;
223
- "merge-cell": string;
224
- chooseMergeType: string;
225
- horizontalAlign: string;
226
- verticalAlign: string;
227
- alignment: string;
228
- textWrap: string;
229
- textWrapMode: string;
230
- textRotate: string;
231
- textRotateMode: string;
232
- freeze: string;
233
- sort: string;
234
- filter: string;
235
- sortAndFilter: string;
236
- findAndReplace: string;
237
- "formula-sum": string;
238
- autoSum: string;
239
- moreFunction: string;
240
- conditionalFormat: string;
241
- comment: string;
242
- pivotTable: string;
243
- chart: string;
244
- screenshot: string;
245
- splitColumn: string;
246
- insertImage: string;
247
- insertLink: string;
248
- dataVerification: string;
249
- protection: string;
250
- clearText: string;
251
- noColorSelectedText: string;
252
- toolMore: string;
253
- toolLess: string;
254
- toolClose: string;
255
- toolMoreTip: string;
256
- moreOptions: string;
257
- cellFormat: string;
258
- print: string;
259
- };
260
- alternatingColors: {
261
- applyRange: string;
262
- selectRange: string;
263
- header: string;
264
- footer: string;
265
- errorInfo: string;
266
- textTitle: string;
267
- custom: string;
268
- close: string;
269
- selectionTextColor: string;
270
- selectionCellColor: string;
271
- removeColor: string;
272
- colorShow: string;
273
- currentColor: string;
274
- tipSelectRange: string;
275
- errorNoRange: string;
276
- errorExistColors: string;
277
- };
278
- button: {
279
- confirm: string;
280
- apply: string;
281
- cancel: string;
282
- close: string;
283
- update: string;
284
- delete: string;
285
- insert: string;
286
- prevPage: string;
287
- nextPage: string;
288
- total: string;
289
- };
290
- paint: {
291
- start: string;
292
- end: string;
293
- tipSelectRange: string;
294
- tipNotMulti: string;
295
- };
296
- format: {
297
- moreCurrency: string;
298
- moreDateTime: string;
299
- moreNumber: string;
300
- titleCurrency: string;
301
- decimalPlaces: string;
302
- titleDateTime: string;
303
- titleNumber: string;
304
- tipDecimalPlaces: string;
305
- select: string;
306
- format: string;
307
- currency: string;
308
- };
309
- info: {
310
- detailUpdate: string;
311
- detailSave: string;
312
- row: string;
313
- column: string;
314
- loading: string;
315
- copy: string;
316
- return: string;
317
- rename: string;
318
- tips: string;
319
- noName: string;
320
- wait: string;
321
- add: string;
322
- addLast: string;
323
- backTop: string;
324
- pageInfo: string;
325
- nextPage: string;
326
- tipInputNumber: string;
327
- tipInputNumberLimit: string;
328
- tipRowHeightLimit: string;
329
- tipColumnWidthLimit: string;
330
- pageInfoFull: string;
331
- };
332
- currencyDetail: {
333
- name: string;
334
- pos: string;
335
- value: string;
336
- }[];
337
- defaultFmt: (currency: string) => ({
338
- text: string;
339
- value: string;
340
- example: string;
341
- icon?: undefined;
342
- } | {
343
- text: string;
344
- value: string;
345
- example: string;
346
- icon: string;
347
- })[];
348
- dateFmtList: {
349
- name: string;
350
- value: string;
351
- }[];
352
- fontFamily: {
353
- MicrosoftYaHei: string;
354
- };
355
- fontarray: string[];
356
- fontjson: {
357
- "times new roman": number;
358
- arial: number;
359
- tahoma: number;
360
- verdana: number;
361
- 微软雅黑: number;
362
- "microsoft yahei": number;
363
- 宋体: number;
364
- simsun: number;
365
- 黑体: number;
366
- simhei: number;
367
- 楷体: number;
368
- kaiti: number;
369
- 仿宋: number;
370
- fangsong: number;
371
- 新宋体: number;
372
- nsimsun: number;
373
- 华文新魏: number;
374
- stxinwei: number;
375
- 华文行楷: number;
376
- stxingkai: number;
377
- 华文隶书: number;
378
- stliti: number;
379
- };
380
- border: {
381
- borderTop: string;
382
- borderBottom: string;
383
- borderLeft: string;
384
- borderRight: string;
385
- borderNone: string;
386
- borderAll: string;
387
- borderOutside: string;
388
- borderInside: string;
389
- borderHorizontal: string;
390
- borderVertical: string;
391
- borderColor: string;
392
- borderSize: string;
393
- borderSlash: string;
394
- borderDefault: string;
395
- borderStyle: string;
396
- };
397
- merge: {
398
- mergeAll: string;
399
- mergeV: string;
400
- mergeH: string;
401
- mergeCancel: string;
402
- overlappingError: string;
403
- partiallyError: string;
404
- };
405
- align: {
406
- left: string;
407
- center: string;
408
- right: string;
409
- top: string;
410
- middle: string;
411
- bottom: string;
412
- };
413
- textWrap: {
414
- overflow: string;
415
- wrap: string;
416
- clip: string;
417
- };
418
- rotation: {
419
- none: string;
420
- angleup: string;
421
- angledown: string;
422
- vertical: string;
423
- rotationUp: string;
424
- rotationDown: string;
425
- };
426
- freezen: {
427
- default: string;
428
- freezenRow: string;
429
- freezenColumn: string;
430
- freezenRC: string;
431
- freezenRowRange: string;
432
- freezenColumnRange: string;
433
- freezenRCRange: string;
434
- freezenCancel: string;
435
- noSelectionError: string;
436
- rangeRCOverErrorTitle: string;
437
- rangeRCOverError: string;
438
- };
439
- sort: {
440
- asc: string;
441
- desc: string;
442
- custom: string;
443
- hasTitle: string;
444
- sortBy: string;
445
- addOthers: string;
446
- close: string;
447
- confirm: string;
448
- columnOperation: string;
449
- secondaryTitle: string;
450
- sortTitle: string;
451
- sortRangeTitle: string;
452
- sortRangeTitleTo: string;
453
- noRangeError: string;
454
- mergeError: string;
455
- };
456
- filter: {
457
- filter: string;
458
- clearFilter: string;
459
- sortByAsc: string;
460
- sortByDesc: string;
461
- filterByColor: string;
462
- filterByCondition: string;
463
- filterByValues: string;
464
- filiterInputNone: string;
465
- filiterInputTip: string;
466
- filiterRangeStartTip: string;
467
- filiterRangeEndTip: string;
468
- filterValueByAllBtn: string;
469
- filterValueByClearBtn: string;
470
- filterValueByInverseBtn: string;
471
- filterValueByTip: string;
472
- filterConfirm: string;
473
- filterCancel: string;
474
- conditionNone: string;
475
- conditionCellIsNull: string;
476
- conditionCellNotNull: string;
477
- conditionCellTextContain: string;
478
- conditionCellTextNotContain: string;
479
- conditionCellTextStart: string;
480
- conditionCellTextEnd: string;
481
- conditionCellTextEqual: string;
482
- conditionCellDateEqual: string;
483
- conditionCellDateBefore: string;
484
- conditionCellDateAfter: string;
485
- conditionCellGreater: string;
486
- conditionCellGreaterEqual: string;
487
- conditionCellLess: string;
488
- conditionCellLessEqual: string;
489
- conditionCellEqual: string;
490
- conditionCellNotEqual: string;
491
- conditionCellBetween: string;
492
- conditionCellNotBetween: string;
493
- filiterMoreDataTip: string;
494
- filiterMonthText: string;
495
- filiterYearText: string;
496
- filiterByColorTip: string;
497
- filiterByTextColorTip: string;
498
- filterContainerOneColorTip: string;
499
- filterDateFormatTip: string;
500
- valueBlank: string;
501
- mergeError: string;
502
- };
503
- rightclick: {
504
- copy: string;
505
- copyAs: string;
506
- paste: string;
507
- insert: string;
508
- image: string;
509
- link: string;
510
- delete: string;
511
- deleteCell: string;
512
- deleteSelected: string;
513
- hide: string;
514
- hideSelected: string;
515
- showHide: string;
516
- to: string;
517
- left: string;
518
- right: string;
519
- top: string;
520
- bottom: string;
521
- moveLeft: string;
522
- moveUp: string;
523
- add: string;
524
- row: string;
525
- column: string;
526
- width: string;
527
- height: string;
528
- number: string;
529
- confirm: string;
530
- orderAZ: string;
531
- orderZA: string;
532
- clearContent: string;
533
- matrix: string;
534
- sortSelection: string;
535
- filterSelection: string;
536
- chartGeneration: string;
537
- firstLineTitle: string;
538
- untitled: string;
539
- array1: string;
540
- array2: string;
541
- array3: string;
542
- diagonal: string;
543
- antiDiagonal: string;
544
- diagonalOffset: string;
545
- offset: string;
546
- boolean: string;
547
- flip: string;
548
- upAndDown: string;
549
- leftAndRight: string;
550
- clockwise: string;
551
- counterclockwise: string;
552
- transpose: string;
553
- matrixCalculation: string;
554
- plus: string;
555
- minus: string;
556
- multiply: string;
557
- divided: string;
558
- power: string;
559
- root: string;
560
- log: string;
561
- delete0: string;
562
- removeDuplicate: string;
563
- byRow: string;
564
- byCol: string;
565
- generateNewMatrix: string;
566
- noMulti: string;
567
- cannotDeleteAllRow: string;
568
- cannotDeleteAllColumn: string;
569
- cannotDeleteRowReadOnly: string;
570
- cannotDeleteColumnReadOnly: string;
571
- cannotInsertOnRowReadOnly: string;
572
- cannotInsertOnColumnReadOnly: string;
573
- rowOverLimit: string;
574
- columnOverLimit: string;
575
- conditionFormat: string;
576
- };
577
- comment: {
578
- insert: string;
579
- edit: string;
580
- delete: string;
581
- showOne: string;
582
- showAll: string;
583
- };
584
- screenshot: {
585
- screenshotTipNoSelection: string;
586
- screenshotTipTitle: string;
587
- screenshotTipHasMerge: string;
588
- screenshotTipHasMulti: string;
589
- screenshotTipSuccess: string;
590
- screenshotImageName: string;
591
- downLoadClose: string;
592
- downLoadCopy: string;
593
- downLoadBtn: string;
594
- browserNotTip: string;
595
- rightclickTip: string;
596
- successTip: string;
597
- };
598
- splitText: {
599
- splitDelimiters: string;
600
- splitOther: string;
601
- splitContinueSymbol: string;
602
- splitDataPreview: string;
603
- splitTextTitle: string;
604
- splitConfirmToExe: string;
605
- splitSymbols: {
606
- name: string;
607
- value: string;
608
- }[];
609
- tipNoMulti: string;
610
- tipNoMultiColumn: string;
611
- tipNoSelect: string;
612
- };
613
- imageText: {
614
- imageSetting: string;
615
- close: string;
616
- conventional: string;
617
- moveCell1: string;
618
- moveCell2: string;
619
- moveCell3: string;
620
- fixedPos: string;
621
- border: string;
622
- width: string;
623
- radius: string;
624
- style: string;
625
- solid: string;
626
- dashed: string;
627
- dotted: string;
628
- double: string;
629
- color: string;
630
- };
631
- punctuation: {
632
- tab: string;
633
- semicolon: string;
634
- comma: string;
635
- space: string;
636
- };
637
- findAndReplace: {
638
- find: string;
639
- replace: string;
640
- goto: string;
641
- location: string;
642
- formula: string;
643
- date: string;
644
- number: string;
645
- string: string;
646
- error: string;
647
- condition: string;
648
- rowSpan: string;
649
- columnSpan: string;
650
- locationExample: string;
651
- lessTwoRowTip: string;
652
- lessTwoColumnTip: string;
653
- findTextbox: string;
654
- replaceTextbox: string;
655
- regexTextbox: string;
656
- wholeTextbox: string;
657
- distinguishTextbox: string;
658
- allReplaceBtn: string;
659
- replaceBtn: string;
660
- allFindBtn: string;
661
- findBtn: string;
662
- noFindTip: string;
663
- modeTip: string;
664
- searchTargetSheet: string;
665
- searchTargetCell: string;
666
- searchTargetValue: string;
667
- searchInputTip: string;
668
- noReplceTip: string;
669
- noMatchTip: string;
670
- successTip: string;
671
- locationConstant: string;
672
- locationFormula: string;
673
- locationDate: string;
674
- locationDigital: string;
675
- locationString: string;
676
- locationBool: string;
677
- locationError: string;
678
- locationNull: string;
679
- locationCondition: string;
680
- locationRowSpan: string;
681
- locationColumnSpan: string;
682
- locationTiplessTwoRow: string;
683
- locationTiplessTwoColumn: string;
684
- locationTipNotFindCell: string;
685
- };
686
- sheetconfig: {
687
- delete: string;
688
- copy: string;
689
- rename: string;
690
- changeColor: string;
691
- hide: string;
692
- unhide: string;
693
- moveLeft: string;
694
- moveRight: string;
695
- resetColor: string;
696
- cancelText: string;
697
- chooseText: string;
698
- focus: string;
699
- tipNameRepeat: string;
700
- noMoreSheet: string;
701
- confirmDelete: string;
702
- redoDelete: string;
703
- noHide: string;
704
- chartEditNoOpt: string;
705
- sheetNameSpecCharError: string;
706
- sheetNamecannotIsEmptyError: string;
707
- };
708
- conditionformat: {
709
- conditionformat_greaterThan: string;
710
- conditionformat_greaterThan_title: string;
711
- conditionformat_lessThan: string;
712
- conditionformat_lessThan_title: string;
713
- conditionformat_between: string;
714
- conditionformat_between_title: string;
715
- conditionformat_equal: string;
716
- conditionformat_equal_title: string;
717
- conditionformat_textContains: string;
718
- conditionformat_textContains_title: string;
719
- conditionformat_occurrenceDate: string;
720
- conditionformat_occurrenceDate_title: string;
721
- conditionformat_duplicateValue: string;
722
- conditionformat_duplicateValue_title: string;
723
- conditionformat_top10: string;
724
- conditionformat_top10_percent: string;
725
- conditionformat_top10_title: string;
726
- conditionformat_last10: string;
727
- conditionformat_last10_percent: string;
728
- conditionformat_last10_title: string;
729
- conditionformat_aboveAverage: string;
730
- conditionformat_aboveAverage_title: string;
731
- conditionformat_belowAverage: string;
732
- conditionformat_belowAverage_title: string;
733
- rule: string;
734
- newRule: string;
735
- editRule: string;
736
- deleteRule: string;
737
- deleteCellRule: string;
738
- deleteSheetRule: string;
739
- manageRules: string;
740
- showRules: string;
741
- highlightCellRules: string;
742
- itemSelectionRules: string;
743
- conditionformatManageRules: string;
744
- format: string;
745
- setFormat: string;
746
- setAs: string;
747
- setAsByArea: string;
748
- applyRange: string;
749
- selectRange: string;
750
- selectRange_percent: string;
751
- selectRange_average: string;
752
- selectRange_value: string;
753
- pleaseSelectRange: string;
754
- selectDataRange: string;
755
- selectCell: string;
756
- pleaseSelectCell: string;
757
- pleaseSelectADate: string;
758
- pleaseEnterInteger: string;
759
- onlySingleCell: string;
760
- conditionValueCanOnly: string;
761
- ruleTypeItem1: string;
762
- ruleTypeItem2: string;
763
- ruleTypeItem2_title: string;
764
- ruleTypeItem3: string;
765
- ruleTypeItem3_title: string;
766
- ruleTypeItem4: string;
767
- ruleTypeItem4_title: string;
768
- ruleTypeItem5: string;
769
- ruleTypeItem6: string;
770
- formula: string;
771
- textColor: string;
772
- cellColor: string;
773
- confirm: string;
774
- confirmColor: string;
775
- cancel: string;
776
- close: string;
777
- clearColorSelect: string;
778
- sheet: string;
779
- currentSheet: string;
780
- dataBar: string;
781
- dataBarColor: string;
782
- gradientDataBar_1: string;
783
- gradientDataBar_2: string;
784
- gradientDataBar_3: string;
785
- gradientDataBar_4: string;
786
- gradientDataBar_5: string;
787
- gradientDataBar_6: string;
788
- solidColorDataBar_1: string;
789
- solidColorDataBar_2: string;
790
- solidColorDataBar_3: string;
791
- solidColorDataBar_4: string;
792
- solidColorDataBar_5: string;
793
- solidColorDataBar_6: string;
794
- colorGradation: string;
795
- colorGradation_1: string;
796
- colorGradation_2: string;
797
- colorGradation_3: string;
798
- colorGradation_4: string;
799
- colorGradation_5: string;
800
- colorGradation_6: string;
801
- colorGradation_7: string;
802
- colorGradation_8: string;
803
- colorGradation_9: string;
804
- colorGradation_10: string;
805
- colorGradation_11: string;
806
- colorGradation_12: string;
807
- icons: string;
808
- pleaseSelectIcon: string;
809
- cellValue: string;
810
- specificText: string;
811
- occurrenceDate: string;
812
- greaterThan: string;
813
- lessThan: string;
814
- between: string;
815
- equal: string;
816
- in: string;
817
- to: string;
818
- between2: string;
819
- contain: string;
820
- textContains: string;
821
- duplicateValue: string;
822
- uniqueValue: string;
823
- top: string;
824
- top10: string;
825
- top10_percent: string;
826
- last: string;
827
- last10: string;
828
- last10_percent: string;
829
- oneself: string;
830
- above: string;
831
- aboveAverage: string;
832
- below: string;
833
- belowAverage: string;
834
- all: string;
835
- yesterday: string;
836
- today: string;
837
- tomorrow: string;
838
- lastWeek: string;
839
- thisWeek: string;
840
- lastMonth: string;
841
- thisMonth: string;
842
- lastYear: string;
843
- thisYear: string;
844
- last7days: string;
845
- last30days: string;
846
- next7days: string;
847
- next30days: string;
848
- next60days: string;
849
- chooseRuleType: string;
850
- editRuleDescription: string;
851
- newFormatRule: string;
852
- editFormatRule: string;
853
- formatStyle: string;
854
- fillType: string;
855
- color: string;
856
- twocolor: string;
857
- tricolor: string;
858
- multicolor: string;
859
- grayColor: string;
860
- gradient: string;
861
- solid: string;
862
- maxValue: string;
863
- medianValue: string;
864
- minValue: string;
865
- direction: string;
866
- threeWayArrow: string;
867
- fourWayArrow: string;
868
- fiveWayArrow: string;
869
- threeTriangles: string;
870
- shape: string;
871
- threeColorTrafficLight: string;
872
- fourColorTrafficLight: string;
873
- threeSigns: string;
874
- greenRedBlackGradient: string;
875
- rimless: string;
876
- bordered: string;
877
- mark: string;
878
- threeSymbols: string;
879
- tricolorFlag: string;
880
- circled: string;
881
- noCircle: string;
882
- grade: string;
883
- grade4: string;
884
- grade5: string;
885
- threeStars: string;
886
- fiveQuadrantDiagram: string;
887
- fiveBoxes: string;
888
- };
889
- insertLink: {
890
- linkText: string;
891
- linkType: string;
892
- linkAddress: string;
893
- linkSheet: string;
894
- linkCell: string;
895
- linkTooltip: string;
896
- selectCellRange: string;
897
- cellRangePlaceholder: string;
898
- placeholder1: string;
899
- placeholder2: string;
900
- placeholder3: string;
901
- tooltipInfo1: string;
902
- invalidCellRangeTip: string;
903
- openLink: string;
904
- goTo: string;
905
- };
906
- linkTypeList: {
907
- text: string;
908
- value: string;
909
- }[];
910
- dataVerification: {
911
- cellRange: string;
912
- selectCellRange: string;
913
- selectCellRange2: string;
914
- verificationCondition: string;
915
- allowMultiSelect: string;
916
- dropdown: string;
917
- checkbox: string;
918
- number: string;
919
- number_integer: string;
920
- number_decimal: string;
921
- text_content: string;
922
- text_length: string;
923
- date: string;
924
- validity: string;
925
- placeholder1: string;
926
- placeholder2: string;
927
- placeholder3: string;
928
- placeholder4: string;
929
- placeholder5: string;
930
- selected: string;
931
- notSelected: string;
932
- between: string;
933
- notBetween: string;
934
- equal: string;
935
- notEqualTo: string;
936
- moreThanThe: string;
937
- lessThan: string;
938
- greaterOrEqualTo: string;
939
- lessThanOrEqualTo: string;
940
- include: string;
941
- exclude: string;
942
- earlierThan: string;
943
- noEarlierThan: string;
944
- laterThan: string;
945
- noLaterThan: string;
946
- identificationNumber: string;
947
- phoneNumber: string;
948
- remote: string;
949
- prohibitInput: string;
950
- hintShow: string;
951
- deleteVerification: string;
952
- tooltipInfo1: string;
953
- tooltipInfo2: string;
954
- tooltipInfo3: string;
955
- tooltipInfo4: string;
956
- tooltipInfo5: string;
957
- tooltipInfo6: string;
958
- tooltipInfo7: string;
959
- textlengthInteger: string;
960
- };
961
- formula: {
962
- sum: string;
963
- average: string;
964
- count: string;
965
- max: string;
966
- min: string;
967
- ifGenerate: string;
968
- find: string;
969
- tipNotBelongToIf: string;
970
- tipSelectCell: string;
971
- ifGenCompareValueTitle: string;
972
- ifGenSelectCellTitle: string;
973
- ifGenRangeTitle: string;
974
- ifGenRangeTo: string;
975
- ifGenRangeEvaluate: string;
976
- ifGenSelectRangeTitle: string;
977
- ifGenCutWay: string;
978
- ifGenCutSame: string;
979
- ifGenCutNpiece: string;
980
- ifGenCutCustom: string;
981
- ifGenCutConfirm: string;
982
- ifGenTipSelectCell: string;
983
- ifGenTipSelectCellPlace: string;
984
- ifGenTipSelectRange: string;
985
- ifGenTipSelectRangePlace: string;
986
- ifGenTipNotNullValue: string;
987
- ifGenTipLableTitile: string;
988
- ifGenTipRangeNotforNull: string;
989
- ifGenTipCutValueNotforNull: string;
990
- ifGenTipNotGenCondition: string;
991
- };
992
- formulaMore: {
993
- valueTitle: string;
994
- tipSelectDataRange: string;
995
- tipDataRangeTile: string;
996
- findFunctionTitle: string;
997
- tipInputFunctionName: string;
998
- Array: string;
999
- Database: string;
1000
- Date: string;
1001
- Engineering: string;
1002
- Filter: string;
1003
- Financial: string;
1004
- luckysheet: string;
1005
- other: string;
1006
- Logical: string;
1007
- Lookup: string;
1008
- Math: string;
1009
- Operator: string;
1010
- Parser: string;
1011
- Statistical: string;
1012
- Text: string;
1013
- dataMining: string;
1014
- selectFunctionTitle: string;
1015
- calculationResult: string;
1016
- tipSuccessText: string;
1017
- tipParamErrorText: string;
1018
- helpClose: string;
1019
- helpCollapse: string;
1020
- helpExample: string;
1021
- helpAbstract: string;
1022
- execfunctionError: string;
1023
- execfunctionSelfError: string;
1024
- execfunctionSelfErrorResult: string;
1025
- allowRepeatText: string;
1026
- allowOptionText: string;
1027
- selectCategory: string;
1028
- };
1029
- drag: {
1030
- noMerge: string;
1031
- affectPivot: string;
1032
- noMulti: string;
1033
- noPaste: string;
1034
- noPartMerge: string;
1035
- inputCorrect: string;
1036
- notLessOne: string;
1037
- offsetColumnLessZero: string;
1038
- pasteMustKeybordAlert: string;
1039
- pasteMustKeybordAlertHTMLTitle: string;
1040
- pasteMustKeybordAlertHTML: string;
1041
- };
1042
- pivotTable: {
1043
- title: string;
1044
- closePannel: string;
1045
- editRange: string;
1046
- tipPivotFieldSelected: string;
1047
- tipClearSelectedField: string;
1048
- btnClearSelectedField: string;
1049
- btnFilter: string;
1050
- titleRow: string;
1051
- titleColumn: string;
1052
- titleValue: string;
1053
- tipShowColumn: string;
1054
- tipShowRow: string;
1055
- titleSelectionDataRange: string;
1056
- titleDataRange: string;
1057
- valueSum: string;
1058
- valueStatisticsSUM: string;
1059
- valueStatisticsCOUNT: string;
1060
- valueStatisticsCOUNTA: string;
1061
- valueStatisticsCOUNTUNIQUE: string;
1062
- valueStatisticsAVERAGE: string;
1063
- valueStatisticsMAX: string;
1064
- valueStatisticsMIN: string;
1065
- valueStatisticsMEDIAN: string;
1066
- valueStatisticsPRODUCT: string;
1067
- valueStatisticsSTDEV: string;
1068
- valueStatisticsSTDEVP: string;
1069
- valueStatisticslet: string;
1070
- valueStatisticsVARP: string;
1071
- errorNotAllowEdit: string;
1072
- errorNotAllowMulti: string;
1073
- errorSelectRange: string;
1074
- errorIsDamage: string;
1075
- errorNotAllowPivotData: string;
1076
- errorSelectionRange: string;
1077
- errorIncreaseRange: string;
1078
- titleAddColumn: string;
1079
- titleMoveColumn: string;
1080
- titleClearColumnFilter: string;
1081
- titleFilterColumn: string;
1082
- titleSort: string;
1083
- titleNoSort: string;
1084
- titleSortAsc: string;
1085
- titleSortDesc: string;
1086
- titleSortBy: string;
1087
- titleShowSum: string;
1088
- titleStasticTrue: string;
1089
- titleStasticFalse: string;
1090
- };
1091
- dropCell: {
1092
- copyCell: string;
1093
- sequence: string;
1094
- onlyFormat: string;
1095
- noFormat: string;
1096
- day: string;
1097
- workDay: string;
1098
- month: string;
1099
- year: string;
1100
- chineseNumber: string;
1101
- };
1102
- imageCtrl: {
1103
- borderTile: string;
1104
- borderCur: string;
1105
- };
1106
- protection: {
1107
- protectiontTitle: string;
1108
- enterPassword: string;
1109
- enterHint: string;
1110
- swichProtectionTip: string;
1111
- authorityTitle: string;
1112
- selectLockedCells: string;
1113
- selectunLockedCells: string;
1114
- formatCells: string;
1115
- formatColumns: string;
1116
- formatRows: string;
1117
- insertColumns: string;
1118
- insertRows: string;
1119
- insertHyperlinks: string;
1120
- deleteColumns: string;
1121
- deleteRows: string;
1122
- sort: string;
1123
- filter: string;
1124
- usePivotTablereports: string;
1125
- editObjects: string;
1126
- editScenarios: string;
1127
- allowRangeTitle: string;
1128
- allowRangeAdd: string;
1129
- allowRangeAddTitle: string;
1130
- allowRangeAddSqrf: string;
1131
- selectCellRange: string;
1132
- selectCellRangeHolder: string;
1133
- allowRangeAddTitlePassword: string;
1134
- allowRangeAddTitleHint: string;
1135
- allowRangeAddTitleHintTitle: string;
1136
- allowRangeAddtitleDefault: string;
1137
- rangeItemDblclick: string;
1138
- rangeItemHasPassword: string;
1139
- rangeItemErrorTitleNull: string;
1140
- rangeItemErrorRangeNull: string;
1141
- rangeItemErrorRange: string;
1142
- validationTitle: string;
1143
- validationTips: string;
1144
- validationInputHint: string;
1145
- checkPasswordNullalert: string;
1146
- checkPasswordWrongalert: string;
1147
- checkPasswordSucceedalert: string;
1148
- defaultRangeHintText: string;
1149
- defaultSheetHintText: string;
1150
- };
1151
- cellFormat: {
1152
- cellFormatTitle: string;
1153
- protection: string;
1154
- locked: string;
1155
- hidden: string;
1156
- protectionTips: string;
1157
- tipsPart: string;
1158
- tipsAll: string;
1159
- selectionIsNullAlert: string;
1160
- sheetDataIsNullAlert: string;
1161
- };
1162
- print: {
1163
- normalBtn: string;
1164
- layoutBtn: string;
1165
- pageBtn: string;
1166
- menuItemPrint: string;
1167
- menuItemAreas: string;
1168
- menuItemRows: string;
1169
- menuItemColumns: string;
1170
- };
1171
- edit: {
1172
- typing: string;
1173
- };
1174
- websocket: {
1175
- success: string;
1176
- refresh: string;
1177
- wait: string;
1178
- close: string;
1179
- contact: string;
1180
- support: string;
1181
- };
1182
- };
1183
- getWorkbookContext: () => Context;
1184
- }>>;
1185
- export default Workbook;