fix: resolve TypeScript errors in frontend build
This commit is contained in:
105
node_modules/@tiptap/extension-bold/dist/index.js
generated
vendored
Normal file
105
node_modules/@tiptap/extension-bold/dist/index.js
generated
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
// src/bold.tsx
|
||||
import { Mark, markInputRule, markPasteRule, mergeAttributes } from "@tiptap/core";
|
||||
import { jsx } from "@tiptap/core/jsx-runtime";
|
||||
var starInputRegex = /(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))$/;
|
||||
var starPasteRegex = /(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))/g;
|
||||
var underscoreInputRegex = /(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))$/;
|
||||
var underscorePasteRegex = /(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))/g;
|
||||
var Bold = Mark.create({
|
||||
name: "bold",
|
||||
addOptions() {
|
||||
return {
|
||||
HTMLAttributes: {}
|
||||
};
|
||||
},
|
||||
parseHTML() {
|
||||
return [
|
||||
{
|
||||
tag: "strong"
|
||||
},
|
||||
{
|
||||
tag: "b",
|
||||
getAttrs: (node) => node.style.fontWeight !== "normal" && null
|
||||
},
|
||||
{
|
||||
style: "font-weight=400",
|
||||
clearMark: (mark) => mark.type.name === this.name
|
||||
},
|
||||
{
|
||||
style: "font-weight",
|
||||
getAttrs: (value) => /^(bold(er)?|[5-9]\d{2,})$/.test(value) && null
|
||||
}
|
||||
];
|
||||
},
|
||||
renderHTML({ HTMLAttributes }) {
|
||||
return /* @__PURE__ */ jsx("strong", { ...mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), children: /* @__PURE__ */ jsx("slot", {}) });
|
||||
},
|
||||
markdownTokenName: "strong",
|
||||
parseMarkdown: (token, helpers) => {
|
||||
return helpers.applyMark("bold", helpers.parseInline(token.tokens || []));
|
||||
},
|
||||
markdownOptions: {
|
||||
htmlReopen: {
|
||||
open: "<strong>",
|
||||
close: "</strong>"
|
||||
}
|
||||
},
|
||||
renderMarkdown: (node, h) => {
|
||||
return `**${h.renderChildren(node)}**`;
|
||||
},
|
||||
addCommands() {
|
||||
return {
|
||||
setBold: () => ({ commands }) => {
|
||||
return commands.setMark(this.name);
|
||||
},
|
||||
toggleBold: () => ({ commands }) => {
|
||||
return commands.toggleMark(this.name);
|
||||
},
|
||||
unsetBold: () => ({ commands }) => {
|
||||
return commands.unsetMark(this.name);
|
||||
}
|
||||
};
|
||||
},
|
||||
addKeyboardShortcuts() {
|
||||
return {
|
||||
"Mod-b": () => this.editor.commands.toggleBold(),
|
||||
"Mod-B": () => this.editor.commands.toggleBold()
|
||||
};
|
||||
},
|
||||
addInputRules() {
|
||||
return [
|
||||
markInputRule({
|
||||
find: starInputRegex,
|
||||
type: this.type
|
||||
}),
|
||||
markInputRule({
|
||||
find: underscoreInputRegex,
|
||||
type: this.type
|
||||
})
|
||||
];
|
||||
},
|
||||
addPasteRules() {
|
||||
return [
|
||||
markPasteRule({
|
||||
find: starPasteRegex,
|
||||
type: this.type
|
||||
}),
|
||||
markPasteRule({
|
||||
find: underscorePasteRegex,
|
||||
type: this.type
|
||||
})
|
||||
];
|
||||
}
|
||||
});
|
||||
|
||||
// src/index.ts
|
||||
var index_default = Bold;
|
||||
export {
|
||||
Bold,
|
||||
index_default as default,
|
||||
starInputRegex,
|
||||
starPasteRegex,
|
||||
underscoreInputRegex,
|
||||
underscorePasteRegex
|
||||
};
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user