@manuscripts/transform 2.1.10 → 2.1.12

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.
@@ -743,6 +743,9 @@ class JATSExporter {
743
743
  return ['fn', attrs, 0];
744
744
  },
745
745
  footnotes_element: (node) => {
746
+ if (!node.textContent) {
747
+ return '';
748
+ }
746
749
  const kind = node.attrs.kind;
747
750
  let tag = 'fn-group';
748
751
  if (kind && kind.includes('table')) {
@@ -15,12 +15,7 @@ exports.affiliation = {
15
15
  county: { default: '' },
16
16
  city: { default: '' },
17
17
  priority: { default: undefined },
18
- email: {
19
- default: {
20
- href: undefined,
21
- text: undefined,
22
- },
23
- },
18
+ email: { default: undefined },
24
19
  dataTracked: { default: null },
25
20
  },
26
21
  group: 'block',
@@ -19,7 +19,6 @@ exports.tableCol = exports.tableColGroup = void 0;
19
19
  exports.tableColGroup = {
20
20
  content: 'table_col+',
21
21
  group: 'block',
22
- tableRole: 'colgroup',
23
22
  parseDOM: [
24
23
  {
25
24
  tag: 'colgroup',
@@ -34,7 +33,6 @@ exports.tableCol = {
34
33
  width: { default: '' },
35
34
  },
36
35
  group: 'block',
37
- tableRole: 'col',
38
36
  parseDOM: [
39
37
  {
40
38
  tag: 'col',
@@ -19,8 +19,9 @@ exports.tableElementFooter = void 0;
19
19
  exports.tableElementFooter = {
20
20
  attrs: {
21
21
  id: { default: '' },
22
+ dataTracked: { default: null }
22
23
  },
23
- content: '(paragraph | footnotes_element)+',
24
+ content: '(paragraph | footnotes_element)*',
24
25
  group: 'block element',
25
26
  toDOM: () => ['table-wrap-foot', 0],
26
27
  };
@@ -735,6 +735,9 @@ export class JATSExporter {
735
735
  return ['fn', attrs, 0];
736
736
  },
737
737
  footnotes_element: (node) => {
738
+ if (!node.textContent) {
739
+ return '';
740
+ }
738
741
  const kind = node.attrs.kind;
739
742
  let tag = 'fn-group';
740
743
  if (kind && kind.includes('table')) {
@@ -12,12 +12,7 @@ export const affiliation = {
12
12
  county: { default: '' },
13
13
  city: { default: '' },
14
14
  priority: { default: undefined },
15
- email: {
16
- default: {
17
- href: undefined,
18
- text: undefined,
19
- },
20
- },
15
+ email: { default: undefined },
21
16
  dataTracked: { default: null },
22
17
  },
23
18
  group: 'block',
@@ -16,7 +16,6 @@
16
16
  export const tableColGroup = {
17
17
  content: 'table_col+',
18
18
  group: 'block',
19
- tableRole: 'colgroup',
20
19
  parseDOM: [
21
20
  {
22
21
  tag: 'colgroup',
@@ -31,7 +30,6 @@ export const tableCol = {
31
30
  width: { default: '' },
32
31
  },
33
32
  group: 'block',
34
- tableRole: 'col',
35
33
  parseDOM: [
36
34
  {
37
35
  tag: 'col',
@@ -16,8 +16,9 @@
16
16
  export const tableElementFooter = {
17
17
  attrs: {
18
18
  id: { default: '' },
19
+ dataTracked: { default: null }
19
20
  },
20
- content: '(paragraph | footnotes_element)+',
21
+ content: '(paragraph | footnotes_element)*',
21
22
  group: 'block element',
22
23
  toDOM: () => ['table-wrap-foot', 0],
23
24
  };
@@ -13,12 +13,12 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { ManuscriptNode, TableNodeSpec } from '../types';
17
- export type TableColGroupNode = ManuscriptNode;
16
+ import { NodeSpec } from 'prosemirror-model';
17
+ import { ManuscriptNode } from '../types';
18
18
  export interface TableColNode extends ManuscriptNode {
19
19
  attrs: {
20
20
  width: string;
21
21
  };
22
22
  }
23
- export declare const tableColGroup: TableNodeSpec;
24
- export declare const tableCol: TableNodeSpec;
23
+ export declare const tableColGroup: NodeSpec;
24
+ export declare const tableCol: NodeSpec;
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": "2.1.10",
4
+ "version": "2.1.12",
5
5
  "repository": "github:Atypon-OpenSource/manuscripts-transform",
6
6
  "license": "Apache-2.0",
7
7
  "main": "dist/cjs",