gdpr audit implemented, email log, vollmachten, pdf delete cancel data privacy and vollmachten, removed message no id card in engergy car, and other contracts that are not telecom contracts, added insert counter for engery

This commit is contained in:
2026-03-21 11:59:53 +01:00
parent 09e87c951b
commit c3edb8ad2e
1491 changed files with 265550 additions and 1292 deletions
+139
View File
@@ -0,0 +1,139 @@
/** @jsxImportSource @tiptap/core */
import { mergeAttributes, Node, wrappingInputRule } from '@tiptap/core'
export interface BlockquoteOptions {
/**
* HTML attributes to add to the blockquote element
* @default {}
* @example { class: 'foo' }
*/
HTMLAttributes: Record<string, any>
}
declare module '@tiptap/core' {
interface Commands<ReturnType> {
blockQuote: {
/**
* Set a blockquote node
*/
setBlockquote: () => ReturnType
/**
* Toggle a blockquote node
*/
toggleBlockquote: () => ReturnType
/**
* Unset a blockquote node
*/
unsetBlockquote: () => ReturnType
}
}
}
/**
* Matches a blockquote to a `>` as input.
*/
export const inputRegex = /^\s*>\s$/
/**
* This extension allows you to create blockquotes.
* @see https://tiptap.dev/api/nodes/blockquote
*/
export const Blockquote = Node.create<BlockquoteOptions>({
name: 'blockquote',
addOptions() {
return {
HTMLAttributes: {},
}
},
content: 'block+',
group: 'block',
defining: true,
parseHTML() {
return [{ tag: 'blockquote' }]
},
renderHTML({ HTMLAttributes }) {
return (
<blockquote {...mergeAttributes(this.options.HTMLAttributes, HTMLAttributes)}>
<slot />
</blockquote>
)
},
parseMarkdown: (token, helpers) => {
return helpers.createNode('blockquote', undefined, helpers.parseChildren(token.tokens || []))
},
renderMarkdown: (node, h) => {
if (!node.content) {
return ''
}
// Use a single '>' prefix regardless of nesting level
// Nested blockquotes will add their own '>' prefix recursively
const prefix = '>'
const result: string[] = []
node.content.forEach(child => {
// Render each child node as an array so it gets processed properly
const childContent = h.renderChildren([child])
const lines = childContent.split('\n')
const linesWithPrefix = lines.map(line => {
// Don't add prefix to empty lines
if (line.trim() === '') {
return prefix
}
// Nested blockquotes will already have their own prefixes
// We just need to add our own prefix at the start
return `${prefix} ${line}`
})
result.push(linesWithPrefix.join('\n'))
})
// Add separator lines between children
return result.join(`\n${prefix}\n`)
},
addCommands() {
return {
setBlockquote:
() =>
({ commands }) => {
return commands.wrapIn(this.name)
},
toggleBlockquote:
() =>
({ commands }) => {
return commands.toggleWrap(this.name)
},
unsetBlockquote:
() =>
({ commands }) => {
return commands.lift(this.name)
},
}
},
addKeyboardShortcuts() {
return {
'Mod-Shift-b': () => this.editor.commands.toggleBlockquote(),
}
},
addInputRules() {
return [
wrappingInputRule({
find: inputRegex,
type: this.type,
}),
]
},
})
+5
View File
@@ -0,0 +1,5 @@
import { Blockquote } from './blockquote.jsx'
export * from './blockquote.jsx'
export default Blockquote