fix: resolve TypeScript errors in frontend build

This commit is contained in:
Hiro
2026-03-30 23:16:07 +00:00
parent b733306773
commit 24925e1acb
2941 changed files with 418042 additions and 49 deletions

5
node_modules/@tiptap/extension-strike/src/index.ts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
import { Strike } from './strike.js'
export * from './strike.js'
export default Strike

134
node_modules/@tiptap/extension-strike/src/strike.ts generated vendored Normal file
View File

@@ -0,0 +1,134 @@
import { Mark, markInputRule, markPasteRule, mergeAttributes } from '@tiptap/core'
export interface StrikeOptions {
/**
* HTML attributes to add to the strike element.
* @default {}
* @example { class: 'foo' }
*/
HTMLAttributes: Record<string, any>
}
declare module '@tiptap/core' {
interface Commands<ReturnType> {
strike: {
/**
* Set a strike mark
* @example editor.commands.setStrike()
*/
setStrike: () => ReturnType
/**
* Toggle a strike mark
* @example editor.commands.toggleStrike()
*/
toggleStrike: () => ReturnType
/**
* Unset a strike mark
* @example editor.commands.unsetStrike()
*/
unsetStrike: () => ReturnType
}
}
}
/**
* Matches a strike to a ~~strike~~ on input.
*/
export const inputRegex = /(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/
/**
* Matches a strike to a ~~strike~~ on paste.
*/
export const pasteRegex = /(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g
/**
* This extension allows you to create strike text.
* @see https://www.tiptap.dev/api/marks/strike
*/
export const Strike = Mark.create<StrikeOptions>({
name: 'strike',
addOptions() {
return {
HTMLAttributes: {},
}
},
parseHTML() {
return [
{
tag: 's',
},
{
tag: 'del',
},
{
tag: 'strike',
},
{
style: 'text-decoration',
consuming: false,
getAttrs: style => ((style as string).includes('line-through') ? {} : false),
},
]
},
renderHTML({ HTMLAttributes }) {
return ['s', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
},
markdownTokenName: 'del',
parseMarkdown: (token, helpers) => {
// Convert 'del' token to strike mark
return helpers.applyMark('strike', helpers.parseInline(token.tokens || []))
},
renderMarkdown: (node, h) => {
return `~~${h.renderChildren(node)}~~`
},
addCommands() {
return {
setStrike:
() =>
({ commands }) => {
return commands.setMark(this.name)
},
toggleStrike:
() =>
({ commands }) => {
return commands.toggleMark(this.name)
},
unsetStrike:
() =>
({ commands }) => {
return commands.unsetMark(this.name)
},
}
},
addKeyboardShortcuts() {
return {
'Mod-Shift-s': () => this.editor.commands.toggleStrike(),
}
},
addInputRules() {
return [
markInputRule({
find: inputRegex,
type: this.type,
}),
]
},
addPasteRules() {
return [
markPasteRule({
find: pasteRegex,
type: this.type,
}),
]
},
})