@ones-editor/editor 2.1.0-beta.5 → 2.1.0-beta.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 (116) hide show
  1. package/@ones-editor/block-menu/src/block-menu-button/menu-button/index.d.ts +1 -1
  2. package/@ones-editor/callout-block/src/callout-block/callout-quick-menu-item-filter.d.ts +3 -4
  3. package/@ones-editor/comments/src/index.d.ts +0 -3
  4. package/@ones-editor/comments/src/text-comments/comments-command-provider.d.ts +4 -3
  5. package/@ones-editor/core/src/core/blocks/common/block-properties.d.ts +9 -9
  6. package/@ones-editor/core/src/core/blocks/common/execute-block-command.d.ts +2 -2
  7. package/@ones-editor/core/src/core/blocks/complex-blocks/child-blocks.d.ts +1 -2
  8. package/@ones-editor/core/src/core/blocks/text-blocks/base/child.d.ts +7 -2
  9. package/@ones-editor/core/src/core/command-providers/block-attributes.d.ts +14 -0
  10. package/@ones-editor/core/src/core/command-providers/commands/index.d.ts +2 -0
  11. package/@ones-editor/core/src/core/command-providers/commands/inject-source.d.ts +3 -0
  12. package/@ones-editor/core/src/core/command-providers/commands/merge-commands.d.ts +3 -0
  13. package/@ones-editor/core/src/core/command-providers/commands/range-commands.d.ts +3 -3
  14. package/@ones-editor/core/src/core/command-providers/editor-command-providers.d.ts +4 -3
  15. package/@ones-editor/core/src/core/command-providers/index.d.ts +2 -1
  16. package/@ones-editor/core/src/core/composition/editor-input.d.ts +1 -1
  17. package/@ones-editor/core/src/core/containers/root-container.d.ts +4 -4
  18. package/@ones-editor/core/src/core/doc/doc.d.ts +0 -1
  19. package/@ones-editor/core/src/core/selection/actions/index.d.ts +2 -1
  20. package/@ones-editor/core/src/core/selection/index.d.ts +1 -0
  21. package/@ones-editor/core/src/core/selection/select-handler.d.ts +3 -3
  22. package/@ones-editor/core/src/core/types.d.ts +29 -35
  23. package/@ones-editor/core/src/utils/dom.d.ts +3 -0
  24. package/@ones-editor/core/src/utils/drag-drop.d.ts +8 -3
  25. package/@ones-editor/image-embed/src/splitter-resizer/index.d.ts +3 -3
  26. package/@ones-editor/layout-block/src/command-filter.d.ts +7 -0
  27. package/@ones-editor/mobile-helper/src/fixed-toolbar/fixed-providers.d.ts +7 -0
  28. package/@ones-editor/mobile-helper/src/fixed-toolbar/index.d.ts +18 -0
  29. package/@ones-editor/mobile-helper/src/fixed-toolbar/providers/align-dropdown.d.ts +9 -0
  30. package/@ones-editor/mobile-helper/src/fixed-toolbar/providers/group.d.ts +7 -0
  31. package/@ones-editor/mobile-helper/src/fixed-toolbar/providers/insert-menu.d.ts +13 -0
  32. package/@ones-editor/mobile-helper/src/fixed-toolbar/providers/insert.d.ts +8 -0
  33. package/@ones-editor/mobile-helper/src/fixed-toolbar/providers/text-dropdown.d.ts +9 -0
  34. package/@ones-editor/mobile-helper/src/fixed-toolbar/providers/turn-into.d.ts +8 -0
  35. package/@ones-editor/mobile-helper/src/fixed-toolbar/toolbar-handler.d.ts +11 -0
  36. package/@ones-editor/mobile-helper/src/index.d.ts +6 -0
  37. package/@ones-editor/mobile-helper/src/selection-gripper/index.d.ts +19 -0
  38. package/@ones-editor/mobile-helper/src/selection-gripper/select-handle.d.ts +3 -0
  39. package/@ones-editor/mobile-helper/src/ui/init-menu-item.d.ts +3 -0
  40. package/@ones-editor/mobile-helper/src/ui/mobile-bottom-menu.d.ts +22 -0
  41. package/@ones-editor/sharedb-doc/src/index.d.ts +0 -3
  42. package/@ones-editor/table-block/src/commands/index.d.ts +2 -0
  43. package/@ones-editor/table-block/src/commands/table-block-commands.d.ts +4 -3
  44. package/@ones-editor/table-block/src/index.d.ts +4 -1
  45. package/@ones-editor/table-block/src/table-block/cell-menu/table-cell-dom.d.ts +6 -0
  46. package/@ones-editor/table-block/src/table-block/table-resize/resize-drag-drop.d.ts +4 -4
  47. package/@ones-editor/text-commands/src/index.d.ts +1 -2
  48. package/@ones-editor/tsconfig.tsbuildinfo +1 -1
  49. package/@ones-editor/ui/src/block-menu/block-command-providers.d.ts +10 -0
  50. package/@ones-editor/{block-menu → ui}/src/block-menu/index.d.ts +3 -1
  51. package/@ones-editor/ui/src/index.d.ts +22 -10
  52. package/@ones-editor/ui/src/providers/abstract-providers.d.ts +27 -0
  53. package/@ones-editor/ui/src/providers/align-dropdown.d.ts +10 -0
  54. package/@ones-editor/ui/src/{toolbar/commands → providers}/align.d.ts +4 -4
  55. package/@ones-editor/ui/src/providers/block-hook-provider.d.ts +16 -0
  56. package/@ones-editor/ui/src/providers/color-provider.d.ts +16 -0
  57. package/@ones-editor/ui/src/providers/heading.d.ts +13 -0
  58. package/@ones-editor/ui/src/providers/inline-code-provider.d.ts +12 -0
  59. package/@ones-editor/ui/src/providers/inline-style-provider.d.ts +10 -0
  60. package/@ones-editor/ui/src/providers/insert-above.d.ts +9 -0
  61. package/@ones-editor/ui/src/providers/insert-after.d.ts +9 -0
  62. package/@ones-editor/ui/src/providers/insert-box-provider.d.ts +12 -0
  63. package/@ones-editor/ui/src/providers/insert-group.d.ts +7 -0
  64. package/@ones-editor/ui/src/providers/insert-menu.d.ts +16 -0
  65. package/@ones-editor/ui/src/providers/link.d.ts +17 -0
  66. package/@ones-editor/ui/src/providers/list.d.ts +14 -0
  67. package/@ones-editor/ui/src/providers/paragraph.d.ts +8 -0
  68. package/@ones-editor/ui/src/providers/proxy-provider.d.ts +10 -0
  69. package/@ones-editor/ui/src/providers/quoted.d.ts +12 -0
  70. package/@ones-editor/ui/src/providers/script-with-dropdown.d.ts +9 -0
  71. package/@ones-editor/ui/src/providers/text-command-provider.d.ts +18 -0
  72. package/@ones-editor/ui/src/providers/text-fixed-provider.d.ts +16 -0
  73. package/@ones-editor/ui/src/providers/text-script-provider.d.ts +10 -0
  74. package/@ones-editor/ui/src/providers/text-styles.d.ts +9 -0
  75. package/@ones-editor/ui/src/providers/turn-into.d.ts +9 -0
  76. package/@ones-editor/ui/src/providers/types.d.ts +3 -0
  77. package/@ones-editor/ui/src/providers/utils/add-section.d.ts +2 -0
  78. package/@ones-editor/ui/src/{quick-menu → providers/utils}/basic-commands.d.ts +1 -2
  79. package/@ones-editor/ui/src/providers/utils/inject-block-options.d.ts +5 -0
  80. package/@ones-editor/ui/src/providers/utils/range-commands.d.ts +2 -0
  81. package/@ones-editor/ui/src/providers/utils/text-commands.d.ts +3 -0
  82. package/@ones-editor/{text-commands/src → ui/src/providers/utils}/text-styles.d.ts +3 -1
  83. package/@ones-editor/ui/src/quick-menu/index.d.ts +6 -18
  84. package/@ones-editor/ui/src/quick-menu/quick-command-providers.d.ts +10 -0
  85. package/@ones-editor/ui/src/quick-menu/types.d.ts +0 -4
  86. package/@ones-editor/ui/src/toolbar/text-commands.d.ts +2 -2
  87. package/@ones-editor/ui-base/src/color-button/text-color-item.d.ts +1 -0
  88. package/@ones-editor/ui-base/src/command-bar/command-bar.d.ts +1 -1
  89. package/@ones-editor/ui-base/src/command-bar/mobile-bottom-menu.d.ts +18 -0
  90. package/@ones-editor/ui-base/src/command-bar/types.d.ts +2 -1
  91. package/@ones-editor/ui-base/src/popup/popup.d.ts +1 -1
  92. package/dist/comments/local-doc-comments-provider.d.ts +1 -2
  93. package/dist/index.js +19592 -18724
  94. package/dist/types.d.ts +1 -1
  95. package/package.json +1 -1
  96. package/@ones-editor/block-menu/src/block-menu/items/block-command-items.d.ts +0 -3
  97. package/@ones-editor/block-menu/src/block-menu/items/index.d.ts +0 -5
  98. package/@ones-editor/block-menu/src/block-menu/items/insert-block-items/index.d.ts +0 -5
  99. package/@ones-editor/block-menu/src/block-menu/items/text-styles/text-style-item.d.ts +0 -30
  100. package/@ones-editor/block-menu/src/block-menu/items/types.d.ts +0 -5
  101. package/@ones-editor/comments/src/comments-helper/old-version-comment.d.ts +0 -17
  102. package/@ones-editor/text-commands/src/text-command-provider.d.ts +0 -24
  103. package/@ones-editor/text-commands/src/text-commands.d.ts +0 -4
  104. package/@ones-editor/ui/src/quick-menu/basic-menu-items.d.ts +0 -16
  105. package/@ones-editor/ui/src/quick-menu/inline-box-items.d.ts +0 -8
  106. package/@ones-editor/ui/src/quick-menu/insert-empty-block.d.ts +0 -4
  107. package/@ones-editor/ui/src/quick-menu/order.d.ts +0 -1
  108. package/@ones-editor/ui/src/quick-menu/quick-menu-items.d.ts +0 -9
  109. package/@ones-editor/ui/src/readonly-toolbar/add-comment-to-old-doc.d.ts +0 -22
  110. package/@ones-editor/ui/src/readonly-toolbar/index.d.ts +0 -30
  111. package/@ones-editor/ui/src/readonly-toolbar/types.d.ts +0 -12
  112. package/@ones-editor/ui/src/toolbar/commands/paragraph.d.ts +0 -11
  113. package/@ones-editor/ui/src/toolbar/commands/turn-into.d.ts +0 -10
  114. package/@ones-editor/ui/src/toolbar/link-commands.d.ts +0 -7
  115. package/@ones-editor/ui/src/toolbar/merge-commands.d.ts +0 -2
  116. /package/@ones-editor/{block-menu → ui}/src/block-menu/standard-block-actions/hook.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.