@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
@@ -0,0 +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
+ */
16
+ export {};
@@ -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
  export declare const COMMAND_LISTENER_SKELETON_CHANGE: string[];
2
17
  export declare const COMMAND_LISTENER_VALUE_CHANGE: string[];
3
- //# sourceMappingURL=command-listener-const.d.ts.map
@@ -1,3 +1,17 @@
1
- import type { ISheetsPluginConfig } from '../interfaces/spreadsheet-config';
2
- export declare const DEFAULT_SPREADSHEET_PLUGIN_DATA: ISheetsPluginConfig;
3
- //# sourceMappingURL=default-spreadsheet-plugin-data.d.ts.map
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
+ */
16
+ import type { IUniverSheetsConfig } from '../interfaces/spreadsheet-config';
17
+ export declare const DEFAULT_SPREADSHEET_PLUGIN_DATA: IUniverSheetsConfig;
@@ -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
  export * from './command-listener-const';
2
17
  export * from './default-spreadsheet-plugin-data';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,19 @@
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 * from './const/index';
2
17
  export * from './interfaces/index';
3
18
  export * from './selection';
4
- //# sourceMappingURL=index.d.ts.map
19
+ export { createUniqueKey, groupByKey } from './utils';
@@ -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 { BooleanNumber } from '@univerjs/core';
2
17
  /**
3
18
  * Column ruler data type
@@ -5,4 +20,3 @@ import type { BooleanNumber } from '@univerjs/core';
5
20
  export interface IColumnRulerData {
6
21
  hd: BooleanNumber;
7
22
  }
8
- //# sourceMappingURL=i-ruler-manager.d.ts.map
@@ -1,4 +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
  export * from './mutation-interface';
2
17
  export * from './selection-config';
3
18
  export * from './spreadsheet-config';
4
- //# sourceMappingURL=index.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 { Dimension, ICellData, IColumnData, IRange, IRowData, IWorksheetData, ObjectArray, ObjectMatrixPrimitiveType } from '@univerjs/core';
2
17
  /** Params of `RemoveSheetMutation` */
3
18
  export interface IRemoveSheetMutationParams {
@@ -63,4 +78,3 @@ export interface IAddWorksheetMergeMutationParams {
63
78
  worksheetId: string;
64
79
  ranges: IRange[];
65
80
  }
66
- //# sourceMappingURL=mutation-interface.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 { IRange, IRangeCellData } from '@univerjs/core';
2
17
  export interface ISelectionConfig {
3
18
  selection: IRange;
@@ -6,4 +21,3 @@ export interface ISelectionConfig {
6
21
  export interface ISelectionsConfig {
7
22
  [worksheetId: string]: ISelectionConfig[];
8
23
  }
9
- //# sourceMappingURL=selection-config.d.ts.map
@@ -1,5 +1,19 @@
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 { ISelectionsConfig } from './selection-config';
2
- export interface ISheetsPluginConfig {
17
+ export interface IUniverSheetsConfig {
3
18
  selections: ISelectionsConfig;
4
19
  }
5
- //# sourceMappingURL=spreadsheet-config.d.ts.map
@@ -0,0 +1,24 @@
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
+ */
16
+ import type { IRange } from '@univerjs/core';
17
+ /**
18
+ * Some operations generate sparse ranges such as paste/autofill/ref-range, and this function merge some small ranges into some large ranges to reduce transmission size.
19
+ * Time Complexity: O(mn) , where m and n are rows and columns. It takes O(mn) to compute the markMatrix and O(n) to apply the histogram algorithm to each column.
20
+ * ps. column sparse matrices have better performance
21
+ * @param {IRange[]} ranges
22
+ * @returns {IRange[]}
23
+ */
24
+ export declare const rangeMerge: (ranges: IRange[]) => IRange[];
@@ -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 { IRange, ISelection, ISelectionCellWithCoord, ISelectionWithCoord, Nullable, ThemeService } from '@univerjs/core';
2
17
  export declare const SELECTION_CONTROL_BORDER_BUFFER_WIDTH = 1;
3
18
  export declare const SELECTION_CONTROL_BORDER_BUFFER_COLOR = "rgba(255,255,255, 0.01)";
@@ -133,4 +148,3 @@ export declare function convertPrimaryWithCoordToPrimary(primaryWithCoord: ISele
133
148
  * @returns ISelectionWithStyle
134
149
  */
135
150
  export declare function transformCellDataToSelectionData(row: number, column: number, mergeData: IRange[]): Nullable<ISelectionWithStyle>;
136
- //# sourceMappingURL=selection.d.ts.map
@@ -1,4 +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 { Worksheet } from '@univerjs/core';
2
17
  export declare function rowHeightByHeader(worksheet: Worksheet): number;
3
18
  export declare function columnWidthByHeader(worksheet: Worksheet): number;
4
- //# sourceMappingURL=sheet-header.d.ts.map
@@ -0,0 +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
+ */
16
+ export declare const groupByKey: <T = Record<string, unknown>>(arr: T[], key: string, blankKey?: string) => Record<string, T[]>;
17
+ export declare const createUniqueKey: (initValue?: number) => () => number;
@@ -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=clear-selection.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=copy-worksheet.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 { IWorkbookData, Workbook } from '@univerjs/core';
2
17
  import { Univer } from '@univerjs/core';
3
18
  import type { Dependency } from '@wendellhu/redi';
@@ -8,4 +23,3 @@ export interface ITestBed {
8
23
  sheet: Workbook;
9
24
  }
10
25
  export declare function createCommandTestBed(workbookConfig?: IWorkbookData, dependencies?: Dependency[]): ITestBed;
11
- //# sourceMappingURL=create-command-test-bed.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=delete-range.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=insert-range.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=insert-remove-rows-cols.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=move-range-commands.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=move-rows-cols.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=remove-sheet.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-border.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-col-width.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-frozen.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-range-values.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-row-col-visible.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-row-height.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-style.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-tab-color.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-hide.command.spec.d.ts.map