@manuscripts/transform 4.3.52 → 4.3.53
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/schema/types.js +18 -0
- package/dist/cjs/version.js +1 -1
- package/dist/es/schema/types.js +17 -0
- package/dist/es/version.js +1 -1
- package/dist/types/schema/types.d.ts +16 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/cjs/schema/types.js
CHANGED
|
@@ -15,7 +15,25 @@
|
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.ManuscriptActions = void 0;
|
|
18
19
|
exports.isNodeOfType = isNodeOfType;
|
|
20
|
+
var ManuscriptActions;
|
|
21
|
+
(function (ManuscriptActions) {
|
|
22
|
+
ManuscriptActions["handleSuggestion"] = "handleSuggestion";
|
|
23
|
+
ManuscriptActions["rejectOwnSuggestion"] = "rejectOwnSuggestion";
|
|
24
|
+
ManuscriptActions["handleOwnComments"] = "handleOwnComments";
|
|
25
|
+
ManuscriptActions["handleOthersComments"] = "handleOthersComments";
|
|
26
|
+
ManuscriptActions["resolveOwnComment"] = "resolveOwnComment";
|
|
27
|
+
ManuscriptActions["resolveOthersComment"] = "resolveOthersComment";
|
|
28
|
+
ManuscriptActions["createComment"] = "createComment";
|
|
29
|
+
ManuscriptActions["canEditFiles"] = "canEditFiles";
|
|
30
|
+
ManuscriptActions["editArticle"] = "editArticle";
|
|
31
|
+
ManuscriptActions["formatArticle"] = "formatArticle";
|
|
32
|
+
ManuscriptActions["editMetadata"] = "editMetadata";
|
|
33
|
+
ManuscriptActions["editCitationsAndRefs"] = "editCitationsAndRefs";
|
|
34
|
+
ManuscriptActions["seeEditorToolbar"] = "seeEditorToolbar";
|
|
35
|
+
ManuscriptActions["seeReferencesButtons"] = "seeReferencesButtons";
|
|
36
|
+
})(ManuscriptActions || (exports.ManuscriptActions = ManuscriptActions = {}));
|
|
19
37
|
function isNodeOfType(node, type) {
|
|
20
38
|
return node.type === type;
|
|
21
39
|
}
|
package/dist/cjs/version.js
CHANGED
package/dist/es/schema/types.js
CHANGED
|
@@ -13,6 +13,23 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
+
export var ManuscriptActions;
|
|
17
|
+
(function (ManuscriptActions) {
|
|
18
|
+
ManuscriptActions["handleSuggestion"] = "handleSuggestion";
|
|
19
|
+
ManuscriptActions["rejectOwnSuggestion"] = "rejectOwnSuggestion";
|
|
20
|
+
ManuscriptActions["handleOwnComments"] = "handleOwnComments";
|
|
21
|
+
ManuscriptActions["handleOthersComments"] = "handleOthersComments";
|
|
22
|
+
ManuscriptActions["resolveOwnComment"] = "resolveOwnComment";
|
|
23
|
+
ManuscriptActions["resolveOthersComment"] = "resolveOthersComment";
|
|
24
|
+
ManuscriptActions["createComment"] = "createComment";
|
|
25
|
+
ManuscriptActions["canEditFiles"] = "canEditFiles";
|
|
26
|
+
ManuscriptActions["editArticle"] = "editArticle";
|
|
27
|
+
ManuscriptActions["formatArticle"] = "formatArticle";
|
|
28
|
+
ManuscriptActions["editMetadata"] = "editMetadata";
|
|
29
|
+
ManuscriptActions["editCitationsAndRefs"] = "editCitationsAndRefs";
|
|
30
|
+
ManuscriptActions["seeEditorToolbar"] = "seeEditorToolbar";
|
|
31
|
+
ManuscriptActions["seeReferencesButtons"] = "seeReferencesButtons";
|
|
32
|
+
})(ManuscriptActions || (ManuscriptActions = {}));
|
|
16
33
|
export function isNodeOfType(node, type) {
|
|
17
34
|
return node.type === type;
|
|
18
35
|
}
|
package/dist/es/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "4.3.
|
|
1
|
+
export const VERSION = "4.3.53";
|
|
@@ -82,6 +82,22 @@ export interface Bundle {
|
|
|
82
82
|
_id: string;
|
|
83
83
|
};
|
|
84
84
|
}
|
|
85
|
+
export declare enum ManuscriptActions {
|
|
86
|
+
handleSuggestion = "handleSuggestion",
|
|
87
|
+
rejectOwnSuggestion = "rejectOwnSuggestion",
|
|
88
|
+
handleOwnComments = "handleOwnComments",
|
|
89
|
+
handleOthersComments = "handleOthersComments",
|
|
90
|
+
resolveOwnComment = "resolveOwnComment",
|
|
91
|
+
resolveOthersComment = "resolveOthersComment",
|
|
92
|
+
createComment = "createComment",
|
|
93
|
+
canEditFiles = "canEditFiles",
|
|
94
|
+
editArticle = "editArticle",
|
|
95
|
+
formatArticle = "formatArticle",
|
|
96
|
+
editMetadata = "editMetadata",
|
|
97
|
+
editCitationsAndRefs = "editCitationsAndRefs",
|
|
98
|
+
seeEditorToolbar = "seeEditorToolbar",
|
|
99
|
+
seeReferencesButtons = "seeReferencesButtons"
|
|
100
|
+
}
|
|
85
101
|
export type MarkRule = ParseRule & {
|
|
86
102
|
mark: Marks | null;
|
|
87
103
|
};
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "4.3.
|
|
1
|
+
export declare const VERSION = "4.3.53";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manuscripts/transform",
|
|
3
3
|
"description": "ProseMirror transformer for Manuscripts applications",
|
|
4
|
-
"version": "4.3.
|
|
4
|
+
"version": "4.3.53",
|
|
5
5
|
"repository": "github:Atypon-OpenSource/manuscripts-transform",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "dist/cjs",
|