@fileverse-dev/fortune-react 1.0.26 → 1.1.0

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