@univerjs/sheets 0.1.0-alpha.1 → 0.1.0-alpha.2

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 (273) hide show
  1. package/LICENSE.txt +178 -0
  2. package/lib/cjs/index.js +3 -11383
  3. package/lib/es/index.js +6319 -0
  4. package/lib/types/basics/__tests__/rangeMerge.spec.d.ts +16 -0
  5. package/lib/types/basics/const/command-listener-const.d.ts +15 -1
  6. package/lib/types/basics/const/default-spreadsheet-plugin-data.d.ts +17 -3
  7. package/lib/types/basics/const/index.d.ts +15 -1
  8. package/lib/types/basics/index.d.ts +16 -1
  9. package/lib/types/basics/interfaces/i-ruler-manager.d.ts +15 -1
  10. package/lib/types/basics/interfaces/index.d.ts +15 -1
  11. package/lib/types/basics/interfaces/mutation-interface.d.ts +15 -1
  12. package/lib/types/basics/interfaces/selection-config.d.ts +15 -1
  13. package/lib/types/basics/interfaces/spreadsheet-config.d.ts +16 -2
  14. package/lib/types/basics/rangeMerge.d.ts +24 -0
  15. package/lib/types/basics/selection.d.ts +15 -1
  16. package/lib/types/basics/sheet-header.d.ts +15 -1
  17. package/lib/types/basics/utils.d.ts +17 -0
  18. package/lib/types/commands/commands/__tests__/clear-selection.command.spec.d.ts +15 -1
  19. package/lib/types/commands/commands/__tests__/copy-worksheet.command.spec.d.ts +15 -1
  20. package/lib/types/commands/commands/__tests__/create-command-test-bed.d.ts +15 -1
  21. package/lib/types/commands/commands/__tests__/delete-range.command.spec.d.ts +15 -1
  22. package/lib/types/commands/commands/__tests__/insert-range.command.spec.d.ts +15 -1
  23. package/lib/types/commands/commands/__tests__/insert-remove-rows-cols.command.spec.d.ts +15 -1
  24. package/lib/types/commands/commands/__tests__/move-range-commands.spec.d.ts +15 -1
  25. package/lib/types/commands/commands/__tests__/move-rows-cols.command.spec.d.ts +15 -1
  26. package/lib/types/commands/commands/__tests__/remove-sheet.command.spec.d.ts +15 -1
  27. package/lib/types/commands/commands/__tests__/set-border.command.spec.d.ts +15 -1
  28. package/lib/types/commands/commands/__tests__/set-col-width.command.spec.d.ts +15 -1
  29. package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts +15 -1
  30. package/lib/types/commands/commands/__tests__/set-range-values.command.spec.d.ts +15 -1
  31. package/lib/types/commands/commands/__tests__/set-row-col-visible.command.spec.d.ts +15 -1
  32. package/lib/types/commands/commands/__tests__/set-row-height.command.spec.d.ts +15 -1
  33. package/lib/types/commands/commands/__tests__/set-style.command.spec.d.ts +15 -1
  34. package/lib/types/commands/commands/__tests__/set-tab-color.command.spec.d.ts +15 -1
  35. package/lib/types/commands/commands/__tests__/set-worksheet-hide.command.spec.d.ts +15 -1
  36. package/lib/types/commands/commands/__tests__/set-worksheet-name.command.spec.d.ts +15 -1
  37. package/lib/types/commands/commands/__tests__/set-worksheet-order.command.spec.d.ts +15 -1
  38. package/lib/types/commands/commands/__tests__/set-worksheet-show.command.spec.d.ts +15 -1
  39. package/lib/types/commands/commands/add-worksheet-merge.command.d.ts +15 -8
  40. package/lib/types/commands/commands/clear-selection-all.command.d.ts +15 -1
  41. package/lib/types/commands/commands/clear-selection-content.command.d.ts +15 -1
  42. package/lib/types/commands/commands/clear-selection-format.command.d.ts +15 -1
  43. package/lib/types/commands/commands/copy-to-worksheet.command.d.ts +15 -1
  44. package/lib/types/commands/commands/copy-worksheet.command.d.ts +15 -1
  45. package/lib/types/commands/commands/delete-range-move-left.command.d.ts +15 -1
  46. package/lib/types/commands/commands/delete-range-move-up.command.d.ts +15 -1
  47. package/lib/types/commands/commands/insert-range-move-down.command.d.ts +15 -1
  48. package/lib/types/commands/commands/insert-range-move-right.command.d.ts +15 -1
  49. package/lib/types/commands/commands/insert-row-col.command.d.ts +15 -1
  50. package/lib/types/commands/commands/insert-sheet.command.d.ts +15 -1
  51. package/lib/types/commands/commands/move-range.command.d.ts +15 -1
  52. package/lib/types/commands/commands/move-rows-cols.command.d.ts +15 -1
  53. package/lib/types/commands/commands/remove-row-col.command.d.ts +15 -1
  54. package/lib/types/commands/commands/remove-sheet.command.d.ts +15 -1
  55. package/lib/types/commands/commands/remove-worksheet-merge.command.d.ts +15 -1
  56. package/lib/types/commands/commands/set-border-command.d.ts +15 -1
  57. package/lib/types/commands/commands/set-col-visible.command.d.ts +15 -1
  58. package/lib/types/commands/commands/set-frozen-cancel.command.d.ts +15 -1
  59. package/lib/types/commands/commands/set-frozen.command.d.ts +15 -1
  60. package/lib/types/commands/commands/set-hide-gridlines.command.d.ts +15 -1
  61. package/lib/types/commands/commands/set-range-values.command.d.ts +15 -1
  62. package/lib/types/commands/commands/set-row-visible.command.d.ts +15 -1
  63. package/lib/types/commands/commands/set-style.command.d.ts +15 -1
  64. package/lib/types/commands/commands/set-tab-color.command.d.ts +15 -1
  65. package/lib/types/commands/commands/set-worksheet-activate.command.d.ts +15 -1
  66. package/lib/types/commands/commands/set-worksheet-col-width.command.d.ts +15 -1
  67. package/lib/types/commands/commands/set-worksheet-hide.command.d.ts +15 -1
  68. package/lib/types/commands/commands/set-worksheet-name.command.d.ts +16 -2
  69. package/lib/types/commands/commands/set-worksheet-order.command.d.ts +15 -1
  70. package/lib/types/commands/commands/set-worksheet-right-to-left.command.d.ts +15 -1
  71. package/lib/types/commands/commands/set-worksheet-row-height.command.d.ts +15 -1
  72. package/lib/types/commands/commands/set-worksheet-show.command.d.ts +15 -1
  73. package/lib/types/commands/commands/utils/merged-cell-util.d.ts +15 -1
  74. package/lib/types/commands/commands/utils/selection-util.d.ts +15 -1
  75. package/lib/types/commands/mutations/add-worksheet-merge.mutation.d.ts +15 -1
  76. package/lib/types/commands/mutations/delete-range.mutation.d.ts +15 -1
  77. package/lib/types/commands/mutations/insert-range.mutation.d.ts +15 -1
  78. package/lib/types/commands/mutations/insert-row-col.mutation.d.ts +15 -1
  79. package/lib/types/commands/mutations/insert-sheet.mutation.d.ts +15 -1
  80. package/lib/types/commands/mutations/move-range.mutation.d.ts +15 -1
  81. package/lib/types/commands/mutations/move-rows-cols.mutation.d.ts +15 -1
  82. package/lib/types/commands/mutations/numfmt-mutation.d.ts +52 -0
  83. package/lib/types/commands/mutations/remove-row-col.mutation.d.ts +15 -1
  84. package/lib/types/commands/mutations/remove-sheet.mutation.d.ts +15 -1
  85. package/lib/types/commands/mutations/remove-worksheet-merge.mutation.d.ts +15 -1
  86. package/lib/types/commands/mutations/set-col-visible.mutation.d.ts +15 -1
  87. package/lib/types/commands/mutations/set-frozen.mutation.d.ts +15 -1
  88. package/lib/types/commands/mutations/set-hide-gridlines.mutatiom.d.ts +15 -1
  89. package/lib/types/commands/mutations/set-range-values.mutation.d.ts +15 -5
  90. package/lib/types/commands/mutations/set-row-visible.mutation.d.ts +15 -1
  91. package/lib/types/commands/mutations/set-tab-color.mutation.d.ts +15 -1
  92. package/lib/types/commands/mutations/set-worksheet-col-width.mutation.d.ts +15 -1
  93. package/lib/types/commands/mutations/set-worksheet-config.mutation.d.ts +15 -1
  94. package/lib/types/commands/mutations/set-worksheet-hide.mutation.d.ts +15 -1
  95. package/lib/types/commands/mutations/set-worksheet-name.mutation.d.ts +15 -1
  96. package/lib/types/commands/mutations/set-worksheet-order.mutation.d.ts +15 -1
  97. package/lib/types/commands/mutations/set-worksheet-right-to-left.mutation.d.ts +15 -1
  98. package/lib/types/commands/mutations/set-worksheet-row-height.mutation.d.ts +15 -1
  99. package/lib/types/commands/operations/selection.operation.d.ts +17 -1
  100. package/lib/types/commands/operations/set-worksheet-active.operation.d.ts +21 -0
  101. package/lib/types/commands/utils/interface.d.ts +15 -1
  102. package/lib/types/controllers/__tests__/util.d.ts +15 -1
  103. package/lib/types/controllers/basic-worksheet.controller.d.ts +15 -1
  104. package/lib/types/controllers/calculate-result-apply.controller.d.ts +22 -0
  105. package/lib/types/controllers/config/config.d.ts +15 -1
  106. package/lib/types/controllers/feature-calculation.controller.d.ts +25 -0
  107. package/lib/types/controllers/merge-cell.controller.d.ts +24 -2
  108. package/lib/types/index.d.ts +25 -9
  109. package/lib/types/locale/en-US.d.ts +15 -1
  110. package/lib/types/locale/index.d.ts +15 -1
  111. package/lib/types/locale/zh-CN.d.ts +15 -1
  112. package/lib/types/services/__tests__/numfmt.service.test.d.ts +16 -0
  113. package/lib/types/services/__tests__/ref-range.setvice.spec.d.ts +15 -1
  114. package/lib/types/services/__tests__/sheet-permission.spec.d.ts +15 -1
  115. package/lib/types/services/__tests__/util.d.ts +15 -1
  116. package/lib/types/services/border-style-manager.service.d.ts +15 -1
  117. package/lib/types/services/numfmt/numfmt.service.d.ts +19 -5
  118. package/lib/types/services/numfmt/type.d.ts +20 -6
  119. package/lib/types/services/permission/index.d.ts +15 -1
  120. package/lib/types/services/permission/permission-point.d.ts +15 -1
  121. package/lib/types/services/permission/sheet-permission.service.d.ts +15 -1
  122. package/lib/types/services/ref-range/__tests__/util.d.ts +15 -1
  123. package/lib/types/services/ref-range/__tests__/util.spec.d.ts +15 -1
  124. package/lib/types/services/ref-range/ref-range.service.d.ts +22 -25
  125. package/lib/types/services/ref-range/type.d.ts +15 -1
  126. package/lib/types/services/ref-range/util.d.ts +15 -1
  127. package/lib/types/services/selection-manager.service.d.ts +34 -8
  128. package/lib/types/services/sheet-interceptor/__tests__/create-core-test-bed.d.ts +15 -1
  129. package/lib/types/services/sheet-interceptor/__tests__/sheet-interceptor.service.spec.d.ts +15 -1
  130. package/lib/types/services/sheet-interceptor/interceptor-const.d.ts +17 -3
  131. package/lib/types/services/sheet-interceptor/sheet-interceptor.service.d.ts +15 -1
  132. package/lib/types/services/sheet-interceptor/utils/interceptor.d.ts +15 -1
  133. package/lib/types/sheets-plugin.d.ts +21 -3
  134. package/lib/umd/index.js +3 -0
  135. package/package.json +26 -23
  136. package/LICENSE +0 -21
  137. package/lib/cjs/locale/en-US.js +0 -26
  138. package/lib/cjs/locale/zh-CN.js +0 -26
  139. package/lib/esm/index.js +0 -10934
  140. package/lib/esm/locale/en-US.js +0 -5
  141. package/lib/esm/locale/zh-CN.js +0 -5
  142. package/lib/types/basics/const/command-listener-const.d.ts.map +0 -1
  143. package/lib/types/basics/const/default-spreadsheet-plugin-data.d.ts.map +0 -1
  144. package/lib/types/basics/const/index.d.ts.map +0 -1
  145. package/lib/types/basics/get-apply-data.d.ts +0 -1
  146. package/lib/types/basics/get-apply-data.d.ts.map +0 -1
  147. package/lib/types/basics/index.d.ts.map +0 -1
  148. package/lib/types/basics/interfaces/i-ruler-manager.d.ts.map +0 -1
  149. package/lib/types/basics/interfaces/index.d.ts.map +0 -1
  150. package/lib/types/basics/interfaces/mutation-interface.d.ts.map +0 -1
  151. package/lib/types/basics/interfaces/selection-config.d.ts.map +0 -1
  152. package/lib/types/basics/interfaces/spreadsheet-config.d.ts.map +0 -1
  153. package/lib/types/basics/selection.d.ts.map +0 -1
  154. package/lib/types/basics/sheet-header.d.ts.map +0 -1
  155. package/lib/types/commands/commands/__tests__/add-worksheet-merge.command.spec.d.ts +0 -2
  156. package/lib/types/commands/commands/__tests__/add-worksheet-merge.command.spec.d.ts.map +0 -1
  157. package/lib/types/commands/commands/__tests__/clear-selection.command.spec.d.ts.map +0 -1
  158. package/lib/types/commands/commands/__tests__/copy-worksheet.command.spec.d.ts.map +0 -1
  159. package/lib/types/commands/commands/__tests__/create-command-test-bed.d.ts.map +0 -1
  160. package/lib/types/commands/commands/__tests__/delete-range.command.spec.d.ts.map +0 -1
  161. package/lib/types/commands/commands/__tests__/insert-range.command.spec.d.ts.map +0 -1
  162. package/lib/types/commands/commands/__tests__/insert-remove-rows-cols.command.spec.d.ts.map +0 -1
  163. package/lib/types/commands/commands/__tests__/move-range-commands.spec.d.ts.map +0 -1
  164. package/lib/types/commands/commands/__tests__/move-rows-cols.command.spec.d.ts.map +0 -1
  165. package/lib/types/commands/commands/__tests__/remove-sheet.command.spec.d.ts.map +0 -1
  166. package/lib/types/commands/commands/__tests__/set-border.command.spec.d.ts.map +0 -1
  167. package/lib/types/commands/commands/__tests__/set-col-width.command.spec.d.ts.map +0 -1
  168. package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts.map +0 -1
  169. package/lib/types/commands/commands/__tests__/set-range-values.command.spec.d.ts.map +0 -1
  170. package/lib/types/commands/commands/__tests__/set-row-col-visible.command.spec.d.ts.map +0 -1
  171. package/lib/types/commands/commands/__tests__/set-row-height.command.spec.d.ts.map +0 -1
  172. package/lib/types/commands/commands/__tests__/set-style.command.spec.d.ts.map +0 -1
  173. package/lib/types/commands/commands/__tests__/set-tab-color.command.spec.d.ts.map +0 -1
  174. package/lib/types/commands/commands/__tests__/set-worksheet-hide.command.spec.d.ts.map +0 -1
  175. package/lib/types/commands/commands/__tests__/set-worksheet-name.command.spec.d.ts.map +0 -1
  176. package/lib/types/commands/commands/__tests__/set-worksheet-order.command.spec.d.ts.map +0 -1
  177. package/lib/types/commands/commands/__tests__/set-worksheet-show.command.spec.d.ts.map +0 -1
  178. package/lib/types/commands/commands/add-worksheet-merge.command.d.ts.map +0 -1
  179. package/lib/types/commands/commands/clear-selection-all.command.d.ts.map +0 -1
  180. package/lib/types/commands/commands/clear-selection-content.command.d.ts.map +0 -1
  181. package/lib/types/commands/commands/clear-selection-format.command.d.ts.map +0 -1
  182. package/lib/types/commands/commands/copy-to-worksheet.command.d.ts.map +0 -1
  183. package/lib/types/commands/commands/copy-worksheet.command.d.ts.map +0 -1
  184. package/lib/types/commands/commands/delete-range-move-left.command.d.ts.map +0 -1
  185. package/lib/types/commands/commands/delete-range-move-up.command.d.ts.map +0 -1
  186. package/lib/types/commands/commands/insert-range-move-down.command.d.ts.map +0 -1
  187. package/lib/types/commands/commands/insert-range-move-right.command.d.ts.map +0 -1
  188. package/lib/types/commands/commands/insert-row-col.command.d.ts.map +0 -1
  189. package/lib/types/commands/commands/insert-sheet.command.d.ts.map +0 -1
  190. package/lib/types/commands/commands/move-range.command.d.ts.map +0 -1
  191. package/lib/types/commands/commands/move-rows-cols.command.d.ts.map +0 -1
  192. package/lib/types/commands/commands/remove-row-col.command.d.ts.map +0 -1
  193. package/lib/types/commands/commands/remove-sheet.command.d.ts.map +0 -1
  194. package/lib/types/commands/commands/remove-worksheet-merge.command.d.ts.map +0 -1
  195. package/lib/types/commands/commands/set-border-command.d.ts.map +0 -1
  196. package/lib/types/commands/commands/set-col-visible.command.d.ts.map +0 -1
  197. package/lib/types/commands/commands/set-frozen-cancel.command.d.ts.map +0 -1
  198. package/lib/types/commands/commands/set-frozen.command.d.ts.map +0 -1
  199. package/lib/types/commands/commands/set-hide-gridlines.command.d.ts.map +0 -1
  200. package/lib/types/commands/commands/set-range-values.command.d.ts.map +0 -1
  201. package/lib/types/commands/commands/set-row-visible.command.d.ts.map +0 -1
  202. package/lib/types/commands/commands/set-style.command.d.ts.map +0 -1
  203. package/lib/types/commands/commands/set-tab-color.command.d.ts.map +0 -1
  204. package/lib/types/commands/commands/set-worksheet-activate.command.d.ts.map +0 -1
  205. package/lib/types/commands/commands/set-worksheet-col-width.command.d.ts.map +0 -1
  206. package/lib/types/commands/commands/set-worksheet-hide.command.d.ts.map +0 -1
  207. package/lib/types/commands/commands/set-worksheet-name.command.d.ts.map +0 -1
  208. package/lib/types/commands/commands/set-worksheet-order.command.d.ts.map +0 -1
  209. package/lib/types/commands/commands/set-worksheet-right-to-left.command.d.ts.map +0 -1
  210. package/lib/types/commands/commands/set-worksheet-row-height.command.d.ts.map +0 -1
  211. package/lib/types/commands/commands/set-worksheet-show.command.d.ts.map +0 -1
  212. package/lib/types/commands/commands/utils/merged-cell-util.d.ts.map +0 -1
  213. package/lib/types/commands/commands/utils/selection-util.d.ts.map +0 -1
  214. package/lib/types/commands/mutations/add-worksheet-merge.mutation.d.ts.map +0 -1
  215. package/lib/types/commands/mutations/delete-range.mutation.d.ts.map +0 -1
  216. package/lib/types/commands/mutations/insert-range.mutation.d.ts.map +0 -1
  217. package/lib/types/commands/mutations/insert-row-col.mutation.d.ts.map +0 -1
  218. package/lib/types/commands/mutations/insert-sheet.mutation.d.ts.map +0 -1
  219. package/lib/types/commands/mutations/move-range.mutation.d.ts.map +0 -1
  220. package/lib/types/commands/mutations/move-rows-cols.mutation.d.ts.map +0 -1
  221. package/lib/types/commands/mutations/remove-row-col.mutation.d.ts.map +0 -1
  222. package/lib/types/commands/mutations/remove-sheet.mutation.d.ts.map +0 -1
  223. package/lib/types/commands/mutations/remove-worksheet-merge.mutation.d.ts.map +0 -1
  224. package/lib/types/commands/mutations/set-col-visible.mutation.d.ts.map +0 -1
  225. package/lib/types/commands/mutations/set-frozen.mutation.d.ts.map +0 -1
  226. package/lib/types/commands/mutations/set-hide-gridlines.mutatiom.d.ts.map +0 -1
  227. package/lib/types/commands/mutations/set-numfmt-mutation.d.ts +0 -16
  228. package/lib/types/commands/mutations/set-numfmt-mutation.d.ts.map +0 -1
  229. package/lib/types/commands/mutations/set-range-formatted-value.mutation.d.ts +0 -18
  230. package/lib/types/commands/mutations/set-range-formatted-value.mutation.d.ts.map +0 -1
  231. package/lib/types/commands/mutations/set-range-values.mutation.d.ts.map +0 -1
  232. package/lib/types/commands/mutations/set-row-visible.mutation.d.ts.map +0 -1
  233. package/lib/types/commands/mutations/set-tab-color.mutation.d.ts.map +0 -1
  234. package/lib/types/commands/mutations/set-worksheet-activate.mutation.d.ts +0 -9
  235. package/lib/types/commands/mutations/set-worksheet-activate.mutation.d.ts.map +0 -1
  236. package/lib/types/commands/mutations/set-worksheet-col-width.mutation.d.ts.map +0 -1
  237. package/lib/types/commands/mutations/set-worksheet-config.mutation.d.ts.map +0 -1
  238. package/lib/types/commands/mutations/set-worksheet-hide.mutation.d.ts.map +0 -1
  239. package/lib/types/commands/mutations/set-worksheet-name.mutation.d.ts.map +0 -1
  240. package/lib/types/commands/mutations/set-worksheet-order.mutation.d.ts.map +0 -1
  241. package/lib/types/commands/mutations/set-worksheet-right-to-left.mutation.d.ts.map +0 -1
  242. package/lib/types/commands/mutations/set-worksheet-row-height.mutation.d.ts.map +0 -1
  243. package/lib/types/commands/operations/selection.operation.d.ts.map +0 -1
  244. package/lib/types/commands/utils/interface.d.ts.map +0 -1
  245. package/lib/types/controllers/__tests__/util.d.ts.map +0 -1
  246. package/lib/types/controllers/basic-worksheet.controller.d.ts.map +0 -1
  247. package/lib/types/controllers/config/config.d.ts.map +0 -1
  248. package/lib/types/controllers/merge-cell.controller.d.ts.map +0 -1
  249. package/lib/types/index.d.ts.map +0 -1
  250. package/lib/types/locale/en-US.d.ts.map +0 -1
  251. package/lib/types/locale/index.d.ts.map +0 -1
  252. package/lib/types/locale/zh-CN.d.ts.map +0 -1
  253. package/lib/types/services/__tests__/ref-range.setvice.spec.d.ts.map +0 -1
  254. package/lib/types/services/__tests__/sheet-permission.spec.d.ts.map +0 -1
  255. package/lib/types/services/__tests__/util.d.ts.map +0 -1
  256. package/lib/types/services/border-style-manager.service.d.ts.map +0 -1
  257. package/lib/types/services/numfmt/numfmt.service.d.ts.map +0 -1
  258. package/lib/types/services/numfmt/type.d.ts.map +0 -1
  259. package/lib/types/services/permission/index.d.ts.map +0 -1
  260. package/lib/types/services/permission/permission-point.d.ts.map +0 -1
  261. package/lib/types/services/permission/sheet-permission.service.d.ts.map +0 -1
  262. package/lib/types/services/ref-range/__tests__/util.d.ts.map +0 -1
  263. package/lib/types/services/ref-range/__tests__/util.spec.d.ts.map +0 -1
  264. package/lib/types/services/ref-range/ref-range.service.d.ts.map +0 -1
  265. package/lib/types/services/ref-range/type.d.ts.map +0 -1
  266. package/lib/types/services/ref-range/util.d.ts.map +0 -1
  267. package/lib/types/services/selection-manager.service.d.ts.map +0 -1
  268. package/lib/types/services/sheet-interceptor/__tests__/create-core-test-bed.d.ts.map +0 -1
  269. package/lib/types/services/sheet-interceptor/__tests__/sheet-interceptor.service.spec.d.ts.map +0 -1
  270. package/lib/types/services/sheet-interceptor/interceptor-const.d.ts.map +0 -1
  271. package/lib/types/services/sheet-interceptor/sheet-interceptor.service.d.ts.map +0 -1
  272. package/lib/types/services/sheet-interceptor/utils/interceptor.d.ts.map +0 -1
  273. package/lib/types/sheets-plugin.d.ts.map +0 -1
