You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
885 B
31 lines
885 B
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
var core = require('@tiptap/core');
|
|
var prosemirrorGapcursor = require('prosemirror-gapcursor');
|
|
|
|
const Gapcursor = core.Extension.create({
|
|
name: 'gapCursor',
|
|
addProseMirrorPlugins() {
|
|
return [
|
|
prosemirrorGapcursor.gapCursor(),
|
|
];
|
|
},
|
|
extendNodeSchema(extension) {
|
|
var _a;
|
|
const context = {
|
|
name: extension.name,
|
|
options: extension.options,
|
|
storage: extension.storage,
|
|
};
|
|
return {
|
|
allowGapCursor: (_a = core.callOrReturn(core.getExtensionField(extension, 'allowGapCursor', context))) !== null && _a !== void 0 ? _a : null,
|
|
};
|
|
},
|
|
});
|
|
|
|
exports.Gapcursor = Gapcursor;
|
|
exports["default"] = Gapcursor;
|
|
//# sourceMappingURL=tiptap-extension-gapcursor.cjs.map
|