@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.
Files changed (159) hide show
  1. package/LICENSE +176 -0
  2. package/dist/extensions/tina-shortcodes/extension.d.ts +3 -0
  3. package/dist/extensions/tina-shortcodes/factory-attributes.d.ts +2 -0
  4. package/dist/extensions/tina-shortcodes/factory-name.d.ts +2 -0
  5. package/dist/extensions/tina-shortcodes/from-markdown.d.ts +2 -0
  6. package/dist/extensions/tina-shortcodes/shortcode-container.d.ts +3 -0
  7. package/dist/extensions/tina-shortcodes/shortcode-leaf.d.ts +5 -0
  8. package/dist/extensions/tina-shortcodes/to-markdown.d.ts +3 -0
  9. package/dist/index.browser.js +43058 -0
  10. package/dist/index.d.ts +5 -0
  11. package/dist/index.js +44924 -0
  12. package/dist/next/index.d.ts +2 -0
  13. package/dist/next/parse/index.d.ts +2 -0
  14. package/dist/next/parse/markdown.d.ts +2 -0
  15. package/dist/next/parse/post-processing.d.ts +3 -0
  16. package/dist/next/shortcodes/index.d.ts +2 -0
  17. package/dist/next/shortcodes/lib/factory-tag.d.ts +4 -0
  18. package/dist/next/shortcodes/lib/jsx-flow.d.ts +3 -0
  19. package/dist/next/shortcodes/lib/jsx-text.d.ts +3 -0
  20. package/dist/next/shortcodes/lib/syntax.d.ts +18 -0
  21. package/dist/next/shortcodes/lib/util.d.ts +3 -0
  22. package/dist/next/shortcodes/mdast/index.d.ts +106 -0
  23. package/dist/next/stringify/acorn.d.ts +21 -0
  24. package/dist/next/stringify/index.d.ts +3 -0
  25. package/dist/next/stringify/marks.d.ts +8 -0
  26. package/dist/next/stringify/pre-processing.d.ts +8 -0
  27. package/dist/next/stringify/to-markdown.d.ts +3 -0
  28. package/dist/next/tests/FIXME-markdown-shortcodes-block-with-html-children-1/field.d.ts +2 -0
  29. package/dist/next/tests/FIXME-markdown-shortcodes-block-with-html-children-1/index.test.d.ts +1 -0
  30. package/dist/next/tests/FIXME-markdown-shortcodes-block-with-html-children-2/field.d.ts +2 -0
  31. package/dist/next/tests/FIXME-markdown-shortcodes-block-with-html-children-2/index.test.d.ts +1 -0
  32. package/dist/next/tests/FIXME-markdown-shortcodes-with-duplicates/field.d.ts +2 -0
  33. package/dist/next/tests/FIXME-markdown-shortcodes-with-duplicates/index.test.d.ts +1 -0
  34. package/dist/next/tests/markdown-basic-autoformat-blockquote-in-list/field.d.ts +2 -0
  35. package/dist/next/tests/markdown-basic-autoformat-blockquote-in-list/index.test.d.ts +1 -0
  36. package/dist/next/tests/markdown-basic-autoformat-heading-in-blockquote/field.d.ts +2 -0
  37. package/dist/next/tests/markdown-basic-autoformat-heading-in-blockquote/index.test.d.ts +1 -0
  38. package/dist/next/tests/markdown-basic-autoformat-html/field.d.ts +2 -0
  39. package/dist/next/tests/markdown-basic-autoformat-html/index.test.d.ts +1 -0
  40. package/dist/next/tests/markdown-basic-autoformat-list-item-style/field.d.ts +2 -0
  41. package/dist/next/tests/markdown-basic-autoformat-list-item-style/index.test.d.ts +1 -0
  42. package/dist/next/tests/markdown-basic-autoformat-syntax/field.d.ts +2 -0
  43. package/dist/next/tests/markdown-basic-autoformat-syntax/index.test.d.ts +1 -0
  44. package/dist/next/tests/markdown-basic-break/field.d.ts +2 -0
  45. package/dist/next/tests/markdown-basic-break/index.test.d.ts +1 -0
  46. package/dist/next/tests/markdown-basic-code-block/field.d.ts +2 -0
  47. package/dist/next/tests/markdown-basic-code-block/index.test.d.ts +1 -0
  48. package/dist/next/tests/markdown-basic-empty/field.d.ts +2 -0
  49. package/dist/next/tests/markdown-basic-empty/index.test.d.ts +1 -0
  50. package/dist/next/tests/markdown-basic-image/field.d.ts +2 -0
  51. package/dist/next/tests/markdown-basic-image/index.test.d.ts +1 -0
  52. package/dist/next/tests/markdown-basic-image-callback/field.d.ts +2 -0
  53. package/dist/next/tests/markdown-basic-image-callback/index.test.d.ts +1 -0
  54. package/dist/next/tests/markdown-basic-image-in-link/field.d.ts +2 -0
  55. package/dist/next/tests/markdown-basic-image-in-link/index.test.d.ts +1 -0
  56. package/dist/next/tests/markdown-basic-image-json-as-top-level/field.d.ts +2 -0
  57. package/dist/next/tests/markdown-basic-image-json-as-top-level/index.test.d.ts +1 -0
  58. package/dist/next/tests/markdown-basic-invalid-mdx/field.d.ts +2 -0
  59. package/dist/next/tests/markdown-basic-invalid-mdx/index.test.d.ts +1 -0
  60. package/dist/next/tests/markdown-basic-kitchen-sink/field.d.ts +2 -0
  61. package/dist/next/tests/markdown-basic-kitchen-sink/index.test.d.ts +1 -0
  62. package/dist/next/tests/markdown-basic-links/field.d.ts +2 -0
  63. package/dist/next/tests/markdown-basic-links/index.test.d.ts +1 -0
  64. package/dist/next/tests/markdown-basic-lists/field.d.ts +2 -0
  65. package/dist/next/tests/markdown-basic-lists/index.test.d.ts +1 -0
  66. package/dist/next/tests/markdown-basic-marks/field.d.ts +2 -0
  67. package/dist/next/tests/markdown-basic-marks/index.test.d.ts +1 -0
  68. package/dist/next/tests/markdown-basic-marks-strikethrough/field.d.ts +2 -0
  69. package/dist/next/tests/markdown-basic-marks-strikethrough/index.test.d.ts +1 -0
  70. package/dist/next/tests/markdown-basic-tables/field.d.ts +2 -0
  71. package/dist/next/tests/markdown-basic-tables/index.test.d.ts +1 -0
  72. package/dist/next/tests/markdown-html-issues/field.d.ts +2 -0
  73. package/dist/next/tests/markdown-html-issues/index.test.d.ts +1 -0
  74. package/dist/next/tests/markdown-mermaid/field.d.ts +2 -0
  75. package/dist/next/tests/markdown-mermaid/index.test.d.ts +1 -0
  76. package/dist/next/tests/markdown-shortcodes-inline/field.d.ts +2 -0
  77. package/dist/next/tests/markdown-shortcodes-inline/index.test.d.ts +1 -0
  78. package/dist/next/tests/markdown-shortcodes-inline-with-children/field.d.ts +2 -0
  79. package/dist/next/tests/markdown-shortcodes-inline-with-children/index.test.d.ts +1 -0
  80. package/dist/next/tests/markdown-shortcodes-invalid/field.d.ts +2 -0
  81. package/dist/next/tests/markdown-shortcodes-invalid/index.test.d.ts +1 -0
  82. package/dist/next/tests/markdown-shortcodes-invalid-2/field.d.ts +2 -0
  83. package/dist/next/tests/markdown-shortcodes-invalid-2/index.test.d.ts +1 -0
  84. package/dist/next/tests/markdown-shortcodes-invalid-3/field.d.ts +2 -0
  85. package/dist/next/tests/markdown-shortcodes-invalid-3/index.test.d.ts +1 -0
  86. package/dist/next/tests/markdown-shortcodes-invalid-4/field.d.ts +2 -0
  87. package/dist/next/tests/markdown-shortcodes-invalid-4/index.test.d.ts +1 -0
  88. package/dist/next/tests/markdown-shortcodes-markdoc/field.d.ts +2 -0
  89. package/dist/next/tests/markdown-shortcodes-markdoc/index.test.d.ts +1 -0
  90. package/dist/next/tests/markdown-shortcodes-nested-rich-text-children/field.d.ts +2 -0
  91. package/dist/next/tests/markdown-shortcodes-nested-rich-text-children/index.test.d.ts +1 -0
  92. package/dist/next/tests/markdown-shortcodes-rich-text-children/field.d.ts +2 -0
  93. package/dist/next/tests/markdown-shortcodes-rich-text-children/index.test.d.ts +1 -0
  94. package/dist/next/tests/markdown-shortcodes-rich-text-children-2/field.d.ts +2 -0
  95. package/dist/next/tests/markdown-shortcodes-rich-text-children-2/index.test.d.ts +1 -0
  96. package/dist/next/tests/markdown-shortcodes-rich-text-children-3/field.d.ts +2 -0
  97. package/dist/next/tests/markdown-shortcodes-rich-text-children-3/index.test.d.ts +1 -0
  98. package/dist/next/tests/markdown-shortcodes-unclosed/field.d.ts +2 -0
  99. package/dist/next/tests/markdown-shortcodes-unclosed/index.test.d.ts +1 -0
  100. package/dist/next/tests/mdx-basic-nested-objects/field.d.ts +2 -0
  101. package/dist/next/tests/mdx-basic-nested-objects/index.test.d.ts +1 -0
  102. package/dist/next/tests/mdx-basic-nested-objects-2/field.d.ts +2 -0
  103. package/dist/next/tests/mdx-basic-nested-objects-2/index.test.d.ts +1 -0
  104. package/dist/next/tests/mdx-basic-nested-objects-3/field.d.ts +2 -0
  105. package/dist/next/tests/mdx-basic-nested-objects-3/index.test.d.ts +1 -0
  106. package/dist/next/tests/mdx-basic-tables/field.d.ts +2 -0
  107. package/dist/next/tests/mdx-basic-tables/index.test.d.ts +1 -0
  108. package/dist/next/tests/mdx-block-object-list-field/field.d.ts +2 -0
  109. package/dist/next/tests/mdx-block-object-list-field/index.test.d.ts +1 -0
  110. package/dist/next/tests/mdx-block-object-list-template/field.d.ts +2 -0
  111. package/dist/next/tests/mdx-block-object-list-template/index.test.d.ts +1 -0
  112. package/dist/next/tests/mdx-block-scalar-fields/field.d.ts +2 -0
  113. package/dist/next/tests/mdx-block-scalar-fields/index.test.d.ts +1 -0
  114. package/dist/next/tests/mdx-blocks-autoformat-nested-mdx/field.d.ts +2 -0
  115. package/dist/next/tests/mdx-blocks-autoformat-nested-mdx/index.test.d.ts +1 -0
  116. package/dist/next/tests/mdx-blocks-autoformat-nested-mdx-null-children/field.d.ts +2 -0
  117. package/dist/next/tests/mdx-blocks-autoformat-nested-mdx-null-children/index.test.d.ts +1 -0
  118. package/dist/next/tests/mdx-blocks-multiple-rich-text-fields/field.d.ts +2 -0
  119. package/dist/next/tests/mdx-blocks-multiple-rich-text-fields/index.test.d.ts +1 -0
  120. package/dist/next/tests/mdx-blocks-rich-text-children/field.d.ts +2 -0
  121. package/dist/next/tests/mdx-blocks-rich-text-children/index.test.d.ts +1 -0
  122. package/dist/next/tests/mdx-blocks-rich-text-children-on-one-line/field.d.ts +2 -0
  123. package/dist/next/tests/mdx-blocks-rich-text-children-on-one-line/index.test.d.ts +1 -0
  124. package/dist/next/tests/mdx-blocks-rich-text-children-with-an-empty-object-value/field.d.ts +2 -0
  125. package/dist/next/tests/mdx-blocks-rich-text-children-with-an-empty-object-value/index.test.d.ts +1 -0
  126. package/dist/next/tests/mdx-table-like-field/field.d.ts +2 -0
  127. package/dist/next/tests/mdx-table-like-field/index.test.d.ts +1 -0
  128. package/dist/next/tests/mdx-unregistered-component/field.d.ts +2 -0
  129. package/dist/next/tests/mdx-unregistered-component/index.test.d.ts +1 -0
  130. package/dist/next/tests/slatejson/field.d.ts +2 -0
  131. package/dist/next/tests/slatejson/index.test.d.ts +1 -0
  132. package/dist/next/tests/unrecognized-shortcodes/field.d.ts +2 -0
  133. package/dist/next/tests/unrecognized-shortcodes/index.test.d.ts +1 -0
  134. package/dist/next/tests/util.d.ts +5 -0
  135. package/dist/next/tests/wordpress-style/field.d.ts +2 -0
  136. package/dist/next/tests/wordpress-style/index.test.d.ts +1 -0
  137. package/dist/next/tests/wordpress-style-2/field.d.ts +2 -0
  138. package/dist/next/tests/wordpress-style-2/index.test.d.ts +1 -0
  139. package/dist/next/tests/wordpress-style-2-block-with-children/field.d.ts +2 -0
  140. package/dist/next/tests/wordpress-style-2-block-with-children/index.test.d.ts +1 -0
  141. package/dist/next/tests/wordpress-style-2-with-children/field.d.ts +2 -0
  142. package/dist/next/tests/wordpress-style-2-with-children/index.test.d.ts +1 -0
  143. package/dist/next/util.d.ts +3 -0
  144. package/dist/parse/acorn.d.ts +4 -0
  145. package/dist/parse/acorn.test.d.ts +1 -0
  146. package/dist/parse/index.d.ts +64 -0
  147. package/dist/parse/mdx.d.ts +13 -0
  148. package/dist/parse/parseShortcode.d.ts +7 -0
  149. package/dist/parse/parseShortcode.test.d.ts +1 -0
  150. package/dist/parse/plate.d.ts +240 -0
  151. package/dist/parse/remarkToPlate.d.ts +31 -0
  152. package/dist/parse/remarkToPlate.test.d.ts +1 -0
  153. package/dist/stringify/acorn.d.ts +21 -0
  154. package/dist/stringify/index.d.ts +32 -0
  155. package/dist/stringify/marks.d.ts +13 -0
  156. package/dist/stringify/stringifyShortcode.d.ts +7 -0
  157. package/dist/stringify/stringifyShortcode.test.d.ts +1 -0
  158. package/package.json +92 -0
  159. 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.