@tiptap/extension-gapcursor 2.0.0-beta.9 → 2.0.0-rc.2

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/README.md CHANGED
@@ -5,10 +5,10 @@
5
5
  [![Sponsor](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub)](https://github.com/sponsors/ueberdosis)
6
6
 
7
7
  ## Introduction
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*.
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
11
- Documentation can be found on the [tiptap website](https://tiptap.dev).
10
+ ## Official Documentation
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/blob/main/LICENSE.md).
14
+ Tiptap is open sourced software licensed under the [MIT license](https://github.com/ueberdosis/tiptap/blob/main/LICENSE.md).
@@ -3,13 +3,13 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var core = require('@tiptap/core');
6
- var prosemirrorGapcursor = require('prosemirror-gapcursor');
6
+ var gapcursor = require('@tiptap/pm/gapcursor');
7
7
 
8
8
  const Gapcursor = core.Extension.create({
9
9
  name: 'gapCursor',
10
10
  addProseMirrorPlugins() {
11
11
  return [
12
- prosemirrorGapcursor.gapCursor(),
12
+ gapcursor.gapCursor(),
13
13
  ];
14
14
  },
15
15
  extendNodeSchema(extension) {
@@ -17,6 +17,7 @@ const Gapcursor = core.Extension.create({
17
17
  const context = {
18
18
  name: extension.name,
19
19
  options: extension.options,
20
+ storage: extension.storage,
20
21
  };
21
22
  return {
22
23
  allowGapCursor: (_a = core.callOrReturn(core.getExtensionField(extension, 'allowGapCursor', context))) !== null && _a !== void 0 ? _a : null,
@@ -25,5 +26,5 @@ const Gapcursor = core.Extension.create({
25
26
  });
26
27
 
27
28
  exports.Gapcursor = Gapcursor;
28
- exports.default = Gapcursor;
29
- //# sourceMappingURL=tiptap-extension-gapcursor.cjs.js.map
29
+ exports["default"] = Gapcursor;
30
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.cjs","sources":["../src/gapcursor.ts"],"sourcesContent":["import {\n callOrReturn,\n Extension,\n getExtensionField,\n ParentConfig,\n} from '@tiptap/core'\nimport { gapCursor } from '@tiptap/pm/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":";;;;;;;AAyBa,MAAA,SAAS,GAAGA,cAAS,CAAC,MAAM,CAAC;AACxC,IAAA,IAAI,EAAE,WAAW;IAEjB,qBAAqB,GAAA;QACnB,OAAO;AACL,YAAAC,mBAAS,EAAE;SACZ,CAAA;KACF;AAED,IAAA,gBAAgB,CAAC,SAAS,EAAA;;AACxB,QAAA,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;AACL,YAAA,cAAc,EAAE,CAAA,EAAA,GAAAC,iBAAY,CAACC,sBAAiB,CAAC,SAAS,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAC,mCAAI,IAAI;SAC9F,CAAA;KACF;AACF,CAAA;;;;;"}
@@ -1,5 +1,5 @@
1
1
  import { Extension, callOrReturn, getExtensionField } from '@tiptap/core';
2
- import { gapCursor } from 'prosemirror-gapcursor';
2
+ import { gapCursor } from '@tiptap/pm/gapcursor';
3
3
 
4
4
  const Gapcursor = Extension.create({
5
5
  name: 'gapCursor',
@@ -13,6 +13,7 @@ const Gapcursor = Extension.create({
13
13
  const context = {
14
14
  name: extension.name,
15
15
  options: extension.options,
16
+ storage: extension.storage,
16
17
  };
17
18
  return {
18
19
  allowGapCursor: (_a = callOrReturn(getExtensionField(extension, 'allowGapCursor', context))) !== null && _a !== void 0 ? _a : null,
@@ -20,6 +21,5 @@ const Gapcursor = Extension.create({
20
21
  },
21
22
  });
22
23
 
23
- export default Gapcursor;
24
- export { Gapcursor };
25
- //# sourceMappingURL=tiptap-extension-gapcursor.esm.js.map
24
+ export { Gapcursor, Gapcursor as default };
25
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import {\n callOrReturn,\n Extension,\n getExtensionField,\n ParentConfig,\n} from '@tiptap/core'\nimport { gapCursor } from '@tiptap/pm/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":";;;AAyBa,MAAA,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC;AACxC,IAAA,IAAI,EAAE,WAAW;IAEjB,qBAAqB,GAAA;QACnB,OAAO;AACL,YAAA,SAAS,EAAE;SACZ,CAAA;KACF;AAED,IAAA,gBAAgB,CAAC,SAAS,EAAA;;AACxB,QAAA,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;AACL,YAAA,cAAc,EAAE,CAAA,EAAA,GAAA,YAAY,CAAC,iBAAiB,CAAC,SAAS,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAC,mCAAI,IAAI;SAC9F,CAAA;KACF;AACF,CAAA;;;;"}
@@ -1,14 +1,14 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tiptap/core'), require('prosemirror-gapcursor')) :
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';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tiptap/core'), require('@tiptap/pm/gapcursor')) :
3
+ typeof define === 'function' && define.amd ? define(['exports', '@tiptap/core', '@tiptap/pm/gapcursor'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@tiptap/extension-gapcursor"] = {}, global.core, global.gapcursor));
5
+ })(this, (function (exports, core, gapcursor) { 'use strict';
6
6
 
7
7
  const Gapcursor = core.Extension.create({
8
8
  name: 'gapCursor',
9
9
  addProseMirrorPlugins() {
10
10
  return [
11
- prosemirrorGapcursor.gapCursor(),
11
+ gapcursor.gapCursor(),
12
12
  ];
13
13
  },
14
14
  extendNodeSchema(extension) {
@@ -16,6 +16,7 @@
16
16
  const context = {
17
17
  name: extension.name,
18
18
  options: extension.options,
19
+ storage: extension.storage,
19
20
  };
20
21
  return {
21
22
  allowGapCursor: (_a = core.callOrReturn(core.getExtensionField(extension, 'allowGapCursor', context))) !== null && _a !== void 0 ? _a : null,
@@ -24,9 +25,9 @@
24
25
  });
25
26
 
26
27
  exports.Gapcursor = Gapcursor;
27
- exports.default = Gapcursor;
28
+ exports["default"] = Gapcursor;
28
29
 
29
30
  Object.defineProperty(exports, '__esModule', { value: true });
30
31
 
31
- })));
32
- //# sourceMappingURL=tiptap-extension-gapcursor.umd.js.map
32
+ }));
33
+ //# sourceMappingURL=index.umd.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.umd.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import {\n callOrReturn,\n Extension,\n getExtensionField,\n ParentConfig,\n} from '@tiptap/core'\nimport { gapCursor } from '@tiptap/pm/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":";;;;;;AAyBa,QAAA,SAAS,GAAGA,cAAS,CAAC,MAAM,CAAC;EACxC,IAAA,IAAI,EAAE,WAAW;MAEjB,qBAAqB,GAAA;UACnB,OAAO;EACL,YAAAC,mBAAS,EAAE;WACZ,CAAA;OACF;EAED,IAAA,gBAAgB,CAAC,SAAS,EAAA;;EACxB,QAAA,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;EACL,YAAA,cAAc,EAAE,CAAA,EAAA,GAAAC,iBAAY,CAACC,sBAAiB,CAAC,SAAS,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAC,mCAAI,IAAI;WAC9F,CAAA;OACF;EACF,CAAA;;;;;;;;;;;"}
@@ -1,14 +1,15 @@
1
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
8
  name: string;
9
9
  options: Options;
10
+ storage: Storage;
10
11
  parent: ParentConfig<NodeConfig<Options>>['allowGapCursor'];
11
12
  }) => boolean | null);
12
13
  }
13
14
  }
14
- export declare const Gapcursor: Extension<unknown>;
15
+ export declare const Gapcursor: Extension<any, any>;
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.9",
4
+ "version": "2.0.0-rc.2",
5
5
  "homepage": "https://tiptap.dev",
6
6
  "keywords": [
7
7
  "tiptap",
@@ -12,21 +12,37 @@
12
12
  "type": "github",
13
13
  "url": "https://github.com/sponsors/ueberdosis"
14
14
  },
15
- "main": "dist/tiptap-extension-gapcursor.cjs.js",
16
- "umd": "dist/tiptap-extension-gapcursor.umd.js",
17
- "module": "dist/tiptap-extension-gapcursor.esm.js",
18
- "unpkg": "dist/tiptap-extension-gapcursor.bundle.umd.min.js",
15
+ "type": "module",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/packages/extension-gapcursor/src/index.d.ts",
19
+ "import": "./dist/index.js",
20
+ "require": "./dist/index.cjs"
21
+ }
22
+ },
23
+ "main": "dist/index.cjs",
24
+ "module": "dist/index.js",
25
+ "umd": "dist/index.umd.js",
19
26
  "types": "dist/packages/extension-gapcursor/src/index.d.ts",
20
27
  "files": [
21
28
  "src",
22
29
  "dist"
23
30
  ],
24
31
  "peerDependencies": {
25
- "@tiptap/core": "^2.0.0-beta.1"
32
+ "@tiptap/core": "^2.0.0-rc.1",
33
+ "@tiptap/pm": "^2.0.0-rc.1"
34
+ },
35
+ "devDependencies": {
36
+ "@tiptap/core": "^2.0.0-rc.1",
37
+ "@tiptap/pm": "^2.0.0-rc.1"
26
38
  },
27
- "dependencies": {
28
- "@types/prosemirror-gapcursor": "^1.0.3",
29
- "prosemirror-gapcursor": "^1.1.5"
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "https://github.com/ueberdosis/tiptap",
42
+ "directory": "packages/extension-gapcursor"
30
43
  },
31
- "gitHead": "4b68a369a17269063b007008f7c5cba2f83f1f2c"
32
- }
44
+ "scripts": {
45
+ "clean": "rm -rf dist",
46
+ "build": "npm run clean && rollup -c"
47
+ }
48
+ }
package/src/gapcursor.ts CHANGED
@@ -1,13 +1,13 @@
1
1
  import {
2
- Extension,
3
2
  callOrReturn,
3
+ Extension,
4
4
  getExtensionField,
5
5
  ParentConfig,
6
6
  } from '@tiptap/core'
