@manuscripts/transform 3.0.4 → 3.0.5-LEAN-3958.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.
- package/dist/cjs/schema/nodes/inline_footnote.js +0 -1
- package/dist/cjs/transformer/node-names.js +18 -3
- package/dist/cjs/version.js +1 -1
- package/dist/es/schema/nodes/inline_footnote.js +0 -1
- package/dist/es/transformer/node-names.js +18 -3
- package/dist/es/version.js +1 -1
- package/dist/types/lib/table-cell-styles.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -18,26 +18,41 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18
18
|
exports.nodeNames = void 0;
|
|
19
19
|
const schema_1 = require("../schema");
|
|
20
20
|
exports.nodeNames = new Map([
|
|
21
|
+
[schema_1.schema.nodes.title, 'Title'],
|
|
22
|
+
[schema_1.schema.nodes.contributor, 'Author'],
|
|
23
|
+
[schema_1.schema.nodes.keywords, 'Keywords'],
|
|
24
|
+
[schema_1.schema.nodes.keyword, 'Keyword'],
|
|
21
25
|
[schema_1.schema.nodes.bibliography_element, 'Bibliography'],
|
|
26
|
+
[schema_1.schema.nodes.bibliography_item, 'Reference'],
|
|
22
27
|
[schema_1.schema.nodes.bibliography_section, 'Section'],
|
|
23
28
|
[schema_1.schema.nodes.citation, 'Citation'],
|
|
24
29
|
[schema_1.schema.nodes.listing_element, 'Listing'],
|
|
25
30
|
[schema_1.schema.nodes.cross_reference, 'Cross Reference'],
|
|
26
31
|
[schema_1.schema.nodes.equation_element, 'Equation'],
|
|
27
32
|
[schema_1.schema.nodes.figure_element, 'Figure'],
|
|
33
|
+
[schema_1.schema.nodes.table_element, 'Table'],
|
|
34
|
+
[schema_1.schema.nodes.table_cell, 'Table Cell'],
|
|
35
|
+
[schema_1.schema.nodes.table_col, 'Table Column'],
|
|
36
|
+
[schema_1.schema.nodes.table_row, 'Table Row'],
|
|
37
|
+
[schema_1.schema.nodes.table_header, 'Table Header'],
|
|
38
|
+
[schema_1.schema.nodes.general_table_footnote, 'General Table note'],
|
|
39
|
+
[schema_1.schema.nodes.table_element_footer, 'Table Footer'],
|
|
40
|
+
[schema_1.schema.nodes.equation, 'Equation'],
|
|
41
|
+
[schema_1.schema.nodes.inline_equation, 'Inline Equation'],
|
|
42
|
+
[schema_1.schema.nodes.inline_footnote, 'Footnote Reference'],
|
|
28
43
|
[schema_1.schema.nodes.footnote, 'Footnote'],
|
|
29
44
|
[schema_1.schema.nodes.footnotes_element, 'Notes'],
|
|
30
45
|
[schema_1.schema.nodes.list, 'List'],
|
|
46
|
+
[schema_1.schema.nodes.list_item, 'List Item'],
|
|
31
47
|
[schema_1.schema.nodes.manuscript, 'Manuscript'],
|
|
32
48
|
[schema_1.schema.nodes.paragraph, 'Paragraph'],
|
|
33
49
|
[schema_1.schema.nodes.section, 'Section'],
|
|
34
|
-
[schema_1.schema.nodes.section_title, 'Section'],
|
|
35
|
-
[schema_1.schema.nodes.section_title_plain, 'Section'],
|
|
50
|
+
[schema_1.schema.nodes.section_title, 'Section Title'],
|
|
51
|
+
[schema_1.schema.nodes.section_title_plain, 'Section Title'],
|
|
36
52
|
[schema_1.schema.nodes.table, 'Table'],
|
|
37
53
|
[schema_1.schema.nodes.table_element, 'Table'],
|
|
38
54
|
[schema_1.schema.nodes.blockquote_element, 'Block Quote'],
|
|
39
55
|
[schema_1.schema.nodes.pullquote_element, 'Pull Quote'],
|
|
40
|
-
[schema_1.schema.nodes.keywords, 'Section'],
|
|
41
56
|
[schema_1.schema.nodes.toc_section, 'Section'],
|
|
42
57
|
[schema_1.schema.nodes.box_element, 'Box'],
|
|
43
58
|
]);
|
package/dist/cjs/version.js
CHANGED
|
@@ -15,26 +15,41 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { schema } from '../schema';
|
|
17
17
|
export const nodeNames = new Map([
|
|
18
|
+
[schema.nodes.title, 'Title'],
|
|
19
|
+
[schema.nodes.contributor, 'Author'],
|
|
20
|
+
[schema.nodes.keywords, 'Keywords'],
|
|
21
|
+
[schema.nodes.keyword, 'Keyword'],
|
|
18
22
|
[schema.nodes.bibliography_element, 'Bibliography'],
|
|
23
|
+
[schema.nodes.bibliography_item, 'Reference'],
|
|
19
24
|
[schema.nodes.bibliography_section, 'Section'],
|
|
20
25
|
[schema.nodes.citation, 'Citation'],
|
|
21
26
|
[schema.nodes.listing_element, 'Listing'],
|
|
22
27
|
[schema.nodes.cross_reference, 'Cross Reference'],
|
|
23
28
|
[schema.nodes.equation_element, 'Equation'],
|
|
24
29
|
[schema.nodes.figure_element, 'Figure'],
|
|
30
|
+
[schema.nodes.table_element, 'Table'],
|
|
31
|
+
[schema.nodes.table_cell, 'Table Cell'],
|
|
32
|
+
[schema.nodes.table_col, 'Table Column'],
|
|
33
|
+
[schema.nodes.table_row, 'Table Row'],
|
|
34
|
+
[schema.nodes.table_header, 'Table Header'],
|
|
35
|
+
[schema.nodes.general_table_footnote, 'General Table note'],
|
|
36
|
+
[schema.nodes.table_element_footer, 'Table Footer'],
|
|
37
|
+
[schema.nodes.equation, 'Equation'],
|
|
38
|
+
[schema.nodes.inline_equation, 'Inline Equation'],
|
|
39
|
+
[schema.nodes.inline_footnote, 'Footnote Reference'],
|
|
25
40
|
[schema.nodes.footnote, 'Footnote'],
|
|
26
41
|
[schema.nodes.footnotes_element, 'Notes'],
|
|
27
42
|
[schema.nodes.list, 'List'],
|
|
43
|
+
[schema.nodes.list_item, 'List Item'],
|
|
28
44
|
[schema.nodes.manuscript, 'Manuscript'],
|
|
29
45
|
[schema.nodes.paragraph, 'Paragraph'],
|
|
30
46
|
[schema.nodes.section, 'Section'],
|
|
31
|
-
[schema.nodes.section_title, 'Section'],
|
|
32
|
-
[schema.nodes.section_title_plain, 'Section'],
|
|
47
|
+
[schema.nodes.section_title, 'Section Title'],
|
|
48
|
+
[schema.nodes.section_title_plain, 'Section Title'],
|
|
33
49
|
[schema.nodes.table, 'Table'],
|
|
34
50
|
[schema.nodes.table_element, 'Table'],
|
|
35
51
|
[schema.nodes.blockquote_element, 'Block Quote'],
|
|
36
52
|
[schema.nodes.pullquote_element, 'Pull Quote'],
|
|
37
|
-
[schema.nodes.keywords, 'Section'],
|
|
38
53
|
[schema.nodes.toc_section, 'Section'],
|
|
39
54
|
[schema.nodes.box_element, 'Box'],
|
|
40
55
|
]);
|
package/dist/es/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "3.0.
|
|
1
|
+
export const VERSION = "3.0.5-LEAN-3958.0";
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
export declare const TABLE_CELL_STYLES: readonly ["backgroundColor", "border-top", "border-right", "border-bottom", "border-left", "verticalAlign", "textAlign"];
|
|
17
|
-
export type TableCellStyleKey = typeof TABLE_CELL_STYLES[number];
|
|
17
|
+
export type TableCellStyleKey = (typeof TABLE_CELL_STYLES)[number];
|
|
18
18
|
export declare const serializeTableCellStyles: (styles: {
|
|
19
19
|
backgroundColor?: string | null | undefined;
|
|
20
20
|
"border-top"?: string | null | undefined;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "3.0.
|
|
1
|
+
export declare const VERSION = "3.0.5-LEAN-3958.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": "3.0.
|
|
4
|
+
"version": "3.0.5-LEAN-3958.0",
|
|
5
5
|
"repository": "github:Atypon-OpenSource/manuscripts-transform",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "dist/cjs",
|