@@ -1,2 +1,16 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  export {};
2
- //# sourceMappingURL=set-worksheet-name.command.spec.d.ts.map
@@ -1,2 +1,16 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  export {};
2
- //# sourceMappingURL=set-worksheet-order.command.spec.d.ts.map
@@ -1,2 +1,16 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  export {};
2
- //# sourceMappingURL=set-worksheet-show.command.spec.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IRange } from '@univerjs/core';
2
17
  import { Dimension } from '@univerjs/core';
3
18
  export interface IAddMergeCommandParams {
@@ -10,11 +25,3 @@ export declare const AddWorksheetMergeCommand: ICommand;
10
25
  export declare const AddWorksheetMergeAllCommand: ICommand;
11
26
  export declare const AddWorksheetMergeVerticalCommand: ICommand;
12
27
  export declare const AddWorksheetMergeHorizontalCommand: ICommand;
13
- /**
14
- * calculates the selection based on the merged cell type
15
- * @param {IRange[]} selection
16
- * @param {Dimension} [type]
17
- * @return {*}
18
- */
19
- export declare const getAddMergeMutationRangeByType: (selection: IRange[], type?: Dimension) => IRange[];
20
- //# sourceMappingURL=add-worksheet-merge.command.d.ts.map
@@ -1,6 +1,20 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand } from '@univerjs/core';
2
17
  /**
3
18
  * The command to clear all in current selected ranges.
4
19
  */
