@atlaskit/adf-schema
Version:
Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs
14 lines (13 loc) • 733 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.tableCellContent = void 0;
var _adfSchemaGenerator = require("@atlaskit/adf-schema-generator");
var _tableCellContentPseudoGroup = require("../groups/tableCellContentPseudoGroup");
// @DSLCompatibilityException This is only used by JSON schema to group the table cell content into a definition.
// This node should be deleted and the content should be replicated in the JSON schema for table header and table cell node
var tableCellContent = exports.tableCellContent = (0, _adfSchemaGenerator.adfNode)('tableCellContent').define({
ignore: ['pm-spec', 'validator-spec'],
content: [_tableCellContentPseudoGroup.tableCellContentPseudoGroup]
});
;