@ones-editor/editor 2.2.15-beta.4 → 2.3.0-beta.10

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 (94) hide show
  1. package/@ones-editor/callout-block/src/callout-block/callout-block-content.d.ts +2 -3
  2. package/@ones-editor/callout-block/src/callout-block/helper.d.ts +2 -4
  3. package/@ones-editor/callout-block/src/locale/en-us.d.ts +0 -3
  4. package/@ones-editor/callout-block/src/locale/ja-jp.d.ts +0 -3
  5. package/@ones-editor/callout-block/src/locale/zh-cn.d.ts +0 -3
  6. package/@ones-editor/core/src/core/blocks/text-blocks/text-block/to-plain-html.d.ts +2 -2
  7. package/@ones-editor/core/src/core/composition/index.d.ts +1 -0
  8. package/@ones-editor/core/src/core/doc/doc.d.ts +0 -1
  9. package/@ones-editor/core/src/core/editor-doc/editor-doc.d.ts +0 -1
  10. package/@ones-editor/core/src/core/types.d.ts +1 -0
  11. package/@ones-editor/drawio-embed/src/lang/en-us.d.ts +8 -0
  12. package/@ones-editor/drawio-embed/src/lang/ja-jp.d.ts +8 -0
  13. package/@ones-editor/drawio-embed/src/lang/zh-cn.d.ts +8 -0
  14. package/@ones-editor/html-to-doc/src/html-to-doc/normal-html/figcaption.d.ts +1 -0
  15. package/@ones-editor/html-to-doc/src/html-to-doc/normal-html/font-size.d.ts +1 -0
  16. package/@ones-editor/html-to-doc/src/html-to-doc/normal-html/text-color.d.ts +1 -0
  17. package/@ones-editor/html-to-doc/src/html-to-doc/normal-html/underline.d.ts +1 -0
  18. package/@ones-editor/main-toolbar/package.json +7 -0
  19. package/@ones-editor/main-toolbar/src/index.d.ts +18 -0
  20. package/@ones-editor/main-toolbar/src/items/comment.d.ts +8 -0
  21. package/@ones-editor/main-toolbar/src/items/find.d.ts +8 -0
  22. package/@ones-editor/main-toolbar/src/items/font-style.d.ts +40 -0
  23. package/@ones-editor/main-toolbar/src/items/image.d.ts +8 -0
  24. package/@ones-editor/main-toolbar/src/items/index.d.ts +17 -0
  25. package/@ones-editor/main-toolbar/src/items/insert.d.ts +12 -0
  26. package/@ones-editor/main-toolbar/src/items/link.d.ts +11 -0
  27. package/@ones-editor/main-toolbar/src/items/list.d.ts +29 -0
  28. package/@ones-editor/main-toolbar/src/items/more-item.d.ts +20 -0
  29. package/@ones-editor/main-toolbar/src/items/paragraph.d.ts +14 -0
  30. package/@ones-editor/main-toolbar/src/items/quote.d.ts +11 -0
  31. package/@ones-editor/main-toolbar/src/items/separator.d.ts +7 -0
  32. package/@ones-editor/main-toolbar/src/items/text-align.d.ts +21 -0
  33. package/@ones-editor/main-toolbar/src/items/text-color.d.ts +49 -0
  34. package/@ones-editor/main-toolbar/src/items/undo.d.ts +18 -0
  35. package/@ones-editor/main-toolbar/src/locale/en-us.d.ts +9 -0
  36. package/@ones-editor/main-toolbar/src/locale/index.d.ts +1 -0
  37. package/@ones-editor/main-toolbar/src/locale/ja-jp.d.ts +9 -0
  38. package/@ones-editor/main-toolbar/src/locale/zh-cn.d.ts +9 -0
  39. package/@ones-editor/main-toolbar/src/types.d.ts +5 -0
  40. package/@ones-editor/markdown-to-doc/src/custom/tag.d.ts +8 -0
  41. package/@ones-editor/markdown-to-doc/src/index.d.ts +1 -0
  42. package/@ones-editor/markdown-to-doc/src/tokens/inline-tokens/custom-tag.d.ts +4 -0
  43. package/@ones-editor/markdown-to-doc/src/tokens/inline-tokens/font-size.d.ts +2 -0
  44. package/@ones-editor/markdown-to-doc/src/tokens/inline-tokens/html.d.ts +2 -0
  45. package/@ones-editor/markdown-to-doc/src/tokens/inline-tokens/text-color.d.ts +2 -0
  46. package/@ones-editor/misc/src/index.d.ts +0 -1
  47. package/@ones-editor/misc/src/re-auth/index.d.ts +0 -23
  48. package/@ones-editor/sharedb-doc/src/doc/auth-connection.d.ts +41 -31
  49. package/@ones-editor/sharedb-doc/src/doc/auto-renew-token.d.ts +16 -0
  50. package/@ones-editor/sharedb-doc/src/doc/connection-status.d.ts +19 -0
  51. package/@ones-editor/sharedb-doc/src/doc/edit-status.d.ts +13 -0
  52. package/@ones-editor/sharedb-doc/src/doc/sharedb-client.d.ts +6 -13
  53. package/@ones-editor/sharedb-doc/src/doc/sharedb-doc.d.ts +4 -4
  54. package/@ones-editor/sharedb-doc/src/types.d.ts +19 -5
  55. package/@ones-editor/toc/src/toc-embed/render-toc.d.ts +1 -1
  56. package/@ones-editor/tsconfig.tsbuildinfo +1 -1
  57. package/@ones-editor/ui/src/toolbar/toolbar-handler.d.ts +2 -0
  58. package/@ones-editor/ui-base/src/color-button/color-button.d.ts +1 -0
  59. package/@ones-editor/ui-base/src/command-bar/command-bar.d.ts +2 -1
  60. package/@ones-editor/ui-base/src/command-bar/fixed-toolbar.d.ts +1 -0
  61. package/@ones-editor/ui-base/src/dialog/alert-dialog.d.ts +19 -0
  62. package/@ones-editor/ui-base/src/dialog/confirm-dialog.d.ts +20 -0
  63. package/@ones-editor/ui-base/src/dialog/dialog-button.d.ts +10 -0
  64. package/@ones-editor/ui-base/src/dialog/dialog-check.d.ts +15 -0
  65. package/@ones-editor/ui-base/src/dialog/dialog-input.d.ts +9 -0
  66. package/@ones-editor/ui-base/src/dialog/dialog-radio.d.ts +12 -0
  67. package/@ones-editor/ui-base/src/dialog/index.d.ts +15 -0
  68. package/@ones-editor/ui-base/src/dialog/modal-dialog.d.ts +21 -0
  69. package/@ones-editor/ui-base/src/dialog/popup-dialog.d.ts +31 -0
  70. package/@ones-editor/ui-base/src/dialog/standard-dialog.d.ts +25 -0
  71. package/@ones-editor/ui-base/src/dialog/standard-modal-dialog.d.ts +7 -0
  72. package/@ones-editor/ui-base/src/dialog/standard-popup-dialog.d.ts +17 -0
  73. package/@ones-editor/ui-base/src/dialog/types.d.ts +1 -0
  74. package/@ones-editor/ui-base/src/dropdown/index.d.ts +1 -0
  75. package/@ones-editor/ui-base/src/emoji-item/emoji-item.d.ts +2 -1
  76. package/@ones-editor/ui-base/src/emoji-palette/index.d.ts +12 -9
  77. package/@ones-editor/ui-base/src/emoji-palette/types.d.ts +0 -9
  78. package/@ones-editor/ui-base/src/index.d.ts +0 -2
  79. package/@ones-editor/ui-base/src/locale/en-us.d.ts +5 -0
  80. package/@ones-editor/ui-base/src/locale/ja-jp.d.ts +5 -0
  81. package/@ones-editor/ui-base/src/locale/zh-cn.d.ts +5 -0
  82. package/@ones-editor/versions/src/types.d.ts +1 -0
  83. package/@ones-editor/versions/src/version-dialog/versions-dropdown.d.ts +2 -0
  84. package/dist/error-handler/error-info-bar.d.ts +20 -0
  85. package/dist/error-handler/index.d.ts +29 -0
  86. package/dist/index.d.ts +60 -1
  87. package/dist/index.js +4192 -2126
  88. package/dist/lang/en-us.d.ts +3 -0
  89. package/dist/lang/ja-jp.d.ts +3 -0
  90. package/dist/lang/zh-cn.d.ts +3 -0
  91. package/dist/types.d.ts +29 -7
  92. package/package.json +1 -2
  93. package/@ones-editor/callout-block/src/callout-block/callout-icon.d.ts +0 -14
  94. package/@ones-editor/ui-base/src/emoji-palette/default-emoji-palette.d.ts +0 -3

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.