@tiptap/extension-task-list
Advanced tools
Comparing version 2.0.0-beta.5 to 2.0.0-beta.6
@@ -6,2 +6,10 @@ # Change Log | ||
# [2.0.0-beta.6](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-list@2.0.0-beta.5...@tiptap/extension-task-list@2.0.0-beta.6) (2021-04-21) | ||
**Note:** Version bump only for package @tiptap/extension-task-list | ||
# [2.0.0-beta.5](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-list@2.0.0-beta.4...@tiptap/extension-task-list@2.0.0-beta.5) (2021-04-16) | ||
@@ -8,0 +16,0 @@ |
import { Command, Node } from '@tiptap/core'; | ||
export interface TaskListOptions { | ||
HTMLAttributes: { | ||
[key: string]: any; | ||
}; | ||
HTMLAttributes: Record<string, any>; | ||
} | ||
@@ -7,0 +5,0 @@ declare module '@tiptap/core' { |
{ | ||
"name": "@tiptap/extension-task-list", | ||
"description": "task list extension for tiptap", | ||
"version": "2.0.0-beta.5", | ||
"version": "2.0.0-beta.6", | ||
"homepage": "https://tiptap.dev", | ||
@@ -27,3 +27,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "ea9f5410915f45f7ba12d5c816965976f1956862" | ||
"gitHead": "8fd618a788f288a9005e8e049d2f8f8df5523b6d" | ||
} |
import { Command, Node, mergeAttributes } from '@tiptap/core' | ||
export interface TaskListOptions { | ||
HTMLAttributes: { | ||
[key: string]: any | ||
}, | ||
HTMLAttributes: Record<string, any>, | ||
} | ||
@@ -8,0 +6,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
20966
184