@tiptap/extension-code-block-lowlight 2.0.0-beta.46 → 2.0.0-beta.50
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/packages/extension-code-block-lowlight/src/code-block-lowlight.d.ts +1 -1
- package/dist/tiptap-extension-code-block-lowlight.cjs.js +6 -3
- package/dist/tiptap-extension-code-block-lowlight.cjs.js.map +1 -1
- package/dist/tiptap-extension-code-block-lowlight.esm.js +6 -3
- package/dist/tiptap-extension-code-block-lowlight.esm.js.map +1 -1
- package/dist/tiptap-extension-code-block-lowlight.umd.js +6 -3
- package/dist/tiptap-extension-code-block-lowlight.umd.js.map +1 -1
- package/package.json +4 -4
- package/src/code-block-lowlight.ts +5 -3
|
@@ -2968,9 +2968,12 @@
|
|
|
2968
2968
|
}
|
|
2969
2969
|
|
|
2970
2970
|
const CodeBlockLowlight = CodeBlock__default["default"].extend({
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2971
|
+
addOptions() {
|
|
2972
|
+
var _a;
|
|
2973
|
+
return {
|
|
2974
|
+
...(_a = this.parent) === null || _a === void 0 ? void 0 : _a.call(this),
|
|
2975
|
+
lowlight: core$1,
|
|
2976
|
+
};
|
|
2974
2977
|
},
|
|
2975
2978
|
addProseMirrorPlugins() {
|
|
2976
2979
|
var _a;
|