@tiptap/extension-gapcursor 2.0.0-beta.3 → 2.0.0-beta.30

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/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2020, überdosis GbR
3
+ Copyright (c) 2021, überdosis GbR
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -7,8 +7,8 @@
7
7
  ## Introduction
8
8
  tiptap is a headless wrapper around [ProseMirror](https://ProseMirror.net) – a toolkit for building rich text WYSIWYG editors, which is already in use at many well-known companies such as *New York Times*, *The Guardian* or *Atlassian*.
9
9
 
10
- ## Offical Documentation
10
+ ## Official Documentation
11
11
  Documentation can be found on the [tiptap website](https://tiptap.dev).
12
12
 
13
13
  ## License
14
- tiptap is open-sourced software licensed under the [MIT license](https://github.com/ueberdosis/tiptap-next/blob/main/LICENSE.md).
14
+ tiptap is open sourced software licensed under the [MIT license](https://github.com/ueberdosis/tiptap/blob/main/LICENSE.md).
@@ -1,12 +1,15 @@
1
- import { Extension } from '@tiptap/core';
1
+ import { Extension, ParentConfig } from '@tiptap/core';
2
2
  declare module '@tiptap/core' {
3
- interface NodeConfig<Options> {
3
+ interface NodeConfig<Options, Storage> {
4
4
  /**
5
5
  * Allow gap cursor
6
6
  */
7
7
  allowGapCursor?: boolean | null | ((this: {
8
+ name: string;
8
9
  options: Options;
10
+ storage: Storage;
11
+ parent: ParentConfig<NodeConfig<Options>>['allowGapCursor'];
9
12
  }) => boolean | null);
10
13
  }
11
14
  }
12
- export declare const Gapcursor: Extension<unknown>;
15
+ export declare const Gapcursor: Extension<any, any>;
@@ -14,13 +14,17 @@ const Gapcursor = core.Extension.create({
14
14
  },
15
15
  extendNodeSchema(extension) {
16
16
  var _a;
17
- const context = { options: extension.options };
17
+ const context = {
18
+ name: extension.name,
19
+ options: extension.options,
20
+ storage: extension.storage,
21
+ };
18
22
  return {
19
- allowGapCursor: (_a = core.callOrReturn(extension.config.allowGapCursor, context)) !== null && _a !== void 0 ? _a : null,
23
+ allowGapCursor: (_a = core.callOrReturn(core.getExtensionField(extension, 'allowGapCursor', context))) !== null && _a !== void 0 ? _a : null,
20
24
  };
21
25
  },
22
26
  });
23
27
 
24
28
  exports.Gapcursor = Gapcursor;
25
- exports.default = Gapcursor;
29
+ exports["default"] = Gapcursor;
26
30
  //# sourceMappingURL=tiptap-extension-gapcursor.cjs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tiptap-extension-gapcursor.cjs.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import { Extension, callOrReturn } from '@tiptap/core'\nimport { gapCursor } from 'prosemirror-gapcursor'\n\ndeclare module '@tiptap/core' {\n interface NodeConfig<Options> {\n /**\n * Allow gap cursor\n */\n allowGapCursor?:\n | boolean\n | null\n | ((this: { options: Options }) => boolean | null),\n }\n}\n\nexport const Gapcursor = Extension.create({\n name: 'gapCursor',\n\n addProseMirrorPlugins() {\n return [\n gapCursor(),\n ]\n },\n\n extendNodeSchema(extension) {\n const context = { options: extension.options }\n\n return {\n allowGapCursor: callOrReturn(extension.config.allowGapCursor, context) ?? null,\n }\n },\n})\n"],"names":["Extension","gapCursor","callOrReturn"],"mappings":";;;;;;;MAea,SAAS,GAAGA,cAAS,CAAC,MAAM,CAAC;IACxC,IAAI,EAAE,WAAW;IAEjB,qBAAqB;QACnB,OAAO;YACLC,8BAAS,EAAE;SACZ,CAAA;KACF;IAED,gBAAgB,CAAC,SAAS;;QACxB,MAAM,OAAO,GAAG,EAAE,OAAO,EAAE,SAAS,CAAC,OAAO,EAAE,CAAA;QAE9C,OAAO;YACL,cAAc,EAAE,MAAAC,iBAAY,CAAC,SAAS,CAAC,MAAM,CAAC,cAAc,EAAE,OAAO,CAAC,mCAAI,IAAI;SAC/E,CAAA;KACF;CACF;;;;;"}
1
+ {"version":3,"file":"tiptap-extension-gapcursor.cjs.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import {\n Extension,\n callOrReturn,\n getExtensionField,\n ParentConfig,\n} from '@tiptap/core'\nimport { gapCursor } from 'prosemirror-gapcursor'\n\ndeclare module '@tiptap/core' {\n interface NodeConfig<Options, Storage> {\n /**\n * Allow gap cursor\n */\n allowGapCursor?:\n | boolean\n | null\n | ((this: {\n name: string,\n options: Options,\n storage: Storage,\n parent: ParentConfig<NodeConfig<Options>>['allowGapCursor'],\n }) => boolean | null),\n }\n}\n\nexport const Gapcursor = Extension.create({\n name: 'gapCursor',\n\n addProseMirrorPlugins() {\n return [\n gapCursor(),\n ]\n },\n\n extendNodeSchema(extension) {\n const context = {\n name: extension.name,\n options: extension.options,\n storage: extension.storage,\n }\n\n return {\n allowGapCursor: callOrReturn(getExtensionField(extension, 'allowGapCursor', context)) ?? null,\n }\n },\n})\n"],"names":["Extension","gapCursor","callOrReturn","getExtensionField"],"mappings":";;;;;;;MAyBa,SAAS,GAAGA,cAAS,CAAC,MAAM,CAAC;IACxC,IAAI,EAAE,WAAW;IAEjB,qBAAqB;QACnB,OAAO;YACLC,8BAAS,EAAE;SACZ,CAAA;KACF;IAED,gBAAgB,CAAC,SAAS;;QACxB,MAAM,OAAO,GAAG;YACd,IAAI,EAAE,SAAS,CAAC,IAAI;YACpB,OAAO,EAAE,SAAS,CAAC,OAAO;YAC1B,OAAO,EAAE,SAAS,CAAC,OAAO;SAC3B,CAAA;QAED,OAAO;YACL,cAAc,EAAE,MAAAC,iBAAY,CAACC,sBAAiB,CAAC,SAAS,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAC,mCAAI,IAAI;SAC9F,CAAA;KACF;CACF;;;;;"}
@@ -1,4 +1,4 @@
1
- import { Extension, callOrReturn } from '@tiptap/core';
1
+ import { Extension, callOrReturn, getExtensionField } from '@tiptap/core';
2
2
  import { gapCursor } from 'prosemirror-gapcursor';
3
3
 
4
4
  const Gapcursor = Extension.create({
@@ -10,13 +10,16 @@ const Gapcursor = Extension.create({
10
10
  },
11
11
  extendNodeSchema(extension) {
12
12
  var _a;
13
- const context = { options: extension.options };
13
+ const context = {
14
+ name: extension.name,
15
+ options: extension.options,
16
+ storage: extension.storage,
17
+ };
14
18
  return {
15
- allowGapCursor: (_a = callOrReturn(extension.config.allowGapCursor, context)) !== null && _a !== void 0 ? _a : null,
19
+ allowGapCursor: (_a = callOrReturn(getExtensionField(extension, 'allowGapCursor', context))) !== null && _a !== void 0 ? _a : null,
16
20
  };
17
21
  },
18
22
  });
19
23
 
20
- export default Gapcursor;
21
- export { Gapcursor };
24
+ export { Gapcursor, Gapcursor as default };
22
25
  //# sourceMappingURL=tiptap-extension-gapcursor.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tiptap-extension-gapcursor.esm.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import { Extension, callOrReturn } from '@tiptap/core'\nimport { gapCursor } from 'prosemirror-gapcursor'\n\ndeclare module '@tiptap/core' {\n interface NodeConfig<Options> {\n /**\n * Allow gap cursor\n */\n allowGapCursor?:\n | boolean\n | null\n | ((this: { options: Options }) => boolean | null),\n }\n}\n\nexport const Gapcursor = Extension.create({\n name: 'gapCursor',\n\n addProseMirrorPlugins() {\n return [\n gapCursor(),\n ]\n },\n\n extendNodeSchema(extension) {\n const context = { options: extension.options }\n\n return {\n allowGapCursor: callOrReturn(extension.config.allowGapCursor, context) ?? null,\n }\n },\n})\n"],"names":[],"mappings":";;;MAea,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC;IACxC,IAAI,EAAE,WAAW;IAEjB,qBAAqB;QACnB,OAAO;YACL,SAAS,EAAE;SACZ,CAAA;KACF;IAED,gBAAgB,CAAC,SAAS;;QACxB,MAAM,OAAO,GAAG,EAAE,OAAO,EAAE,SAAS,CAAC,OAAO,EAAE,CAAA;QAE9C,OAAO;YACL,cAAc,EAAE,MAAA,YAAY,CAAC,SAAS,CAAC,MAAM,CAAC,cAAc,EAAE,OAAO,CAAC,mCAAI,IAAI;SAC/E,CAAA;KACF;CACF;;;;;"}
1
+ {"version":3,"file":"tiptap-extension-gapcursor.esm.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import {\n Extension,\n callOrReturn,\n getExtensionField,\n ParentConfig,\n} from '@tiptap/core'\nimport { gapCursor } from 'prosemirror-gapcursor'\n\ndeclare module '@tiptap/core' {\n interface NodeConfig<Options, Storage> {\n /**\n * Allow gap cursor\n */\n allowGapCursor?:\n | boolean\n | null\n | ((this: {\n name: string,\n options: Options,\n storage: Storage,\n parent: ParentConfig<NodeConfig<Options>>['allowGapCursor'],\n }) => boolean | null),\n }\n}\n\nexport const Gapcursor = Extension.create({\n name: 'gapCursor',\n\n addProseMirrorPlugins() {\n return [\n gapCursor(),\n ]\n },\n\n extendNodeSchema(extension) {\n const context = {\n name: extension.name,\n options: extension.options,\n storage: extension.storage,\n }\n\n return {\n allowGapCursor: callOrReturn(getExtensionField(extension, 'allowGapCursor', context)) ?? null,\n }\n },\n})\n"],"names":[],"mappings":";;;MAyBa,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC;IACxC,IAAI,EAAE,WAAW;IAEjB,qBAAqB;QACnB,OAAO;YACL,SAAS,EAAE;SACZ,CAAA;KACF;IAED,gBAAgB,CAAC,SAAS;;QACxB,MAAM,OAAO,GAAG;YACd,IAAI,EAAE,SAAS,CAAC,IAAI;YACpB,OAAO,EAAE,SAAS,CAAC,OAAO;YAC1B,OAAO,EAAE,SAAS,CAAC,OAAO;SAC3B,CAAA;QAED,OAAO;YACL,cAAc,EAAE,MAAA,YAAY,CAAC,iBAAiB,CAAC,SAAS,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAC,mCAAI,IAAI;SAC9F,CAAA;KACF;CACF;;;;"}
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
2
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tiptap/core'), require('prosemirror-gapcursor')) :
3
3
  typeof define === 'function' && define.amd ? define(['exports', '@tiptap/core', 'prosemirror-gapcursor'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global['@tiptap/extension-gapcursor'] = {}, global.core, global.prosemirrorGapcursor));
5
- }(this, (function (exports, core, prosemirrorGapcursor) { 'use strict';
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@tiptap/extension-gapcursor"] = {}, global.core, global.prosemirrorGapcursor));
5
+ })(this, (function (exports, core, prosemirrorGapcursor) { 'use strict';
6
6
 
7
7
  const Gapcursor = core.Extension.create({
8
8
  name: 'gapCursor',
@@ -13,17 +13,21 @@
13
13
  },
14
14
  extendNodeSchema(extension) {
15
15
  var _a;
16
- const context = { options: extension.options };
16
+ const context = {
17
+ name: extension.name,
18
+ options: extension.options,
19
+ storage: extension.storage,
20
+ };
17
21
  return {
18
- allowGapCursor: (_a = core.callOrReturn(extension.config.allowGapCursor, context)) !== null && _a !== void 0 ? _a : null,
22
+ allowGapCursor: (_a = core.callOrReturn(core.getExtensionField(extension, 'allowGapCursor', context))) !== null && _a !== void 0 ? _a : null,
19
23
  };
20
24
  },
21
25
  });
22
26
 
23
27
  exports.Gapcursor = Gapcursor;
24
- exports.default = Gapcursor;
28
+ exports["default"] = Gapcursor;
25
29
 
26
30
  Object.defineProperty(exports, '__esModule', { value: true });
27
31
 
28
- })));
32
+ }));
29
33
  //# sourceMappingURL=tiptap-extension-gapcursor.umd.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tiptap-extension-gapcursor.umd.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import { Extension, callOrReturn } from '@tiptap/core'\nimport { gapCursor } from 'prosemirror-gapcursor'\n\ndeclare module '@tiptap/core' {\n interface NodeConfig<Options> {\n /**\n * Allow gap cursor\n */\n allowGapCursor?:\n | boolean\n | null\n | ((this: { options: Options }) => boolean | null),\n }\n}\n\nexport const Gapcursor = Extension.create({\n name: 'gapCursor',\n\n addProseMirrorPlugins() {\n return [\n gapCursor(),\n ]\n },\n\n extendNodeSchema(extension) {\n const context = { options: extension.options }\n\n return {\n allowGapCursor: callOrReturn(extension.config.allowGapCursor, context) ?? null,\n }\n },\n})\n"],"names":["Extension","gapCursor","callOrReturn"],"mappings":";;;;;;QAea,SAAS,GAAGA,cAAS,CAAC,MAAM,CAAC;MACxC,IAAI,EAAE,WAAW;MAEjB,qBAAqB;UACnB,OAAO;cACLC,8BAAS,EAAE;WACZ,CAAA;OACF;MAED,gBAAgB,CAAC,SAAS;;UACxB,MAAM,OAAO,GAAG,EAAE,OAAO,EAAE,SAAS,CAAC,OAAO,EAAE,CAAA;UAE9C,OAAO;cACL,cAAc,EAAE,MAAAC,iBAAY,CAAC,SAAS,CAAC,MAAM,CAAC,cAAc,EAAE,OAAO,CAAC,mCAAI,IAAI;WAC/E,CAAA;OACF;GACF;;;;;;;;;;;"}
