Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/feature/editor-8.3.0' in…
Browse files Browse the repository at this point in the history
…to feature/submitForm-updates

# Conflicts:
#	CHANGELOG.md
#	site/pages/Docs/Docs API/More Information/Changelog/index.md
  • Loading branch information
LinneyS committed Dec 18, 2024
2 parents 114116d + 9ef0548 commit 02112ce
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log

- docs api: the editorConfig.customization.submitForm parameter can now be used as an object
- docs api: the editorConfig.customization.compactToolbar parameter is now available for the viewer
- docs api: added the editorConfig.customization.pointerMode parameter
- docs api: updated the WOPI section
- docs api: added the information about calling editor methods in the frameworks
- docs api: added the Checking PDF forms page
Expand Down
Binary file added site/assets/images/editor/pointerMode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions site/pages/Docs/Docs API/More Information/Changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ The list of changes of ONLYOFFICE Docs API.
## Version 8.3

- The [editorConfig.customization.submitForm](../../Usage%20API/Config/Editor/Customization/index.md#submitform) parameter can now be used as an object.
- The [editorConfig.customization.compactToolbar](../../Usage%20API/Config/Editor/Customization/index.md#compacttoolbar) parameter is now available for the viewer.
- Added the [editorConfig.customization.pointerMode](../../Usage%20API/Config/Editor/Customization/index.md#pointermode) parameter.

## Version 8.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ const config = {
standardView: false,
},
plugins: true,
pointerMode: "select",
review: {
hideReviewDisplay: false,
showReviewChanges: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ The customization section allows to customize the editor interface so that it lo
- [mentionShare](#mentionshare)
- [mobile](#mobile)
- [plugins](#plugins)
- [pointerMode](#pointermode)
- [review](#review)
- [reviewDisplay](#reviewdisplay)
- [rightMenu](#rightmenu)
Expand Down Expand Up @@ -177,7 +178,7 @@ Example: false

## compactToolbar

Defines if the top toolbar type displayed is full (**false**) or compact (**true**). The default value is **false**.
Defines if the top toolbar type displayed is full (**false**) or compact (**true**). The default value is **false**. Starting from version 8.3, this setting is also available for the viewer. The default value for the *view* mode is **true**.

Type: boolean

Expand Down Expand Up @@ -1157,6 +1158,16 @@ Type: boolean

Example: true

## pointerMode

Defines the pointer mode (**select** or **hand**) when the presentation editor is loaded in the viewer. The default value is **select**.

Type: string

Example: "select"

![Pointer mode](/assets/images/editor/pointerMode.png)

## review

Contains the information about the review mode.
Expand Down Expand Up @@ -1533,6 +1544,7 @@ const docEditor = new DocsAPI.DocEditor("placeholder", {
standardView: false,
},
plugins: true,
pointerMode: "select",
review: {
hideReviewDisplay: false,
showReviewChanges: false,
Expand Down

0 comments on commit 02112ce

Please sign in to comment.