@manuscripts/body-editor 3.2.18 → 3.2.19
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/views/FigureDropdown.js +3 -3
- package/dist/cjs/components/views/TableCellContextMenu.js +5 -0
- package/dist/cjs/versions.js +1 -1
- package/dist/es/components/views/FigureDropdown.js +3 -3
- package/dist/es/components/views/TableCellContextMenu.js +5 -0
- package/dist/es/versions.js +1 -1
- package/dist/types/versions.d.ts +1 -1
- package/package.json +2 -2
|
@@ -67,7 +67,7 @@ const OptionsButton = (0, styled_components_1.default)(style_guide_1.IconButton)
|
|
|
67
67
|
height: ${(props) => props.theme.grid.unit * 6}px;
|
|
68
68
|
margin: ${(props) => props.theme.grid.unit}px;
|
|
69
69
|
visibility: hidden;
|
|
70
|
-
background:
|
|
70
|
+
background: #ffffff;
|
|
71
71
|
|
|
72
72
|
&:hover {
|
|
73
73
|
background: #f2fbfc !important;
|
|
@@ -98,8 +98,8 @@ const ListItemButton = (0, styled_components_1.default)(style_guide_1.IconTextBu
|
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
&:is([disabled]) {
|
|
101
|
-
background:
|
|
102
|
-
color: #353535
|
|
101
|
+
background: #ffffff;
|
|
102
|
+
color: #353535;
|
|
103
103
|
opacity: 0.4;
|
|
104
104
|
}
|
|
105
105
|
`;
|
|
@@ -138,6 +138,11 @@ const ActionButton = (0, styled_components_1.default)(style_guide_1.IconTextButt
|
|
|
138
138
|
:hover {
|
|
139
139
|
background: #f2fbfc;
|
|
140
140
|
}
|
|
141
|
+
:disabled {
|
|
142
|
+
color: #353535;
|
|
143
|
+
background-color: #ffffff;
|
|
144
|
+
opacity: 0.4;
|
|
145
|
+
}
|
|
141
146
|
`;
|
|
142
147
|
const Separator = styled_components_1.default.div `
|
|
143
148
|
height: 0;
|
package/dist/cjs/versions.js
CHANGED
|
@@ -60,7 +60,7 @@ const OptionsButton = styled(IconButton) `
|
|
|
60
60
|
height: ${(props) => props.theme.grid.unit * 6}px;
|
|
61
61
|
margin: ${(props) => props.theme.grid.unit}px;
|
|
62
62
|
visibility: hidden;
|
|
63
|
-
background:
|
|
63
|
+
background: #ffffff;
|
|
64
64
|
|
|
65
65
|
&:hover {
|
|
66
66
|
background: #f2fbfc !important;
|
|
@@ -91,8 +91,8 @@ const ListItemButton = styled(IconTextButton) `
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
&:is([disabled]) {
|
|
94
|
-
background:
|
|
95
|
-
color: #353535
|
|
94
|
+
background: #ffffff;
|
|
95
|
+
color: #353535;
|
|
96
96
|
opacity: 0.4;
|
|
97
97
|
}
|
|
98
98
|
`;
|
package/dist/es/versions.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '3.2.
|
|
1
|
+
export const VERSION = '3.2.19';
|
|
2
2
|
export const MATHJAX_VERSION = '3.2.2';
|
package/dist/types/versions.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "3.2.
|
|
1
|
+
export declare const VERSION = "3.2.19";
|
|
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.2.
|
|
4
|
+
"version": "3.2.19",
|
|
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-pubmed": "0.3.0",
|
|
39
39
|
"@citation-js/plugin-ris": "0.7.18",
|
|
40
40
|
"@manuscripts/json-schema": "2.2.12",
|
|
41
|
-
"@manuscripts/style-guide": "3.1.
|
|
41
|
+
"@manuscripts/style-guide": "3.1.5",
|
|
42
42
|
"@manuscripts/track-changes-plugin": "2.0.3",
|
|
43
43
|
"@manuscripts/transform": "4.2.4",
|
|
44
44
|
"@popperjs/core": "2.11.8",
|