@tinacms/schema-tools 0.0.0-fbcd928-20241024223724 → 0.0.0-feaa40f-20241112045116

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.
@@ -185,7 +185,7 @@ export type ReferenceField = (FieldGeneric<string, undefined, ReferenceFieldOpti
185
185
  export type PasswordField = (FieldGeneric<string, undefined> | FieldGeneric<string, false>) & BaseField & {
186
186
  type: 'password';
187
187
  };
188
- type toolbarItemName = 'heading' | 'link' | 'image' | 'quote' | 'ul' | 'ol' | 'code' | 'codeBlock' | 'bold' | 'italic' | 'raw' | 'embed' | 'mermaid';
188
+ type ToolbarOverrideType = 'heading' | 'link' | 'image' | 'quote' | 'ul' | 'ol' | 'code' | 'codeBlock' | 'bold' | 'italic' | 'raw' | 'embed' | 'mermaid' | 'table';
189
189
  type RichTextAst = {
190
190
  type: 'root';
191
191
  children: Record<string, unknown>[];
@@ -198,7 +198,7 @@ export type RichTextField<WithNamespace extends boolean = false> = (FieldGeneric
198
198
  * will be stored as frontmatter
199
199
  */
200
200
  isBody?: boolean;
201
- toolbarOverride?: toolbarItemName[];
201
+ toolbarOverride?: ToolbarOverrideType[];
202
202
  templates?: RichTextTemplate<WithNamespace>[];
203
203
  /**
204
204
  * By default, Tina parses markdown with MDX, this is a more strict parser
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/schema-tools",
3
- "version": "0.0.0-fbcd928-20241024223724",
3
+ "version": "0.0.0-feaa40f-20241112045116",
4
4
  "main": "dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "exports": {