@tinacms/mdx 0.0.0-00d7b85-20251222014449
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/LICENSE +176 -0
- package/dist/extensions/tina-shortcodes/extension.d.ts +3 -0
- package/dist/extensions/tina-shortcodes/factory-attributes.d.ts +2 -0
- package/dist/extensions/tina-shortcodes/factory-name.d.ts +2 -0
- package/dist/extensions/tina-shortcodes/from-markdown.d.ts +2 -0
- package/dist/extensions/tina-shortcodes/shortcode-container.d.ts +3 -0
- package/dist/extensions/tina-shortcodes/shortcode-leaf.d.ts +5 -0
- package/dist/extensions/tina-shortcodes/to-markdown.d.ts +3 -0
- package/dist/index.browser.js +43058 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +44924 -0
- package/dist/next/index.d.ts +2 -0
- package/dist/next/parse/index.d.ts +2 -0
- package/dist/next/parse/markdown.d.ts +2 -0
- package/dist/next/parse/post-processing.d.ts +3 -0
- package/dist/next/shortcodes/index.d.ts +2 -0
- package/dist/next/shortcodes/lib/factory-tag.d.ts +4 -0
- package/dist/next/shortcodes/lib/jsx-flow.d.ts +3 -0
- package/dist/next/shortcodes/lib/jsx-text.d.ts +3 -0
- package/dist/next/shortcodes/lib/syntax.d.ts +18 -0
- package/dist/next/shortcodes/lib/util.d.ts +3 -0
- package/dist/next/shortcodes/mdast/index.d.ts +106 -0
- package/dist/next/stringify/acorn.d.ts +21 -0
- package/dist/next/stringify/index.d.ts +3 -0
- package/dist/next/stringify/marks.d.ts +8 -0
- package/dist/next/stringify/pre-processing.d.ts +8 -0
- package/dist/next/stringify/to-markdown.d.ts +3 -0
- package/dist/next/tests/FIXME-markdown-shortcodes-block-with-html-children-1/field.d.ts +2 -0
- package/dist/next/tests/FIXME-markdown-shortcodes-block-with-html-children-1/index.test.d.ts +1 -0
- package/dist/next/tests/FIXME-markdown-shortcodes-block-with-html-children-2/field.d.ts +2 -0
- package/dist/next/tests/FIXME-markdown-shortcodes-block-with-html-children-2/index.test.d.ts +1 -0
- package/dist/next/tests/FIXME-markdown-shortcodes-with-duplicates/field.d.ts +2 -0
- package/dist/next/tests/FIXME-markdown-shortcodes-with-duplicates/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-autoformat-blockquote-in-list/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-autoformat-blockquote-in-list/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-autoformat-heading-in-blockquote/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-autoformat-heading-in-blockquote/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-autoformat-html/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-autoformat-html/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-autoformat-list-item-style/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-autoformat-list-item-style/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-autoformat-syntax/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-autoformat-syntax/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-break/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-break/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-code-block/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-code-block/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-empty/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-empty/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-image/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-image/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-image-callback/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-image-callback/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-image-in-link/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-image-in-link/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-image-json-as-top-level/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-image-json-as-top-level/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-invalid-mdx/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-invalid-mdx/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-kitchen-sink/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-kitchen-sink/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-links/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-links/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-lists/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-lists/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-marks/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-marks/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-marks-strikethrough/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-marks-strikethrough/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-basic-tables/field.d.ts +2 -0
- package/dist/next/tests/markdown-basic-tables/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-html-issues/field.d.ts +2 -0
- package/dist/next/tests/markdown-html-issues/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-mermaid/field.d.ts +2 -0
- package/dist/next/tests/markdown-mermaid/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-inline/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-inline/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-inline-with-children/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-inline-with-children/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-invalid/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-invalid/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-invalid-2/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-invalid-2/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-invalid-3/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-invalid-3/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-invalid-4/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-invalid-4/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-markdoc/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-markdoc/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-nested-rich-text-children/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-nested-rich-text-children/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-rich-text-children/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-rich-text-children/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-rich-text-children-2/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-rich-text-children-2/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-rich-text-children-3/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-rich-text-children-3/index.test.d.ts +1 -0
- package/dist/next/tests/markdown-shortcodes-unclosed/field.d.ts +2 -0
- package/dist/next/tests/markdown-shortcodes-unclosed/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-basic-nested-objects/field.d.ts +2 -0
- package/dist/next/tests/mdx-basic-nested-objects/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-basic-nested-objects-2/field.d.ts +2 -0
- package/dist/next/tests/mdx-basic-nested-objects-2/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-basic-nested-objects-3/field.d.ts +2 -0
- package/dist/next/tests/mdx-basic-nested-objects-3/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-basic-tables/field.d.ts +2 -0
- package/dist/next/tests/mdx-basic-tables/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-block-object-list-field/field.d.ts +2 -0
- package/dist/next/tests/mdx-block-object-list-field/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-block-object-list-template/field.d.ts +2 -0
- package/dist/next/tests/mdx-block-object-list-template/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-block-scalar-fields/field.d.ts +2 -0
- package/dist/next/tests/mdx-block-scalar-fields/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-blocks-autoformat-nested-mdx/field.d.ts +2 -0
- package/dist/next/tests/mdx-blocks-autoformat-nested-mdx/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-blocks-autoformat-nested-mdx-null-children/field.d.ts +2 -0
- package/dist/next/tests/mdx-blocks-autoformat-nested-mdx-null-children/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-blocks-multiple-rich-text-fields/field.d.ts +2 -0
- package/dist/next/tests/mdx-blocks-multiple-rich-text-fields/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-blocks-rich-text-children/field.d.ts +2 -0
- package/dist/next/tests/mdx-blocks-rich-text-children/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-blocks-rich-text-children-on-one-line/field.d.ts +2 -0
- package/dist/next/tests/mdx-blocks-rich-text-children-on-one-line/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-blocks-rich-text-children-with-an-empty-object-value/field.d.ts +2 -0
- package/dist/next/tests/mdx-blocks-rich-text-children-with-an-empty-object-value/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-table-like-field/field.d.ts +2 -0
- package/dist/next/tests/mdx-table-like-field/index.test.d.ts +1 -0
- package/dist/next/tests/mdx-unregistered-component/field.d.ts +2 -0
- package/dist/next/tests/mdx-unregistered-component/index.test.d.ts +1 -0
- package/dist/next/tests/slatejson/field.d.ts +2 -0
- package/dist/next/tests/slatejson/index.test.d.ts +1 -0
- package/dist/next/tests/unrecognized-shortcodes/field.d.ts +2 -0
- package/dist/next/tests/unrecognized-shortcodes/index.test.d.ts +1 -0
- package/dist/next/tests/util.d.ts +5 -0
- package/dist/next/tests/wordpress-style/field.d.ts +2 -0
- package/dist/next/tests/wordpress-style/index.test.d.ts +1 -0
- package/dist/next/tests/wordpress-style-2/field.d.ts +2 -0
- package/dist/next/tests/wordpress-style-2/index.test.d.ts +1 -0
- package/dist/next/tests/wordpress-style-2-block-with-children/field.d.ts +2 -0
- package/dist/next/tests/wordpress-style-2-block-with-children/index.test.d.ts +1 -0
- package/dist/next/tests/wordpress-style-2-with-children/field.d.ts +2 -0
- package/dist/next/tests/wordpress-style-2-with-children/index.test.d.ts +1 -0
- package/dist/next/util.d.ts +3 -0
- package/dist/parse/acorn.d.ts +4 -0
- package/dist/parse/acorn.test.d.ts +1 -0
- package/dist/parse/index.d.ts +64 -0
- package/dist/parse/mdx.d.ts +13 -0
- package/dist/parse/parseShortcode.d.ts +7 -0
- package/dist/parse/parseShortcode.test.d.ts +1 -0
- package/dist/parse/plate.d.ts +240 -0
- package/dist/parse/remarkToPlate.d.ts +31 -0
- package/dist/parse/remarkToPlate.test.d.ts +1 -0
- package/dist/stringify/acorn.d.ts +21 -0
- package/dist/stringify/index.d.ts +32 -0
- package/dist/stringify/marks.d.ts +13 -0
- package/dist/stringify/stringifyShortcode.d.ts +7 -0
- package/dist/stringify/stringifyShortcode.test.d.ts +1 -0
- package/package.json +92 -0
- package/readme.md +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.