@univerjs/sheets 0.4.1 → 0.4.2-nightly.202410301606

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 (76) hide show
  1. package/lib/add-worksheet-merge.command-0cuLfO_2.mjs +5939 -0
  2. package/lib/es/facade.js +1818 -0
  3. package/lib/es/index.js +1800 -7245
  4. package/lib/locale/en-US.js +17 -0
  5. package/lib/locale/fa-IR.js +17 -0
  6. package/lib/locale/ru-RU.js +17 -0
  7. package/lib/locale/vi-VN.js +17 -0
  8. package/lib/locale/zh-CN.js +17 -0
  9. package/lib/locale/zh-TW.js +17 -0
  10. package/lib/types/basics/row-column-value.d.ts +14 -0
  11. package/lib/types/commands/commands/__tests__/set-col-data.command.spec.d.ts +16 -0
  12. package/lib/types/commands/commands/__tests__/set-row-data.command.spec.d.ts +16 -0
  13. package/lib/types/commands/commands/__tests__/set-worksheet-default-style.command.spec.d.ts +16 -0
  14. package/lib/types/commands/commands/set-col-data.command.d.ts +7 -0
  15. package/lib/types/commands/commands/set-frozen.command.d.ts +13 -0
  16. package/lib/types/commands/commands/set-row-data.command.d.ts +7 -0
  17. package/lib/types/commands/commands/set-style.command.d.ts +1 -1
  18. package/lib/types/commands/commands/set-worksheet-col-width.command.d.ts +6 -0
  19. package/lib/types/commands/commands/set-worksheet-default-style.command.d.ts +2 -0
  20. package/lib/types/commands/commands/toggle-gridlines.command.d.ts +7 -0
  21. package/lib/types/commands/mutations/add-range-protection.mutation.d.ts +2 -2
  22. package/lib/types/commands/mutations/delete-range-protection.mutation.d.ts +3 -3
  23. package/lib/types/commands/mutations/set-col-data.mutation.d.ts +8 -0
  24. package/lib/types/commands/mutations/set-frozen.mutation.d.ts +8 -0
  25. package/lib/types/commands/mutations/set-row-data.mutation.d.ts +8 -0
  26. package/lib/types/commands/mutations/set-worksheet-col-width.mutation.d.ts +3 -0
  27. package/lib/types/commands/mutations/set-worksheet-default-style.mutation.d.ts +12 -0
  28. package/lib/types/commands/mutations/toggle-gridlines.mutation.d.ts +7 -0
  29. package/lib/types/controllers/config.schema.d.ts +4 -0
  30. package/lib/types/facade/__tests__/utils.spec.d.ts +16 -0
  31. package/lib/types/facade/f-permission.d.ts +106 -0
  32. package/lib/types/facade/f-range.d.ts +193 -0
  33. package/lib/types/facade/f-selection.d.ts +11 -0
  34. package/lib/types/facade/f-univer.d.ts +36 -0
  35. package/lib/types/facade/f-workbook.d.ts +105 -0
  36. package/lib/types/facade/f-worksheet.d.ts +408 -0
  37. package/lib/types/facade/index.d.ts +6 -0
  38. package/lib/types/facade/utils.d.ts +24 -0
  39. package/lib/types/index.d.ts +19 -7
  40. package/lib/types/model/range-protection.cache.d.ts +5 -2
  41. package/lib/types/services/border-style-manager.service.d.ts +2 -2
  42. package/lib/types/services/permission/permission-point/index.d.ts +2 -0
  43. package/lib/types/services/permission/permission-point/range/delete-protection.d.ts +13 -0
  44. package/lib/types/services/permission/permission-point/range/manage-collaborator.d.ts +13 -0
  45. package/lib/types/services/permission/permission-point/workbook/create-permission.d.ts +11 -0
  46. package/lib/types/services/permission/permission-point/worksheet/delete-protection.d.ts +12 -0
  47. package/lib/types/services/permission/range-permission/range-protection.ref-range.d.ts +3 -3
  48. package/lib/types/services/permission/range-permission/range-protection.service.d.ts +3 -2
  49. package/lib/types/services/permission/range-permission/util.d.ts +1 -0
  50. package/lib/types/services/permission/type.d.ts +1 -1
  51. package/lib/types/services/permission/workbook-permission/workbook-permission.service.d.ts +4 -1
  52. package/lib/types/services/permission/worksheet-permission/utils.d.ts +2 -2
  53. package/lib/types/services/selections/selection-manager.service.d.ts +2 -2
  54. package/lib/types/services/sheet-interceptor/sheet-interceptor.service.d.ts +38 -7
  55. package/lib/umd/facade.js +3 -0
  56. package/lib/umd/index.js +3 -3
  57. package/lib/umd/locale/en-US.js +1 -0
  58. package/lib/umd/locale/fa-IR.js +1 -0
  59. package/lib/umd/locale/ru-RU.js +1 -0
  60. package/lib/umd/locale/vi-VN.js +1 -0
  61. package/lib/umd/locale/zh-CN.js +1 -0
  62. package/lib/umd/locale/zh-TW.js +1 -0
  63. package/package.json +21 -18
  64. package/LICENSE +0 -176
  65. package/lib/cjs/index.js +0 -3
  66. package/lib/locale/en-US.json +0 -14
  67. package/lib/locale/fa-IR.json +0 -14
  68. package/lib/locale/ru-RU.json +0 -14
  69. package/lib/locale/vi-VN.json +0 -14
  70. package/lib/locale/zh-CN.json +0 -14
  71. package/lib/locale/zh-TW.json +0 -14
  72. package/lib/types/basics/cell-custom.d.ts +0 -12
  73. package/lib/types/commands/commands/set-frozen-cancel.command.d.ts +0 -2
  74. package/lib/types/commands/commands/set-hide-gridlines.command.d.ts +0 -7
  75. package/lib/types/commands/mutations/set-hide-gridlines.mutatiom.d.ts +0 -8
  76. /package/lib/types/basics/__tests__/{cell-custom.spec.d.ts → row-column-value.spec.d.ts} +0 -0

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.