@tinacms/mdx 0.0.0-bdea884-20250606054015 → 0.0.0-be4681c-20250619070932

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.
@@ -4,5 +4,4 @@ import type * as Plate from '../../parse/plate';
4
4
  import type { RootElement } from '../../parse/plate';
5
5
  export declare const preProcess: (tree: RootElement, field: RichTextField, imageCallback: (url: string) => string) => Md.Root;
6
6
  export declare const rootElement: (content: Plate.RootElement, field: RichTextField, imageCallback: (url: string) => string) => Md.Root;
7
- export declare const codeLinesToString: (children: any[]) => any[];
8
7
  export declare const blockElement: (content: Plate.BlockElement, field: RichTextField, imageCallback: (url: string) => string) => Md.Content | null;
@@ -0,0 +1,2 @@
1
+ import { RichTextField } from '@tinacms/schema-tools';
2
+ export declare const field: RichTextField;
@@ -0,0 +1 @@
1
+ export {};
@@ -2,3 +2,4 @@ export declare function removePosition(tree: any): any;
2
2
  export declare const print: (tree: object) => string;
3
3
  export declare const nodePath: (dir: string) => string;
4
4
  export declare const mdPath: (dir: string) => string;
5
+ export declare const jsonPath: (dir: string) => string;
@@ -3,9 +3,9 @@
3
3
 
4
4
 
5
5
  */
6
- import { RichTextParseError } from './remarkToPlate';
7
6
  import type { RichTextType } from '@tinacms/schema-tools';
8
7
  import type * as Plate from './plate';
8
+ import { RichTextParseError } from './remarkToPlate';
9
9
  /**
10
10
  * ### Convert the MDXAST into an API-friendly format
11
11
  *
@@ -17,17 +17,14 @@ export type BlockquoteElement = {
17
17
  type: 'blockquote';
18
18
  children: InlineElement[];
19
19
  };
20
- export type CodeLineElement = {
21
- type: 'code_line';
22
- children: {
23
- text: string;
24
- }[];
25
- };
20
+ /**
21
+ * @group BlockElement
22
+ */
26
23
  export type CodeBlockElement = {
27
24
  type: 'code_block';
28
25
  lang?: string;
29
- value?: string;
30
- children: CodeLineElement[];
26
+ value: string;
27
+ children: [EmptyTextElement];
31
28
  };
32
29
  /**
33
30
  * @group BlockElement
@@ -143,10 +140,18 @@ export type TableElement = {
143
140
  children: TableRowElement[];
144
141
  props: Record<string, unknown>;
145
142
  };
143
+ /**
144
+ * @group MermaidElement
145
+ */
146
+ export type MermaidElement = {
147
+ type: 'mermaid';
148
+ value: string;
149
+ children: [EmptyTextElement];
150
+ };
146
151
  /**
147
152
  * @group BlockElement
148
153
  */
149
- export type BlockElement = BlockquoteElement | CodeBlockElement | HeadingElement | HrElement | HTMLElement | ImageElement | InvalidMarkdownElement | ListItemElement | MdxBlockElement | ParagraphElement | OrderedListElement | UnorderedListElement | TableCellElement | TableRowElement | TableElement;
154
+ export type BlockElement = BlockquoteElement | CodeBlockElement | HeadingElement | HrElement | HTMLElement | ImageElement | InvalidMarkdownElement | ListItemElement | MdxBlockElement | ParagraphElement | MermaidElement | OrderedListElement | UnorderedListElement | TableCellElement | TableRowElement | TableElement;
150
155
  /**
151
156
  * @group InlineElement
152
157
  */
@@ -1,7 +1,7 @@
1
1
  import type { RichTextField } from '@tinacms/schema-tools';
2
+ import type * as Md from 'mdast';
2
3
  import type { MdxJsxAttribute } from 'mdast-util-mdx-jsx';
3
4
  import * as Plate from '../parse/plate';
4
- import type * as Md from 'mdast';
5
5
  export declare const stringifyPropsInline: (element: Plate.MdxInlineElement, field: RichTextField, imageCallback: (url: string) => string) => {
6
6
  attributes: MdxJsxAttribute[];
7
7
  children: Md.PhrasingContent[];
@@ -1,11 +1,6 @@
1
- /**
2
-
3
-
4
-
5
- */
6
- import { MdxJsxTextElement, MdxJsxFlowElement } from 'mdast-util-mdx-jsx';
7
1
  import type { RichTextType } from '@tinacms/schema-tools';
8
2
  import type * as Md from 'mdast';
3
+ import { MdxJsxFlowElement, MdxJsxTextElement } from 'mdast-util-mdx-jsx';
9
4
  import type * as Plate from '../parse/plate';
10
5
  declare module 'mdast' {
11
6
  interface StaticPhrasingContentMap {
@@ -21,6 +16,7 @@ declare module 'mdast' {
21
16
  mdxJsxFlowElement: MdxJsxFlowElement;
22
17
  }
23
18
  }
19
+ export declare const formatMdxForPersistence: (value: Plate.RootElement, field: RichTextType, imageCallback: (url: string) => string) => Plate.RootElement | string | undefined;
24
20
  export declare const stringifyMDX: (value: Plate.RootElement, field: RichTextType, imageCallback: (url: string) => string) => string | undefined;
25
21
  export type Pattern = {
26
22
  start: string;
@@ -31,7 +27,6 @@ export type Pattern = {
31
27
  };
32
28
  export declare const toTinaMarkdown: (tree: Md.Root, field: RichTextType) => string;
33
29
  export declare const rootElement: (content: Plate.RootElement, field: RichTextType, imageCallback: (url: string) => string) => Md.Root;
34
- export declare function codeLinesToString(content: Plate.CodeBlockElement): string;
35
30
  export declare const blockElement: (content: Plate.BlockElement, field: RichTextType, imageCallback: (url: string) => string) => Md.Content | null;
36
31
  export type Marks = 'strong' | 'emphasis' | 'inlineCode' | 'delete';
37
32
  export declare const getMarks: (content: Plate.InlineElement) => Marks[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/mdx",
3
- "version": "0.0.0-bdea884-20250606054015",
3
+ "version": "0.0.0-be4681c-20250619070932",
4
4
  "typings": "dist/index.d.ts",
5
5
  "main": "dist/index.js",
6
6
  "browser": "dist/index.browser.mjs",
@@ -56,7 +56,7 @@
56
56
  "unist-util-visit": "4.1.2",
57
57
  "uvu": "0.5.6",
58
58
  "vfile-message": "3.1.4",
59
- "@tinacms/schema-tools": "0.0.0-bdea884-20250606054015"
59
+ "@tinacms/schema-tools": "0.0.0-be4681c-20250619070932"
60
60
  },
61
61
  "publishConfig": {
62
62
  "registry": "https://registry.npmjs.org"
@@ -80,7 +80,7 @@
80
80
  "typescript": "^5.7.3",
81
81
  "vite": "^4.5.9",
82
82
  "vitest": "^0.32.4",
83
- "@tinacms/scripts": "0.0.0-bdea884-20250606054015"
83
+ "@tinacms/scripts": "1.3.5"
84
84
  },
85
85
  "scripts": {
86
86
  "types": "tsc",