1
+ {"version":3,"file":"tiptap-extension-gapcursor.umd.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import {\n Extension,\n callOrReturn,\n getExtensionField,\n ParentConfig,\n} from '@tiptap/core'\nimport { gapCursor } from 'prosemirror-gapcursor'\n\ndeclare module '@tiptap/core' {\n interface NodeConfig<Options, Storage> {\n /**\n * Allow gap cursor\n */\n allowGapCursor?:\n | boolean\n | null\n | ((this: {\n name: string,\n options: Options,\n storage: Storage,\n parent: ParentConfig<NodeConfig<Options>>['allowGapCursor'],\n }) => boolean | null),\n }\n}\n\nexport const Gapcursor = Extension.create({\n name: 'gapCursor',\n\n addProseMirrorPlugins() {\n return [\n gapCursor(),\n ]\n },\n\n extendNodeSchema(extension) {\n const context = {\n name: extension.name,\n options: extension.options,\n storage: extension.storage,\n }\n\n return {\n allowGapCursor: callOrReturn(getExtensionField(extension, 'allowGapCursor', context)) ?? null,\n }\n },\n})\n"],"names":["Extension","gapCursor","callOrReturn","getExtensionField"],"mappings":";;;;;;QAyBa,SAAS,GAAGA,cAAS,CAAC,MAAM,CAAC;MACxC,IAAI,EAAE,WAAW;MAEjB,qBAAqB;UACnB,OAAO;cACLC,8BAAS,EAAE;WACZ,CAAA;OACF;MAED,gBAAgB,CAAC,SAAS;;UACxB,MAAM,OAAO,GAAG;cACd,IAAI,EAAE,SAAS,CAAC,IAAI;cACpB,OAAO,EAAE,SAAS,CAAC,OAAO;cAC1B,OAAO,EAAE,SAAS,CAAC,OAAO;WAC3B,CAAA;UAED,OAAO;cACL,cAAc,EAAE,MAAAC,iBAAY,CAACC,sBAAiB,CAAC,SAAS,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAC,mCAAI,IAAI;WAC9F,CAAA;OACF;GACF;;;;;;;;;;;"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tiptap/extension-gapcursor",
3
3
  "description": "gapcursor extension for tiptap",
