@univerjs/core 0.1.0-alpha.1 → 0.1.0-alpha.3

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 (340) hide show
  1. package/LICENSE.txt +178 -0
  2. package/README.md +1 -1
  3. package/lib/cjs/index.js +11 -15323
  4. package/lib/es/index.js +7453 -0
  5. package/lib/types/basics/index.d.ts +15 -1
  6. package/lib/types/basics/plugin-holder.d.ts +30 -0
  7. package/lib/types/basics/registry.d.ts +12 -4
  8. package/lib/types/basics/univer-doc.d.ts +22 -12
  9. package/lib/types/basics/univer-sheet.d.ts +22 -22
  10. package/lib/types/basics/univer-slide.d.ts +21 -20
  11. package/lib/types/basics/univer.d.ts +30 -11
  12. package/lib/types/common/array.d.ts +13 -5
  13. package/lib/types/common/const.d.ts +15 -1
  14. package/lib/types/common/interceptor.d.ts +15 -1
  15. package/lib/types/common/memory-cursor.d.ts +16 -1
  16. package/lib/types/common/request-immediate-macro-task.d.ts +16 -0
  17. package/lib/types/common/sequence.d.ts +15 -1
  18. package/lib/types/common/shims.d.ts +16 -0
  19. package/lib/types/common/type-utils.d.ts +13 -2
  20. package/lib/types/docs/data-model/__tests__/apply-utils.spec.d.ts +15 -1
  21. package/lib/types/docs/data-model/apply-utils/common.d.ts +15 -1
  22. package/lib/types/docs/data-model/apply-utils/delete-apply.d.ts +15 -1
  23. package/lib/types/docs/data-model/apply-utils/insert-apply.d.ts +15 -1
  24. package/lib/types/docs/data-model/apply-utils/update-apply.d.ts +15 -1
  25. package/lib/types/docs/data-model/document-data-model.d.ts +15 -1
  26. package/lib/types/docs/data-model/index.d.ts +16 -1
  27. package/lib/types/docs/data-model/mutation-types.d.ts +15 -1
  28. package/lib/types/docs/data-model/preset-list-type.d.ts +50 -0
  29. package/lib/types/docs/data-model/types.d.ts +15 -1
  30. package/lib/types/docs/index.d.ts +15 -1
  31. package/lib/types/index.d.ts +19 -3
  32. package/lib/types/observer/index.d.ts +15 -1
  33. package/lib/types/observer/observable-hooks.d.ts +15 -1
  34. package/lib/types/observer/observable.d.ts +15 -1
  35. package/lib/types/plugin/plugin.d.ts +19 -4
  36. package/lib/types/services/auth/auth.service.d.ts +15 -1
  37. package/lib/types/services/command/command.service.d.ts +32 -5
  38. package/lib/types/services/command/command.service.spec.d.ts +15 -1
  39. package/lib/types/services/config/config.service.d.ts +15 -1
  40. package/lib/types/services/context/context.d.ts +15 -1
  41. package/lib/types/services/context/context.service.d.ts +15 -1
  42. package/lib/types/services/error/error.service.d.ts +15 -1
  43. package/lib/types/services/floating-object/floating-object-interfaces.d.ts +15 -1
  44. package/lib/types/services/floating-object/floating-object-manager.service.d.ts +15 -1
  45. package/lib/types/services/instance/instance.service.d.ts +15 -1
  46. package/lib/types/services/lifecycle/lifecycle.d.ts +15 -1
  47. package/lib/types/services/lifecycle/lifecycle.service.d.ts +15 -1
  48. package/lib/types/services/local-storage/local-storage.service.d.ts +15 -1
  49. package/lib/types/services/locale/locale.service.d.ts +15 -1
  50. package/lib/types/services/log/log.service.d.ts +32 -12
  51. package/lib/types/services/permission/index.d.ts +15 -1
  52. package/lib/types/services/permission/permission-point.d.ts +15 -1
  53. package/lib/types/services/permission/permission.service.d.ts +15 -1
  54. package/lib/types/services/permission/univer.permission.service.d.ts +15 -1
  55. package/lib/types/services/resource-manager/resource-manager.service.d.ts +15 -1
  56. package/lib/types/services/resource-manager/type.d.ts +21 -1
  57. package/lib/types/services/theme/theme.service.d.ts +15 -1
  58. package/lib/types/services/undoredo/undoredo.service.d.ts +15 -1
  59. package/lib/types/shared/__test__/object-matrix.spec.d.ts +15 -1
  60. package/lib/types/shared/__test__/ref-alias.spec.d.ts +15 -1
  61. package/lib/types/shared/array-search.d.ts +15 -1
  62. package/lib/types/shared/blob.d.ts +16 -0
  63. package/lib/types/shared/color/color-kit.d.ts +64 -0
  64. package/lib/types/shared/color/color.d.ts +32 -4
  65. package/lib/types/shared/command-enum.d.ts +15 -1
  66. package/lib/types/shared/common.d.ts +16 -4
  67. package/lib/types/shared/compare.d.ts +15 -1
  68. package/lib/types/shared/doc-tool.d.ts +15 -1
  69. package/lib/types/shared/gen-name.d.ts +15 -1
  70. package/lib/types/shared/generate.d.ts +15 -1
  71. package/lib/types/shared/hash-algorithm.d.ts +15 -1
  72. package/lib/types/shared/index.d.ts +17 -14
  73. package/lib/types/shared/lifecycle.d.ts +15 -1
  74. package/lib/types/shared/locale.d.ts +16 -5
  75. package/lib/types/shared/lru/index.d.ts +15 -1
  76. package/lib/types/shared/lru/lru-helper.d.ts +15 -1
  77. package/lib/types/shared/lru/lru-map.d.ts +15 -1
  78. package/lib/types/shared/object-matrix.d.ts +67 -30
  79. package/lib/types/shared/permission/index.d.ts +15 -1
  80. package/lib/types/shared/props-from.d.ts +15 -1
  81. package/lib/types/shared/rectangle.d.ts +16 -1
  82. package/lib/types/shared/ref-alias.d.ts +13 -9
  83. package/lib/types/shared/row-col-iter.d.ts +15 -1
  84. package/lib/types/shared/sequence.d.ts +13 -4
  85. package/lib/types/shared/sort-rules.d.ts +17 -3
  86. package/lib/types/shared/tools.d.ts +15 -6
  87. package/lib/types/shared/types.d.ts +13 -2
  88. package/lib/types/sheets/__tests__/create-core-test-bed.d.ts +15 -1
  89. package/lib/types/sheets/__tests__/styles.spec.d.ts +15 -1
  90. package/lib/types/sheets/column-manager.d.ts +22 -16
  91. package/lib/types/sheets/range.d.ts +19 -19
  92. package/lib/types/sheets/reference.d.ts +15 -1
  93. package/lib/types/sheets/row-manager.d.ts +22 -8
  94. package/lib/types/sheets/styles.d.ts +21 -9
  95. package/lib/types/sheets/view-model.d.ts +19 -5
  96. package/lib/types/sheets/workbook.d.ts +22 -4
  97. package/lib/types/sheets/worksheet.d.ts +23 -4
  98. package/lib/types/slides/domain/index.d.ts +15 -1
  99. package/lib/types/slides/domain/slide-model.d.ts +15 -1
  100. package/lib/types/types/const/action-names.d.ts +15 -1
  101. package/lib/types/types/const/const.d.ts +15 -1
  102. package/lib/types/types/const/doc-action-names.d.ts +15 -1
  103. package/lib/types/types/const/extension-names.d.ts +13 -2
  104. package/lib/types/types/const/index.d.ts +15 -1
  105. package/lib/types/types/const/theme-color-map.d.ts +15 -1
  106. package/lib/types/types/enum/auto-fill-series.d.ts +11 -5
  107. package/lib/types/types/enum/border-style-types.d.ts +13 -2
  108. package/lib/types/types/enum/color-type.d.ts +13 -2
  109. package/lib/types/types/enum/common-hide-types.d.ts +13 -2
  110. package/lib/types/types/enum/condition-type.d.ts +13 -2
  111. package/lib/types/types/enum/copy-paste-type.d.ts +12 -4
  112. package/lib/types/types/enum/developer-metadata-visibility.d.ts +13 -2
  113. package/lib/types/types/enum/dimension.d.ts +12 -3
  114. package/lib/types/types/enum/direction.d.ts +15 -1
  115. package/lib/types/types/enum/format-type.d.ts +13 -2
  116. package/lib/types/types/enum/group-control-toggle-position.d.ts +13 -2
  117. package/lib/types/types/enum/index.d.ts +15 -1
  118. package/lib/types/types/enum/interpolation-point-type.d.ts +13 -2
  119. package/lib/types/types/enum/locale-type.d.ts +12 -3
  120. package/lib/types/types/enum/place-holder-type.d.ts +15 -1
  121. package/lib/types/types/enum/protection-type.d.ts +13 -2
  122. package/lib/types/types/enum/relative-date.d.ts +13 -2
  123. package/lib/types/types/enum/shape-type.d.ts +15 -1
  124. package/lib/types/types/enum/sheet-types.d.ts +13 -2
  125. package/lib/types/types/enum/text-style.d.ts +16 -5
  126. package/lib/types/types/enum/theme-color-type.d.ts +10 -19
  127. package/lib/types/types/interfaces/i-cell-data.d.ts +25 -9
  128. package/lib/types/types/interfaces/i-column-data.d.ts +15 -1
  129. package/lib/types/types/interfaces/i-document-data.d.ts +18 -3
  130. package/lib/types/types/interfaces/i-extra-model-data.d.ts +15 -1
  131. package/lib/types/types/interfaces/i-freeze.d.ts +13 -3
  132. package/lib/types/types/interfaces/i-image-properties.d.ts +13 -2
  133. package/lib/types/types/interfaces/i-placeholder.d.ts +15 -1
  134. package/lib/types/types/interfaces/i-range.d.ts +28 -12
  135. package/lib/types/types/interfaces/i-row-data.d.ts +15 -1
  136. package/lib/types/types/interfaces/i-selection-data.d.ts +15 -1
  137. package/lib/types/types/interfaces/i-service-data.d.ts +13 -2
  138. package/lib/types/types/interfaces/i-shape-properties.d.ts +15 -1
  139. package/lib/types/types/interfaces/i-slide-data.d.ts +15 -1
  140. package/lib/types/types/interfaces/i-style-data.d.ts +15 -1
  141. package/lib/types/types/interfaces/i-univer-data.d.ts +17 -1
  142. package/lib/types/types/interfaces/i-workbook-data.d.ts +15 -1
  143. package/lib/types/types/interfaces/i-worksheet-data.d.ts +23 -6
  144. package/lib/types/types/interfaces/i-worksheet-order-data.d.ts +13 -2
  145. package/lib/types/types/interfaces/index.d.ts +15 -1
  146. package/lib/umd/index.js +11 -0
  147. package/package.json +20 -15
  148. package/LICENSE +0 -21
  149. package/lib/esm/index.js +0 -14601
  150. package/lib/types/basics/index.d.ts.map +0 -1
  151. package/lib/types/basics/registry.d.ts.map +0 -1
  152. package/lib/types/basics/univer-doc.d.ts.map +0 -1
  153. package/lib/types/basics/univer-sheet.d.ts.map +0 -1
  154. package/lib/types/basics/univer-slide.d.ts.map +0 -1
  155. package/lib/types/basics/univer.d.ts.map +0 -1
  156. package/lib/types/common/array.d.ts.map +0 -1
  157. package/lib/types/common/color/color-builder.d.ts +0 -1
  158. package/lib/types/common/color/color-builder.d.ts.map +0 -1
  159. package/lib/types/common/const.d.ts.map +0 -1
  160. package/lib/types/common/interceptor.d.ts.map +0 -1
  161. package/lib/types/common/memory-cursor.d.ts.map +0 -1
  162. package/lib/types/common/sequence.d.ts.map +0 -1
  163. package/lib/types/common/type-utils.d.ts.map +0 -1
  164. package/lib/types/docs/data-model/__tests__/apply-utils.spec.d.ts.map +0 -1
  165. package/lib/types/docs/data-model/apply-utils/common.d.ts.map +0 -1
  166. package/lib/types/docs/data-model/apply-utils/delete-apply.d.ts.map +0 -1
  167. package/lib/types/docs/data-model/apply-utils/insert-apply.d.ts.map +0 -1
  168. package/lib/types/docs/data-model/apply-utils/update-apply.d.ts.map +0 -1
  169. package/lib/types/docs/data-model/document-data-model.d.ts.map +0 -1
  170. package/lib/types/docs/data-model/index.d.ts.map +0 -1
  171. package/lib/types/docs/data-model/mutation-types.d.ts.map +0 -1
  172. package/lib/types/docs/data-model/types.d.ts.map +0 -1
  173. package/lib/types/docs/index.d.ts.map +0 -1
  174. package/lib/types/index.d.ts.map +0 -1
  175. package/lib/types/observer/index.d.ts.map +0 -1
  176. package/lib/types/observer/observable-hooks.d.ts.map +0 -1
  177. package/lib/types/observer/observable.d.ts.map +0 -1
  178. package/lib/types/plugin/plugin.d.ts.map +0 -1
  179. package/lib/types/services/auth/auth.service.d.ts.map +0 -1
  180. package/lib/types/services/command/command.service.d.ts.map +0 -1
  181. package/lib/types/services/command/command.service.spec.d.ts.map +0 -1
  182. package/lib/types/services/config/config.service.d.ts.map +0 -1
  183. package/lib/types/services/context/context.d.ts.map +0 -1
  184. package/lib/types/services/context/context.service.d.ts.map +0 -1
  185. package/lib/types/services/error/error.service.d.ts.map +0 -1
  186. package/lib/types/services/floating-object/floating-object-interfaces.d.ts.map +0 -1
  187. package/lib/types/services/floating-object/floating-object-manager.service.d.ts.map +0 -1
  188. package/lib/types/services/instance/instance.service.d.ts.map +0 -1
  189. package/lib/types/services/lifecycle/lifecycle.d.ts.map +0 -1
  190. package/lib/types/services/lifecycle/lifecycle.service.d.ts.map +0 -1
  191. package/lib/types/services/local-storage/local-storage.service.d.ts.map +0 -1
  192. package/lib/types/services/locale/locale.service.d.ts.map +0 -1
  193. package/lib/types/services/log/log.service.d.ts.map +0 -1
  194. package/lib/types/services/permission/index.d.ts.map +0 -1
  195. package/lib/types/services/permission/permission-point.d.ts.map +0 -1
  196. package/lib/types/services/permission/permission.service.d.ts.map +0 -1
  197. package/lib/types/services/permission/univer.permission.service.d.ts.map +0 -1
  198. package/lib/types/services/resource-manager/resource-manager.service.d.ts.map +0 -1
  199. package/lib/types/services/resource-manager/type.d.ts.map +0 -1
  200. package/lib/types/services/theme/theme.service.d.ts.map +0 -1
  201. package/lib/types/services/undoredo/undoredo.service.d.ts.map +0 -1
  202. package/lib/types/shared/__test__/object-matrix.spec.d.ts.map +0 -1
  203. package/lib/types/shared/__test__/ref-alias.spec.d.ts.map +0 -1
  204. package/lib/types/shared/array-search.d.ts.map +0 -1
  205. package/lib/types/shared/color/color-builder.d.ts +0 -21
  206. package/lib/types/shared/color/color-builder.d.ts.map +0 -1
  207. package/lib/types/shared/color/color.d.ts.map +0 -1
  208. package/lib/types/shared/color-builder.d.ts +0 -1
  209. package/lib/types/shared/color-builder.d.ts.map +0 -1
  210. package/lib/types/shared/command-enum.d.ts.map +0 -1
  211. package/lib/types/shared/common.d.ts.map +0 -1
  212. package/lib/types/shared/compare.d.ts.map +0 -1
  213. package/lib/types/shared/date-time.d.ts +0 -6
  214. package/lib/types/shared/date-time.d.ts.map +0 -1
  215. package/lib/types/shared/doc-tool.d.ts.map +0 -1
  216. package/lib/types/shared/drop-cell.d.ts +0 -1
  217. package/lib/types/shared/drop-cell.d.ts.map +0 -1
  218. package/lib/types/shared/excel-date-time.d.ts +0 -6
  219. package/lib/types/shared/excel-date-time.d.ts.map +0 -1
  220. package/lib/types/shared/gen-name.d.ts.map +0 -1
  221. package/lib/types/shared/generate.d.ts.map +0 -1
  222. package/lib/types/shared/group-model.d.ts +0 -4
  223. package/lib/types/shared/group-model.d.ts.map +0 -1
  224. package/lib/types/shared/hash-algorithm.d.ts.map +0 -1
  225. package/lib/types/shared/index.d.ts.map +0 -1
  226. package/lib/types/shared/io-http.d.ts +0 -84
  227. package/lib/types/shared/io-http.d.ts.map +0 -1
  228. package/lib/types/shared/io-socket.d.ts +0 -48
  229. package/lib/types/shared/io-socket.d.ts.map +0 -1
  230. package/lib/types/shared/lifecycle.d.ts.map +0 -1
  231. package/lib/types/shared/locale.d.ts.map +0 -1
  232. package/lib/types/shared/logger.d.ts +0 -12
  233. package/lib/types/shared/logger.d.ts.map +0 -1
  234. package/lib/types/shared/lru/index.d.ts.map +0 -1
  235. package/lib/types/shared/lru/lru-helper.d.ts.map +0 -1
  236. package/lib/types/shared/lru/lru-map.d.ts.map +0 -1
  237. package/lib/types/shared/migrate/border.d.ts +0 -3
  238. package/lib/types/shared/migrate/border.d.ts.map +0 -1
  239. package/lib/types/shared/migrate/index.d.ts +0 -2
  240. package/lib/types/shared/migrate/index.d.ts.map +0 -1
  241. package/lib/types/shared/migrate/migrate.d.ts +0 -3
  242. package/lib/types/shared/migrate/migrate.d.ts.map +0 -1
  243. package/lib/types/shared/object-array.d.ts +0 -96
  244. package/lib/types/shared/object-array.d.ts.map +0 -1
  245. package/lib/types/shared/object-matrix.d.ts.map +0 -1
  246. package/lib/types/shared/permission/index.d.ts.map +0 -1
  247. package/lib/types/shared/props-from.d.ts.map +0 -1
  248. package/lib/types/shared/random.d.ts +0 -7
  249. package/lib/types/shared/random.d.ts.map +0 -1
  250. package/lib/types/shared/rect-tree/border-tree.d.ts +0 -30
  251. package/lib/types/shared/rect-tree/border-tree.d.ts.map +0 -1
  252. package/lib/types/shared/rect-tree/es-rect-tree.d.ts +0 -9
  253. package/lib/types/shared/rect-tree/es-rect-tree.d.ts.map +0 -1
  254. package/lib/types/shared/rect-tree/merge-tree.d.ts +0 -1
  255. package/lib/types/shared/rect-tree/merge-tree.d.ts.map +0 -1
  256. package/lib/types/shared/rect-tree/quick-select.d.ts +0 -3
  257. package/lib/types/shared/rect-tree/quick-select.d.ts.map +0 -1
  258. package/lib/types/shared/rect-tree/rect-tree.d.ts +0 -60
  259. package/lib/types/shared/rect-tree/rect-tree.d.ts.map +0 -1
  260. package/lib/types/shared/rect-tree/styles-tree.d.ts +0 -1
  261. package/lib/types/shared/rect-tree/styles-tree.d.ts.map +0 -1
  262. package/lib/types/shared/rectangle.d.ts.map +0 -1
  263. package/lib/types/shared/ref-alias.d.ts.map +0 -1
  264. package/lib/types/shared/row-col-iter.d.ts.map +0 -1
  265. package/lib/types/shared/sequence.d.ts.map +0 -1
  266. package/lib/types/shared/serialize/index.d.ts +0 -5
  267. package/lib/types/shared/serialize/index.d.ts.map +0 -1
  268. package/lib/types/shared/serialize/sequence.d.ts +0 -4
  269. package/lib/types/shared/serialize/sequence.d.ts.map +0 -1
  270. package/lib/types/shared/serialize/serialize-manager.d.ts +0 -17
  271. package/lib/types/shared/serialize/serialize-manager.d.ts.map +0 -1
  272. package/lib/types/shared/serialize/serialize.d.ts +0 -8
  273. package/lib/types/shared/serialize/serialize.d.ts.map +0 -1
  274. package/lib/types/shared/serialize/serializer.d.ts +0 -14
  275. package/lib/types/shared/serialize/serializer.d.ts.map +0 -1
  276. package/lib/types/shared/sort-rules.d.ts.map +0 -1
  277. package/lib/types/shared/tools.d.ts.map +0 -1
  278. package/lib/types/shared/tuples.d.ts +0 -12
  279. package/lib/types/shared/tuples.d.ts.map +0 -1
  280. package/lib/types/shared/type-store.d.ts +0 -10
  281. package/lib/types/shared/type-store.d.ts.map +0 -1
  282. package/lib/types/shared/types.d.ts.map +0 -1
  283. package/lib/types/sheets/__tests__/create-core-test-bed.d.ts.map +0 -1
  284. package/lib/types/sheets/__tests__/styles.spec.d.ts.map +0 -1
  285. package/lib/types/sheets/column-manager.d.ts.map +0 -1
  286. package/lib/types/sheets/range.d.ts.map +0 -1
  287. package/lib/types/sheets/reference.d.ts.map +0 -1
  288. package/lib/types/sheets/row-manager.d.ts.map +0 -1
  289. package/lib/types/sheets/styles.d.ts.map +0 -1
  290. package/lib/types/sheets/view-model.d.ts.map +0 -1
  291. package/lib/types/sheets/workbook.d.ts.map +0 -1
  292. package/lib/types/sheets/worksheet.d.ts.map +0 -1
  293. package/lib/types/slides/domain/index.d.ts.map +0 -1
  294. package/lib/types/slides/domain/slide-model.d.ts.map +0 -1
  295. package/lib/types/types/const/action-names.d.ts.map +0 -1
  296. package/lib/types/types/const/const.d.ts.map +0 -1
  297. package/lib/types/types/const/doc-action-names.d.ts.map +0 -1
  298. package/lib/types/types/const/extension-names.d.ts.map +0 -1
  299. package/lib/types/types/const/index.d.ts.map +0 -1
  300. package/lib/types/types/const/theme-color-map.d.ts.map +0 -1
  301. package/lib/types/types/enum/auto-fill-series.d.ts.map +0 -1
  302. package/lib/types/types/enum/border-style-types.d.ts.map +0 -1
  303. package/lib/types/types/enum/color-type.d.ts.map +0 -1
  304. package/lib/types/types/enum/common-hide-types.d.ts.map +0 -1
  305. package/lib/types/types/enum/condition-type.d.ts.map +0 -1
  306. package/lib/types/types/enum/copy-paste-type.d.ts.map +0 -1
  307. package/lib/types/types/enum/developer-metadata-visibility.d.ts.map +0 -1
  308. package/lib/types/types/enum/dimension.d.ts.map +0 -1
  309. package/lib/types/types/enum/direction.d.ts.map +0 -1
  310. package/lib/types/types/enum/format-type.d.ts.map +0 -1
  311. package/lib/types/types/enum/group-control-toggle-position.d.ts.map +0 -1
  312. package/lib/types/types/enum/index.d.ts.map +0 -1
  313. package/lib/types/types/enum/interpolation-point-type.d.ts.map +0 -1
  314. package/lib/types/types/enum/locale-type.d.ts.map +0 -1
  315. package/lib/types/types/enum/place-holder-type.d.ts.map +0 -1
  316. package/lib/types/types/enum/protection-type.d.ts.map +0 -1
  317. package/lib/types/types/enum/relative-date.d.ts.map +0 -1
  318. package/lib/types/types/enum/shape-type.d.ts.map +0 -1
  319. package/lib/types/types/enum/sheet-types.d.ts.map +0 -1
  320. package/lib/types/types/enum/text-style.d.ts.map +0 -1
  321. package/lib/types/types/enum/theme-color-type.d.ts.map +0 -1
  322. package/lib/types/types/interfaces/i-cell-data.d.ts.map +0 -1
  323. package/lib/types/types/interfaces/i-column-data.d.ts.map +0 -1
  324. package/lib/types/types/interfaces/i-document-data.d.ts.map +0 -1
  325. package/lib/types/types/interfaces/i-extra-model-data.d.ts.map +0 -1
  326. package/lib/types/types/interfaces/i-freeze.d.ts.map +0 -1
  327. package/lib/types/types/interfaces/i-image-properties.d.ts.map +0 -1
  328. package/lib/types/types/interfaces/i-placeholder.d.ts.map +0 -1
  329. package/lib/types/types/interfaces/i-range.d.ts.map +0 -1
  330. package/lib/types/types/interfaces/i-row-data.d.ts.map +0 -1
  331. package/lib/types/types/interfaces/i-selection-data.d.ts.map +0 -1
  332. package/lib/types/types/interfaces/i-service-data.d.ts.map +0 -1
  333. package/lib/types/types/interfaces/i-shape-properties.d.ts.map +0 -1
  334. package/lib/types/types/interfaces/i-slide-data.d.ts.map +0 -1
  335. package/lib/types/types/interfaces/i-style-data.d.ts.map +0 -1
  336. package/lib/types/types/interfaces/i-univer-data.d.ts.map +0 -1
  337. package/lib/types/types/interfaces/i-workbook-data.d.ts.map +0 -1
  338. package/lib/types/types/interfaces/i-worksheet-data.d.ts.map +0 -1
  339. package/lib/types/types/interfaces/i-worksheet-order-data.d.ts.map +0 -1
  340. package/lib/types/types/interfaces/index.d.ts.map +0 -1
