@atlaskit/adf-schema
Version:
Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs
12 lines • 376 B
JavaScript
import { adfNode, JSONSchemaTransformerName, ValidatorSpecTransformerName } from '@atlaskit/adf-schema-generator';
export const unsupportedInline = adfNode('unsupportedInline').define({
ignore: [JSONSchemaTransformerName, ValidatorSpecTransformerName],
inline: true,
selectable: true,
attrs: {
originalValue: {
type: 'object',
default: {}
}
}
});