An attempt to fix Error: Cannot resolve a DOM node from Slate node when using plugin with default config.
A table plugin for Sanity Studio v3 that supports Portable Text cells.
This plugin is inspired by the official @sanity/table plugin, but allows you to define a Portable Text configuration in your cells.
$ npm install --save @bitfo/sanity-plugin-portable-table
or
$ yarn add @bitfo/sanity-plugin-portable-table
Add it as a plugin in sanity.config.ts (or .js):
import {defineConfig} from 'sanity'
import {portableTable} from '@bitfo/sanity-plugin-portable-table'
export const defineConfig({
...
plugins: [
portableTable({
// Optional: default name is "table"
name: "my-table",
// Optional: default title is "Table"
title: "Portable Table",
// Required: must provide a block definition
cellSchema: {
name: "my-block",
type: "block",
styles: [],
lists: [],
marks: {
decorators: [{ title: "Strong", value: "strong" }],
annotations: [],
},
},
}),
]
})
Apache License 2.0 © Dave Lucia See LICENSE