4
- "version": "2.0.0-beta.3",
4
+ "version": "2.0.0-beta.30",
5
5
  "homepage": "https://tiptap.dev",
6
6
  "keywords": [
7
7
  "tiptap",
@@ -15,7 +15,6 @@
15
15
  "main": "dist/tiptap-extension-gapcursor.cjs.js",
16
16
  "umd": "dist/tiptap-extension-gapcursor.umd.js",
17
17
  "module": "dist/tiptap-extension-gapcursor.esm.js",
18
- "unpkg": "dist/tiptap-extension-gapcursor.bundle.umd.min.js",
19
18
  "types": "dist/packages/extension-gapcursor/src/index.d.ts",
20
19
  "files": [
21
20
  "src",
@@ -25,8 +24,13 @@
25
24
  "@tiptap/core": "^2.0.0-beta.1"
26
25
  },
27
26
  "dependencies": {
28
- "@types/prosemirror-gapcursor": "^1.0.3",
29
- "prosemirror-gapcursor": "^1.1.5"
27
+ "@types/prosemirror-gapcursor": "^1.0.4",
28
+ "prosemirror-gapcursor": "^1.2.0"
30
29
  },
31
- "gitHead": "bf357dd7cb3da87d494dd8843e90505bba9214ca"
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/ueberdosis/tiptap",
33
+ "directory": "packages/extension-gapcursor"
34
+ },
35
+ "gitHead": "31c23336d0e5d2be8b250530353531b8a241253c"
32
36
  }
