@k6-contrib/fields-editorjs
v7.1.0
Published
Keystone 6 Reversible encryption field
Downloads
4
Readme
EditorJS Field
import { editorJs } from '@k6-contrib/fields-editorjs';
import 'dotenv/config';
const Product = list({
fields: {
title: text({ validation: { isRequired: true } }),
content: text(),
editorJs: editorJs({}),
},
});