@manuscripts/article-editor 4.2.19 → 4.2.21
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/components/Inspector.js +44 -1
- package/dist/cjs/components/Inspector.js.map +1 -1
- package/dist/cjs/components/inspector/IssuesPanel.js +171 -0
- package/dist/cjs/components/inspector/IssuesPanel.js.map +1 -0
- package/dist/cjs/components/projects/Inspector.js +25 -5
- package/dist/cjs/components/projects/Inspector.js.map +1 -1
- package/dist/cjs/components/track-changes/suggestion-list/Suggestion.js +2 -7
- package/dist/cjs/components/track-changes/suggestion-list/Suggestion.js.map +1 -1
- package/dist/cjs/hooks/use-connect-editor.js +7 -1
- package/dist/cjs/hooks/use-connect-editor.js.map +1 -1
- package/dist/cjs/hooks/use-inspector-tabs-context.js +1 -0
- package/dist/cjs/hooks/use-inspector-tabs-context.js.map +1 -1
- package/dist/cjs/index.js +3 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/lib/change-handlers.js +1 -1
- package/dist/cjs/lib/change-handlers.js.map +1 -1
- package/dist/cjs/lib/utils.js +8 -1
- package/dist/cjs/lib/utils.js.map +1 -1
- package/dist/cjs/store/Store.js.map +1 -1
- package/dist/es/components/Inspector.js +43 -0
- package/dist/es/components/Inspector.js.map +1 -1
- package/dist/es/components/inspector/IssuesPanel.js +141 -0
- package/dist/es/components/inspector/IssuesPanel.js.map +1 -0
- package/dist/es/components/projects/Inspector.js +27 -7
- package/dist/es/components/projects/Inspector.js.map +1 -1
- package/dist/es/components/track-changes/suggestion-list/Suggestion.js +1 -6
- package/dist/es/components/track-changes/suggestion-list/Suggestion.js.map +1 -1
- package/dist/es/hooks/use-connect-editor.js +8 -2
- package/dist/es/hooks/use-connect-editor.js.map +1 -1
- package/dist/es/hooks/use-inspector-tabs-context.js +1 -0
- package/dist/es/hooks/use-inspector-tabs-context.js.map +1 -1
- package/dist/es/index.js +1 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/lib/change-handlers.js +1 -1
- package/dist/es/lib/change-handlers.js.map +1 -1
- package/dist/es/lib/utils.js +6 -0
- package/dist/es/lib/utils.js.map +1 -1
- package/dist/es/store/Store.js.map +1 -1
- package/dist/types/components/Inspector.d.ts +2 -0
- package/dist/types/components/inspector/IssuesPanel.d.ts +13 -0
- package/dist/types/hooks/use-inspector-tabs-context.d.ts +2 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/lib/utils.d.ts +1 -0
- package/dist/types/store/Store.d.ts +2 -1
- package/package.json +5 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@manuscripts/article-editor",
|
3
|
-
"version": "4.2.
|
3
|
+
"version": "4.2.21",
|
4
4
|
"license": "CPAL-1.0",
|
5
5
|
"description": "React components for editing and viewing manuscripts",
|
6
6
|
"repository": "github:Atypon-OpenSource/manuscripts-article-editor",
|
@@ -31,11 +31,11 @@
|
|
31
31
|
"@fontsource/pt-sans": "5.2.5",
|
32
32
|
"@fontsource/pt-serif": "5.2.5",
|
33
33
|
"@headlessui/react": "2.2.3",
|
34
|
-
"@manuscripts/body-editor": "3.2.
|
34
|
+
"@manuscripts/body-editor": "3.2.16",
|
35
35
|
"@manuscripts/json-schema": "2.2.12",
|
36
|
-
"@manuscripts/style-guide": "3.1.
|
37
|
-
"@manuscripts/track-changes-plugin": "2.0.
|
38
|
-
"@manuscripts/transform": "4.2.
|
36
|
+
"@manuscripts/style-guide": "3.1.4",
|
37
|
+
"@manuscripts/track-changes-plugin": "2.0.3",
|
38
|
+
"@manuscripts/transform": "4.2.3",
|
39
39
|
"@popperjs/core": "2.11.8",
|
40
40
|
"date-fns": "4.1.0",
|
41
41
|
"dompurify": "3.2.5",
|