@univerjs/sheets-ui 0.1.0-alpha.1

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 (342) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +16 -0
  3. package/lib/cjs/index.js +21729 -0
  4. package/lib/cjs/locale/en-US.js +605 -0
  5. package/lib/cjs/locale/zh-CN.js +442 -0
  6. package/lib/esm/index.js +21640 -0
  7. package/lib/esm/locale/en-US.js +584 -0
  8. package/lib/esm/locale/zh-CN.js +421 -0
  9. package/lib/index.css +587 -0
  10. package/lib/types/basics/const/default-univer-sheet-config.d.ts +127 -0
  11. package/lib/types/basics/const/default-univer-sheet-config.d.ts.map +1 -0
  12. package/lib/types/basics/const/index.d.ts +3 -0
  13. package/lib/types/basics/const/index.d.ts.map +1 -0
  14. package/lib/types/basics/const/plugin-name.d.ts +2 -0
  15. package/lib/types/basics/const/plugin-name.d.ts.map +1 -0
  16. package/lib/types/basics/editor/get-editor-object.d.ts +9 -0
  17. package/lib/types/basics/editor/get-editor-object.d.ts.map +1 -0
  18. package/lib/types/basics/index.d.ts +3 -0
  19. package/lib/types/basics/index.d.ts.map +1 -0
  20. package/lib/types/basics/interfaces/cell.d.ts +6 -0
  21. package/lib/types/basics/interfaces/cell.d.ts.map +1 -0
  22. package/lib/types/basics/interfaces/component-config/i-sheet-ui-plugin-config.d.ts +13 -0
  23. package/lib/types/basics/interfaces/component-config/i-sheet-ui-plugin-config.d.ts.map +1 -0
  24. package/lib/types/basics/interfaces/component-config/index.d.ts +3 -0
  25. package/lib/types/basics/interfaces/component-config/index.d.ts.map +1 -0
  26. package/lib/types/basics/interfaces/component-config/sheet-container-config.d.ts +20 -0
  27. package/lib/types/basics/interfaces/component-config/sheet-container-config.d.ts.map +1 -0
  28. package/lib/types/basics/interfaces/component-config/toolbar-config.d.ts +25 -0
  29. package/lib/types/basics/interfaces/component-config/toolbar-config.d.ts.map +1 -0
  30. package/lib/types/basics/interfaces/index.d.ts +2 -0
  31. package/lib/types/basics/interfaces/index.d.ts.map +1 -0
  32. package/lib/types/commands/commands/__tests__/auto-fill.controller.spec.d.ts +2 -0
  33. package/lib/types/commands/commands/__tests__/auto-fill.controller.spec.d.ts.map +1 -0
  34. package/lib/types/commands/commands/__tests__/create-selection-command-test-bed.d.ts +29 -0
  35. package/lib/types/commands/commands/__tests__/create-selection-command-test-bed.d.ts.map +1 -0
  36. package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts +2 -0
  37. package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts.map +1 -0
  38. package/lib/types/commands/commands/__tests__/set-selections.command.spec.d.ts +2 -0
  39. package/lib/types/commands/commands/__tests__/set-selections.command.spec.d.ts.map +1 -0
  40. package/lib/types/commands/commands/auto-fill.command.d.ts +20 -0
  41. package/lib/types/commands/commands/auto-fill.command.d.ts.map +1 -0
  42. package/lib/types/commands/commands/clipboard.command.d.ts +12 -0
  43. package/lib/types/commands/commands/clipboard.command.d.ts.map +1 -0
  44. package/lib/types/commands/commands/inline-format.command.d.ts +15 -0
  45. package/lib/types/commands/commands/inline-format.command.d.ts.map +1 -0
  46. package/lib/types/commands/commands/refill.command.d.ts +3 -0
  47. package/lib/types/commands/commands/refill.command.d.ts.map +1 -0
  48. package/lib/types/commands/commands/rename.command.d.ts +3 -0
  49. package/lib/types/commands/commands/rename.command.d.ts.map +1 -0
  50. package/lib/types/commands/commands/set-format-painter.command.d.ts +12 -0
  51. package/lib/types/commands/commands/set-format-painter.command.d.ts.map +1 -0
  52. package/lib/types/commands/commands/set-frozen.command.d.ts +14 -0
  53. package/lib/types/commands/commands/set-frozen.command.d.ts.map +1 -0
  54. package/lib/types/commands/commands/set-scroll.command.d.ts +24 -0
  55. package/lib/types/commands/commands/set-scroll.command.d.ts.map +1 -0
  56. package/lib/types/commands/commands/set-selection-frozen.command.d.ts +3 -0
  57. package/lib/types/commands/commands/set-selection-frozen.command.d.ts.map +1 -0
  58. package/lib/types/commands/commands/set-selection.command.d.ts +40 -0
  59. package/lib/types/commands/commands/set-selection.command.d.ts.map +1 -0
  60. package/lib/types/commands/commands/set-zoom-ratio.command.d.ts +16 -0
  61. package/lib/types/commands/commands/set-zoom-ratio.command.d.ts.map +1 -0
  62. package/lib/types/commands/commands/unhide.command.d.ts +3 -0
  63. package/lib/types/commands/commands/unhide.command.d.ts.map +1 -0
  64. package/lib/types/commands/operations/activate-cell-edit.operation.d.ts +4 -0
  65. package/lib/types/commands/operations/activate-cell-edit.operation.d.ts.map +1 -0
  66. package/lib/types/commands/operations/cell-edit.operation.d.ts +9 -0
  67. package/lib/types/commands/operations/cell-edit.operation.d.ts.map +1 -0
  68. package/lib/types/commands/operations/scroll.operation.d.ts +4 -0
  69. package/lib/types/commands/operations/scroll.operation.d.ts.map +1 -0
  70. package/lib/types/commands/operations/selection.operation.d.ts +12 -0
  71. package/lib/types/commands/operations/selection.operation.d.ts.map +1 -0
  72. package/lib/types/commands/operations/set-editor-resize.operation.d.ts +3 -0
  73. package/lib/types/commands/operations/set-editor-resize.operation.d.ts.map +1 -0
  74. package/lib/types/commands/operations/set-format-painter.operation.d.ts +7 -0
  75. package/lib/types/commands/operations/set-format-painter.operation.d.ts.map +1 -0
  76. package/lib/types/commands/operations/set-zoom-ratio.operation.d.ts +10 -0
  77. package/lib/types/commands/operations/set-zoom-ratio.operation.d.ts.map +1 -0
  78. package/lib/types/common/keys.d.ts +22 -0
  79. package/lib/types/common/keys.d.ts.map +1 -0
  80. package/lib/types/components/border-panel/BorderPanel.d.ts +4 -0
  81. package/lib/types/components/border-panel/BorderPanel.d.ts.map +1 -0
  82. package/lib/types/components/border-panel/border-line/BorderLine.d.ts +8 -0
  83. package/lib/types/components/border-panel/border-line/BorderLine.d.ts.map +1 -0
  84. package/lib/types/components/border-panel/border-line/icons/BorderDashDot.d.ts +3 -0
  85. package/lib/types/components/border-panel/border-line/icons/BorderDashDot.d.ts.map +1 -0
  86. package/lib/types/components/border-panel/border-line/icons/BorderDashDotDot.d.ts +3 -0
  87. package/lib/types/components/border-panel/border-line/icons/BorderDashDotDot.d.ts.map +1 -0
  88. package/lib/types/components/border-panel/border-line/icons/BorderDashed.d.ts +3 -0
  89. package/lib/types/components/border-panel/border-line/icons/BorderDashed.d.ts.map +1 -0
  90. package/lib/types/components/border-panel/border-line/icons/BorderDotted.d.ts +3 -0
  91. package/lib/types/components/border-panel/border-line/icons/BorderDotted.d.ts.map +1 -0
  92. package/lib/types/components/border-panel/border-line/icons/BorderHair.d.ts +3 -0
  93. package/lib/types/components/border-panel/border-line/icons/BorderHair.d.ts.map +1 -0
  94. package/lib/types/components/border-panel/border-line/icons/BorderMedium.d.ts +3 -0
  95. package/lib/types/components/border-panel/border-line/icons/BorderMedium.d.ts.map +1 -0
  96. package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDot.d.ts +3 -0
  97. package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDot.d.ts.map +1 -0
  98. package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDotDot.d.ts +3 -0
  99. package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDotDot.d.ts.map +1 -0
  100. package/lib/types/components/border-panel/border-line/icons/BorderMediumDashed.d.ts +3 -0
  101. package/lib/types/components/border-panel/border-line/icons/BorderMediumDashed.d.ts.map +1 -0
  102. package/lib/types/components/border-panel/border-line/icons/BorderThick.d.ts +3 -0
  103. package/lib/types/components/border-panel/border-line/icons/BorderThick.d.ts.map +1 -0
  104. package/lib/types/components/border-panel/border-line/icons/BorderThin.d.ts +3 -0
  105. package/lib/types/components/border-panel/border-line/icons/BorderThin.d.ts.map +1 -0
  106. package/lib/types/components/border-panel/index.d.ts +1 -0
  107. package/lib/types/components/border-panel/index.d.ts.map +1 -0
  108. package/lib/types/components/border-panel/interface.d.ts +11 -0
  109. package/lib/types/components/border-panel/interface.d.ts.map +1 -0
  110. package/lib/types/components/color-picker/index.d.ts +3 -0
  111. package/lib/types/components/color-picker/index.d.ts.map +1 -0
  112. package/lib/types/components/color-picker/interface.d.ts +2 -0
  113. package/lib/types/components/color-picker/interface.d.ts.map +1 -0
  114. package/lib/types/components/const.d.ts +2 -0
  115. package/lib/types/components/const.d.ts.map +1 -0
  116. package/lib/types/components/font-family/FontFamily.d.ts +4 -0
  117. package/lib/types/components/font-family/FontFamily.d.ts.map +1 -0
  118. package/lib/types/components/font-family/FontFamilyItem.d.ts +4 -0
  119. package/lib/types/components/font-family/FontFamilyItem.d.ts.map +1 -0
  120. package/lib/types/components/font-family/index.d.ts +4 -0
  121. package/lib/types/components/font-family/index.d.ts.map +1 -0
  122. package/lib/types/components/font-family/interface.d.ts +10 -0
  123. package/lib/types/components/font-family/interface.d.ts.map +1 -0
  124. package/lib/types/components/font-size/FontSize.d.ts +4 -0
  125. package/lib/types/components/font-size/FontSize.d.ts.map +1 -0
  126. package/lib/types/components/font-size/index.d.ts +3 -0
  127. package/lib/types/components/font-size/index.d.ts.map +1 -0
  128. package/lib/types/components/font-size/interface.d.ts +9 -0
  129. package/lib/types/components/font-size/interface.d.ts.map +1 -0
  130. package/lib/types/components/menu-item-input/MenuItemInput.d.ts +4 -0
  131. package/lib/types/components/menu-item-input/MenuItemInput.d.ts.map +1 -0
  132. package/lib/types/components/menu-item-input/index.d.ts +3 -0
  133. package/lib/types/components/menu-item-input/index.d.ts.map +1 -0
  134. package/lib/types/components/menu-item-input/interface.d.ts +7 -0
  135. package/lib/types/components/menu-item-input/interface.d.ts.map +1 -0
  136. package/lib/types/components/range-selector/RangeSelector.d.ts +7 -0
  137. package/lib/types/components/range-selector/RangeSelector.d.ts.map +1 -0
  138. package/lib/types/controllers/auto-fill.controller.d.ts +32 -0
  139. package/lib/types/controllers/auto-fill.controller.d.ts.map +1 -0
  140. package/lib/types/controllers/auto-height.controller.d.ts +15 -0
  141. package/lib/types/controllers/auto-height.controller.d.ts.map +1 -0
  142. package/lib/types/controllers/clipboard/clipboard.controller.d.ts +25 -0
  143. package/lib/types/controllers/clipboard/clipboard.controller.d.ts.map +1 -0
  144. package/lib/types/controllers/clipboard/utils.d.ts +36 -0
  145. package/lib/types/controllers/clipboard/utils.d.ts.map +1 -0
  146. package/lib/types/controllers/contextmenu/contextmenu.controller.d.ts +20 -0
  147. package/lib/types/controllers/contextmenu/contextmenu.controller.d.ts.map +1 -0
  148. package/lib/types/controllers/editor/editing.controller.d.ts +16 -0
  149. package/lib/types/controllers/editor/editing.controller.d.ts.map +1 -0
  150. package/lib/types/controllers/editor/end-edit.controller.d.ts +36 -0
  151. package/lib/types/controllers/editor/end-edit.controller.d.ts.map +1 -0
  152. package/lib/types/controllers/editor/formula-editor.controller.d.ts +28 -0
  153. package/lib/types/controllers/editor/formula-editor.controller.d.ts.map +1 -0
  154. package/lib/types/controllers/editor/initialize-editor.controller.d.ts +13 -0
  155. package/lib/types/controllers/editor/initialize-editor.controller.d.ts.map +1 -0
  156. package/lib/types/controllers/editor/start-edit.controller.d.ts +49 -0
  157. package/lib/types/controllers/editor/start-edit.controller.d.ts.map +1 -0
  158. package/lib/types/controllers/editor-bridge.controller.d.ts +29 -0
  159. package/lib/types/controllers/editor-bridge.controller.d.ts.map +1 -0
  160. package/lib/types/controllers/format-painter/format-painter.controller.d.ts +17 -0
  161. package/lib/types/controllers/format-painter/format-painter.controller.d.ts.map +1 -0
  162. package/lib/types/controllers/freeze.controller.d.ts +57 -0
  163. package/lib/types/controllers/freeze.controller.d.ts.map +1 -0
  164. package/lib/types/controllers/header-menu.controller.d.ts +27 -0
  165. package/lib/types/controllers/header-menu.controller.d.ts.map +1 -0
  166. package/lib/types/controllers/header-move.controller.d.ts +39 -0
  167. package/lib/types/controllers/header-move.controller.d.ts.map +1 -0
  168. package/lib/types/controllers/header-resize.controller.d.ts +27 -0
  169. package/lib/types/controllers/header-resize.controller.d.ts.map +1 -0
  170. package/lib/types/controllers/header-unhide.controller.d.ts +21 -0
  171. package/lib/types/controllers/header-unhide.controller.d.ts.map +1 -0
  172. package/lib/types/controllers/menu/__tests__/create-menu-test-bed.d.ts +7 -0
  173. package/lib/types/controllers/menu/__tests__/create-menu-test-bed.d.ts.map +1 -0
  174. package/lib/types/controllers/menu/__tests__/menu.spec.d.ts +2 -0
  175. package/lib/types/controllers/menu/__tests__/menu.spec.d.ts.map +1 -0
  176. package/lib/types/controllers/menu/__tests__/row-col.menu.spec.d.ts +2 -0
  177. package/lib/types/controllers/menu/__tests__/row-col.menu.spec.d.ts.map +1 -0
  178. package/lib/types/controllers/menu/border.menu.d.ts +5 -0
  179. package/lib/types/controllers/menu/border.menu.d.ts.map +1 -0
  180. package/lib/types/controllers/menu/clear.menu.d.ts +6 -0
  181. package/lib/types/controllers/menu/clear.menu.d.ts.map +1 -0
  182. package/lib/types/controllers/menu/delete.menu.d.ts +7 -0
  183. package/lib/types/controllers/menu/delete.menu.d.ts.map +1 -0
  184. package/lib/types/controllers/menu/insert.menu.d.ts +12 -0
  185. package/lib/types/controllers/menu/insert.menu.d.ts.map +1 -0
  186. package/lib/types/controllers/menu/menu.d.ts +79 -0
  187. package/lib/types/controllers/menu/menu.d.ts.map +1 -0
  188. package/lib/types/controllers/menu/merge.menu.d.ts +8 -0
  189. package/lib/types/controllers/menu/merge.menu.d.ts.map +1 -0
  190. package/lib/types/controllers/menu/sheet.menu.d.ts +10 -0
  191. package/lib/types/controllers/menu/sheet.menu.d.ts.map +1 -0
  192. package/lib/types/controllers/move-range.controller.d.ts +11 -0
  193. package/lib/types/controllers/move-range.controller.d.ts.map +1 -0
  194. package/lib/types/controllers/navigation/navigation.controller.d.ts +8 -0
  195. package/lib/types/controllers/navigation/navigation.controller.d.ts.map +1 -0
  196. package/lib/types/controllers/scroll.controller.d.ts +24 -0
  197. package/lib/types/controllers/scroll.controller.d.ts.map +1 -0
  198. package/lib/types/controllers/selection.controller.d.ts +27 -0
  199. package/lib/types/controllers/selection.controller.d.ts.map +1 -0
  200. package/lib/types/controllers/sheet-render.controller.d.ts +19 -0
  201. package/lib/types/controllers/sheet-render.controller.d.ts.map +1 -0
  202. package/lib/types/controllers/sheet-ui.controller.d.ts +15 -0
  203. package/lib/types/controllers/sheet-ui.controller.d.ts.map +1 -0
  204. package/lib/types/controllers/shortcuts/editor.shortcut.d.ts +12 -0
  205. package/lib/types/controllers/shortcuts/editor.shortcut.d.ts.map +1 -0
  206. package/lib/types/controllers/shortcuts/operation.shortcut.d.ts +4 -0
  207. package/lib/types/controllers/shortcuts/operation.shortcut.d.ts.map +1 -0
  208. package/lib/types/controllers/shortcuts/selection.shortcut.d.ts +24 -0
  209. package/lib/types/controllers/shortcuts/selection.shortcut.d.ts.map +1 -0
  210. package/lib/types/controllers/shortcuts/style.shortcut.d.ts +6 -0
  211. package/lib/types/controllers/shortcuts/style.shortcut.d.ts.map +1 -0
  212. package/lib/types/controllers/shortcuts/utils.d.ts +9 -0
  213. package/lib/types/controllers/shortcuts/utils.d.ts.map +1 -0
  214. package/lib/types/controllers/shortcuts/value.shortcut.d.ts +3 -0
  215. package/lib/types/controllers/shortcuts/value.shortcut.d.ts.map +1 -0
  216. package/lib/types/controllers/shortcuts/view.shortcut.d.ts +5 -0
  217. package/lib/types/controllers/shortcuts/view.shortcut.d.ts.map +1 -0
  218. package/lib/types/controllers/status-bar.controller.d.ts +16 -0
  219. package/lib/types/controllers/status-bar.controller.d.ts.map +1 -0
  220. package/lib/types/controllers/utils/component-tools.d.ts +30 -0
  221. package/lib/types/controllers/utils/component-tools.d.ts.map +1 -0
  222. package/lib/types/controllers/zoom.controller.d.ts +24 -0
  223. package/lib/types/controllers/zoom.controller.d.ts.map +1 -0
  224. package/lib/types/index.d.ts +26 -0
  225. package/lib/types/index.d.ts.map +1 -0
  226. package/lib/types/locale/en-US.d.ts +471 -0
  227. package/lib/types/locale/en-US.d.ts.map +1 -0
  228. package/lib/types/locale/index.d.ts +3 -0
  229. package/lib/types/locale/index.d.ts.map +1 -0
  230. package/lib/types/locale/zh-CN.d.ts +436 -0
  231. package/lib/types/locale/zh-CN.d.ts.map +1 -0
  232. package/lib/types/services/auto-fill/auto-fill.service.d.ts +65 -0
  233. package/lib/types/services/auto-fill/auto-fill.service.d.ts.map +1 -0
  234. package/lib/types/services/auto-fill/rules.d.ts +9 -0
  235. package/lib/types/services/auto-fill/rules.d.ts.map +1 -0
  236. package/lib/types/services/auto-fill/tools.d.ts +96 -0
  237. package/lib/types/services/auto-fill/tools.d.ts.map +1 -0
  238. package/lib/types/services/auto-fill/type.d.ts +54 -0
  239. package/lib/types/services/auto-fill/type.d.ts.map +1 -0
  240. package/lib/types/services/clipboard/__tests__/clipboard-service.spec.d.ts +2 -0
  241. package/lib/types/services/clipboard/__tests__/clipboard-service.spec.d.ts.map +1 -0
  242. package/lib/types/services/clipboard/__tests__/clipboard-test-bed.d.ts +21 -0
  243. package/lib/types/services/clipboard/__tests__/clipboard-test-bed.d.ts.map +1 -0
  244. package/lib/types/services/clipboard/__tests__/mock-clipboard.d.ts +23 -0
  245. package/lib/types/services/clipboard/__tests__/mock-clipboard.d.ts.map +1 -0
  246. package/lib/types/services/clipboard/clipboard.service.d.ts +104 -0
  247. package/lib/types/services/clipboard/clipboard.service.d.ts.map +1 -0
  248. package/lib/types/services/clipboard/copy-content-cache.d.ts +20 -0
  249. package/lib/types/services/clipboard/copy-content-cache.d.ts.map +1 -0
  250. package/lib/types/services/clipboard/html-to-usm/converter.d.ts +27 -0
  251. package/lib/types/services/clipboard/html-to-usm/converter.d.ts.map +1 -0
  252. package/lib/types/services/clipboard/html-to-usm/parse-node-style.d.ts +3 -0
  253. package/lib/types/services/clipboard/html-to-usm/parse-node-style.d.ts.map +1 -0
  254. package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-lark.d.ts +4 -0
  255. package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-lark.d.ts.map +1 -0
  256. package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-word.d.ts +4 -0
  257. package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-word.d.ts.map +1 -0
  258. package/lib/types/services/clipboard/html-to-usm/paste-plugins/type.d.ts +16 -0
  259. package/lib/types/services/clipboard/html-to-usm/paste-plugins/type.d.ts.map +1 -0
  260. package/lib/types/services/clipboard/html-to-usm/utils.d.ts +5 -0
  261. package/lib/types/services/clipboard/html-to-usm/utils.d.ts.map +1 -0
  262. package/lib/types/services/clipboard/type.d.ts +120 -0
  263. package/lib/types/services/clipboard/type.d.ts.map +1 -0
  264. package/lib/types/services/clipboard/usm-to-html/convertor.d.ts +9 -0
  265. package/lib/types/services/clipboard/usm-to-html/convertor.d.ts.map +1 -0
  266. package/lib/types/services/editor/cell-editor-manager.service.d.ts +43 -0
  267. package/lib/types/services/editor/cell-editor-manager.service.d.ts.map +1 -0
  268. package/lib/types/services/editor/formula-editor-manager.service.d.ts +30 -0
  269. package/lib/types/services/editor/formula-editor-manager.service.d.ts.map +1 -0
  270. package/lib/types/services/editor-bridge.service.d.ts +79 -0
  271. package/lib/types/services/editor-bridge.service.d.ts.map +1 -0
  272. package/lib/types/services/format-painter/format-painter.service.d.ts +29 -0
  273. package/lib/types/services/format-painter/format-painter.service.d.ts.map +1 -0
  274. package/lib/types/services/mark-selection/mark-selection.service.d.ts +28 -0
  275. package/lib/types/services/mark-selection/mark-selection.service.d.ts.map +1 -0
  276. package/lib/types/services/scroll-manager.service.d.ts +38 -0
  277. package/lib/types/services/scroll-manager.service.d.ts.map +1 -0
  278. package/lib/types/services/selection/selection-render-model.d.ts +45 -0
  279. package/lib/types/services/selection/selection-render-model.d.ts.map +1 -0
  280. package/lib/types/services/selection/selection-render.service.d.ts +165 -0
  281. package/lib/types/services/selection/selection-render.service.d.ts.map +1 -0
  282. package/lib/types/services/selection/selection-shape-extension.d.ts +45 -0
  283. package/lib/types/services/selection/selection-shape-extension.d.ts.map +1 -0
  284. package/lib/types/services/selection/selection-shape.d.ts +114 -0
  285. package/lib/types/services/selection/selection-shape.d.ts.map +1 -0
  286. package/lib/types/services/sheet-bar/sheet-bar.service.d.ts +39 -0
  287. package/lib/types/services/sheet-bar/sheet-bar.service.d.ts.map +1 -0
  288. package/lib/types/services/sheet-skeleton-manager.service.d.ts +47 -0
  289. package/lib/types/services/sheet-skeleton-manager.service.d.ts.map +1 -0
  290. package/lib/types/services/status-bar.service.d.ts +26 -0
  291. package/lib/types/services/status-bar.service.d.ts.map +1 -0
  292. package/lib/types/sheets-ui-plugin.d.ts +13 -0
  293. package/lib/types/sheets-ui-plugin.d.ts.map +1 -0
  294. package/lib/types/views/count-bar/CountBar.d.ts +8 -0
  295. package/lib/types/views/count-bar/CountBar.d.ts.map +1 -0
  296. package/lib/types/views/count-bar/index.d.ts +2 -0
  297. package/lib/types/views/count-bar/index.d.ts.map +1 -0
  298. package/lib/types/views/count-bar/zoom-slider.d.ts +3 -0
  299. package/lib/types/views/count-bar/zoom-slider.d.ts.map +1 -0
  300. package/lib/types/views/editor-container/EditorContainer.d.ts +10 -0
  301. package/lib/types/views/editor-container/EditorContainer.d.ts.map +1 -0
  302. package/lib/types/views/editor-container/index.d.ts +2 -0
  303. package/lib/types/views/editor-container/index.d.ts.map +1 -0
  304. package/lib/types/views/formula-bar/FormulaBar.d.ts +3 -0
  305. package/lib/types/views/formula-bar/FormulaBar.d.ts.map +1 -0
  306. package/lib/types/views/formula-bar/index.d.ts +2 -0
  307. package/lib/types/views/formula-bar/index.d.ts.map +1 -0
  308. package/lib/types/views/header-menu-shape.d.ts +23 -0
  309. package/lib/types/views/header-menu-shape.d.ts.map +1 -0
  310. package/lib/types/views/header-resize-shape.d.ts +27 -0
  311. package/lib/types/views/header-resize-shape.d.ts.map +1 -0
  312. package/lib/types/views/header-unhide-shape.d.ts +35 -0
  313. package/lib/types/views/header-unhide-shape.d.ts.map +1 -0
  314. package/lib/types/views/operate-container/AutoFillPopupMenu.d.ts +14 -0
  315. package/lib/types/views/operate-container/AutoFillPopupMenu.d.ts.map +1 -0
  316. package/lib/types/views/operate-container/OperateContainer.d.ts +3 -0
  317. package/lib/types/views/operate-container/OperateContainer.d.ts.map +1 -0
  318. package/lib/types/views/operate-container/index.d.ts +2 -0
  319. package/lib/types/views/operate-container/index.d.ts.map +1 -0
  320. package/lib/types/views/sheet-bar/SheetBar.d.ts +3 -0
  321. package/lib/types/views/sheet-bar/SheetBar.d.ts.map +1 -0
  322. package/lib/types/views/sheet-bar/sheet-bar-button/SheetBarButton.d.ts +20 -0
  323. package/lib/types/views/sheet-bar/sheet-bar-button/SheetBarButton.d.ts.map +1 -0
  324. package/lib/types/views/sheet-bar/sheet-bar-menu/SheetBarMenu.d.ts +14 -0
  325. package/lib/types/views/sheet-bar/sheet-bar-menu/SheetBarMenu.d.ts.map +1 -0
  326. package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarItem.d.ts +14 -0
  327. package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarItem.d.ts.map +1 -0
  328. package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarTabs.d.ts +5 -0
  329. package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarTabs.d.ts.map +1 -0
  330. package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/animate.d.ts +29 -0
  331. package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/animate.d.ts.map +1 -0
  332. package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/slide-tab-bar.d.ts +142 -0
  333. package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/slide-tab-bar.d.ts.map +1 -0
  334. package/lib/types/views/sheet-canvas-view.d.ts +20 -0
  335. package/lib/types/views/sheet-canvas-view.d.ts.map +1 -0
  336. package/lib/types/views/sheet-container/SheetContainer.d.ts +11 -0
  337. package/lib/types/views/sheet-container/SheetContainer.d.ts.map +1 -0
  338. package/lib/types/views/status-bar/CopyableStatisticItem.d.ts +15 -0
  339. package/lib/types/views/status-bar/CopyableStatisticItem.d.ts.map +1 -0
  340. package/lib/types/views/status-bar/StatusBar.d.ts +3 -0
  341. package/lib/types/views/status-bar/StatusBar.d.ts.map +1 -0
  342. package/package.json +72 -0
