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.

42 lines
1.4 KiB

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tiptap/core')) :
typeof define === 'function' && define.amd ? define(['exports', '@tiptap/core'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@tiptap/extension-list-item"] = {}, global.core));
})(this, (function (exports, core) { 'use strict';
const ListItem = core.Node.create({
name: 'listItem',
addOptions() {
return {
HTMLAttributes: {},
};
},
content: 'paragraph block*',
defining: true,
parseHTML() {
return [
{
tag: 'li',
},
];
},
renderHTML({ HTMLAttributes }) {
return ['li', core.mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
},
addKeyboardShortcuts() {
return {
Enter: () => this.editor.commands.splitListItem(this.name),
Tab: () => this.editor.commands.sinkListItem(this.name),
'Shift-Tab': () => this.editor.commands.liftListItem(this.name),
};
},
});
exports.ListItem = ListItem;
exports["default"] = ListItem;
Object.defineProperty(exports, '__esModule', { value: true });
}));
//# sourceMappingURL=tiptap-extension-list-item.umd.js.map