@manuscripts/body-editor 3.6.12 → 3.6.16
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/dist/cjs/index.js +1 -0
- package/dist/cjs/lib/__tests__/plugins.test.js +2 -2
- package/dist/cjs/lib/capabilities.js +26 -0
- package/dist/cjs/lib/normalize.js +1 -1
- package/dist/cjs/testing/default-capabilities.js +41 -0
- package/dist/cjs/testing/default-editor-data.js +2 -2
- package/dist/cjs/versions.js +1 -1
- package/dist/es/index.js +1 -0
- package/dist/es/lib/__tests__/plugins.test.js +2 -2
- package/dist/es/lib/capabilities.js +23 -0
- package/dist/es/lib/normalize.js +1 -1
- package/dist/es/testing/default-capabilities.js +38 -0
- package/dist/es/testing/default-editor-data.js +2 -2
- package/dist/es/versions.js +1 -1
- package/dist/types/components/outline/DraggableTree.d.ts +1 -1
- package/dist/types/components/outline/ManuscriptOutline.d.ts +1 -1
- package/dist/types/components/views/FigureDropdown.d.ts +1 -1
- package/dist/types/configs/ManuscriptsEditor.d.ts +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/lib/capabilities.d.ts +45 -0
- package/dist/types/testing/default-capabilities.d.ts +17 -0
- package/dist/types/versions.d.ts +1 -1
- package/package.json +2 -2
package/dist/cjs/index.js
CHANGED
|
@@ -50,6 +50,7 @@ Object.defineProperty(exports, "CollabProvider", { enumerable: true, get: functi
|
|
|
50
50
|
var popper_1 = require("./lib/popper");
|
|
51
51
|
Object.defineProperty(exports, "PopperManager", { enumerable: true, get: function () { return popper_1.PopperManager; } });
|
|
52
52
|
__exportStar(require("./toolbar"), exports);
|
|
53
|
+
__exportStar(require("./lib/capabilities"), exports);
|
|
53
54
|
__exportStar(require("./lib/comments"), exports);
|
|
54
55
|
__exportStar(require("./lib/files"), exports);
|
|
55
56
|
__exportStar(require("./lib/footnotes"), exports);
|
|
@@ -4,12 +4,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const json_schema_1 = require("@manuscripts/json-schema");
|
|
7
|
-
const style_guide_1 = require("@manuscripts/style-guide");
|
|
8
7
|
const transform_1 = require("@manuscripts/transform");
|
|
9
8
|
const history_1 = require("history");
|
|
10
9
|
const prosemirror_state_1 = require("prosemirror-state");
|
|
11
10
|
const prosemirror_view_1 = require("prosemirror-view");
|
|
12
11
|
const editor_plugins_1 = __importDefault(require("../../configs/editor-plugins"));
|
|
12
|
+
const default_capabilities_1 = require("../../testing/default-capabilities");
|
|
13
13
|
const section_categories_json_1 = __importDefault(require("../../testing/section-categories.json"));
|
|
14
14
|
const popper_1 = require("../popper");
|
|
15
15
|
const utils_1 = require("../utils");
|
|
@@ -42,7 +42,7 @@ const buildProps = (doc) => ({
|
|
|
42
42
|
download: () => undefined,
|
|
43
43
|
upload: () => undefined,
|
|
44
44
|
},
|
|
45
|
-
getCapabilities: () =>
|
|
45
|
+
getCapabilities: () => default_capabilities_1.defaultCapabilities,
|
|
46
46
|
cslProps: {
|
|
47
47
|
style: '',
|
|
48
48
|
locale: '',
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*!
|
|
3
|
+
* © 2025 Atypon Systems LLC
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Actions = void 0;
|
|
19
|
+
var Actions;
|
|
20
|
+
(function (Actions) {
|
|
21
|
+
Actions["updateAttachment"] = "update-attachment";
|
|
22
|
+
Actions["updateDueDate"] = "update-due-date";
|
|
23
|
+
Actions["addNote"] = "add-note";
|
|
24
|
+
Actions["setMainManuscript"] = "set-main-manuscript";
|
|
25
|
+
Actions["editWithoutTracking"] = "edit-without-tracking";
|
|
26
|
+
})(Actions || (exports.Actions = Actions = {}));
|
|
@@ -26,7 +26,7 @@ const normalizeAuthor = (author) => {
|
|
|
26
26
|
email: author.email || '',
|
|
27
27
|
isCorresponding: author.isCorresponding || false,
|
|
28
28
|
ORCIDIdentifier: author.ORCIDIdentifier || '',
|
|
29
|
-
priority: author.priority
|
|
29
|
+
priority: author.priority,
|
|
30
30
|
isJointContributor: author.isJointContributor || false,
|
|
31
31
|
userID: author.userID || '',
|
|
32
32
|
invitationID: author.invitationID || '',
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*!
|
|
3
|
+
* © 2025 Atypon Systems LLC
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.defaultCapabilities = void 0;
|
|
19
|
+
exports.defaultCapabilities = {
|
|
20
|
+
handleSuggestion: true,
|
|
21
|
+
editWithoutTracking: true,
|
|
22
|
+
rejectOwnSuggestion: true,
|
|
23
|
+
handleOwnComments: true,
|
|
24
|
+
handleOthersComments: true,
|
|
25
|
+
resolveOwnComment: true,
|
|
26
|
+
resolveOthersComment: true,
|
|
27
|
+
createComment: true,
|
|
28
|
+
downloadFiles: true,
|
|
29
|
+
changeDesignation: true,
|
|
30
|
+
moveFile: true,
|
|
31
|
+
replaceFile: true,
|
|
32
|
+
uploadFile: true,
|
|
33
|
+
detachFile: true,
|
|
34
|
+
setMainManuscript: true,
|
|
35
|
+
editArticle: true,
|
|
36
|
+
formatArticle: true,
|
|
37
|
+
editMetadata: true,
|
|
38
|
+
editCitationsAndRefs: true,
|
|
39
|
+
seeEditorToolbar: true,
|
|
40
|
+
seeReferencesButtons: true,
|
|
41
|
+
};
|
|
@@ -19,10 +19,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
19
19
|
};
|
|
20
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
21
|
exports.defaultEditorProps = exports.TEST_DATA = void 0;
|
|
22
|
-
const style_guide_1 = require("@manuscripts/style-guide");
|
|
23
22
|
const transform_1 = require("@manuscripts/transform");
|
|
24
23
|
const history_1 = require("history");
|
|
25
24
|
const popper_1 = require("../lib/popper");
|
|
25
|
+
const default_capabilities_1 = require("./default-capabilities");
|
|
26
26
|
const empty_editor_doc_json_1 = __importDefault(require("./empty-editor-doc.json"));
|
|
27
27
|
const section_categories_json_1 = __importDefault(require("./section-categories.json"));
|
|
28
28
|
const theme = {};
|
|
@@ -76,7 +76,7 @@ exports.defaultEditorProps = {
|
|
|
76
76
|
download: () => { },
|
|
77
77
|
},
|
|
78
78
|
getCapabilities: () => ({
|
|
79
|
-
...
|
|
79
|
+
...default_capabilities_1.defaultCapabilities,
|
|
80
80
|
editWithoutTracking: true,
|
|
81
81
|
}),
|
|
82
82
|
cslProps: {
|
package/dist/cjs/versions.js
CHANGED
package/dist/es/index.js
CHANGED
|
@@ -24,6 +24,7 @@ export * from './menus';
|
|
|
24
24
|
export { CollabProvider } from './classes/collabProvider';
|
|
25
25
|
export { PopperManager } from './lib/popper';
|
|
26
26
|
export * from './toolbar';
|
|
27
|
+
export * from './lib/capabilities';
|
|
27
28
|
export * from './lib/comments';
|
|
28
29
|
export * from './lib/files';
|
|
29
30
|
export * from './lib/footnotes';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ObjectTypes } from '@manuscripts/json-schema';
|
|
2
|
-
import { getAllPermitted } from '@manuscripts/style-guide';
|
|
3
2
|
import { schema, } from '@manuscripts/transform';
|
|
4
3
|
import { createMemoryHistory } from 'history';
|
|
5
4
|
import { EditorState } from 'prosemirror-state';
|
|
6
5
|
import { EditorView } from 'prosemirror-view';
|
|
7
6
|
import plugins from '../../configs/editor-plugins';
|
|
7
|
+
import { defaultCapabilities } from '../../testing/default-capabilities';
|
|
8
8
|
import sectionCategories from '../../testing/section-categories.json';
|
|
9
9
|
import { PopperManager } from '../popper';
|
|
10
10
|
import { getMatchingDescendant } from '../utils';
|
|
@@ -37,7 +37,7 @@ const buildProps = (doc) => ({
|
|
|
37
37
|
download: () => undefined,
|
|
38
38
|
upload: () => undefined,
|
|
39
39
|
},
|
|
40
|
-
getCapabilities: () =>
|
|
40
|
+
getCapabilities: () => defaultCapabilities,
|
|
41
41
|
cslProps: {
|
|
42
42
|
style: '',
|
|
43
43
|
locale: '',
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2025 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export var Actions;
|
|
17
|
+
(function (Actions) {
|
|
18
|
+
Actions["updateAttachment"] = "update-attachment";
|
|
19
|
+
Actions["updateDueDate"] = "update-due-date";
|
|
20
|
+
Actions["addNote"] = "add-note";
|
|
21
|
+
Actions["setMainManuscript"] = "set-main-manuscript";
|
|
22
|
+
Actions["editWithoutTracking"] = "edit-without-tracking";
|
|
23
|
+
})(Actions || (Actions = {}));
|
package/dist/es/lib/normalize.js
CHANGED
|
@@ -23,7 +23,7 @@ export const normalizeAuthor = (author) => {
|
|
|
23
23
|
email: author.email || '',
|
|
24
24
|
isCorresponding: author.isCorresponding || false,
|
|
25
25
|
ORCIDIdentifier: author.ORCIDIdentifier || '',
|
|
26
|
-
priority: author.priority
|
|
26
|
+
priority: author.priority,
|
|
27
27
|
isJointContributor: author.isJointContributor || false,
|
|
28
28
|
userID: author.userID || '',
|
|
29
29
|
invitationID: author.invitationID || '',
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2025 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export const defaultCapabilities = {
|
|
17
|
+
handleSuggestion: true,
|
|
18
|
+
editWithoutTracking: true,
|
|
19
|
+
rejectOwnSuggestion: true,
|
|
20
|
+
handleOwnComments: true,
|
|
21
|
+
handleOthersComments: true,
|
|
22
|
+
resolveOwnComment: true,
|
|
23
|
+
resolveOthersComment: true,
|
|
24
|
+
createComment: true,
|
|
25
|
+
downloadFiles: true,
|
|
26
|
+
changeDesignation: true,
|
|
27
|
+
moveFile: true,
|
|
28
|
+
replaceFile: true,
|
|
29
|
+
uploadFile: true,
|
|
30
|
+
detachFile: true,
|
|
31
|
+
setMainManuscript: true,
|
|
32
|
+
editArticle: true,
|
|
33
|
+
formatArticle: true,
|
|
34
|
+
editMetadata: true,
|
|
35
|
+
editCitationsAndRefs: true,
|
|
36
|
+
seeEditorToolbar: true,
|
|
37
|
+
seeReferencesButtons: true,
|
|
38
|
+
};
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
import { getAllPermitted } from '@manuscripts/style-guide';
|
|
17
16
|
import { schema, } from '@manuscripts/transform';
|
|
18
17
|
import { createBrowserHistory } from 'history';
|
|
19
18
|
import { PopperManager } from '../lib/popper';
|
|
19
|
+
import { defaultCapabilities } from './default-capabilities';
|
|
20
20
|
import emptyEditorDocJson from './empty-editor-doc.json';
|
|
21
21
|
import sectionCategories from './section-categories.json';
|
|
22
22
|
const theme = {};
|
|
@@ -70,7 +70,7 @@ export const defaultEditorProps = {
|
|
|
70
70
|
download: () => { },
|
|
71
71
|
},
|
|
72
72
|
getCapabilities: () => ({
|
|
73
|
-
...
|
|
73
|
+
...defaultCapabilities,
|
|
74
74
|
editWithoutTracking: true,
|
|
75
75
|
}),
|
|
76
76
|
cslProps: {
|
package/dist/es/versions.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '3.6.
|
|
1
|
+
export const VERSION = '3.6.16';
|
|
2
2
|
export const MATHJAX_VERSION = '3.2.2';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Capabilities } from '@manuscripts/style-guide';
|
|
2
1
|
import { ManuscriptEditorView, ManuscriptNode } from '@manuscripts/transform';
|
|
3
2
|
import React from 'react';
|
|
3
|
+
import { Capabilities } from '../../lib/capabilities';
|
|
4
4
|
export interface TreeItem {
|
|
5
5
|
index: number;
|
|
6
6
|
items: TreeItem[];
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
import { Capabilities } from '@manuscripts/style-guide';
|
|
17
16
|
import { ManuscriptEditorView, ManuscriptNode } from '@manuscripts/transform';
|
|
18
17
|
import React from 'react';
|
|
18
|
+
import { Capabilities } from '../../lib/capabilities';
|
|
19
19
|
export interface ManuscriptOutlineProps {
|
|
20
20
|
doc: ManuscriptNode | null;
|
|
21
21
|
can?: Capabilities;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Capabilities } from '@manuscripts/style-guide';
|
|
2
1
|
import { FigureNode } from '@manuscripts/transform';
|
|
3
2
|
import { Node as ManuscriptNode } from 'prosemirror-model';
|
|
4
3
|
import React from 'react';
|
|
4
|
+
import { Capabilities } from '../../lib/capabilities';
|
|
5
5
|
import { FileAttachment } from '../../lib/files';
|
|
6
6
|
import { ReactViewComponentProps } from '../../views/ReactSubView';
|
|
7
7
|
export interface FigureDropdownProps {
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import 'prosemirror-view/style/prosemirror.css';
|
|
17
17
|
import { UserProfile } from '@manuscripts/json-schema';
|
|
18
|
-
import { Capabilities } from '@manuscripts/style-guide';
|
|
19
18
|
import { ManuscriptNode, ManuscriptNodeType, SectionCategory } from '@manuscripts/transform';
|
|
20
19
|
import { EditorState } from 'prosemirror-state';
|
|
21
20
|
import { EditorView } from 'prosemirror-view';
|
|
@@ -24,6 +23,7 @@ import { DefaultTheme } from 'styled-components';
|
|
|
24
23
|
import { CollabProvider } from '../classes/collabProvider';
|
|
25
24
|
import { Dispatch } from '../commands';
|
|
26
25
|
import { Language } from '../components/LanguageDropdown/languages';
|
|
26
|
+
import { Capabilities } from '../lib/capabilities';
|
|
27
27
|
import { FileAttachment, FileManagement } from '../lib/files';
|
|
28
28
|
import { PopperManager } from '../lib/popper';
|
|
29
29
|
export type CSLProps = {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export { ChangeReceiver } from './types';
|
|
|
25
25
|
export { CollabProvider } from './classes/collabProvider';
|
|
26
26
|
export { PopperManager } from './lib/popper';
|
|
27
27
|
export * from './toolbar';
|
|
28
|
+
export * from './lib/capabilities';
|
|
28
29
|
export * from './lib/comments';
|
|
29
30
|
export * from './lib/files';
|
|
30
31
|
export * from './lib/footnotes';
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2025 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export type Capabilities = {
|
|
17
|
+
handleSuggestion: boolean;
|
|
18
|
+
editWithoutTracking: boolean;
|
|
19
|
+
rejectOwnSuggestion: boolean;
|
|
20
|
+
handleOwnComments: boolean;
|
|
21
|
+
resolveOwnComment: boolean;
|
|
22
|
+
handleOthersComments: boolean;
|
|
23
|
+
resolveOthersComment: boolean;
|
|
24
|
+
createComment: boolean;
|
|
25
|
+
downloadFiles: boolean;
|
|
26
|
+
changeDesignation: boolean;
|
|
27
|
+
moveFile: boolean;
|
|
28
|
+
replaceFile: boolean;
|
|
29
|
+
uploadFile: boolean;
|
|
30
|
+
detachFile: boolean;
|
|
31
|
+
setMainManuscript: boolean;
|
|
32
|
+
formatArticle: boolean;
|
|
33
|
+
editArticle: boolean;
|
|
34
|
+
editMetadata: boolean;
|
|
35
|
+
editCitationsAndRefs: boolean;
|
|
36
|
+
seeEditorToolbar: boolean;
|
|
37
|
+
seeReferencesButtons: boolean;
|
|
38
|
+
};
|
|
39
|
+
export declare enum Actions {
|
|
40
|
+
updateAttachment = "update-attachment",
|
|
41
|
+
updateDueDate = "update-due-date",
|
|
42
|
+
addNote = "add-note",
|
|
43
|
+
setMainManuscript = "set-main-manuscript",
|
|
44
|
+
editWithoutTracking = "edit-without-tracking"
|
|
45
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2025 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { Capabilities } from '../lib/capabilities';
|
|
17
|
+
export declare const defaultCapabilities: Capabilities;
|
package/dist/types/versions.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "3.6.
|
|
1
|
+
export declare const VERSION = "3.6.16";
|
|
2
2
|
export declare const MATHJAX_VERSION = "3.2.2";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manuscripts/body-editor",
|
|
3
3
|
"description": "Prosemirror components for editing and viewing manuscripts",
|
|
4
|
-
"version": "3.6.
|
|
4
|
+
"version": "3.6.16",
|
|
5
5
|
"repository": "github:Atypon-OpenSource/manuscripts-body-editor",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "dist/cjs",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@citation-js/plugin-ris": "0.7.18",
|
|
39
39
|
"@iarna/word-count": "1.1.2",
|
|
40
40
|
"@manuscripts/json-schema": "2.2.12",
|
|
41
|
-
"@manuscripts/style-guide": "3.3.
|
|
41
|
+
"@manuscripts/style-guide": "3.3.5",
|
|
42
42
|
"@manuscripts/track-changes-plugin": "2.1.0",
|
|
43
43
|
"@manuscripts/transform": "4.3.6",
|
|
44
44
|
"@popperjs/core": "2.11.8",
|