@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.
- package/@ones-editor/callout-block/src/callout-block/callout-block-content.d.ts +2 -3
- package/@ones-editor/callout-block/src/callout-block/helper.d.ts +2 -4
- package/@ones-editor/callout-block/src/locale/en-us.d.ts +0 -3
- package/@ones-editor/callout-block/src/locale/ja-jp.d.ts +0 -3
- package/@ones-editor/callout-block/src/locale/zh-cn.d.ts +0 -3
- package/@ones-editor/core/src/core/blocks/text-blocks/text-block/to-plain-html.d.ts +2 -2
- package/@ones-editor/core/src/core/composition/index.d.ts +1 -0
- package/@ones-editor/core/src/core/doc/doc.d.ts +0 -1
- package/@ones-editor/core/src/core/editor-doc/editor-doc.d.ts +0 -1
- package/@ones-editor/core/src/core/types.d.ts +1 -0
- package/@ones-editor/drawio-embed/src/lang/en-us.d.ts +8 -0
- package/@ones-editor/drawio-embed/src/lang/ja-jp.d.ts +8 -0
- package/@ones-editor/drawio-embed/src/lang/zh-cn.d.ts +8 -0
- package/@ones-editor/html-to-doc/src/html-to-doc/normal-html/figcaption.d.ts +1 -0
- package/@ones-editor/html-to-doc/src/html-to-doc/normal-html/font-size.d.ts +1 -0
- package/@ones-editor/html-to-doc/src/html-to-doc/normal-html/text-color.d.ts +1 -0
- package/@ones-editor/html-to-doc/src/html-to-doc/normal-html/underline.d.ts +1 -0
- package/@ones-editor/main-toolbar/package.json +7 -0
- package/@ones-editor/main-toolbar/src/index.d.ts +18 -0
- package/@ones-editor/main-toolbar/src/items/comment.d.ts +8 -0
- package/@ones-editor/main-toolbar/src/items/find.d.ts +8 -0
- package/@ones-editor/main-toolbar/src/items/font-style.d.ts +40 -0
- package/@ones-editor/main-toolbar/src/items/image.d.ts +8 -0
- package/@ones-editor/main-toolbar/src/items/index.d.ts +17 -0
- package/@ones-editor/main-toolbar/src/items/insert.d.ts +12 -0
- package/@ones-editor/main-toolbar/src/items/link.d.ts +11 -0
- package/@ones-editor/main-toolbar/src/items/list.d.ts +29 -0
- package/@ones-editor/main-toolbar/src/items/more-item.d.ts +20 -0
- package/@ones-editor/main-toolbar/src/items/paragraph.d.ts +14 -0
- package/@ones-editor/main-toolbar/src/items/quote.d.ts +11 -0
- package/@ones-editor/main-toolbar/src/items/separator.d.ts +7 -0
- package/@ones-editor/main-toolbar/src/items/text-align.d.ts +21 -0
- package/@ones-editor/main-toolbar/src/items/text-color.d.ts +49 -0
- package/@ones-editor/main-toolbar/src/items/undo.d.ts +18 -0
- package/@ones-editor/main-toolbar/src/locale/en-us.d.ts +9 -0
- package/@ones-editor/main-toolbar/src/locale/index.d.ts +1 -0
- package/@ones-editor/main-toolbar/src/locale/ja-jp.d.ts +9 -0
- package/@ones-editor/main-toolbar/src/locale/zh-cn.d.ts +9 -0
- package/@ones-editor/main-toolbar/src/types.d.ts +5 -0
- package/@ones-editor/markdown-to-doc/src/custom/tag.d.ts +8 -0
- package/@ones-editor/markdown-to-doc/src/index.d.ts +1 -0
- package/@ones-editor/markdown-to-doc/src/tokens/inline-tokens/custom-tag.d.ts +4 -0
- package/@ones-editor/markdown-to-doc/src/tokens/inline-tokens/font-size.d.ts +2 -0
- package/@ones-editor/markdown-to-doc/src/tokens/inline-tokens/html.d.ts +2 -0
- package/@ones-editor/markdown-to-doc/src/tokens/inline-tokens/text-color.d.ts +2 -0
- package/@ones-editor/misc/src/index.d.ts +0 -1
- package/@ones-editor/misc/src/re-auth/index.d.ts +0 -23
- package/@ones-editor/sharedb-doc/src/doc/auth-connection.d.ts +41 -31
- package/@ones-editor/sharedb-doc/src/doc/auto-renew-token.d.ts +16 -0
- package/@ones-editor/sharedb-doc/src/doc/connection-status.d.ts +19 -0
- package/@ones-editor/sharedb-doc/src/doc/edit-status.d.ts +13 -0
- package/@ones-editor/sharedb-doc/src/doc/sharedb-client.d.ts +6 -13
- package/@ones-editor/sharedb-doc/src/doc/sharedb-doc.d.ts +4 -4
- package/@ones-editor/sharedb-doc/src/types.d.ts +19 -5
- package/@ones-editor/toc/src/toc-embed/render-toc.d.ts +1 -1
- package/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/@ones-editor/ui/src/toolbar/toolbar-handler.d.ts +2 -0
- package/@ones-editor/ui-base/src/color-button/color-button.d.ts +1 -0
- package/@ones-editor/ui-base/src/command-bar/command-bar.d.ts +2 -1
- package/@ones-editor/ui-base/src/command-bar/fixed-toolbar.d.ts +1 -0
- package/@ones-editor/ui-base/src/dialog/alert-dialog.d.ts +19 -0
- package/@ones-editor/ui-base/src/dialog/confirm-dialog.d.ts +20 -0
- package/@ones-editor/ui-base/src/dialog/dialog-button.d.ts +10 -0
- package/@ones-editor/ui-base/src/dialog/dialog-check.d.ts +15 -0
- package/@ones-editor/ui-base/src/dialog/dialog-input.d.ts +9 -0
- package/@ones-editor/ui-base/src/dialog/dialog-radio.d.ts +12 -0
- package/@ones-editor/ui-base/src/dialog/index.d.ts +15 -0
- package/@ones-editor/ui-base/src/dialog/modal-dialog.d.ts +21 -0
- package/@ones-editor/ui-base/src/dialog/popup-dialog.d.ts +31 -0
- package/@ones-editor/ui-base/src/dialog/standard-dialog.d.ts +25 -0
- package/@ones-editor/ui-base/src/dialog/standard-modal-dialog.d.ts +7 -0
- package/@ones-editor/ui-base/src/dialog/standard-popup-dialog.d.ts +17 -0
- package/@ones-editor/ui-base/src/dialog/types.d.ts +1 -0
- package/@ones-editor/ui-base/src/dropdown/index.d.ts +1 -0
- package/@ones-editor/ui-base/src/emoji-item/emoji-item.d.ts +2 -1
- package/@ones-editor/ui-base/src/emoji-palette/index.d.ts +12 -9
- package/@ones-editor/ui-base/src/emoji-palette/types.d.ts +0 -9
- package/@ones-editor/ui-base/src/index.d.ts +0 -2
- package/@ones-editor/ui-base/src/locale/en-us.d.ts +5 -0
- package/@ones-editor/ui-base/src/locale/ja-jp.d.ts +5 -0
- package/@ones-editor/ui-base/src/locale/zh-cn.d.ts +5 -0
- package/@ones-editor/versions/src/types.d.ts +1 -0
- package/@ones-editor/versions/src/version-dialog/versions-dropdown.d.ts +2 -0
- package/dist/error-handler/error-info-bar.d.ts +20 -0
- package/dist/error-handler/index.d.ts +29 -0
- package/dist/index.d.ts +60 -1
- package/dist/index.js +4192 -2126
- package/dist/lang/en-us.d.ts +3 -0
- package/dist/lang/ja-jp.d.ts +3 -0
- package/dist/lang/zh-cn.d.ts +3 -0
- package/dist/types.d.ts +29 -7
- package/package.json +1 -2
- package/@ones-editor/callout-block/src/callout-block/callout-icon.d.ts +0 -14
- 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.