diff --git a/CHANGELOG.md b/CHANGELOG.md index b10365abd..8445a209a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/site/assets/images/editor/pointerMode.png b/site/assets/images/editor/pointerMode.png new file mode 100644 index 000000000..396adcfce Binary files /dev/null and b/site/assets/images/editor/pointerMode.png differ diff --git a/site/pages/Docs/Docs API/More Information/Changelog/index.md b/site/pages/Docs/Docs API/More Information/Changelog/index.md index d2a653d72..8dc9a8fa6 100644 --- a/site/pages/Docs/Docs API/More Information/Changelog/index.md +++ b/site/pages/Docs/Docs API/More Information/Changelog/index.md @@ -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 diff --git a/site/pages/Docs/Docs API/Usage API/Advanced parameters/index.md b/site/pages/Docs/Docs API/Usage API/Advanced parameters/index.md index 671aa47d1..55bd6b607 100644 --- a/site/pages/Docs/Docs API/Usage API/Advanced parameters/index.md +++ b/site/pages/Docs/Docs API/Usage API/Advanced parameters/index.md @@ -198,6 +198,7 @@ const config = { standardView: false, }, plugins: true, + pointerMode: "select", review: { hideReviewDisplay: false, showReviewChanges: false, diff --git a/site/pages/Docs/Docs API/Usage API/Config/Editor/Customization/index.md b/site/pages/Docs/Docs API/Usage API/Config/Editor/Customization/index.md index d2a676822..f7337b400 100644 --- a/site/pages/Docs/Docs API/Usage API/Config/Editor/Customization/index.md +++ b/site/pages/Docs/Docs API/Usage API/Config/Editor/Customization/index.md @@ -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) @@ -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 @@ -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. @@ -1533,6 +1544,7 @@ const docEditor = new DocsAPI.DocEditor("placeholder", { standardView: false, }, plugins: true, + pointerMode: "select", review: { hideReviewDisplay: false, showReviewChanges: false,