@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.js
CHANGED
|
@@ -1559,7 +1559,7 @@ function expandOrCloneMode(mode) {
|
|
|
1559
1559
|
return mode;
|
|
1560
1560
|
}
|
|
1561
1561
|
|
|
1562
|
-
var version = "11.
|
|
1562
|
+
var version = "11.10.0";
|
|
1563
1563
|
|
|
1564
1564
|
class HTMLInjectionError extends Error {
|
|
1565
1565
|
constructor(reason, html) {
|
|
@@ -2725,7 +2725,6 @@ const CodeBlockLowlight = CodeBlock.extend({
|
|
|
2725
2725
|
return {
|
|
2726
2726
|
...(_a = this.parent) === null || _a === void 0 ? void 0 : _a.call(this),
|
|
2727
2727
|
lowlight: {},
|
|
2728
|
-
defaultLanguage: null,
|
|
2729
2728
|
};
|
|
2730
2729
|
},
|
|
2731
2730
|
addProseMirrorPlugins() {
|