@univerjs/core 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 (335) hide show
  1. package/LICENSE.txt +178 -0
  2. package/lib/cjs/index.js +11 -15323
  3. package/lib/es/index.js +7369 -0
  4. package/lib/types/basics/index.d.ts +15 -1
  5. package/lib/types/basics/registry.d.ts +12 -4
  6. package/lib/types/basics/univer-doc.d.ts +15 -1
  7. package/lib/types/basics/univer-sheet.d.ts +15 -1
  8. package/lib/types/basics/univer-slide.d.ts +15 -1
  9. package/lib/types/basics/univer.d.ts +18 -4
  10. package/lib/types/common/array.d.ts +13 -5
  11. package/lib/types/common/const.d.ts +15 -1
  12. package/lib/types/common/interceptor.d.ts +15 -1
  13. package/lib/types/common/memory-cursor.d.ts +15 -1
  14. package/lib/types/common/request-immediate-macro-task.d.ts +16 -0
  15. package/lib/types/common/sequence.d.ts +15 -1
  16. package/lib/types/common/type-utils.d.ts +13 -2
  17. package/lib/types/docs/data-model/__tests__/apply-utils.spec.d.ts +15 -1
  18. package/lib/types/docs/data-model/apply-utils/common.d.ts +15 -1
  19. package/lib/types/docs/data-model/apply-utils/delete-apply.d.ts +15 -1
  20. package/lib/types/docs/data-model/apply-utils/insert-apply.d.ts +15 -1
  21. package/lib/types/docs/data-model/apply-utils/update-apply.d.ts +15 -1
  22. package/lib/types/docs/data-model/document-data-model.d.ts +15 -1
  23. package/lib/types/docs/data-model/index.d.ts +15 -1
  24. package/lib/types/docs/data-model/mutation-types.d.ts +15 -1
  25. package/lib/types/docs/data-model/types.d.ts +15 -1
  26. package/lib/types/docs/index.d.ts +15 -1
  27. package/lib/types/index.d.ts +18 -3
  28. package/lib/types/observer/index.d.ts +15 -1
  29. package/lib/types/observer/observable-hooks.d.ts +15 -1
  30. package/lib/types/observer/observable.d.ts +15 -1
  31. package/lib/types/plugin/plugin.d.ts +15 -1
  32. package/lib/types/services/auth/auth.service.d.ts +15 -1
  33. package/lib/types/services/command/command.service.d.ts +30 -3
  34. package/lib/types/services/command/command.service.spec.d.ts +15 -1
  35. package/lib/types/services/config/config.service.d.ts +15 -1
  36. package/lib/types/services/context/context.d.ts +15 -1
  37. package/lib/types/services/context/context.service.d.ts +15 -1
  38. package/lib/types/services/error/error.service.d.ts +15 -1
  39. package/lib/types/services/floating-object/floating-object-interfaces.d.ts +15 -1
  40. package/lib/types/services/floating-object/floating-object-manager.service.d.ts +15 -1
  41. package/lib/types/services/instance/instance.service.d.ts +15 -1
  42. package/lib/types/services/lifecycle/lifecycle.d.ts +15 -1
  43. package/lib/types/services/lifecycle/lifecycle.service.d.ts +15 -1
  44. package/lib/types/services/local-storage/local-storage.service.d.ts +15 -1
  45. package/lib/types/services/locale/locale.service.d.ts +15 -1
  46. package/lib/types/services/log/log.service.d.ts +24 -6
  47. package/lib/types/services/permission/index.d.ts +15 -1
  48. package/lib/types/services/permission/permission-point.d.ts +15 -1
  49. package/lib/types/services/permission/permission.service.d.ts +15 -1
  50. package/lib/types/services/permission/univer.permission.service.d.ts +15 -1
  51. package/lib/types/services/resource-manager/resource-manager.service.d.ts +15 -1
  52. package/lib/types/services/resource-manager/type.d.ts +21 -1
  53. package/lib/types/services/theme/theme.service.d.ts +15 -1
  54. package/lib/types/services/undoredo/undoredo.service.d.ts +15 -1
  55. package/lib/types/shared/__test__/object-matrix.spec.d.ts +15 -1
  56. package/lib/types/shared/__test__/ref-alias.spec.d.ts +15 -1
  57. package/lib/types/shared/array-search.d.ts +15 -1
  58. package/lib/types/shared/blob.d.ts +16 -0
  59. package/lib/types/shared/color/color-builder.d.ts +15 -1
  60. package/lib/types/shared/color/color.d.ts +15 -1
  61. package/lib/types/shared/command-enum.d.ts +15 -1
  62. package/lib/types/shared/common.d.ts +15 -1
  63. package/lib/types/shared/compare.d.ts +15 -1
  64. package/lib/types/shared/doc-tool.d.ts +15 -1
  65. package/lib/types/shared/gen-name.d.ts +15 -1
  66. package/lib/types/shared/generate.d.ts +15 -1
  67. package/lib/types/shared/hash-algorithm.d.ts +15 -1
  68. package/lib/types/shared/index.d.ts +16 -12
  69. package/lib/types/shared/lifecycle.d.ts +15 -1
  70. package/lib/types/shared/locale.d.ts +15 -1
  71. package/lib/types/shared/lru/index.d.ts +15 -1
  72. package/lib/types/shared/lru/lru-helper.d.ts +15 -1
  73. package/lib/types/shared/lru/lru-map.d.ts +15 -1
  74. package/lib/types/shared/object-array.d.ts +15 -1
  75. package/lib/types/shared/object-matrix.d.ts +38 -2
  76. package/lib/types/shared/permission/index.d.ts +15 -1
  77. package/lib/types/shared/props-from.d.ts +15 -1
  78. package/lib/types/shared/rectangle.d.ts +15 -1
  79. package/lib/types/shared/ref-alias.d.ts +13 -9
  80. package/lib/types/shared/row-col-iter.d.ts +15 -1
  81. package/lib/types/shared/sequence.d.ts +13 -4
  82. package/lib/types/shared/sort-rules.d.ts +15 -1
  83. package/lib/types/shared/tools.d.ts +15 -1
  84. package/lib/types/shared/types.d.ts +13 -2
  85. package/lib/types/sheets/__tests__/create-core-test-bed.d.ts +15 -1
  86. package/lib/types/sheets/__tests__/styles.spec.d.ts +15 -1
  87. package/lib/types/sheets/column-manager.d.ts +15 -8
  88. package/lib/types/sheets/range.d.ts +15 -15
  89. package/lib/types/sheets/reference.d.ts +15 -1
  90. package/lib/types/sheets/row-manager.d.ts +15 -1
  91. package/lib/types/sheets/styles.d.ts +17 -3
  92. package/lib/types/sheets/view-model.d.ts +19 -5
  93. package/lib/types/sheets/workbook.d.ts +17 -1
  94. package/lib/types/sheets/worksheet.d.ts +22 -3
  95. package/lib/types/slides/domain/index.d.ts +15 -1
  96. package/lib/types/slides/domain/slide-model.d.ts +15 -1
  97. package/lib/types/types/const/action-names.d.ts +15 -1
  98. package/lib/types/types/const/const.d.ts +15 -1
  99. package/lib/types/types/const/doc-action-names.d.ts +15 -1
  100. package/lib/types/types/const/extension-names.d.ts +13 -2
  101. package/lib/types/types/const/index.d.ts +15 -1
  102. package/lib/types/types/const/theme-color-map.d.ts +15 -1
  103. package/lib/types/types/enum/auto-fill-series.d.ts +11 -5
  104. package/lib/types/types/enum/border-style-types.d.ts +13 -2
  105. package/lib/types/types/enum/color-type.d.ts +13 -2
  106. package/lib/types/types/enum/common-hide-types.d.ts +13 -2
  107. package/lib/types/types/enum/condition-type.d.ts +13 -2
  108. package/lib/types/types/enum/copy-paste-type.d.ts +12 -4
  109. package/lib/types/types/enum/developer-metadata-visibility.d.ts +13 -2
  110. package/lib/types/types/enum/dimension.d.ts +12 -3
  111. package/lib/types/types/enum/direction.d.ts +15 -1
  112. package/lib/types/types/enum/format-type.d.ts +13 -2
  113. package/lib/types/types/enum/group-control-toggle-position.d.ts +13 -2
  114. package/lib/types/types/enum/index.d.ts +15 -1
  115. package/lib/types/types/enum/interpolation-point-type.d.ts +13 -2
  116. package/lib/types/types/enum/locale-type.d.ts +12 -3
  117. package/lib/types/types/enum/place-holder-type.d.ts +15 -1
  118. package/lib/types/types/enum/protection-type.d.ts +13 -2
  119. package/lib/types/types/enum/relative-date.d.ts +13 -2
  120. package/lib/types/types/enum/shape-type.d.ts +15 -1
  121. package/lib/types/types/enum/sheet-types.d.ts +13 -2
  122. package/lib/types/types/enum/text-style.d.ts +13 -2
  123. package/lib/types/types/enum/theme-color-type.d.ts +10 -19
  124. package/lib/types/types/interfaces/i-cell-data.d.ts +25 -9
  125. package/lib/types/types/interfaces/i-column-data.d.ts +15 -1
  126. package/lib/types/types/interfaces/i-document-data.d.ts +15 -1
  127. package/lib/types/types/interfaces/i-extra-model-data.d.ts +15 -1
  128. package/lib/types/types/interfaces/i-freeze.d.ts +13 -3
  129. package/lib/types/types/interfaces/i-image-properties.d.ts +13 -2
  130. package/lib/types/types/interfaces/i-placeholder.d.ts +15 -1
  131. package/lib/types/types/interfaces/i-range.d.ts +15 -1
  132. package/lib/types/types/interfaces/i-row-data.d.ts +15 -1
  133. package/lib/types/types/interfaces/i-selection-data.d.ts +15 -1
  134. package/lib/types/types/interfaces/i-service-data.d.ts +13 -2
  135. package/lib/types/types/interfaces/i-shape-properties.d.ts +15 -1
  136. package/lib/types/types/interfaces/i-slide-data.d.ts +15 -1
  137. package/lib/types/types/interfaces/i-style-data.d.ts +15 -1
  138. package/lib/types/types/interfaces/i-univer-data.d.ts +17 -1
  139. package/lib/types/types/interfaces/i-workbook-data.d.ts +15 -1
  140. package/lib/types/types/interfaces/i-worksheet-data.d.ts +19 -1
  141. package/lib/types/types/interfaces/i-worksheet-order-data.d.ts +13 -2
  142. package/lib/types/types/interfaces/index.d.ts +15 -1
  143. package/lib/umd/index.js +11 -0
  144. package/package.json +20 -15
  145. package/LICENSE +0 -21
  146. package/lib/esm/index.js +0 -14601
  147. package/lib/types/basics/index.d.ts.map +0 -1
  148. package/lib/types/basics/registry.d.ts.map +0 -1
  149. package/lib/types/basics/univer-doc.d.ts.map +0 -1
  150. package/lib/types/basics/univer-sheet.d.ts.map +0 -1
  151. package/lib/types/basics/univer-slide.d.ts.map +0 -1
  152. package/lib/types/basics/univer.d.ts.map +0 -1
  153. package/lib/types/common/array.d.ts.map +0 -1
  154. package/lib/types/common/color/color-builder.d.ts +0 -1
  155. package/lib/types/common/color/color-builder.d.ts.map +0 -1
  156. package/lib/types/common/const.d.ts.map +0 -1
  157. package/lib/types/common/interceptor.d.ts.map +0 -1
  158. package/lib/types/common/memory-cursor.d.ts.map +0 -1
  159. package/lib/types/common/sequence.d.ts.map +0 -1
  160. package/lib/types/common/type-utils.d.ts.map +0 -1
  161. package/lib/types/docs/data-model/__tests__/apply-utils.spec.d.ts.map +0 -1
  162. package/lib/types/docs/data-model/apply-utils/common.d.ts.map +0 -1
  163. package/lib/types/docs/data-model/apply-utils/delete-apply.d.ts.map +0 -1
  164. package/lib/types/docs/data-model/apply-utils/insert-apply.d.ts.map +0 -1
  165. package/lib/types/docs/data-model/apply-utils/update-apply.d.ts.map +0 -1
  166. package/lib/types/docs/data-model/document-data-model.d.ts.map +0 -1
  167. package/lib/types/docs/data-model/index.d.ts.map +0 -1
  168. package/lib/types/docs/data-model/mutation-types.d.ts.map +0 -1
  169. package/lib/types/docs/data-model/types.d.ts.map +0 -1
  170. package/lib/types/docs/index.d.ts.map +0 -1
  171. package/lib/types/index.d.ts.map +0 -1
  172. package/lib/types/observer/index.d.ts.map +0 -1
  173. package/lib/types/observer/observable-hooks.d.ts.map +0 -1
  174. package/lib/types/observer/observable.d.ts.map +0 -1
  175. package/lib/types/plugin/plugin.d.ts.map +0 -1
  176. package/lib/types/services/auth/auth.service.d.ts.map +0 -1
  177. package/lib/types/services/command/command.service.d.ts.map +0 -1
  178. package/lib/types/services/command/command.service.spec.d.ts.map +0 -1
  179. package/lib/types/services/config/config.service.d.ts.map +0 -1
  180. package/lib/types/services/context/context.d.ts.map +0 -1
  181. package/lib/types/services/context/context.service.d.ts.map +0 -1
  182. package/lib/types/services/error/error.service.d.ts.map +0 -1
  183. package/lib/types/services/floating-object/floating-object-interfaces.d.ts.map +0 -1
  184. package/lib/types/services/floating-object/floating-object-manager.service.d.ts.map +0 -1
  185. package/lib/types/services/instance/instance.service.d.ts.map +0 -1
  186. package/lib/types/services/lifecycle/lifecycle.d.ts.map +0 -1
  187. package/lib/types/services/lifecycle/lifecycle.service.d.ts.map +0 -1
  188. package/lib/types/services/local-storage/local-storage.service.d.ts.map +0 -1
  189. package/lib/types/services/locale/locale.service.d.ts.map +0 -1
  190. package/lib/types/services/log/log.service.d.ts.map +0 -1
  191. package/lib/types/services/permission/index.d.ts.map +0 -1
  192. package/lib/types/services/permission/permission-point.d.ts.map +0 -1
  193. package/lib/types/services/permission/permission.service.d.ts.map +0 -1
  194. package/lib/types/services/permission/univer.permission.service.d.ts.map +0 -1
  195. package/lib/types/services/resource-manager/resource-manager.service.d.ts.map +0 -1
  196. package/lib/types/services/resource-manager/type.d.ts.map +0 -1
  197. package/lib/types/services/theme/theme.service.d.ts.map +0 -1
  198. package/lib/types/services/undoredo/undoredo.service.d.ts.map +0 -1
  199. package/lib/types/shared/__test__/object-matrix.spec.d.ts.map +0 -1
  200. package/lib/types/shared/__test__/ref-alias.spec.d.ts.map +0 -1
  201. package/lib/types/shared/array-search.d.ts.map +0 -1
  202. package/lib/types/shared/color/color-builder.d.ts.map +0 -1
  203. package/lib/types/shared/color/color.d.ts.map +0 -1
  204. package/lib/types/shared/color-builder.d.ts +0 -1
  205. package/lib/types/shared/color-builder.d.ts.map +0 -1
  206. package/lib/types/shared/command-enum.d.ts.map +0 -1
  207. package/lib/types/shared/common.d.ts.map +0 -1
  208. package/lib/types/shared/compare.d.ts.map +0 -1
  209. package/lib/types/shared/date-time.d.ts +0 -6
  210. package/lib/types/shared/date-time.d.ts.map +0 -1
  211. package/lib/types/shared/doc-tool.d.ts.map +0 -1
  212. package/lib/types/shared/drop-cell.d.ts +0 -1
  213. package/lib/types/shared/drop-cell.d.ts.map +0 -1
  214. package/lib/types/shared/excel-date-time.d.ts +0 -6
  215. package/lib/types/shared/excel-date-time.d.ts.map +0 -1
  216. package/lib/types/shared/gen-name.d.ts.map +0 -1
  217. package/lib/types/shared/generate.d.ts.map +0 -1
  218. package/lib/types/shared/group-model.d.ts +0 -4
  219. package/lib/types/shared/group-model.d.ts.map +0 -1
  220. package/lib/types/shared/hash-algorithm.d.ts.map +0 -1
  221. package/lib/types/shared/index.d.ts.map +0 -1
  222. package/lib/types/shared/io-http.d.ts +0 -84
  223. package/lib/types/shared/io-http.d.ts.map +0 -1
  224. package/lib/types/shared/io-socket.d.ts +0 -48
  225. package/lib/types/shared/io-socket.d.ts.map +0 -1
  226. package/lib/types/shared/lifecycle.d.ts.map +0 -1
  227. package/lib/types/shared/locale.d.ts.map +0 -1
  228. package/lib/types/shared/logger.d.ts +0 -12
  229. package/lib/types/shared/logger.d.ts.map +0 -1
  230. package/lib/types/shared/lru/index.d.ts.map +0 -1
  231. package/lib/types/shared/lru/lru-helper.d.ts.map +0 -1
  232. package/lib/types/shared/lru/lru-map.d.ts.map +0 -1
  233. package/lib/types/shared/migrate/border.d.ts +0 -3
  234. package/lib/types/shared/migrate/border.d.ts.map +0 -1
  235. package/lib/types/shared/migrate/index.d.ts +0 -2
  236. package/lib/types/shared/migrate/index.d.ts.map +0 -1
  237. package/lib/types/shared/migrate/migrate.d.ts +0 -3
  238. package/lib/types/shared/migrate/migrate.d.ts.map +0 -1
  239. package/lib/types/shared/object-array.d.ts.map +0 -1
  240. package/lib/types/shared/object-matrix.d.ts.map +0 -1
  241. package/lib/types/shared/permission/index.d.ts.map +0 -1
  242. package/lib/types/shared/props-from.d.ts.map +0 -1
  243. package/lib/types/shared/random.d.ts +0 -7
  244. package/lib/types/shared/random.d.ts.map +0 -1
  245. package/lib/types/shared/rect-tree/border-tree.d.ts +0 -30
  246. package/lib/types/shared/rect-tree/border-tree.d.ts.map +0 -1
  247. package/lib/types/shared/rect-tree/es-rect-tree.d.ts +0 -9
  248. package/lib/types/shared/rect-tree/es-rect-tree.d.ts.map +0 -1
  249. package/lib/types/shared/rect-tree/merge-tree.d.ts +0 -1
  250. package/lib/types/shared/rect-tree/merge-tree.d.ts.map +0 -1
  251. package/lib/types/shared/rect-tree/quick-select.d.ts +0 -3
  252. package/lib/types/shared/rect-tree/quick-select.d.ts.map +0 -1
  253. package/lib/types/shared/rect-tree/rect-tree.d.ts +0 -60
  254. package/lib/types/shared/rect-tree/rect-tree.d.ts.map +0 -1
  255. package/lib/types/shared/rect-tree/styles-tree.d.ts +0 -1
  256. package/lib/types/shared/rect-tree/styles-tree.d.ts.map +0 -1
  257. package/lib/types/shared/rectangle.d.ts.map +0 -1
  258. package/lib/types/shared/ref-alias.d.ts.map +0 -1
  259. package/lib/types/shared/row-col-iter.d.ts.map +0 -1
  260. package/lib/types/shared/sequence.d.ts.map +0 -1
  261. package/lib/types/shared/serialize/index.d.ts +0 -5
  262. package/lib/types/shared/serialize/index.d.ts.map +0 -1
  263. package/lib/types/shared/serialize/sequence.d.ts +0 -4
  264. package/lib/types/shared/serialize/sequence.d.ts.map +0 -1
  265. package/lib/types/shared/serialize/serialize-manager.d.ts +0 -17
  266. package/lib/types/shared/serialize/serialize-manager.d.ts.map +0 -1
  267. package/lib/types/shared/serialize/serialize.d.ts +0 -8
  268. package/lib/types/shared/serialize/serialize.d.ts.map +0 -1
  269. package/lib/types/shared/serialize/serializer.d.ts +0 -14
  270. package/lib/types/shared/serialize/serializer.d.ts.map +0 -1
  271. package/lib/types/shared/sort-rules.d.ts.map +0 -1
  272. package/lib/types/shared/tools.d.ts.map +0 -1
  273. package/lib/types/shared/tuples.d.ts +0 -12
  274. package/lib/types/shared/tuples.d.ts.map +0 -1
  275. package/lib/types/shared/type-store.d.ts +0 -10
  276. package/lib/types/shared/type-store.d.ts.map +0 -1
  277. package/lib/types/shared/types.d.ts.map +0 -1
  278. package/lib/types/sheets/__tests__/create-core-test-bed.d.ts.map +0 -1
  279. package/lib/types/sheets/__tests__/styles.spec.d.ts.map +0 -1
  280. package/lib/types/sheets/column-manager.d.ts.map +0 -1
  281. package/lib/types/sheets/range.d.ts.map +0 -1
  282. package/lib/types/sheets/reference.d.ts.map +0 -1
  283. package/lib/types/sheets/row-manager.d.ts.map +0 -1
  284. package/lib/types/sheets/styles.d.ts.map +0 -1
  285. package/lib/types/sheets/view-model.d.ts.map +0 -1
  286. package/lib/types/sheets/workbook.d.ts.map +0 -1
  287. package/lib/types/sheets/worksheet.d.ts.map +0 -1
  288. package/lib/types/slides/domain/index.d.ts.map +0 -1
  289. package/lib/types/slides/domain/slide-model.d.ts.map +0 -1
  290. package/lib/types/types/const/action-names.d.ts.map +0 -1
  291. package/lib/types/types/const/const.d.ts.map +0 -1
  292. package/lib/types/types/const/doc-action-names.d.ts.map +0 -1
  293. package/lib/types/types/const/extension-names.d.ts.map +0 -1
  294. package/lib/types/types/const/index.d.ts.map +0 -1
  295. package/lib/types/types/const/theme-color-map.d.ts.map +0 -1
  296. package/lib/types/types/enum/auto-fill-series.d.ts.map +0 -1
  297. package/lib/types/types/enum/border-style-types.d.ts.map +0 -1
  298. package/lib/types/types/enum/color-type.d.ts.map +0 -1
  299. package/lib/types/types/enum/common-hide-types.d.ts.map +0 -1
  300. package/lib/types/types/enum/condition-type.d.ts.map +0 -1
  301. package/lib/types/types/enum/copy-paste-type.d.ts.map +0 -1
  302. package/lib/types/types/enum/developer-metadata-visibility.d.ts.map +0 -1
  303. package/lib/types/types/enum/dimension.d.ts.map +0 -1
  304. package/lib/types/types/enum/direction.d.ts.map +0 -1
  305. package/lib/types/types/enum/format-type.d.ts.map +0 -1
  306. package/lib/types/types/enum/group-control-toggle-position.d.ts.map +0 -1
  307. package/lib/types/types/enum/index.d.ts.map +0 -1
  308. package/lib/types/types/enum/interpolation-point-type.d.ts.map +0 -1
  309. package/lib/types/types/enum/locale-type.d.ts.map +0 -1
  310. package/lib/types/types/enum/place-holder-type.d.ts.map +0 -1
  311. package/lib/types/types/enum/protection-type.d.ts.map +0 -1
  312. package/lib/types/types/enum/relative-date.d.ts.map +0 -1
  313. package/lib/types/types/enum/shape-type.d.ts.map +0 -1
  314. package/lib/types/types/enum/sheet-types.d.ts.map +0 -1
  315. package/lib/types/types/enum/text-style.d.ts.map +0 -1
  316. package/lib/types/types/enum/theme-color-type.d.ts.map +0 -1
  317. package/lib/types/types/interfaces/i-cell-data.d.ts.map +0 -1
  318. package/lib/types/types/interfaces/i-column-data.d.ts.map +0 -1
  319. package/lib/types/types/interfaces/i-document-data.d.ts.map +0 -1
  320. package/lib/types/types/interfaces/i-extra-model-data.d.ts.map +0 -1
  321. package/lib/types/types/interfaces/i-freeze.d.ts.map +0 -1
  322. package/lib/types/types/interfaces/i-image-properties.d.ts.map +0 -1
  323. package/lib/types/types/interfaces/i-placeholder.d.ts.map +0 -1
  324. package/lib/types/types/interfaces/i-range.d.ts.map +0 -1
  325. package/lib/types/types/interfaces/i-row-data.d.ts.map +0 -1
  326. package/lib/types/types/interfaces/i-selection-data.d.ts.map +0 -1
  327. package/lib/types/types/interfaces/i-service-data.d.ts.map +0 -1
  328. package/lib/types/types/interfaces/i-shape-properties.d.ts.map +0 -1
  329. package/lib/types/types/interfaces/i-slide-data.d.ts.map +0 -1
  330. package/lib/types/types/interfaces/i-style-data.d.ts.map +0 -1
  331. package/lib/types/types/interfaces/i-univer-data.d.ts.map +0 -1
  332. package/lib/types/types/interfaces/i-workbook-data.d.ts.map +0 -1
  333. package/lib/types/types/interfaces/i-worksheet-data.d.ts.map +0 -1
  334. package/lib/types/types/interfaces/i-worksheet-order-data.d.ts.map +0 -1
  335. package/lib/types/types/interfaces/index.d.ts.map +0 -1
