mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-28 07:40:13 +08:00
fix optional starter kit options
This commit is contained in:
parent
0371cb0a5d
commit
693866bacb
@ -171,7 +171,7 @@ export class Extension<Options = any, Commands = any> {
|
||||
return new Extension<O, C>(config)
|
||||
}
|
||||
|
||||
configure(options: Partial<Options>) {
|
||||
configure(options?: Partial<Options>) {
|
||||
return Extension
|
||||
.create<Options, Commands>(this.config as ExtensionConfig<Options, Commands>)
|
||||
.#configure({
|
||||
|
@ -231,7 +231,7 @@ export class Mark<Options = any, Commands = {}> {
|
||||
return new Mark<O, C>(config)
|
||||
}
|
||||
|
||||
configure(options: Partial<Options>) {
|
||||
configure(options?: Partial<Options>) {
|
||||
return Mark
|
||||
.create<Options, Commands>(this.config as MarkConfig<Options, Commands>)
|
||||
.#configure({
|
||||
|
@ -283,7 +283,7 @@ export class Node<Options = any, Commands = {}> {
|
||||
return new Node<O, C>(config)
|
||||
}
|
||||
|
||||
configure(options: Partial<Options>) {
|
||||
configure(options?: Partial<Options>) {
|
||||
return Node
|
||||
.create<Options, Commands>(this.config as NodeConfig<Options, Commands>)
|
||||
.#configure({
|
||||
|
@ -17,7 +17,7 @@ import BulletList, { BulletListOptions } from '@tiptap/extension-bullet-list'
|
||||
import OrderedList, { OrderedListOptions } from '@tiptap/extension-ordered-list'
|
||||
import ListItem, { ListItemOptions } from '@tiptap/extension-list-item'
|
||||
|
||||
export function defaultExtensions(options: {
|
||||
export function defaultExtensions(options?: Partial<{
|
||||
dropursor: DropcursorOptions,
|
||||
paragraph: ParagraphOptions,
|
||||
history: HistoryOptions,
|
||||
@ -33,7 +33,7 @@ export function defaultExtensions(options: {
|
||||
bulletList: BulletListOptions,
|
||||
orderedList: OrderedListOptions,
|
||||
listItem: ListItemOptions,
|
||||
}) {
|
||||
}>) {
|
||||
return [
|
||||
Dropcursor.configure(options?.dropursor),
|
||||
Gapcursor,
|
||||
|
Loading…
Reference in New Issue
Block a user