@univerjs/core 0.1.4 → 0.1.6

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 (99) hide show
  1. package/README.md +22 -0
  2. package/lib/cjs/index.js +8 -8
  3. package/lib/es/index.js +3059 -2952
  4. package/lib/types/basics/plugin-holder.d.ts +5 -19
  5. package/lib/types/basics/univer-doc.d.ts +5 -19
  6. package/lib/types/basics/univer-sheet.d.ts +5 -20
  7. package/lib/types/basics/univer-slide.d.ts +5 -19
  8. package/lib/types/basics/univer.d.ts +9 -23
  9. package/lib/types/common/equal.d.ts +20 -0
  10. package/lib/types/common/interceptor.d.ts +2 -16
  11. package/lib/types/docs/data-model/action-types.d.ts +3 -17
  12. package/lib/types/docs/data-model/apply-utils/common.d.ts +2 -16
  13. package/lib/types/docs/data-model/apply-utils/delete-apply.d.ts +2 -16
  14. package/lib/types/docs/data-model/apply-utils/insert-apply.d.ts +2 -16
  15. package/lib/types/docs/data-model/apply-utils/update-apply.d.ts +2 -16
  16. package/lib/types/docs/data-model/document-data-model.d.ts +8 -22
  17. package/lib/types/docs/data-model/empty-snapshot.d.ts +2 -16
  18. package/lib/types/docs/data-model/preset-list-type.d.ts +1 -15
  19. package/lib/types/docs/data-model/replacement.d.ts +2 -16
  20. package/lib/types/docs/data-model/text-x/action-iterator.d.ts +2 -17
  21. package/lib/types/docs/data-model/text-x/text-x.d.ts +4 -18
  22. package/lib/types/docs/data-model/text-x/utils.d.ts +3 -17
  23. package/lib/types/index.d.ts +11 -1
  24. package/lib/types/observer/observable-hooks.d.ts +3 -18
  25. package/lib/types/observer/observable.d.ts +2 -16
  26. package/lib/types/plugin/plugin.d.ts +2 -16
  27. package/lib/types/services/command/command.service.d.ts +6 -21
  28. package/lib/types/services/config/config.service.d.ts +3 -17
  29. package/lib/types/services/context/context.service.d.ts +3 -17
  30. package/lib/types/services/error/error.service.d.ts +2 -16
  31. package/lib/types/services/floating-object/floating-object-manager.service.d.ts +6 -20
  32. package/lib/types/services/instance/instance.service.d.ts +9 -23
  33. package/lib/types/services/lifecycle/lifecycle.d.ts +33 -17
  34. package/lib/types/services/lifecycle/lifecycle.service.d.ts +5 -19
  35. package/lib/types/services/local-storage/local-storage.service.d.ts +1 -1
  36. package/lib/types/services/locale/locale.service.d.ts +5 -18
  37. package/lib/types/services/log/log.service.d.ts +2 -16
  38. package/lib/types/services/permission/permission-point.d.ts +1 -15
  39. package/lib/types/services/permission/permission.service.d.ts +6 -21
  40. package/lib/types/services/permission/univer.permission.service.d.ts +3 -17
  41. package/lib/types/services/resource-manager/resource-manager.service.d.ts +4 -18
  42. package/lib/types/services/resource-manager/type.d.ts +7 -21
  43. package/lib/types/services/snapshot/__tests__/snapshot-mock.d.ts +5 -19
  44. package/lib/types/services/snapshot/snapshot-server.service.d.ts +4 -18
  45. package/lib/types/services/snapshot/snapshot-transform.d.ts +6 -20
  46. package/lib/types/services/snapshot/snapshot-utils.d.ts +7 -21
  47. package/lib/types/services/theme/theme.service.d.ts +2 -16
  48. package/lib/types/services/undoredo/undoredo.service.d.ts +18 -24
  49. package/lib/types/shared/__test__/common.spec.d.ts +16 -0
  50. package/lib/types/shared/color/color.d.ts +2 -16
  51. package/lib/types/shared/common.d.ts +15 -22
  52. package/lib/types/shared/compare.d.ts +2 -16
  53. package/lib/types/shared/doc-tool.d.ts +2 -16
  54. package/lib/types/shared/index.d.ts +1 -0
  55. package/lib/types/shared/lifecycle.d.ts +5 -20
  56. package/lib/types/shared/lru/lru-map.d.ts +2 -16
  57. package/lib/types/shared/object-matrix-query.d.ts +4 -0
  58. package/lib/types/shared/object-matrix.d.ts +5 -18
  59. package/lib/types/shared/props-from.d.ts +2 -16
  60. package/lib/types/shared/rectangle.d.ts +4 -18
  61. package/lib/types/shared/ref-alias.d.ts +8 -1
  62. package/lib/types/shared/rxjs.d.ts +2 -16
  63. package/lib/types/shared/tools.d.ts +4 -16
  64. package/lib/types/sheets/__tests__/create-core-test-bed.d.ts +9 -23
  65. package/lib/types/sheets/column-manager.d.ts +4 -18
  66. package/lib/types/sheets/empty-snapshot.d.ts +4 -0
  67. package/lib/types/sheets/range.d.ts +6 -22
  68. package/lib/types/sheets/row-manager.d.ts +4 -18
  69. package/lib/types/sheets/sheet-snapshot-utils.d.ts +2 -16
  70. package/lib/types/sheets/styles.d.ts +3 -17
  71. package/lib/types/sheets/view-model.d.ts +10 -24
  72. package/lib/types/sheets/workbook.d.ts +9 -23
  73. package/lib/types/sheets/worksheet.d.ts +8 -23
  74. package/lib/types/slides/domain/slide-model.d.ts +5 -19
  75. package/lib/types/types/const/const.d.ts +1 -20
  76. package/lib/types/types/enum/data-validation-error-style.d.ts +20 -0
  77. package/lib/types/types/enum/data-validation-ime-mode.d.ts +28 -0
  78. package/lib/types/types/enum/data-validation-operator.d.ts +25 -0
  79. package/lib/types/types/enum/data-validation-render-mode.d.ts +20 -0
  80. package/lib/types/types/enum/data-validation-status.d.ts +20 -0
  81. package/lib/types/types/enum/data-validation-type.d.ts +36 -0
  82. package/lib/types/types/enum/interpolation-point-type.d.ts +3 -3
  83. package/lib/types/types/interfaces/i-cell-custom-render.d.ts +28 -0
  84. package/lib/types/types/interfaces/i-cell-data.d.ts +20 -18
  85. package/lib/types/types/interfaces/i-cell-validation-data.d.ts +9 -0
  86. package/lib/types/types/interfaces/i-column-data.d.ts +2 -16
  87. package/lib/types/types/interfaces/i-data-validation.d.ts +44 -0
  88. package/lib/types/types/interfaces/i-document-data.d.ts +5 -19
  89. package/lib/types/types/interfaces/i-placeholder.d.ts +2 -16
  90. package/lib/types/types/interfaces/i-row-data.d.ts +2 -16
  91. package/lib/types/types/interfaces/i-selection-data.d.ts +3 -17
  92. package/lib/types/types/interfaces/i-shape-properties.d.ts +3 -17
  93. package/lib/types/types/interfaces/i-slide-data.d.ts +12 -26
  94. package/lib/types/types/interfaces/i-style-data.d.ts +5 -19
  95. package/lib/types/types/interfaces/i-univer-data.d.ts +5 -19
  96. package/lib/types/types/interfaces/i-workbook-data.d.ts +6 -20
  97. package/lib/types/types/interfaces/i-worksheet-data.d.ts +8 -22
  98. package/lib/umd/index.js +8 -8
  99. package/package.json +6 -7

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.