@manuscripts/transform 4.5.1 → 4.5.2

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.
@@ -19,6 +19,7 @@ exports.isFootnoteNode = exports.footnote = void 0;
19
19
  exports.footnote = {
20
20
  group: 'block',
21
21
  content: 'paragraph+',
22
+ isolating: true,
22
23
  attrs: {
23
24
  id: { default: '' },
24
25
  kind: { default: 'footnote' },
@@ -18,6 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
18
18
  exports.isGeneralTableFootnoteNode = exports.generalTableFootnote = void 0;
19
19
  exports.generalTableFootnote = {
20
20
  content: 'paragraph*',
21
+ isolating: true,
21
22
  attrs: {
22
23
  id: { default: '' },
23
24
  dataTracked: { default: null },
@@ -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.5.1";
4
+ exports.VERSION = "4.5.2";
@@ -16,6 +16,7 @@
16
16
  export const footnote = {
17
17
  group: 'block',
18
18
  content: 'paragraph+',
19
+ isolating: true,
19
20
  attrs: {
20
21
  id: { default: '' },
21
22
  kind: { default: 'footnote' },
@@ -15,6 +15,7 @@
15
15
  */
16
16
  export const generalTableFootnote = {
17
17
  content: 'paragraph*',
18
+ isolating: true,
18
19
  attrs: {
19
20
  id: { default: '' },
20
21
  dataTracked: { default: null },
@@ -1 +1 @@
1
- export const VERSION = "4.5.1";
1
+ export const VERSION = "4.5.2";
@@ -1 +1 @@
1
- export declare const VERSION = "4.5.1";
1
+ export declare const VERSION = "4.5.2";
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.5.1",
4
+ "version": "4.5.2",
5
5
  "repository": "github:Atypon-OpenSource/manuscripts-transform",
6
6
  "license": "Apache-2.0",
7
7
  "main": "dist/cjs",
@@ -38,6 +38,7 @@ export interface FootnoteNode extends ManuscriptNode {
38
38
  export const footnote: NodeSpec = {
39
39
  group: 'block',
40
40
  content: 'paragraph+',
41
+ isolating: true,
41
42
  attrs: {
42
43
  id: { default: '' },
43
44
  kind: { default: 'footnote' },
@@ -28,6 +28,7 @@ export interface GeneralTableFootnoteNode extends ManuscriptNode {
28
28
 
29
29
  export const generalTableFootnote: NodeSpec = {
30
30
  content: 'paragraph*',
31
+ isolating: true,
31
32
  attrs: {
32
33
  id: { default: '' },
33
34
  dataTracked: { default: null },
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = "4.5.1";
1
+ export const VERSION = "4.5.2";