Files
2026-04-13 08:19:53 +08:00

37 lines
1.0 KiB
JavaScript

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var core = require('@tiptap/core');
var gapcursor = require('@tiptap/pm/gapcursor');
/**
* This extension allows you to add a gap cursor to your editor.
* A gap cursor is a cursor that appears when you click on a place
* where no content is present, for example inbetween nodes.
* @see https://tiptap.dev/api/extensions/gapcursor
*/
const Gapcursor = core.Extension.create({
name: 'gapCursor',
addProseMirrorPlugins() {
return [
gapcursor.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=index.cjs.map