5
20
  export declare const ClearSelectionAllCommand: ICommand;
6
- //# sourceMappingURL=clear-selection-all.command.d.ts.map
@@ -1,6 +1,20 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand } from '@univerjs/core';
2
17
  /**
3
18
  * The command to clear content in current selected ranges.
4
19
  */
5
20
  export declare const ClearSelectionContentCommand: ICommand;
6
- //# sourceMappingURL=clear-selection-content.command.d.ts.map
@@ -1,7 +1,21 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICellData, ICommand, IRange, ObjectMatrixPrimitiveType } from '@univerjs/core';
2
17
  /**
3
18
  * The command to clear content in current selected ranges.
4
19
  */
5
20
  export declare const ClearSelectionFormatCommand: ICommand;
6
21
  export declare function generateNullCellValue(ranges: IRange[]): ObjectMatrixPrimitiveType<ICellData>;
7
- //# sourceMappingURL=clear-selection-format.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand } from '@univerjs/core';
2
17
  export interface ICopySheetToCommandParams {
3
18
  workbookId?: string;
@@ -6,4 +21,3 @@ export interface ICopySheetToCommandParams {
6
21
  copyToSheetId?: string;
7
22
  }
8
23
  export declare const CopySheetToCommand: ICommand;
9
- //# sourceMappingURL=copy-to-worksheet.command.d.ts.map
@@ -1,7 +1,21 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand } from '@univerjs/core';
2
17
  export interface ICopySheetCommandParams {
3
18
  workbookId?: string;
4
19
  worksheetId?: string;
5
20
  }