@@ -1,5 +1,17 @@
1
1
  /**
2
- * The type of condition.
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.
3
15
  */
4
16
  export declare enum ConditionType {
5
17
  CONDITION_TYPE_UNSPECIFIED = 0,// The default value, do not use.
@@ -35,4 +47,3 @@ export declare enum ConditionType {
35
47
  TEXT_NOT_EQ = 30,// The cell's value must be exactly not the condition's value. Supported by filters on data source objects. Requires at least one ConditionValue .
36
48
  DATE_NOT_EQ = 31
37
49
  }
38
- //# sourceMappingURL=condition-type.d.ts.map
@@ -1,8 +1,17 @@
1
1
  /**
2
- * An enumeration of possible special paste types.
2
+ * Copyright 2023-present DreamNum Inc.
3
3
  *
4
- * @remarks
5
- * Reference: https://developers.google.com/apps-script/reference/spreadsheet/copy-paste-type
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.
6
15
  */
7
16
  export declare enum CopyPasteType {
8
17
  PASTE_NORMAL = 0,// Paste values, formulas, formats and merges.
@@ -14,4 +23,3 @@ export declare enum CopyPasteType {
14
23
  PASTE_CONDITIONAL_FORMATTING = 6,// Paste the color rules only.
15
24
  PASTE_COLUMN_WIDTHS = 7
16
25
  }
17
- //# sourceMappingURL=copy-paste-type.d.ts.map
@@ -1,8 +1,19 @@
1
1
  /**
2
- * An enumeration of the types of developer metadata visibility.
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.
3
15
  */
4
16
  export declare enum DeveloperMetadataVisibility {
5
17
  DOCUMENT = 0,// Document-visible metadata is accessible from any developer project with access to the document.
6
18
  PROJECT = 1
7
19
  }
8
- //# sourceMappingURL=developer-metadata-visibility.d.ts.map
@@ -1,7 +1,17 @@
1
1
  /**
2
- * COLUMNS 0
2
+ * Copyright 2023-present DreamNum Inc.
3
3
  *
4
- * ROWS 1
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.
5
15
  */
6
16
  export declare enum Dimension {
7
17
  /**
@@ -13,4 +23,3 @@ export declare enum Dimension {
13
23
  */
14
24
  ROWS = 1
15
25
  }
16
- //# sourceMappingURL=dimension.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 enum Direction {
2
17
  UP = 0,
3
18
  RIGHT = 1,
@@ -5,4 +20,3 @@ export declare enum Direction {
5
20
  LEFT = 3
6
21
  }
7
22
  export declare function getReverseDirection(direction: Direction): Direction;
8
- //# sourceMappingURL=direction.d.ts.map
@@ -1,5 +1,17 @@
1
1
  /**
2
- * The number format of the cell.
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.
3
15
  */
4
16
  export declare enum FormatType {
5
17
  NUMBER_FORMAT_TYPE_UNSPECIFIED = 0,
@@ -12,4 +24,3 @@ export declare enum FormatType {
12
24
  DATE_TIME = 7,
13
25
  SCIENTIFIC = 8
14
26
  }
15
- //# sourceMappingURL=format-type.d.ts.map
@@ -1,8 +1,19 @@
1
1
  /**
2
- * An enumeration representing the possible positions that a group control toggle can have.
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.
3
15
  */
4
16
  export declare enum GroupControlTogglePosition {
5
17
  BEFORE = 0,
6
18
  AFTER = 1
7
19
  }
8
- //# sourceMappingURL=group-control-toggle-position.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 * from './auto-fill-series';
2
17
  export * from './border-style-types';
3
18
  export * from './color-type';
@@ -16,4 +31,3 @@ export * from './shape-type';
16
31
  export * from './sheet-types';
17
32
  export * from './text-style';
18
33
  export * from './theme-color-type';
19
- //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,17 @@
1
1
  /**
2
- * An enumeration representing the interpolation options for calculating a value to be used in a GradientCondition in a ConditionalFormatRule.
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.
3
15
  */
4
16
  export declare enum InterpolationPointType {
5
17
  INTERPOLATION_POINT_TYPE_UNSPECIFIED = 0,// The default value, do not use.
@@ -9,4 +21,3 @@ export declare enum InterpolationPointType {
9
21
  PERCENT = 4,// The interpolation point is the given percentage over all the cells in the range of the conditional format. This is equivalent to NUMBER if the value was: =(MAX(FLATTEN(range)) * (value / 100)) + (MIN(FLATTEN(range)) * (1 - (value / 100))) (where errors in the range are ignored when flattening).
10
22
  PERCENTILE = 5
11
23
  }
12
- //# sourceMappingURL=interpolation-point-type.d.ts.map
@@ -1,11 +1,20 @@
1
1
  /**
2
- * Internationalized enumeration information.
2
+ * Copyright 2023-present DreamNum Inc.
3
3
  *
4
- * Refer to {@link https://github.com/ladjs/i18n-locales | i18n-locales}
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.
5
15
  */
6
16
  export declare enum LocaleType {
7
17
  EN_US = "enUS",
8
18
  ZH_CN = "zhCN"
9
19
  }
10
20
  export type LocaleTypes = `${LocaleType}`;
11
- //# sourceMappingURL=locale-type.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 enum PlaceholderType {
2
17
  NONE = 0,//Default value, signifies it is not a placeholder.
3
18
  BODY = 1,//Body text.
@@ -17,4 +32,3 @@ export declare enum PlaceholderType {
17
32
  TITLE = 15,//Slide title.
18
33
  SLIDE_IMAGE = 16
19
34
  }
20
- //# sourceMappingURL=place-holder-type.d.ts.map
@@ -1,8 +1,19 @@
1
1
  /**
2
- * Type of sheet protection
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.
3
15
  */
4
16
  export declare enum ProtectionType {
5
17
  RANGE = 0,
6
18
  SHEET = 1
7
19
  }
8
- //# sourceMappingURL=protection-type.d.ts.map
@@ -1,5 +1,17 @@
1
1
  /**
2
- * An enumeration representing the relative date options for calculating a value to be used in date-based BooleanCriteria.
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.
3
15
  */
4
16
  export declare enum RelativeDate {
5
17
  RELATIVE_DATE_UNSPECIFIED = 0,// Default value, do not use.
@@ -10,4 +22,3 @@ export declare enum RelativeDate {
10
22
  TODAY = 5,
11
23
  TOMORROW = 6
12
24
  }
13
- //# sourceMappingURL=relative-date.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 enum ShapeType {
2
17
  TYPE_UNSPECIFIED = 0,//The shape type that is not predefined.
3
18
  TEXT_BOX = 1,//Text box shape.
@@ -143,4 +158,3 @@ export declare enum ShapeType {
143
158
  CLOUD_CALLOUT = 141,//Callout cloud shape. Corresponds to ECMA-376 ST_ShapeType 'cloudCallout'
144
159
  CUSTOM = 142
145
160
  }
146
- //# sourceMappingURL=shape-type.d.ts.map
@@ -1,9 +1,20 @@
1
1
  /**
2
- * Types of sheet
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.
3
15
  */
4
16
  export declare enum SheetTypes {
5
17
  GRID = 0,
6
18
  KANBAN = 1,
7
19
  GANTT = 2
8
20
  }
9
- //# sourceMappingURL=sheet-types.d.ts.map
@@ -1,5 +1,17 @@
1
1
  /**
2
- * Direction of text
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.
3
15
  */
4
16
  export declare enum TextDirection {
5
17
  UNSPECIFIED = 0,
@@ -96,9 +108,9 @@ export declare enum FontWeight {
96
108
  BOLD = 1
97
109
  }
98
110
  export declare enum BaselineOffset {
99
- NORMAL = 0,
100
- SUBSCRIPT = 1,
101
- SUPERSCRIPT = 2
111
+ NORMAL = 1,
112
+ SUBSCRIPT = 2,
113
+ SUPERSCRIPT = 3
102
114
  }
103
115
  /**
104
116
  * General Boolean Enum
@@ -116,4 +128,3 @@ export declare enum CellValueType {
116
128
  BOOLEAN = 3,
117
129
  FORCE_STRING = 4
118
130
  }
119
- //# sourceMappingURL=text-style.d.ts.map
@@ -1,25 +1,17 @@
1
1
  /**
2
- * Theme color types.
2
+ * Copyright 2023-present DreamNum Inc.
3
3
  *
4
- * @remarks
5
- * SpreadsheetProperties contain a SpreadsheetTheme that defines a mapping of these theme color types to concrete colors.
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
6
7
  *
7
- * Reference: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#ThemeColor
8
+ * http://www.apache.org/licenses/LICENSE-2.0
8
9
  *
9
- * 17.18.97 ST_ThemeColor (Theme Color)
10
- *
11
- * <xsd:enumeration value="dark1"/>
12
- 2703 <xsd:enumeration value="light1"/>
13
- 2704 <xsd:enumeration value="dark2"/>
14
- 2705 <xsd:enumeration value="light2"/>
15
- 2706 <xsd:enumeration value="accent1"/>
16
- 2707 <xsd:enumeration value="accent2"/>
17
- 2708 <xsd:enumeration value="accent3"/>
18
- 2709 <xsd:enumeration value="accent4"/>
19
- 2710 <xsd:enumeration value="accent5"/>
20
- 2711 <xsd:enumeration value="accent6"/>
21
- 2712 <xsd:enumeration value="hyperlink"/>
22
- 2713 <xsd:enumeration value="followedHyperlink"/>
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.
23
15
  */
24
16
  export declare enum ThemeColorType {
25
17
  /**
@@ -69,4 +61,3 @@ export declare enum ThemeColors {
69
61
  SLIPSTREAM = "Slipstream",
70
62
  Aspect = "Aspect"
71
63
  }
72
- //# sourceMappingURL=theme-color-type.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
  import { CellValueType } from '../enum/text-style';
3
18
  import type { IDocumentData } from './i-document-data';
@@ -7,27 +22,28 @@ import type { IStyleData } from './i-style-data';
7
22
  */
8
23
  export type ICellV = string | number | boolean;
9
24
  /**
10
- * 判断单元格类型,
11
- * - 先判断 p 是否存在,存在即为 富文本
12
- * - 再判断 f 是否存在,存在即为 公式
13
- * - 再判断 s 对应 style 的 fm 格式判断单元格类型
25
+ * Cell data
14
26
  */
15
27
  export interface ICellData {
28
+ /**
29
+ * The unique key, a random string, is used for the plug-in to associate the cell. When the cell information changes,
30
+ * the plug-in does not need to change the data, reducing the pressure on the back-end interface id?: string.
31
+ */
16
32
  p?: Nullable<IDocumentData>;
33
+ /** style id */
17
34
  s?: Nullable<IStyleData | string>;
18
35
  /**
19
36
  * Origin value
20
37
  */
21
38
  v?: Nullable<ICellV>;
22
- /**
23
- * @deprecated
24
- */
25
- m?: Nullable<string>;
26
39
  t?: Nullable<CellValueType>;
27
40
  f?: Nullable<string>;
28
41
  si?: Nullable<string>;
29
42
  }
43
+ export interface ICellDataForSheetInterceptor extends ICellData {
44
+ interceptorStyle?: Nullable<IStyleData>;
45
+ isInArrayFormulaRange?: Nullable<boolean>;
46
+ }
30
47
  export declare function isICellData(value: any): value is ICellData;
31
48
  export declare function getCellValueType(cell: ICellData): CellValueType | null | undefined;
32
49
  export declare function isNullCell(cell: Nullable<ICellData>): boolean;
33
- //# sourceMappingURL=i-cell-data.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 { BooleanNumber } from '../enum';
2
17
  /**
3
18
  * Properties of column data
@@ -12,4 +27,3 @@ export interface IColumnData {
12
27
  */
13
28
  hd: BooleanNumber;
14
29
  }
15
- //# sourceMappingURL=i-column-data.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 { ISize } from '../../services/floating-object/floating-object-interfaces';
2
17
  import type { BooleanNumber, HorizontalAlign, LocaleType, TextDirection, VerticalAlign, WrapStrategy } from '../enum';
3
18
  import type { IExtraModelData } from './i-extra-model-data';
@@ -41,7 +56,7 @@ export interface IFooters {
41
56
  * Set of lists
42
57
  */
43
58
  export interface ILists {
44
- [listId: string]: IListData;
59
+ [listType: string]: IListData;
45
60
  }
46
61
  /**
47
62
  * Set of Drawings
@@ -121,7 +136,7 @@ export interface IHeaderData {
121
136
  * The properties of a list which describe the look and feel of bullets belonging to paragraphs associated with a list.
122
137
  */
123
138
  export interface IListData {
124
- listId: string;
139
+ listType: string;
125
140
  nestingLevel: INestingLevel[];
126
141
  }
127
142
  /**
@@ -345,6 +360,7 @@ export declare enum ParagraphElementType {
345
360
  * Properties of list
346
361
  */
347
362
  export interface IBullet {
363
+ listType: string;
348
364
  listId: string;
349
365
  nestingLevel: number;
350
366
  textStyle: ITextStyle;
@@ -663,4 +679,3 @@ export declare enum PageOrientType {
663
679
  PORTRAIT = 0,
664
680
  LANDSCAPE = 1
665
681
  }
666
- //# sourceMappingURL=i-document-data.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 IExtraModelData {
2
17
  /**
3
18
  * should start renderLoop Immediately
@@ -16,4 +31,3 @@ export interface IExtraModelData {
16
31
  */
17
32
  parentRenderUnitId?: string;
18
33
  }
19
- //# sourceMappingURL=i-extra-model-data.d.ts.map
@@ -1,6 +1,17 @@
1
1
  /**
2
- * Ecma Office Open XML Part 1 - Fundamentals And Markup Language Reference
3
- * 18.3.1.66 pane (View Pane)
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.
4
15
  */
5
16
  export interface IFreeze {
6
17
  xSplit: number;
@@ -8,4 +19,3 @@ export interface IFreeze {
8
19
  startRow: number;
9
20
  startColumn: number;
10
21
  }
11
- //# sourceMappingURL=i-freeze.d.ts.map
@@ -1,5 +1,17 @@
1
1
  /**
2
- * Properties of Image
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.
3
15
  */
4
16
  export interface IImageProperties {
5
17
  contentUrl: string;
@@ -20,4 +32,3 @@ export interface ICropProperties {
20
32
  offsetBottom: number;
21
33
  angle: number;
22
34
  }
23
- //# sourceMappingURL=i-image-properties.d.ts.map