@@ -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 { Ctor, Injector } from '@wendellhu/redi';
2
17
  export type PluginCtor<T extends Plugin> = Ctor<T> & {
3
18
  type: PluginType;
@@ -46,4 +61,3 @@ export declare class PluginRegistry {
46
61
  getRegisterPlugins(type: PluginType): [IPluginRegistryItem];
47
62
  }
48
63
  export {};
49
- //# sourceMappingURL=plugin.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
  export interface IAuthService {
2
17
  }
3
- //# sourceMappingURL=auth.service.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 { IAccessor, IDisposable } from '@wendellhu/redi';
2
17
  import { Injector } from '@wendellhu/redi';
3
18
  import { IContextService } from '../context/context.service';
@@ -17,7 +32,11 @@ export interface ICommand<P extends object = object, R = boolean> {
17
32
  readonly id: string;
18
33
  readonly type: CommandType;
19
34
  handler(accessor: IAccessor, params?: P): Promise<R> | R;
20
- /** When this command is unregistered, this function would be called. */
35
+ /**
36
+ * When this command is unregistered, this function would be called.
37
+ *
38
+ * @deprecated
39
+ */
21
40
  onDispose?: () => void;
22
41
  }
23
42
  export interface IMultiCommand<P extends object = object, R = boolean> extends ICommand<P, R> {
@@ -78,6 +97,8 @@ export interface IOperationInfo<T extends object = object> {
78
97
  export interface IExecutionOptions {
79
98
  /** This mutation should only be executed on the local machine. */
80
99
  local?: boolean;
100
+ /** From collaboration peers. */
101
+ fromCollab?: boolean;
81
102
  [key: PropertyKey]: string | number | boolean | undefined;
82
103
  }
83
104
  export type CommandListener = (commandInfo: Readonly<ICommandInfo>, options?: IExecutionOptions) => void;
@@ -87,15 +108,21 @@ export interface ICommandService {
87
108
  executeCommand<P extends object = object, R = boolean>(id: string, params?: P, options?: IExecutionOptions): Promise<R>;
88
109
  syncExecuteCommand<P extends object = object, R = boolean>(id: string, params?: P, options?: IExecutionOptions): R;
89
110
  /**
90
- * Register a callback function that will be executed when a command is executed.
111
+ * Register a callback function that will be executed after a command is executed.
91
112
  */
92
113
  onCommandExecuted(listener: CommandListener): IDisposable;
114
+ /**
115
+ * Register a callback function that will be executed before a command is executed.
116
+ * @param listener
117
+ */
118
+ beforeCommandExecuted(listener: CommandListener): IDisposable;
93
119
  }
94
120
  export declare const ICommandService: import("@wendellhu/redi").IdentifierDecorator<ICommandService>;
95
121
  export declare class CommandService implements ICommandService {
96
122
  private readonly _injector;
97
123
  private readonly _log;
98
124
  private readonly _commandRegistry;
125
+ private readonly _beforeCommandExecutionListeners;
99
126
  private readonly _commandExecutedListeners;
100
127
  private _multiCommandDisposables;
101
128
  private _commandExecutingLevel;
@@ -103,6 +130,7 @@ export declare class CommandService implements ICommandService {
103
130
  constructor(_injector: Injector, _log: ILogService);
104
131
  registerCommand(command: ICommand): IDisposable;
105
132
  registerAsMultipleCommand(command: ICommand): IDisposable;
133
+ beforeCommandExecuted(listener: CommandListener): IDisposable;
106
134
  onCommandExecuted(listener: (commandInfo: ICommandInfo) => void): IDisposable;
107
135
  executeCommand<P extends object = object, R = boolean>(id: string, params?: P, options?: IExecutionOptions): Promise<R>;
108
136
  syncExecuteCommand<P extends object = object, R = boolean>(id: string, params?: P | undefined, options?: IExecutionOptions): R;
@@ -114,4 +142,3 @@ export declare class CommandService implements ICommandService {
114
142
  }
115
143
  export declare function sequenceExecute(tasks: ICommandInfo[], commandService: ICommandService, options?: IExecutionOptions): import("../../common/sequence").ISequenceExecuteResult;
116
144
  export declare function sequenceExecuteAsync(tasks: ICommandInfo[], commandService: ICommandService, options?: IExecutionOptions): Promise<import("../../common/sequence").ISequenceExecuteResult>;
117
- //# sourceMappingURL=command.service.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=command.service.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 { Nullable } from '../../shared/types';
2
17
  /**
3
18
  * IConfig provides universal configuration for the whole application.
@@ -15,4 +30,3 @@ export declare class ConfigService implements IConfigService {
15
30
  setConfig(id: string, value: any): void;
16
31
  deleteConfig(id: string): void;
17
32
  }
18
- //# sourceMappingURL=config.service.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
  export declare const FOCUSING_SHEET = "FOCUSING_SHEET";
2
17
  export declare const FOCUSING_DOC = "FOCUSING_DOC";
3
18
  export declare const FOCUSING_SLIDE = "FOCUSING_SLIDE";
@@ -5,4 +20,3 @@ export declare const FOCUSING_EDITOR_BUT_HIDDEN = "FOCUSING_EDITOR_BUT_HIDDEN";
5
20
  export declare const FOCUSING_EDITOR = "FOCUSING_EDITOR";
6
21
  export declare const FOCUSING_EDITOR_INPUT_FORMULA = "FOCUSING_EDITOR_INPUT_FORMULA";
7
22
  export declare const FOCUSING_FORMULA_EDITOR = "FOCUSING_FORMULA_EDITOR";
8
- //# sourceMappingURL=context.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 { Observable } from 'rxjs';
2
17
  import { Disposable } from '../../shared/lifecycle';
3
18
  export interface IContextService {
@@ -14,4 +29,3 @@ export declare class ContextService extends Disposable implements IContextServic
14
29
  getContextValue(key: string): boolean;
15
30
  setContextValue(key: string, value: boolean): void;
16
31
  }
17
- //# sourceMappingURL=context.service.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 { Disposable } from '../../shared/lifecycle';
2
17
  export interface IError {
3
18
  errorKey: string;
@@ -8,4 +23,3 @@ export declare class ErrorService extends Disposable {
8
23
  dispose(): void;
9
24
  emit(key: string): void;
10
25
  }
11
- //# sourceMappingURL=error.service.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
  export interface ISize {
2
17
  width?: number;
3
18
  height?: number;
@@ -17,4 +32,3 @@ export interface ITransformState extends IOffset, ISize, IScale {
17
32
  flipX?: boolean;
18
33
  flipY?: boolean;
19
34
  }
20
- //# sourceMappingURL=floating-object-interfaces.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 { IDisposable } from '@wendellhu/redi';
2
17
  import type { Observable } from 'rxjs';
3
18
  import type { Nullable } from '../../common/type-utils';
@@ -79,4 +94,3 @@ export declare class FloatingObjectManagerService implements IDisposable, IFloat
79
94
  private _removeByParam;
80
95
  }
81
96
  export declare const IFloatingObjectManagerService: import("@wendellhu/redi").IdentifierDecorator<IFloatingObjectManagerService>;
82
- //# sourceMappingURL=floating-object-manager.service.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 { Observable } from 'rxjs';
2
17
  import { DocumentDataModel } from '../../docs/data-model/document-data-model';
3
18
  import type { Nullable } from '../../shared';
@@ -110,4 +125,3 @@ export declare class UniverInstanceService extends Disposable implements IUniver
110
125
  getDocumentType(unitID: string): DocumentType;
111
126
  disposeDocument(unitId: string): boolean;
112
127
  }
113
- //# sourceMappingURL=instance.service.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 { Ctor, DependencyIdentifier } from '@wendellhu/redi';
2
17
  /**
3
18
  * This enum defines multiple lifecycle stages in Univer SDK.
@@ -33,4 +48,3 @@ export declare const LifecycleToModules: Map<LifecycleStages, DependencyIdentifi
33
48
  */
34
49
  export declare function OnLifecycle(lifecycleStage: LifecycleStages, identifier: DependencyIdentifier<unknown>): (_: Ctor<unknown>) => void;
35
50
  export declare function runOnLifecycle(lifecycleStage: LifecycleStages, identifier: DependencyIdentifier<unknown>): void;
36
- //# sourceMappingURL=lifecycle.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 { Injector } from '@wendellhu/redi';
2
17
  import { Observable } from 'rxjs';
3
18
  import { Disposable } from '../../shared/lifecycle';
@@ -20,4 +35,3 @@ export declare class LifecycleInitializerService extends Disposable {
20
35
  start(): void;
21
36
  initModulesOnStage(stage: LifecycleStages): void;
22
37
  }
23
- //# sourceMappingURL=lifecycle.service.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
  export declare const ILocalStorageService: import("@wendellhu/redi").IdentifierDecorator<ILocalStorageService>;
2
17
  export type LocalStorageValueTypes = string;
3
18
  export interface ILocalStorageService {
@@ -9,4 +24,3 @@ export interface ILocalStorageService {
9
24
  keys(): Promise<string[]>;
10
25
  iterate<T, U>(iteratee: (value: T, key: string, iterationNumber: number) => U): Promise<U>;
11
26
  }
12
- //# sourceMappingURL=local-storage.service.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 { Subject } from 'rxjs';
2
17
  import { Disposable } from '../../shared/lifecycle';
3
18
  import type { ILocales } from '../../shared/locale';
@@ -23,4 +38,3 @@ export declare class LocaleService extends Disposable {
23
38
  getLocales(): import("../../shared/locale").ILanguagePack | undefined;
24
39
  getCurrentLocale(): LocaleType;
25
40
  }
26
- //# sourceMappingURL=locale.service.d.ts.map
@@ -1,18 +1,36 @@
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 { Disposable } from '../../shared/lifecycle';
17
+ export declare enum LogLevel {
18
+ SILENT = 0,
19
+ ERROR = 1,
20
+ WARN = 2,
21
+ VERBOSE = 3
22
+ }
2
23
  export interface ILogService {
3
24
  log(...args: any[]): void;
4
25
  warn(...args: any[]): void;
5
26
  error(...args: any[]): void;
6
- toggleLogEnabled(enabled: boolean): void;
7
- getLogEnabled(): boolean;
27
+ setLogLevel(enabled: LogLevel): void;
8
28
  }
9
29
  export declare const ILogService: import("@wendellhu/redi").IdentifierDecorator<ILogService>;
10
30
  export declare class DesktopLogService extends Disposable implements ILogService {
11
- private _logEnabled;
31
+ private _logLevel;
12
32
  log(...args: any[]): void;
13
33
  warn(...args: any[]): void;
14
34
  error(...args: any[]): void;
15
- toggleLogEnabled(enabled: boolean): void;
16
- getLogEnabled(): boolean;
35
+ setLogLevel(logLevel: LogLevel): void;
17
36
  }
18
- //# sourceMappingURL=log.service.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 { IPermissionService, PermissionService } from './permission.service';
2
17
  export { UniverEditablePermission, UniverEditablePermissionPoint } from './permission-point';
3
18
  export { UniverPermissionService } from './univer.permission.service';
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 { PermissionPoint } from '../../shared';
2
17
  export declare const UniverEditablePermissionPoint = "univer.editable";
3
18
  export declare class UniverEditablePermission extends PermissionPoint<boolean> {
@@ -6,4 +21,3 @@ export declare class UniverEditablePermission extends PermissionPoint<boolean> {
6
21
  unitID: string;
7
22
  constructor(unitID: string);
8
23
  }
9
- //# sourceMappingURL=permission-point.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 { Observable } from 'rxjs';
2
17
  import type { PermissionPoint } from '../../shared';
3
18
  import { Disposable } from '../../shared';
@@ -28,4 +43,3 @@ export declare class PermissionService extends Disposable implements IPermission
28
43
  composePermission$(unitID: string, permissionIdList: string[]): Observable<PermissionPoint<any>[]>;
29
44
  composePermission(unitID: string, permissionIdList: string[]): PermissionPoint<any>[];
30
45
  }
31
- //# sourceMappingURL=permission.service.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 { Disposable } from '../../shared';
2
17
  import { IUniverInstanceService } from '../instance/instance.service';
3
18
  import { IPermissionService } from './permission.service';
@@ -9,4 +24,3 @@ export declare class UniverPermissionService extends Disposable {
9
24
  getEditable(unitID?: string): any;
10
25
  setEditable(unitID: string, v: boolean): void;
11
26
  }
12
- //# sourceMappingURL=univer.permission.service.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 { Disposable } from '../../shared/lifecycle';
2
17
  import type { IResourceHook, IResourceManagerService } from './type';
3
18
  export declare class ResourceManagerService extends Disposable implements IResourceManagerService {
@@ -22,4 +37,3 @@ export declare class ResourceManagerService extends Disposable implements IResou
22
37
  disposePluginResource(unitID: string, pluginName: string): void;
23
38
  dispose(): void;
24
39
  }
25
- //# sourceMappingURL=resource-manager.service.d.ts.map
@@ -1,5 +1,22 @@
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 { IDisposable } from '@wendellhu/redi';
2
17
  import type { Observable } from 'rxjs';
18
+ import type { Workbook } from '../../sheets/workbook';
19
+ import type { IWorkbookData } from '../../types/interfaces/i-workbook-data';
3
20
  export interface IResourceHook<T = any> {
4
21
  onChange: (unitID: string, resource: T) => void;
5
22
  toJson: (unitID: string) => string;
@@ -20,4 +37,7 @@ export interface IResourceManagerService {
20
37
  }>;
21
38
  }
22
39
  export declare const IResourceManagerService: import("@wendellhu/redi").IdentifierDecorator<IResourceManagerService>;
23
- //# sourceMappingURL=type.d.ts.map
40
+ export interface ISnapshotPersistenceService {
41
+ saveWorkbook: (workbook: Workbook) => IWorkbookData;
42
+ }
43
+ export declare const ISnapshotPersistenceService: import("@wendellhu/redi").IdentifierDecorator<ISnapshotPersistenceService>;
@@ -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 { Observable } from 'rxjs';
2
17
  import { Disposable } from '../../shared/lifecycle';
3
18
  export interface IStyleSheet {
@@ -11,4 +26,3 @@ export declare class ThemeService extends Disposable {
11
26
  getCurrentTheme(): IStyleSheet;
12
27
  setTheme(theme: IStyleSheet): void;
13
28
  }
14
- //# sourceMappingURL=theme.service.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 { IAccessor } from '@wendellhu/redi';
2
17
  import type { Observable } from 'rxjs';
3
18
  import { BehaviorSubject } from 'rxjs';
@@ -76,4 +91,3 @@ export declare const RedoCommand: {
76
91
  dispose(): void;
77
92
  dispatchToHandlers(): Promise<boolean>;
78
93
  };
79
- //# sourceMappingURL=undoredo.service.d.ts.map