@@ -0,0 +1,2 @@
1
+ export declare const SHEET_UI_PLUGIN_NAME = "SheetUI";
2
+ //# sourceMappingURL=plugin-name.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin-name.d.ts","sourceRoot":"","sources":["../../../../src/basics/const/plugin-name.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,oBAAoB,YAAY,CAAC"}
@@ -0,0 +1,9 @@
1
+ import type { Nullable } from '@univerjs/core';
2
+ import type { Documents, Engine, IRenderManagerService, Scene } from '@univerjs/engine-render';
3
+ export interface IDocObjectParam {
4
+ document: Documents;
5
+ scene: Scene;
6
+ engine: Engine;
7
+ }
8
+ export declare function getEditorObject(unitId: Nullable<string>, renderManagerService: IRenderManagerService): Nullable<IDocObjectParam>;
9
+ //# sourceMappingURL=get-editor-object.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-editor-object.d.ts","sourceRoot":"","sources":["../../../../src/basics/editor/get-editor-object.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,qBAAqB,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAE/F,MAAM,WAAW,eAAe;IAC5B,QAAQ,EAAE,SAAS,CAAC;IACpB,KAAK,EAAE,KAAK,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;CAClB;AAED,wBAAgB,eAAe,CAC3B,MAAM,EAAE,QAAQ,CAAC,MAAM,CAAC,EACxB,oBAAoB,EAAE,qBAAqB,GAC5C,QAAQ,CAAC,eAAe,CAAC,CAoB3B"}
@@ -0,0 +1,3 @@
1
+ export * from './const';
2
+ export * from './interfaces';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/basics/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC"}
@@ -0,0 +1,6 @@
1
+ export interface ICell {
2
+ row: number;
3
+ column: number;
4
+ value: string;
5
+ }
6
+ //# sourceMappingURL=cell.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cell.d.ts","sourceRoot":"","sources":["../../../../src/basics/interfaces/cell.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;IAClB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;CACjB"}
@@ -0,0 +1,13 @@
1
+ import type { LocaleType } from '@univerjs/core';
2
+ import type { SheetContainerConfig } from './sheet-container-config';
3
+ import type { SheetToolbarConfig } from './toolbar-config';
4
+ export interface ILayout {
5
+ sheetContainerConfig?: SheetContainerConfig;
6
+ toolbarConfig?: SheetToolbarConfig;
7
+ }
8
+ export interface ISheetsUIPluginConfig {
9
+ container?: HTMLElement | string;
10
+ layout?: ILayout;
11
+ locale?: LocaleType;
12
+ }
13
+ //# sourceMappingURL=i-sheet-ui-plugin-config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"i-sheet-ui-plugin-config.d.ts","sourceRoot":"","sources":["../../../../../src/basics/interfaces/component-config/i-sheet-ui-plugin-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AACrE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAE3D,MAAM,WAAW,OAAO;IACpB,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;IAC5C,aAAa,CAAC,EAAE,kBAAkB,CAAC;CACtC;AAED,MAAM,WAAW,qBAAqB;IAClC,SAAS,CAAC,EAAE,WAAW,GAAG,MAAM,CAAC;IACjC,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,UAAU,CAAC;CACvB"}
@@ -0,0 +1,3 @@
1
+ export * from './i-sheet-ui-plugin-config';
2
+ export * from './toolbar-config';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/basics/interfaces/component-config/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kBAAkB,CAAC"}
@@ -0,0 +1,20 @@
1
+ export interface SheetContainerConfig {
2
+ outerLeft?: boolean;
3
+ outerRight?: boolean;
4
+ header?: boolean;
5
+ footer?: boolean;
6
+ innerLeft?: boolean;
7
+ innerRight?: boolean;
8
+ frozenHeaderLT?: boolean;
9
+ frozenHeaderRT?: boolean;
10
+ frozenHeaderLM?: boolean;
11
+ frozenContent?: boolean;
12
+ infoBar?: boolean;
13
+ formulaBar?: boolean;
14
+ countBar?: boolean;
15
+ sheetBar?: boolean;
16
+ toolbar?: boolean;
17
+ rightMenu?: boolean;
18
+ contentSplit?: boolean | string;
19
+ }
20
+ //# sourceMappingURL=sheet-container-config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sheet-container-config.d.ts","sourceRoot":"","sources":["../../../../../src/basics/interfaces/component-config/sheet-container-config.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACjC,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,cAAc,CAAC,EAAE,OAAO,CAAC;IAEzB,cAAc,CAAC,EAAE,OAAO,CAAC;IAEzB,cAAc,CAAC,EAAE,OAAO,CAAC;IAEzB,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAGnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,YAAY,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;CACnC"}
@@ -0,0 +1,25 @@
1
+ export interface SheetToolbarConfig {
2
+ undo?: boolean;
3
+ redo?: boolean;
4
+ paintFormat?: boolean;
5
+ currencyFormat?: boolean;
6
+ percentageFormat?: boolean;
7
+ numberDecrease?: boolean;
8
+ numberIncrease?: boolean;
9
+ font?: boolean;
10
+ moreFormats?: boolean;
11
+ fontSize?: boolean;
12
+ bold?: boolean;
13
+ italic?: boolean;
14
+ strikethrough?: boolean;
15
+ underline?: boolean;
16
+ textColor?: boolean;
17
+ fillColor?: boolean;
18
+ border?: boolean;
19
+ horizontalAlignMode?: boolean;
20
+ verticalAlignMode?: boolean;
21
+ textWrapMode?: boolean;
22
+ textRotateMode?: boolean;
23
+ mergeCell?: boolean;
24
+ }
25
+ //# sourceMappingURL=toolbar-config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"toolbar-config.d.ts","sourceRoot":"","sources":["../../../../../src/basics/interfaces/component-config/toolbar-config.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,kBAAkB;IAC/B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB"}
@@ -0,0 +1,2 @@
1
+ export * from './component-config';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/basics/interfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=auto-fill.controller.spec.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auto-fill.controller.spec.d.ts","sourceRoot":"","sources":["../../../../../src/commands/commands/__tests__/auto-fill.controller.spec.ts"],"names":[],"mappings":""}
@@ -0,0 +1,29 @@
1
+ import type { IWorkbookData } from '@univerjs/core';
2
+ export declare function createSelectionCommandTestBed(workbookConfig?: IWorkbookData): {
3
+ univer: import("@univerjs/core").Univer;
4
+ get: {
5
+ <T>(id: import("@wendellhu/redi").DependencyIdentifier<T>, lookUp?: import("@wendellhu/redi").LookUp | undefined): T;
6
+ <T_1>(id: import("@wendellhu/redi").DependencyIdentifier<T_1>, quantity: import("@wendellhu/redi").Quantity.MANY, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_1[];
7
+ <T_2>(id: import("@wendellhu/redi").DependencyIdentifier<T_2>, quantity: import("@wendellhu/redi").Quantity.OPTIONAL, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_2 | null;
8
+ <T_3>(id: import("@wendellhu/redi").DependencyIdentifier<T_3>, quantity: import("@wendellhu/redi").Quantity.REQUIRED, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_3;
9
+ <T_4>(id: import("@wendellhu/redi").DependencyIdentifier<T_4>, quantity?: import("@wendellhu/redi").Quantity | undefined, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_4 | T_4[] | null;
10
+ <T_5>(id: import("@wendellhu/redi").DependencyIdentifier<T_5>, quantityOrLookup?: import("@wendellhu/redi").Quantity | import("@wendellhu/redi").LookUp | undefined, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_5 | T_5[] | null;
11
+ };
12
+ sheet: import("@univerjs/core").Workbook;
13
+ };
14
+ export declare function createFrozenCommandTestBed(workbookConfig?: IWorkbookData): {
15
+ univer: import("@univerjs/core").Univer;
16
+ get: {
17
+ <T>(id: import("@wendellhu/redi").DependencyIdentifier<T>, lookUp?: import("@wendellhu/redi").LookUp | undefined): T;
18
+ <T_1>(id: import("@wendellhu/redi").DependencyIdentifier<T_1>, quantity: import("@wendellhu/redi").Quantity.MANY, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_1[];
19
+ <T_2>(id: import("@wendellhu/redi").DependencyIdentifier<T_2>, quantity: import("@wendellhu/redi").Quantity.OPTIONAL, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_2 | null;
20
+ <T_3>(id: import("@wendellhu/redi").DependencyIdentifier<T_3>, quantity: import("@wendellhu/redi").Quantity.REQUIRED, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_3;
21
+ <T_4>(id: import("@wendellhu/redi").DependencyIdentifier<T_4>, quantity?: import("@wendellhu/redi").Quantity | undefined, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_4 | T_4[] | null;
22
+ <T_5>(id: import("@wendellhu/redi").DependencyIdentifier<T_5>, quantityOrLookup?: import("@wendellhu/redi").Quantity | import("@wendellhu/redi").LookUp | undefined, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_5 | T_5[] | null;
23
+ };
24
+ sheet: import("@univerjs/core").Workbook;
25
+ };
26
+ export declare const SELECTION_WITH_EMPTY_CELLS_DATA: IWorkbookData;
27
+ export declare const SELECTION_WITH_MERGED_CELLS_DATA: IWorkbookData;
28
+ export declare const SIMPLE_SELECTION_WORKBOOK_DATA: IWorkbookData;
29
+ //# sourceMappingURL=create-selection-command-test-bed.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-selection-command-test-bed.d.ts","sourceRoot":"","sources":["../../../../../src/commands/commands/__tests__/create-selection-command-test-bed.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAepD,wBAAgB,6BAA6B,CAAC,cAAc,CAAC,EAAE,aAAa;;;;;;;;;;;EAe3E;AAED,wBAAgB,0BAA0B,CAAC,cAAc,CAAC,EAAE,aAAa;;;;;;;;;;;EAuBxE;AAED,eAAO,MAAM,+BAA+B,EAAE,aA4C7C,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,aAqC9C,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,aAiC5C,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=set-frozen.command.spec.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-frozen.command.spec.d.ts","sourceRoot":"","sources":["../../../../../src/commands/commands/__tests__/set-frozen.command.spec.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=set-selections.command.spec.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-selections.command.spec.d.ts","sourceRoot":"","sources":["../../../../../src/commands/commands/__tests__/set-selections.command.spec.ts"],"names":[],"mappings":""}
@@ -0,0 +1,20 @@
1
+ import type { ICellData, ICommand, IMutationInfo, IRange } from '@univerjs/core';
2
+ export interface IAutoFillCommandParams {
3
+ worksheetId?: string;
4
+ workbookId?: string;
5
+ applyRange: IRange;
6
+ selectionRange: IRange;
7
+ applyDatas: ICellData[][];
8
+ extendMutations: {
9
+ undo: IMutationInfo[];
10
+ redo: IMutationInfo[];
11
+ };
12
+ applyMergeRanges?: IRange[];
13
+ }
14
+ export declare const AutoFillCommand: ICommand;
15
+ export interface IAutoClearContentCommand {
16
+ clearRange: IRange;
17
+ selectionRange: IRange;
18
+ }
19
+ export declare const AutoClearContentCommand: ICommand;
20
+ //# sourceMappingURL=auto-fill.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auto-fill.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/auto-fill.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,EAA6B,MAAM,gBAAgB,CAAC;AA0B5G,MAAM,WAAW,sBAAsB;IACnC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,SAAS,EAAE,EAAE,CAAC;IAC1B,eAAe,EAAE;QAAE,IAAI,EAAE,aAAa,EAAE,CAAC;QAAC,IAAI,EAAE,aAAa,EAAE,CAAA;KAAE,CAAC;IAClE,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC/B;AAED,eAAO,MAAM,eAAe,EAAE,QAgI7B,CAAC;AAEF,MAAM,WAAW,wBAAwB;IACrC,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;CAC1B;AAED,eAAO,MAAM,uBAAuB,EAAE,QA2DrC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { ICommand, IMultiCommand } from '@univerjs/core';
2
+ export declare const SheetCopyCommand: IMultiCommand;
3
+ export declare const SheetCutCommand: IMultiCommand;
4
+ export interface ISheetPasteParams {
5
+ value: string;
6
+ }
7
+ export declare const SheetPasteCommand: IMultiCommand;
8
+ export declare const SheetPasteValueCommand: ICommand;
9
+ export declare const SheetPasteFormatCommand: ICommand;
10
+ export declare const SheetPasteColWidthCommand: ICommand;
11
+ export declare const SheetPasteBesidesBorderCommand: ICommand;
12
+ //# sourceMappingURL=clipboard.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"clipboard.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/clipboard.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAQ9D,eAAO,MAAM,gBAAgB,EAAE,aAW9B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,aAW7B,CAAC;AAEF,MAAM,WAAW,iBAAiB;IAC9B,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,iBAAiB,EAAE,aAqC/B,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,QAOpC,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,QASrC,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,QASvC,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,QAS5C,CAAC"}
@@ -0,0 +1,15 @@
1
+ import type { ICommand } from '@univerjs/core';
2
+ /**
3
+ * It is used to set the bold style of selections or one cell, need to distinguish between
4
+ * **selection state** and **edit state**. If you are in the selective state,
5
+ * you need to set the style on the cell and the style on the rich text(p textRuns) at the same time,
6
+ * and if it is only in edit state, then you only need to set the style of the rich text(p textRuns)
7
+ */
8
+ export declare const SetRangeBoldCommand: ICommand;
9
+ export declare const SetRangeItalicCommand: ICommand;
10
+ export declare const SetRangeUnderlineCommand: ICommand;
11
+ export declare const SetRangeStrickThroughCommand: ICommand;
12
+ export declare const SetRangeFontSizeCommand: ICommand;
13
+ export declare const SetRangeFontFamilyCommand: ICommand;
14
+ export declare const SetRangeTextColorCommand: ICommand;
15
+ //# sourceMappingURL=inline-format.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"inline-format.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/inline-format.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAqB/C;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,EAAE,QAcjC,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,QAcnC,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,QActC,CAAC;AAEF,eAAO,MAAM,4BAA4B,EAAE,QAc1C,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,QAcrC,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,QAcvC,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,QActC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { ICommand } from '@univerjs/core';
2
+ export declare const RefillCommand: ICommand;
3
+ //# sourceMappingURL=refill.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"refill.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/refill.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAW/C,eAAO,MAAM,aAAa,EAAE,QAQ3B,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { ICommand } from '@univerjs/core';
2
+ export declare const RenameSheetOperation: ICommand;
3
+ //# sourceMappingURL=rename.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rename.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/rename.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAU/C,eAAO,MAAM,oBAAoB,EAAE,QAUlC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { ICommand } from '@univerjs/core';
2
+ import { FormatPainterStatus } from '../../services/format-painter/format-painter.service';
3
+ export interface ISetFormatPainterCommandParams {
4
+ status: FormatPainterStatus;
5
+ }
6
+ export declare const SetInfiniteFormatPainterCommand: ICommand;
7
+ export declare const SetOnceFormatPainterCommand: ICommand;
8
+ export interface ISetCopySelectionCommandParams {
9
+ show?: boolean;
10
+ }
11
+ export declare const SetCopySelectionCommand: ICommand;
12
+ //# sourceMappingURL=set-format-painter.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-format-painter.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-format-painter.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAK/C,OAAO,EAAE,mBAAmB,EAAyB,MAAM,sDAAsD,CAAC;AAIlH,MAAM,WAAW,8BAA8B;IAC3C,MAAM,EAAE,mBAAmB,CAAC;CAC/B;AAED,eAAO,MAAM,+BAA+B,EAAE,QAmB7C,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,QAkBzC,CAAC;AAEF,MAAM,WAAW,8BAA8B;IAC3C,IAAI,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,eAAO,MAAM,uBAAuB,EAAE,QAqCrC,CAAC"}
@@ -0,0 +1,14 @@
1
+ import type { ICommand } from '@univerjs/core';
2
+ export declare enum SetSelectionFrozenType {
3
+ RowColumn = 0,
4
+ Row = 1,
5
+ Column = 2
6
+ }
7
+ export interface ISetSelectionFrozenCommandParams {
8
+ type?: SetSelectionFrozenType;
9
+ }
10
+ export declare const SetSelectionFrozenCommand: ICommand<ISetSelectionFrozenCommandParams>;
11
+ export declare const SetRowFrozenCommand: ICommand;
12
+ export declare const SetColumnFrozenCommand: ICommand;
13
+ export declare const CancelFrozenCommand: ICommand;
14
+ //# sourceMappingURL=set-frozen.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-frozen.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-frozen.command.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAO/C,oBAAY,sBAAsB;IAC9B,SAAS,IAAI;IACb,GAAG,IAAI;IACP,MAAM,IAAI;CACb;AAED,MAAM,WAAW,gCAAgC;IAC7C,IAAI,CAAC,EAAE,sBAAsB,CAAC;CACjC;AAED,eAAO,MAAM,yBAAyB,EAAE,QAAQ,CAAC,gCAAgC,CAmEhF,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,QAWjC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,QAWpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,QA+BjC,CAAC"}
@@ -0,0 +1,24 @@
1
+ import type { ICommand } from '@univerjs/core';
2
+ export interface IScrollCommandParams {
3
+ offsetX?: number;
4
+ offsetY?: number;
5
+ sheetViewStartRow?: number;
6
+ sheetViewStartColumn?: number;
7
+ }
8
+ export interface ISetScrollRelativeCommandParams {
9
+ offsetX?: number;
10
+ offsetY?: number;
11
+ }
12
+ /**
13
+ * This command is used to manage the scroll by relative offset
14
+ */
15
+ export declare const SetScrollRelativeCommand: ICommand<ISetScrollRelativeCommandParams>;
16
+ /**
17
+ * This command is used to manage the scroll position of the current view by specifying the cell index of the top left cell
18
+ */
19
+ export declare const ScrollCommand: ICommand<IScrollCommandParams>;
20
+ /**
21
+ * This command is reset the scroll position of the current view to 0 ,0
22
+ */
23
+ export declare const RestScrollCommand: ICommand<{}>;
24
+ //# sourceMappingURL=set-scroll.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-scroll.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-scroll.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAM/C,MAAM,WAAW,oBAAoB;IACjC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,oBAAoB,CAAC,EAAE,MAAM,CAAC;CACjC;AAED,MAAM,WAAW,+BAA+B;IAC5C,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,eAAO,MAAM,wBAAwB,EAAE,QAAQ,CAAC,+BAA+B,CA4B9E,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,QAAQ,CAAC,oBAAoB,CAqCxD,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,QAAQ,CAAC,EAAE,CAsB1C,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { ICommand } from '@univerjs/core';
2
+ export declare const SetSelectionFrozenCommand: ICommand;
3
+ //# sourceMappingURL=set-selection-frozen.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-selection-frozen.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-selection-frozen.command.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAS/C,eAAO,MAAM,yBAAyB,EAAE,QAkEvC,CAAC"}
@@ -0,0 +1,40 @@
1
+ import type { Direction, ICommand } from '@univerjs/core';
2
+ import { KeyCode } from '@univerjs/ui';
3
+ export declare enum JumpOver {
4
+ moveStopeOne = 0,
5
+ moveGap = 1,
6
+ moveStepPage = 2,
7
+ moveStepEnd = 3
8
+ }
9
+ export interface IMoveSelectionCommandParams {
10
+ direction: Direction;
11
+ jumpOver?: JumpOver;
12
+ nextStep?: number;
13
+ }
14
+ /**
15
+ * Move selection
16
+ */
17
+ export declare const MoveSelectionCommand: ICommand<IMoveSelectionCommandParams>;
18
+ export interface IMoveSelectionEnterAndTabCommandParams {
19
+ direction: Direction;
20
+ keycode: KeyCode;
21
+ }
22
+ /**
23
+ * Move selection for enter and tab.
24
+ */
25
+ export declare const MoveSelectionEnterAndTabCommand: ICommand<IMoveSelectionEnterAndTabCommandParams>;
26
+ export interface IExpandSelectionCommandParams {
27
+ direction: Direction;
28
+ jumpOver?: JumpOver;
29
+ nextStep?: number;
30
+ }
31
+ export declare const ExpandSelectionCommand: ICommand<IExpandSelectionCommandParams>;
32
+ export interface ISelectAllCommandParams {
33
+ expandToGapFirst?: boolean;
34
+ loop?: boolean;
35
+ }
36
+ /**
37
+ * This command expand selection to all neighbor ranges. If there are no neighbor ranges. Select the whole sheet.
38
+ */
39
+ export declare const SelectAllCommand: ICommand<ISelectAllCommandParams>;
40
+ //# sourceMappingURL=set-selection.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-selection.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-selection.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAU,MAAM,gBAAgB,CAAC;AAkBlE,OAAO,EAAE,OAAO,EAA6B,MAAM,cAAc,CAAC;AAKlE,oBAAY,QAAQ;IAChB,YAAY,IAAA;IACZ,OAAO,IAAA;IACP,YAAY,IAAA;IACZ,WAAW,IAAA;CACd;AAED,MAAM,WAAW,2BAA2B;IACxC,SAAS,EAAE,SAAS,CAAC;IACrB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,QAAQ,CAAC,2BAA2B,CA6DtE,CAAC;AAEF,MAAM,WAAW,sCAAsC;IACnD,SAAS,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,OAAO,CAAC;CACpB;AAED;;GAEG;AACH,eAAO,MAAM,+BAA+B,EAAE,QAAQ,CAAC,sCAAsC,CAkI5F,CAAC;AAEF,MAAM,WAAW,6BAA6B;IAC1C,SAAS,EAAE,SAAS,CAAC;IACrB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAID,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,6BAA6B,CAmD1E,CAAC;AAEF,MAAM,WAAW,uBAAuB;IACpC,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,IAAI,CAAC,EAAE,OAAO,CAAC;CAClB;AAMD;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,QAAQ,CAAC,uBAAuB,CA6E9D,CAAC"}
@@ -0,0 +1,16 @@
1
+ import type { ICommand } from '@univerjs/core';
2
+ export interface ISetZoomRatioCommandParams {
3
+ zoomRatio: number;
4
+ workbookId: string;
5
+ worksheetId: string;
6
+ }
7
+ export interface IChangeZoomRatioCommandParams {
8
+ reset?: boolean;
9
+ delta: number;
10
+ }
11
+ /**
12
+ * Zoom
13
+ */
14
+ export declare const ChangeZoomRatioCommand: ICommand<IChangeZoomRatioCommandParams>;
15
+ export declare const SetZoomRatioCommand: ICommand<ISetZoomRatioCommandParams>;
16
+ //# sourceMappingURL=set-zoom-ratio.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-zoom-ratio.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-zoom-ratio.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAM/C,MAAM,WAAW,0BAA0B;IACvC,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACvB;AACD,MAAM,WAAW,6BAA6B;IAC1C,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;CACjB;AAED;;GAEG;AAEH,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,6BAA6B,CAwB1E,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,QAAQ,CAAC,0BAA0B,CAepE,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { ICommand } from '@univerjs/core';
2
+ export declare const ShowMenuListCommand: ICommand;
3
+ //# sourceMappingURL=unhide.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unhide.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/unhide.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAM/C,eAAO,MAAM,mBAAmB,EAAE,QASjC,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { IOperation } from '@univerjs/core';
2
+ import type { IEditorBridgeServiceParam } from '../../services/editor-bridge.service';
3
+ export declare const SetActivateCellEditOperation: IOperation<IEditorBridgeServiceParam>;
4
+ //# sourceMappingURL=activate-cell-edit.operation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"activate-cell-edit.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/activate-cell-edit.operation.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AAGtF,eAAO,MAAM,4BAA4B,EAAE,UAAU,CAAC,yBAAyB,CAU9E,CAAC"}
@@ -0,0 +1,9 @@
1
+ import type { IOperation } from '@univerjs/core';
2
+ import type { IEditorBridgeServiceVisibleParam } from '../../services/editor-bridge.service';
3
+ export declare const SetCellEditVisibleOperation: IOperation<IEditorBridgeServiceVisibleParam>;
4
+ /**
5
+ * When the editor is not clicked to change the cursor,
6
+ * the arrow keys will exit editing and move the cell.
7
+ */
8
+ export declare const SetCellEditVisibleArrowOperation: IOperation<IEditorBridgeServiceVisibleParam>;
9
+ //# sourceMappingURL=cell-edit.operation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cell-edit.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/cell-edit.operation.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,sCAAsC,CAAC;AAG7F,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,gCAAgC,CAcpF,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,gCAAgC,CAIzF,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { IOperation } from '@univerjs/core';
2
+ import type { IScrollManagerInsertParam } from '../../services/scroll-manager.service';
3
+ export declare const SetScrollOperation: IOperation<IScrollManagerInsertParam>;
4
+ //# sourceMappingURL=scroll.operation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scroll.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/scroll.operation.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,uCAAuC,CAAC;AAGvF,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,yBAAyB,CAmBpE,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { IOperation } from '@univerjs/core';
2
+ import type { ISelectionWithStyle } from '@univerjs/sheets';
3
+ export interface ISetCopySelectionsOperationParams {
4
+ workbookId: string;
5
+ worksheetId: string;
6
+ pluginName: string;
7
+ selections: ISelectionWithStyle[];
8
+ show: boolean;
9
+ }
10
+ export declare const FORMAT_PAINTER_SELECTION_PLUGIN_NAME = "formatPainterSelectionPluginName";
11
+ export declare const SetCopySelectionsOperation: IOperation<ISetCopySelectionsOperationParams>;
12
+ //# sourceMappingURL=selection.operation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"selection.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/selection.operation.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAK5D,MAAM,WAAW,iCAAiC;IAC9C,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,mBAAmB,EAAE,CAAC;IAClC,IAAI,EAAE,OAAO,CAAC;CACjB;AAED,eAAO,MAAM,oCAAoC,qCAAqC,CAAC;AAEvF,eAAO,MAAM,0BAA0B,EAAE,UAAU,CAAC,iCAAiC,CAiCpF,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { IOperation } from '@univerjs/core';
2
+ export declare const SetEditorResizeOperation: IOperation;
3
+ //# sourceMappingURL=set-editor-resize.operation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-editor-resize.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/set-editor-resize.operation.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,eAAO,MAAM,wBAAwB,EAAE,UAItC,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { IOperation } from '@univerjs/core';
2
+ import type { FormatPainterStatus } from '../../services/format-painter/format-painter.service';
3
+ export interface ISetFormatPainterOperationParams {
4
+ status: FormatPainterStatus;
5
+ }
6
+ export declare const SetFormatPainterOperation: IOperation<ISetFormatPainterOperationParams>;
7
+ //# sourceMappingURL=set-format-painter.operation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-format-painter.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/set-format-painter.operation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sDAAsD,CAAC;AAGhG,MAAM,WAAW,gCAAgC;IAC7C,MAAM,EAAE,mBAAmB,CAAC;CAC/B;AACD,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,gCAAgC,CAYlF,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { IOperation } from '@univerjs/core';
2
+ import type { IAccessor } from '@wendellhu/redi';
3
+ export interface ISetZoomRatioOperationParams {
4
+ zoomRatio: number;
5
+ workbookId: string;
6
+ worksheetId: string;
7
+ }
8
+ export declare const SetZoomRatioUndoMutationFactory: (accessor: IAccessor, params: ISetZoomRatioOperationParams) => ISetZoomRatioOperationParams;
9
+ export declare const SetZoomRatioOperation: IOperation<ISetZoomRatioOperationParams>;
10
+ //# sourceMappingURL=set-zoom-ratio.operation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-zoom-ratio.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/set-zoom-ratio.operation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAEjD,MAAM,WAAW,4BAA4B;IACzC,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACvB;AAED,eAAO,MAAM,+BAA+B,aAC9B,SAAS,UACX,4BAA4B,KACrC,4BAQF,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,4BAA4B,CAkB1E,CAAC"}
@@ -0,0 +1,22 @@
1
+ export declare enum SHEET_VIEW_KEY {
2
+ MAIN = "__SpreadsheetRender__",
3
+ ROW = "__SpreadsheetRowHeader__",
4
+ COLUMN = "__SpreadsheetColumnHeader__",
5
+ LEFT_TOP = "__SpreadsheetLeftTopPlaceholder__"
6
+ }
7
+ export declare enum VIEWPORT_KEY {
8
+ VIEW_MAIN = "viewMain",
9
+ VIEW_MAIN_LEFT_TOP = "viewMainLeftTop",
10
+ VIEW_MAIN_TOP = "viewMainTop",
11
+ VIEW_MAIN_LEFT = "viewMainLeft",
12
+ VIEW_ROW_TOP = "viewRowTop",
13
+ VIEW_ROW_BOTTOM = "viewRowBottom",
14
+ VIEW_COLUMN_LEFT = "viewColumnLeft",
15
+ VIEW_COLUMN_RIGHT = "viewColumnRight",
16
+ VIEW_LEFT_TOP = "viewLeftTop"
17
+ }
18
+ export declare const SHEET_COMPONENT_MAIN_LAYER_INDEX = 0;
19
+ export declare const SHEET_COMPONENT_HEADER_LAYER_INDEX = 2;
20
+ export declare const SHEET_ZOOM_RANGE: number[];
21
+ export declare const SHEET_COMPONENT_UNHIDE_LAYER_INDEX = 1001;
22
+ //# sourceMappingURL=keys.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"keys.d.ts","sourceRoot":"","sources":["../../../src/common/keys.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACtB,IAAI,0BAA0B;IAC9B,GAAG,6BAA6B;IAChC,MAAM,gCAAgC;IACtC,QAAQ,sCAAsC;CACjD;AAED,oBAAY,YAAY;IACpB,SAAS,aAAa;IACtB,kBAAkB,oBAAoB;IACtC,aAAa,gBAAgB;IAC7B,cAAc,iBAAiB;IAE/B,YAAY,eAAe;IAC3B,eAAe,kBAAkB;IACjC,gBAAgB,mBAAmB;IACnC,iBAAiB,oBAAoB;IACrC,aAAa,gBAAgB;CAChC;AAED,eAAO,MAAM,gCAAgC,IAAI,CAAC;AAElD,eAAO,MAAM,kCAAkC,IAAI,CAAC;AAGpD,eAAO,MAAM,gBAAgB,UAAY,CAAC;AAE1C,eAAO,MAAM,kCAAkC,OAAO,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type IBorderPanelProps } from './interface';
3
+ export declare function BorderPanel(props: IBorderPanelProps): React.JSX.Element;
4
+ //# sourceMappingURL=BorderPanel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BorderPanel.d.ts","sourceRoot":"","sources":["../../../../src/components/border-panel/BorderPanel.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAwB,KAAK,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAiD3E,wBAAgB,WAAW,CAAC,KAAK,EAAE,iBAAiB,qBAwFnD"}
@@ -0,0 +1,8 @@
1
+ import { BorderStyleTypes } from '@univerjs/core';
2
+ import React from 'react';
3
+ interface IBorderLineProps {
4
+ type: BorderStyleTypes;
5
+ }
6
+ export declare function BorderLine(props: IBorderLineProps): React.JSX.Element;
7
+ export {};
8
+ //# sourceMappingURL=BorderLine.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BorderLine.d.ts","sourceRoot":"","sources":["../../../../../src/components/border-panel/border-line/BorderLine.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,UAAU,gBAAgB;IACtB,IAAI,EAAE,gBAAgB,CAAC;CAC1B;AAED,wBAAgB,UAAU,CAAC,KAAK,EAAE,gBAAgB,qBA2BjD"}
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export declare const BorderDashDot: () => React.JSX.Element;
3
+ //# sourceMappingURL=BorderDashDot.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BorderDashDot.d.ts","sourceRoot":"","sources":["../../../../../../src/components/border-panel/border-line/icons/BorderDashDot.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,aAAa,yBA8BzB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export declare const BorderDashDotDot: () => React.JSX.Element;
3
+ //# sourceMappingURL=BorderDashDotDot.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BorderDashDotDot.d.ts","sourceRoot":"","sources":["../../../../../../src/components/border-panel/border-line/icons/BorderDashDotDot.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,gBAAgB,yBA+B5B,CAAC"}
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export declare const BorderDashed: () => React.JSX.Element;
3
+ //# sourceMappingURL=BorderDashed.d.ts.map