7
- import { gapCursor } from 'prosemirror-gapcursor'
7
+ import { gapCursor } from '@tiptap/pm/gapcursor'
8
8
 
9
9
  declare module '@tiptap/core' {
10
- interface NodeConfig<Options> {
10
+ interface NodeConfig<Options, Storage> {
11
11
  /**
12
12
  * Allow gap cursor
13
13
  */
@@ -17,6 +17,7 @@ declare module '@tiptap/core' {
17
17
  | ((this: {
18
18
  name: string,
19
19
  options: Options,
20
+ storage: Storage,
20
21
  parent: ParentConfig<NodeConfig<Options>>['allowGapCursor'],
21
22
  }) => boolean | null),
22
23
  }
@@ -35,6 +36,7 @@ export const Gapcursor = Extension.create({
35
36
  const context = {
36
37
  name: extension.name,
37
38
  options: extension.options,
39
+ storage: extension.storage,
38
40
  }
39
41
 
40
42
  return {
package/CHANGELOG.md DELETED
@@ -1,193 +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.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-beta.8...@tiptap/extension-gapcursor@2.0.0-beta.9) (2021-04-22)
7
-
8
- **Note:** Version bump only for package @tiptap/extension-gapcursor
9
-
10
-
11
-
12
-
13
-
14
- # [2.0.0-beta.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-beta.7...@tiptap/extension-gapcursor@2.0.0-beta.8) (2021-04-21)
15
-
16
-
17
- ### Bug Fixes
18
-
19
- * add name to context ([df43c1b](https://github.com/ueberdosis/tiptap/commit/df43c1bc47aa8bf7fe2bfbbd5b67f30a0b14d3ac))
20
-
21
-
22
-
23
-
24
-
25
- # [2.0.0-beta.7](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-beta.6...@tiptap/extension-gapcursor@2.0.0-beta.7) (2021-04-16)
26
-
27
- **Note:** Version bump only for package @tiptap/extension-gapcursor
28
-
29
-
30
-
31
-
32
-
33
- # [2.0.0-beta.6](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-beta.5...@tiptap/extension-gapcursor@2.0.0-beta.6) (2021-04-15)
34
-
35
- **Note:** Version bump only for package @tiptap/extension-gapcursor
36
-
37
-
38
-
39
-
40
-
41
- # [2.0.0-beta.5](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-beta.4...@tiptap/extension-gapcursor@2.0.0-beta.5) (2021-04-12)
42
-
43
-
44
- ### Features
45
-
46
- * add parentConfig to extension context for more extendable extensions, fix [#259](https://github.com/ueberdosis/tiptap/issues/259) ([5e1ec5d](https://github.com/ueberdosis/tiptap/commit/5e1ec5d2a66be164f505d631f97861ab9344ba96))
47
-
48
-
49
-
50
-
51
-
52
- # [2.0.0-beta.4](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-beta.3...@tiptap/extension-gapcursor@2.0.0-beta.4) (2021-03-16)
53
-
54
- **Note:** Version bump only for package @tiptap/extension-gapcursor
55
-
56
-
57
-
58
-
59
-
60
- # [2.0.0-beta.3](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-beta.2...@tiptap/extension-gapcursor@2.0.0-beta.3) (2021-03-09)
61
-
62
- **Note:** Version bump only for package @tiptap/extension-gapcursor
63
-
64
-
65
-
66
-
67
-
68
- # [2.0.0-beta.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-beta.1...@tiptap/extension-gapcursor@2.0.0-beta.2) (2021-03-08)
69
-
70
- **Note:** Version bump only for package @tiptap/extension-gapcursor
71
-
72
-
73
-
74
-
75
-
76
- # [2.0.0-beta.1](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.12...@tiptap/extension-gapcursor@2.0.0-beta.1) (2021-03-05)
77
-
78
- **Note:** Version bump only for package @tiptap/extension-gapcursor
79
-
80
-
81
-
82
-
83
-
84
- # [2.0.0-alpha.12](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.11...@tiptap/extension-gapcursor@2.0.0-alpha.12) (2021-02-26)
85
-
86
- **Note:** Version bump only for package @tiptap/extension-gapcursor
87
-
88
-
89
-
90
-
91
-
92
- # [2.0.0-alpha.11](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.10...@tiptap/extension-gapcursor@2.0.0-alpha.11) (2021-02-16)
93
-
94
- **Note:** Version bump only for package @tiptap/extension-gapcursor
95
-
96
-
97
-
98
-
99
-
100
- # [2.0.0-alpha.10](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.9...@tiptap/extension-gapcursor@2.0.0-alpha.10) (2021-02-07)
101
-
102
- **Note:** Version bump only for package @tiptap/extension-gapcursor
103
-
104
-
105
-
106
-
107
-
108
- # [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.8...@tiptap/extension-gapcursor@2.0.0-alpha.9) (2021-02-05)
109
-
110
- **Note:** Version bump only for package @tiptap/extension-gapcursor
111
-
112
-
113
-
114
-
115
-
116
- # [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.7...@tiptap/extension-gapcursor@2.0.0-alpha.8) (2021-01-29)
117
-
118
- **Note:** Version bump only for package @tiptap/extension-gapcursor
119
-
120
-
121
-
122
-
123
-
124
- # [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.6...@tiptap/extension-gapcursor@2.0.0-alpha.7) (2021-01-29)
125
-
126
- **Note:** Version bump only for package @tiptap/extension-gapcursor
127
-
128
-
129
-
130
-
131
-
132
- # [2.0.0-alpha.6](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.5...@tiptap/extension-gapcursor@2.0.0-alpha.6) (2021-01-28)
133
-
134
- **Note:** Version bump only for package @tiptap/extension-gapcursor
135
-
136
-
137
-
138
-
139
-
140
- # [2.0.0-alpha.5](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.4...@tiptap/extension-gapcursor@2.0.0-alpha.5) (2020-12-18)
141
-
142
- **Note:** Version bump only for package @tiptap/extension-gapcursor
143
-
144
-
145
-
146
-
147
-
148
- # [2.0.0-alpha.4](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.3...@tiptap/extension-gapcursor@2.0.0-alpha.4) (2020-12-02)
149
-
150
- **Note:** Version bump only for package @tiptap/extension-gapcursor
151
-
152
-
153
-
154
-
155
-
156
- # [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.2...@tiptap/extension-gapcursor@2.0.0-alpha.3) (2020-11-19)
157
-
158
- **Note:** Version bump only for package @tiptap/extension-gapcursor
159
-
160
-
161
-
162
-
163
-
164
- # [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-alpha.1...@tiptap/extension-gapcursor@2.0.0-alpha.2) (2020-11-19)
165
-
166
- **Note:** Version bump only for package @tiptap/extension-gapcursor
167
-
168
-
169
-
170
-
171
-
172
- # [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@1.0.0-alpha.2...@tiptap/extension-gapcursor@2.0.0-alpha.1) (2020-11-18)
173
-
174
- **Note:** Version bump only for package @tiptap/extension-gapcursor
175
-
176
-
177
-
178
-
179
-
180
- # [1.0.0-alpha.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@1.0.0-alpha.1...@tiptap/extension-gapcursor@1.0.0-alpha.2) (2020-11-16)
181
-
182
- **Note:** Version bump only for package @tiptap/extension-gapcursor
183
-
184
-
185
-
186
-
187
-
188
- # 1.0.0-alpha.1 (2020-11-16)
189
-
190
-
191
- ### Reverts
192
-
193
- * Revert "use global namespace" ([0c9ce26](https://github.com/ueberdosis/tiptap/commit/0c9ce26c02c07d88a757c01b0a9d7f9e2b0b7502))
package/LICENSE.md DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2020, überdosis GbR
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.