@manuscripts/transform 4.4.5 → 4.5.0

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.
@@ -18,6 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
18
18
  exports.altText = void 0;
19
19
  exports.altText = {
20
20
  content: 'text*',
21
+ isolating: true,
21
22
  attrs: {
22
23
  id: { default: '' },
23
24
  },
@@ -18,6 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
18
18
  exports.longDesc = void 0;
19
19
  exports.longDesc = {
20
20
  content: 'text*',
21
+ isolating: true,
21
22
  attrs: {
22
23
  id: { default: '' },
23
24
  },
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = "4.4.5";
4
+ exports.VERSION = "4.5.0";
@@ -15,6 +15,7 @@
15
15
  */
16
16
  export const altText = {
17
17
  content: 'text*',
18
+ isolating: true,
18
19
  attrs: {
19
20
  id: { default: '' },
20
21
  },
@@ -15,6 +15,7 @@
15
15
  */
16
16
  export const longDesc = {
17
17
  content: 'text*',
18
+ isolating: true,
18
19
  attrs: {
19
20
  id: { default: '' },
20
21
  },
@@ -1 +1 @@
1
- export const VERSION = "4.4.5";
1
+ export const VERSION = "4.5.0";
@@ -63,8 +63,7 @@ export type ManuscriptTemplate = {
63
63
  export interface UserProfile {
64
64
  _id: string;
65
65
  userID: string;
66
- given?: string;
67
- family?: string;
66
+ connectID: string;
68
67
  }
69
68
  export interface Project {
70
69
  _id: string;
@@ -1 +1 @@
1
- export declare const VERSION = "4.4.5";
1
+ export declare const VERSION = "4.5.0";
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.4.5",
4
+ "version": "4.5.0",
5
5
  "repository": "github:Atypon-OpenSource/manuscripts-transform",
6
6
  "license": "Apache-2.0",
7
7
  "main": "dist/cjs",
@@ -28,6 +28,7 @@ export interface AltTextNode extends ManuscriptNode {
28
28
 
29
29
  export const altText: NodeSpec = {
30
30
  content: 'text*',
31
+ isolating: true,
31
32
  attrs: {
32
33
  id: { default: '' },
33
34
  },
@@ -28,6 +28,7 @@ export interface LongDescNode extends ManuscriptNode {
28
28
 
29
29
  export const longDesc: NodeSpec = {
30
30
  content: 'text*',
31
+ isolating: true,
31
32
  attrs: {
32
33
  id: { default: '' },
33
34
  },
@@ -192,8 +192,7 @@ export type ManuscriptTemplate = {
192
192
  export interface UserProfile {
193
193
  _id: string
194
194
  userID: string
195
- given?: string
196
- family?: string
195
+ connectID: string
197
196
  }
198
197
 
199
198
  export interface Project {
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = "4.4.5";
1
+ export const VERSION = "4.5.0";