package/src/gapcursor.ts CHANGED
@@ -1,15 +1,25 @@
1
- import { Extension, callOrReturn } from '@tiptap/core'
1
+ import {
2
+ Extension,
3
+ callOrReturn,
4
+ getExtensionField,
5
+ ParentConfig,
6
+ } from '@tiptap/core'
2
7
  import { gapCursor } from 'prosemirror-gapcursor'
3
8
 
4
9
  declare module '@tiptap/core' {
5
- interface NodeConfig<Options> {
10
+ interface NodeConfig<Options, Storage> {
6
11
  /**
7
12
  * Allow gap cursor
8
13
  */
9
14
  allowGapCursor?:
10
15
  | boolean
11
16
  | null
12
- | ((this: { options: Options }) => boolean | null),
17
+ | ((this: {
18
+ name: string,
19
+ options: Options,
20
+ storage: Storage,
21
+ parent: ParentConfig<NodeConfig<Options>>['allowGapCursor'],
22
+ }) => boolean | null),
13
23
  }
14
24
  }
15
25
 
@@ -23,10 +33,14 @@ export const Gapcursor = Extension.create({
23
33
  },
24
34
 
25
35
  extendNodeSchema(extension) {
26
- const context = { options: extension.options }
36
+ const context = {
37
+ name: extension.name,
38
+ options: extension.options,
39
+ storage: extension.storage,
40
+ }
27
41
 
28
42
  return {
29
- allowGapCursor: callOrReturn(extension.config.allowGapCursor, context) ?? null,
43
+ allowGapCursor: callOrReturn(getExtensionField(extension, 'allowGapCursor', context)) ?? null,
30
44
  }
31
45
  },
32
46
  })
