@tiptap/extensions 3.0.0-next.6 → 3.0.0-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/character-count/index.cjs.map +1 -1
- package/dist/character-count/index.js.map +1 -1
- package/dist/gap-cursor/index.cjs.map +1 -1
- package/dist/gap-cursor/index.js.map +1 -1
- package/dist/index.cjs +47 -47
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +42 -42
- package/dist/index.d.ts +42 -42
- package/dist/index.js +44 -44
- package/dist/index.js.map +1 -1
- package/dist/placeholder/index.cjs.map +1 -1
- package/dist/placeholder/index.js.map +1 -1
- package/dist/trailing-node/index.cjs.map +1 -1
- package/dist/trailing-node/index.js.map +1 -1
- package/dist/{history → undo-redo}/index.cjs +6 -6
- package/dist/undo-redo/index.cjs.map +1 -0
- package/dist/{history → undo-redo}/index.d.cts +6 -6
- package/dist/{history → undo-redo}/index.d.ts +6 -6
- package/dist/{history → undo-redo}/index.js +4 -4
- package/dist/undo-redo/index.js.map +1 -0
- package/package.json +8 -8
- package/src/character-count/character-count.ts +1 -1
- package/src/gap-cursor/gap-cursor.ts +2 -1
- package/src/index.ts +1 -1
- package/src/placeholder/placeholder.ts +3 -2
- package/src/trailing-node/trailing-node.ts +1 -1
- package/src/undo-redo/index.ts +1 -0
- package/src/{history/history.ts → undo-redo/undo-redo.ts} +6 -6
- package/dist/history/index.cjs.map +0 -1
- package/dist/history/index.js.map +0 -1
- package/src/history/index.ts +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Extension } from '@tiptap/core'
|
|
2
2
|
import { history, redo, undo } from '@tiptap/pm/history'
|
|
3
3
|
|
|
4
|
-
export interface
|
|
4
|
+
export interface UndoRedoOptions {
|
|
5
5
|
/**
|
|
6
6
|
* The amount of history events that are collected before the oldest events are discarded.
|
|
7
7
|
* @default 100
|
|
@@ -19,7 +19,7 @@ export interface HistoryOptions {
|
|
|
19
19
|
|
|
20
20
|
declare module '@tiptap/core' {
|
|
21
21
|
interface Commands<ReturnType> {
|
|
22
|
-
|
|
22
|
+
undoRedo: {
|
|
23
23
|
/**
|
|
24
24
|
* Undo recent changes
|
|
25
25
|
* @example editor.commands.undo()
|
|
@@ -36,15 +36,15 @@ declare module '@tiptap/core' {
|
|
|
36
36
|
|
|
37
37
|
/**
|
|
38
38
|
* This extension allows you to undo and redo recent changes.
|
|
39
|
-
* @see https://www.tiptap.dev/api/extensions/
|
|
39
|
+
* @see https://www.tiptap.dev/api/extensions/undo-redo
|
|
40
40
|
*
|
|
41
41
|
* **Important**: If the `@tiptap/extension-collaboration` package is used, make sure to remove
|
|
42
|
-
* the `
|
|
42
|
+
* the `undo-redo` extension, as it is not compatible with the `collaboration` extension.
|
|
43
43
|
*
|
|
44
44
|
* `@tiptap/extension-collaboration` uses its own history implementation.
|
|
45
45
|
*/
|
|
46
|
-
export const
|
|
47
|
-
name: '
|
|
46
|
+
export const UndoRedo = Extension.create<UndoRedoOptions>({
|
|
47
|
+
name: 'undoRedo',
|
|
48
48
|
|
|
49
49
|
addOptions() {
|
|
50
50
|
return {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/history/index.ts","../../src/history/history.ts"],"sourcesContent":["export * from './history.js'\n","import { Extension } from '@tiptap/core'\nimport { history, redo, undo } from '@tiptap/pm/history'\n\nexport interface HistoryOptions {\n /**\n * The amount of history events that are collected before the oldest events are discarded.\n * @default 100\n * @example 50\n */\n depth: number\n\n /**\n * The delay (in milliseconds) between changes after which a new group should be started.\n * @default 500\n * @example 1000\n */\n newGroupDelay: number\n}\n\ndeclare module '@tiptap/core' {\n interface Commands<ReturnType> {\n history: {\n /**\n * Undo recent changes\n * @example editor.commands.undo()\n */\n undo: () => ReturnType\n /**\n * Reapply reverted changes\n * @example editor.commands.redo()\n */\n redo: () => ReturnType\n }\n }\n}\n\n/**\n * This extension allows you to undo and redo recent changes.\n * @see https://www.tiptap.dev/api/extensions/history\n *\n * **Important**: If the `@tiptap/extension-collaboration` package is used, make sure to remove\n * the `history` extension, as it is not compatible with the `collaboration` extension.\n *\n * `@tiptap/extension-collaboration` uses its own history implementation.\n */\nexport const History = Extension.create<HistoryOptions>({\n name: 'history',\n\n addOptions() {\n return {\n depth: 100,\n newGroupDelay: 500,\n }\n },\n\n addCommands() {\n return {\n undo:\n () =>\n ({ state, dispatch }) => {\n return undo(state, dispatch)\n },\n redo:\n () =>\n ({ state, dispatch }) => {\n return redo(state, dispatch)\n },\n }\n },\n\n addProseMirrorPlugins() {\n return [history(this.options)]\n },\n\n addKeyboardShortcuts() {\n return {\n 'Mod-z': () => this.editor.commands.undo(),\n 'Shift-Mod-z': () => this.editor.commands.redo(),\n 'Mod-y': () => this.editor.commands.redo(),\n\n // Russian keyboard layouts\n 'Mod-я': () => this.editor.commands.undo(),\n 'Shift-Mod-я': () => this.editor.commands.redo(),\n }\n },\n})\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,kBAA0B;AAC1B,qBAAoC;AA4C7B,IAAM,UAAU,sBAAU,OAAuB;AAAA,EACtD,MAAM;AAAA,EAEN,aAAa;AACX,WAAO;AAAA,MACL,OAAO;AAAA,MACP,eAAe;AAAA,IACjB;AAAA,EACF;AAAA,EAEA,cAAc;AACZ,WAAO;AAAA,MACL,MACE,MACA,CAAC,EAAE,OAAO,SAAS,MAAM;AACvB,mBAAO,qBAAK,OAAO,QAAQ;AAAA,MAC7B;AAAA,MACF,MACE,MACA,CAAC,EAAE,OAAO,SAAS,MAAM;AACvB,mBAAO,qBAAK,OAAO,QAAQ;AAAA,MAC7B;AAAA,IACJ;AAAA,EACF;AAAA,EAEA,wBAAwB;AACtB,WAAO,KAAC,wBAAQ,KAAK,OAAO,CAAC;AAAA,EAC/B;AAAA,EAEA,uBAAuB;AACrB,WAAO;AAAA,MACL,SAAS,MAAM,KAAK,OAAO,SAAS,KAAK;AAAA,MACzC,eAAe,MAAM,KAAK,OAAO,SAAS,KAAK;AAAA,MAC/C,SAAS,MAAM,KAAK,OAAO,SAAS,KAAK;AAAA;AAAA,MAGzC,cAAS,MAAM,KAAK,OAAO,SAAS,KAAK;AAAA,MACzC,oBAAe,MAAM,KAAK,OAAO,SAAS,KAAK;AAAA,IACjD;AAAA,EACF;AACF,CAAC;","names":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/history/history.ts"],"sourcesContent":["import { Extension } from '@tiptap/core'\nimport { history, redo, undo } from '@tiptap/pm/history'\n\nexport interface HistoryOptions {\n /**\n * The amount of history events that are collected before the oldest events are discarded.\n * @default 100\n * @example 50\n */\n depth: number\n\n /**\n * The delay (in milliseconds) between changes after which a new group should be started.\n * @default 500\n * @example 1000\n */\n newGroupDelay: number\n}\n\ndeclare module '@tiptap/core' {\n interface Commands<ReturnType> {\n history: {\n /**\n * Undo recent changes\n * @example editor.commands.undo()\n */\n undo: () => ReturnType\n /**\n * Reapply reverted changes\n * @example editor.commands.redo()\n */\n redo: () => ReturnType\n }\n }\n}\n\n/**\n * This extension allows you to undo and redo recent changes.\n * @see https://www.tiptap.dev/api/extensions/history\n *\n * **Important**: If the `@tiptap/extension-collaboration` package is used, make sure to remove\n * the `history` extension, as it is not compatible with the `collaboration` extension.\n *\n * `@tiptap/extension-collaboration` uses its own history implementation.\n */\nexport const History = Extension.create<HistoryOptions>({\n name: 'history',\n\n addOptions() {\n return {\n depth: 100,\n newGroupDelay: 500,\n }\n },\n\n addCommands() {\n return {\n undo:\n () =>\n ({ state, dispatch }) => {\n return undo(state, dispatch)\n },\n redo:\n () =>\n ({ state, dispatch }) => {\n return redo(state, dispatch)\n },\n }\n },\n\n addProseMirrorPlugins() {\n return [history(this.options)]\n },\n\n addKeyboardShortcuts() {\n return {\n 'Mod-z': () => this.editor.commands.undo(),\n 'Shift-Mod-z': () => this.editor.commands.redo(),\n 'Mod-y': () => this.editor.commands.redo(),\n\n // Russian keyboard layouts\n 'Mod-я': () => this.editor.commands.undo(),\n 'Shift-Mod-я': () => this.editor.commands.redo(),\n }\n },\n})\n"],"mappings":";AAAA,SAAS,iBAAiB;AAC1B,SAAS,SAAS,MAAM,YAAY;AA4C7B,IAAM,UAAU,UAAU,OAAuB;AAAA,EACtD,MAAM;AAAA,EAEN,aAAa;AACX,WAAO;AAAA,MACL,OAAO;AAAA,MACP,eAAe;AAAA,IACjB;AAAA,EACF;AAAA,EAEA,cAAc;AACZ,WAAO;AAAA,MACL,MACE,MACA,CAAC,EAAE,OAAO,SAAS,MAAM;AACvB,eAAO,KAAK,OAAO,QAAQ;AAAA,MAC7B;AAAA,MACF,MACE,MACA,CAAC,EAAE,OAAO,SAAS,MAAM;AACvB,eAAO,KAAK,OAAO,QAAQ;AAAA,MAC7B;AAAA,IACJ;AAAA,EACF;AAAA,EAEA,wBAAwB;AACtB,WAAO,CAAC,QAAQ,KAAK,OAAO,CAAC;AAAA,EAC/B;AAAA,EAEA,uBAAuB;AACrB,WAAO;AAAA,MACL,SAAS,MAAM,KAAK,OAAO,SAAS,KAAK;AAAA,MACzC,eAAe,MAAM,KAAK,OAAO,SAAS,KAAK;AAAA,MAC/C,SAAS,MAAM,KAAK,OAAO,SAAS,KAAK;AAAA;AAAA,MAGzC,cAAS,MAAM,KAAK,OAAO,SAAS,KAAK;AAAA,MACzC,oBAAe,MAAM,KAAK,OAAO,SAAS,KAAK;AAAA,IACjD;AAAA,EACF;AACF,CAAC;","names":[]}
|
package/src/history/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './history.js'
|