@tiptap/extension-code-block-lowlight 2.5.8 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/packages/core/src/Editor.d.ts +4 -0
- package/dist/packages/core/src/Extension.d.ts +5 -4
- package/dist/packages/core/src/Mark.d.ts +5 -4
- package/dist/packages/core/src/Node.d.ts +5 -4
- package/dist/packages/core/src/commands/setMeta.d.ts +2 -1
- package/dist/packages/core/src/commands/splitListItem.d.ts +2 -1
- package/dist/packages/core/src/helpers/isNodeEmpty.d.ts +10 -4
- package/dist/packages/core/src/pasteRules/nodePasteRule.d.ts +2 -1
- package/dist/packages/extension-code-block/src/code-block.d.ts +6 -0
- package/dist/packages/extension-code-block-lowlight/src/code-block-lowlight.d.ts +0 -6
- package/package.json +10 -7
- package/src/code-block-lowlight.ts +0 -8
package/dist/index.cjs
CHANGED
|
@@ -1567,7 +1567,7 @@ function expandOrCloneMode(mode) {
|
|
|
1567
1567
|
return mode;
|
|
1568
1568
|
}
|
|
1569
1569
|
|
|
1570
|
-
var version = "11.
|
|
1570
|
+
var version = "11.10.0";
|
|
1571
1571
|
|
|
1572
1572
|
class HTMLInjectionError extends Error {
|
|
1573
1573
|
constructor(reason, html) {
|
|
@@ -2733,7 +2733,6 @@ const CodeBlockLowlight = CodeBlock__default.default.extend({
|
|
|
2733
2733
|
return {
|
|
2734
2734
|
...(_a = this.parent) === null || _a === void 0 ? void 0 : _a.call(this),
|
|
2735
2735
|
lowlight: {},
|
|
2736
|
-
defaultLanguage: null,
|
|
2737
2736
|
};
|
|
2738
2737
|
},
|
|
2739
2738
|
addProseMirrorPlugins() {
|