package/CHANGELOG.md DELETED
@@ -1,139 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # [2.0.0-beta.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-beta.2...@tiptap/extension-gapcursor@2.0.0-beta.3) (2021-03-09)
7
-
8
- **Note:** Version bump only for package @tiptap/extension-gapcursor
9
-
10
-
11
-
12
-
13
-
14
- # [2.0.0-beta.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-beta.1...@tiptap/extension-gapcursor@2.0.0-beta.2) (2021-03-08)
15
-
16
- **Note:** Version bump only for package @tiptap/extension-gapcursor
17
-
18
-
19
-
20
-
21
-
22
- # [2.0.0-beta.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.12...@tiptap/extension-gapcursor@2.0.0-beta.1) (2021-03-05)
23
-
24
- **Note:** Version bump only for package @tiptap/extension-gapcursor
25
-
26
-
27
-
28
-
29
-
30
- # [2.0.0-alpha.12](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.11...@tiptap/extension-gapcursor@2.0.0-alpha.12) (2021-02-26)
31
-
32
- **Note:** Version bump only for package @tiptap/extension-gapcursor
33
-
34
-
35
-
36
-
37
-
38
- # [2.0.0-alpha.11](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.10...@tiptap/extension-gapcursor@2.0.0-alpha.11) (2021-02-16)
39
-
40
- **Note:** Version bump only for package @tiptap/extension-gapcursor
41
-
42
-
43
-
44
-
45
-
46
- # [2.0.0-alpha.10](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.9...@tiptap/extension-gapcursor@2.0.0-alpha.10) (2021-02-07)
47
-
48
- **Note:** Version bump only for package @tiptap/extension-gapcursor
49
-
50
-
51
-
52
-
53
-
54
- # [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.8...@tiptap/extension-gapcursor@2.0.0-alpha.9) (2021-02-05)
55
-
56
- **Note:** Version bump only for package @tiptap/extension-gapcursor
57
-
58
-
59
-
60
-
61
-
62
- # [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.7...@tiptap/extension-gapcursor@2.0.0-alpha.8) (2021-01-29)
63
-
64
- **Note:** Version bump only for package @tiptap/extension-gapcursor
65
-
66
-
67
-
68
-
69
-
70
- # [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.6...@tiptap/extension-gapcursor@2.0.0-alpha.7) (2021-01-29)
71
-
72
- **Note:** Version bump only for package @tiptap/extension-gapcursor
73
-
74
-
75
-
76
-
77
-
78
- # [2.0.0-alpha.6](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.5...@tiptap/extension-gapcursor@2.0.0-alpha.6) (2021-01-28)
79
-
80
- **Note:** Version bump only for package @tiptap/extension-gapcursor
81
-
82
-
83
-
84
-
85
-
86
- # [2.0.0-alpha.5](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.4...@tiptap/extension-gapcursor@2.0.0-alpha.5) (2020-12-18)
87
-
88
- **Note:** Version bump only for package @tiptap/extension-gapcursor
89
-
90
-
91
-
92
-
93
-
94
- # [2.0.0-alpha.4](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.3...@tiptap/extension-gapcursor@2.0.0-alpha.4) (2020-12-02)
95
-
96
- **Note:** Version bump only for package @tiptap/extension-gapcursor
97
-
98
-
99
-
100
-
101
-
102
- # [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.2...@tiptap/extension-gapcursor@2.0.0-alpha.3) (2020-11-19)
103
-
104
- **Note:** Version bump only for package @tiptap/extension-gapcursor
105
-
106
-
107
-
108
-
109
-
110
- # [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.1...@tiptap/extension-gapcursor@2.0.0-alpha.2) (2020-11-19)
111
-
112
- **Note:** Version bump only for package @tiptap/extension-gapcursor
113
-
114
-
115
-
116
-
117
-
118
- # [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@1.0.0-alpha.2...@tiptap/extension-gapcursor@2.0.0-alpha.1) (2020-11-18)
119
-
120
- **Note:** Version bump only for package @tiptap/extension-gapcursor
121
-
122
-
123
-
124
-
125
-
126
- # [1.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@1.0.0-alpha.1...@tiptap/extension-gapcursor@1.0.0-alpha.2) (2020-11-16)
127
-
128
- **Note:** Version bump only for package @tiptap/extension-gapcursor
129
-
130
-
131
-
132
-
133
-
134
- # 1.0.0-alpha.1 (2020-11-16)
135
-
136
-
137
- ### Reverts
138
-
139
- * Revert "use global namespace" ([0c9ce26](https://github.com/ueberdosis/tiptap-next/commit/0c9ce26c02c07d88a757c01b0a9d7f9e2b0b7502))