6
21
  export declare const CopySheetCommand: ICommand;
7
- //# sourceMappingURL=copy-worksheet.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IRange } from '@univerjs/core';
2
17
  export interface IDeleteRangeMoveLeftCommandParams {
3
18
  ranges: IRange[];
@@ -7,4 +22,3 @@ export declare const DeleteRangeMoveLeftCommandId = "sheet.command.delete-range-
7
22
  * The command to delete range.
8
23
  */
9
24
  export declare const DeleteRangeMoveLeftCommand: ICommand;
10
- //# sourceMappingURL=delete-range-move-left.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IRange } from '@univerjs/core';
2
17
  export interface IDeleteRangeMoveUpCommandParams {
3
18
  ranges: IRange[];
@@ -7,4 +22,3 @@ export declare const DeleteRangeMoveUpCommandId = "sheet.command.delete-range-mo
7
22
  * The command to delete range.
8
23
  */
9
24
  export declare const DeleteRangeMoveUpCommand: ICommand;
10
- //# sourceMappingURL=delete-range-move-up.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IRange } from '@univerjs/core';
2
17
  export interface InsertRangeMoveDownCommandParams {
3
18
  ranges: IRange[];
@@ -7,4 +22,3 @@ export declare const InsertRangeMoveDownCommandId = "sheet.command.insert-range-
7
22
  * The command to insert range.
8
23
  */
9
24
  export declare const InsertRangeMoveDownCommand: ICommand;
10
- //# sourceMappingURL=insert-range-move-down.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IRange } from '@univerjs/core';
2
17
  export interface InsertRangeMoveRightCommandParams {
3
18
  ranges: IRange[];
@@ -7,4 +22,3 @@ export declare const InsertRangeMoveRightCommandId = "sheet.command.insert-range
7
22
  * The command to insert range.
8
23
  */
9
24
  export declare const InsertRangeMoveRightCommand: ICommand;
10
- //# sourceMappingURL=insert-range-move-right.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IRange } from '@univerjs/core';
2
17
  import { Direction } from '@univerjs/core';
3
18
  export interface IInsertRowCommandParams {
@@ -33,4 +48,3 @@ export declare const InsertColCommandId = "sheet.command.insert-col";
33
48
  export declare const InsertColCommand: ICommand<IInsertColCommandParams>;
34
49
  export declare const InsertColBeforeCommand: ICommand;
35
50
  export declare const InsertColAfterCommand: ICommand;
36
- //# sourceMappingURL=insert-row-col.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IWorksheetData } from '@univerjs/core';
2
17
  export interface InsertSheetCommandParams {
3
18
  workbookId?: string;
@@ -8,4 +23,3 @@ export interface InsertSheetCommandParams {
8
23
  * The command to insert new worksheet
9
24
  */
10
25
  export declare const InsertSheetCommand: ICommand;
11
- //# sourceMappingURL=insert-sheet.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IRange } from '@univerjs/core';
2
17
  export interface IMoveRangeCommandParams {
3
18
  toRange: IRange;
@@ -5,4 +20,3 @@ export interface IMoveRangeCommandParams {
5
20
  }
6
21
  export declare const MoveRangeCommandId = "sheet.command.move-range";
7
22
  export declare const MoveRangeCommand: ICommand;
8
- //# sourceMappingURL=move-range.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand } from '@univerjs/core';
2
17
  export interface IMoveRowsCommandParams {
3
18
  fromRow: number;
@@ -12,4 +27,3 @@ export interface IMoveColsCommandParams {
12
27
  toCol: number;
13
28
  }
14
29
  export declare const MoveColsCommand: ICommand<IMoveColsCommandParams>;
15
- //# sourceMappingURL=move-rows-cols.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IRange } from '@univerjs/core';
2
17
  export interface IRemoveRowColCommandParams {
3
18
  ranges: IRange[];
@@ -12,4 +27,3 @@ export declare const RemoveColCommandId = "sheet.command.remove-col";
12
27
  * This command would remove the selected columns. These selected rows can be non-continuous.
13
28
  */
14
29
  export declare const RemoveColCommand: ICommand;
15
- //# sourceMappingURL=remove-row-col.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand } from '@univerjs/core';
2
17
  export interface IRemoveSheetCommandParams {
3
18
  workbookId?: string;
@@ -7,4 +22,3 @@ export interface IRemoveSheetCommandParams {
7
22
  * The command to insert new worksheet
8
23
  */
9
24
  export declare const RemoveSheetCommand: ICommand;
10
- //# sourceMappingURL=remove-sheet.command.d.ts.map
@@ -1,3 +1,17 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand } from '@univerjs/core';
2
17
  export declare const RemoveWorksheetMergeCommand: ICommand;
3
- //# sourceMappingURL=remove-worksheet-merge.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { BorderStyleTypes, ICommand } from '@univerjs/core';
2
17
  import { BorderType } from '@univerjs/core';
3
18
  import { type IBorderInfo } from '../../services/border-style-manager.service';
@@ -21,4 +36,3 @@ export declare const SetBorderColorCommand: ICommand<ISetBorderColorCommandParam
21
36
  * The command to clear content in current selected ranges.
22
37
  */
23
38
  export declare const SetBorderCommand: ICommand;
24
- //# sourceMappingURL=set-border-command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IRange } from '@univerjs/core';
2
17
  export interface ISetSpecificColsVisibleCommandParams {
3
18
  workbookId: string;
@@ -7,4 +22,3 @@ export interface ISetSpecificColsVisibleCommandParams {
7
22
  export declare const SetSpecificColsVisibleCommand: ICommand<ISetSpecificColsVisibleCommandParams>;
8
23
  export declare const SetSelectedColsVisibleCommand: ICommand;
9
24
  export declare const SetColHiddenCommand: ICommand;
10
- //# sourceMappingURL=set-col-visible.command.d.ts.map
@@ -1,3 +1,17 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand } from '@univerjs/core';
2
17
  export declare const SetFrozenCancelCommand: ICommand;
3
- //# sourceMappingURL=set-frozen-cancel.command.d.ts.map
@@ -1,3 +1,17 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand } from '@univerjs/core';
2
17
  export declare const SetFrozenCommand: ICommand;
3
- //# sourceMappingURL=set-frozen.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand } from '@univerjs/core';
2
17
  import { BooleanNumber } from '@univerjs/core';
3
18
  export interface ISetHideGridlinesCommandParams {
@@ -6,4 +21,3 @@ export interface ISetHideGridlinesCommandParams {
6
21
  worksheetId?: string;
7
22
  }
8
23
  export declare const SetHideGridlinesCommand: ICommand;
9
- //# sourceMappingURL=set-hide-gridlines.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICellData, ICommand, IRange, ObjectMatrixPrimitiveType } from '@univerjs/core';
2
17
  export interface ISetRangeValuesCommandParams {
3
18
  worksheetId?: string;
@@ -14,4 +29,3 @@ export interface ISetRangeValuesCommandParams {
14
29
  * The command to set values for ranges.
15
30
  */
16
31
  export declare const SetRangeValuesCommand: ICommand;
17
- //# sourceMappingURL=set-range-values.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { ICommand, IRange } from '@univerjs/core';
2
17
  export interface ISetSpecificRowsVisibleCommandParams {
3
18
  workbookId: string;
@@ -7,4 +22,3 @@ export interface ISetSpecificRowsVisibleCommandParams {
7
22
  export declare const SetSpecificRowsVisibleCommand: ICommand<ISetSpecificRowsVisibleCommandParams>;
8
23
  export declare const SetSelectedRowsVisibleCommand: ICommand;
9
24
  export declare const SetRowHiddenCommand: ICommand;
10
- //# sourceMappingURL=set-row-visible.command.d.ts.map
@@ -1,3 +1,18 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
  import type { HorizontalAlign, ICommand, IRange, IStyleData, VerticalAlign, WrapStrategy } from '@univerjs/core';
2
17
  export interface IStyleTypeValue<T> {
3
18
  type: keyof IStyleData;
@@ -67,4 +82,3 @@ export interface ISetTextRotationCommandParams {
67
82
  value: number | string;
68
83
  }
69
84
  export declare const SetTextRotationCommand: ICommand<ISetTextRotationCommandParams>;
70
- //# sourceMappingURL=set-style.command.d.ts.map