@tiptap/extension-gapcursor 2.0.0-beta.2 → 2.0.0-beta.200
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 +2 -2
- package/dist/packages/extension-gapcursor/src/gapcursor.d.ts +6 -3
- package/dist/tiptap-extension-gapcursor.cjs.js +7 -3
- package/dist/tiptap-extension-gapcursor.cjs.js.map +1 -1
- package/dist/tiptap-extension-gapcursor.esm.js +8 -5
- package/dist/tiptap-extension-gapcursor.esm.js.map +1 -1
- package/dist/tiptap-extension-gapcursor.umd.js +10 -6
- package/dist/tiptap-extension-gapcursor.umd.js.map +1 -1
- package/package.json +8 -6
- package/src/gapcursor.ts +19 -5
- package/CHANGELOG.md +0 -131
- package/LICENSE.md +0 -21
- package/dist/tiptap-extension-gapcursor.bundle.umd.min.js +0 -2
- package/dist/tiptap-extension-gapcursor.bundle.umd.min.js.map +0 -1
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
|
-
##
|
|
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
|
|
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<
|
|
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 = {
|
|
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
|
|
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
|
|
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 {
|
|
1
|
+
{"version":3,"file":"tiptap-extension-gapcursor.cjs.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import {\n callOrReturn,\n Extension,\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":";;;;;;;AAyBa,MAAA,SAAS,GAAGA,cAAS,CAAC,MAAM,CAAC;AACxC,IAAA,IAAI,EAAE,WAAW;IAEjB,qBAAqB,GAAA;QACnB,OAAO;AACL,YAAAC,8BAAS,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,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 = {
|
|
13
|
+
const context = {
|
|
14
|
+
name: extension.name,
|
|
15
|
+
options: extension.options,
|
|
16
|
+
storage: extension.storage,
|
|
17
|
+
};
|
|
14
18
|
return {
|
|
15
|
-
allowGapCursor: (_a = callOrReturn(extension
|
|
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
|
|
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 {
|
|
1
|
+
{"version":3,"file":"tiptap-extension-gapcursor.esm.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import {\n callOrReturn,\n Extension,\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":";;;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,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[
|
|
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 = {
|
|
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
|
|
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
|
|
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 {
|
|
1
|
+
{"version":3,"file":"tiptap-extension-gapcursor.umd.js","sources":["../src/gapcursor.ts"],"sourcesContent":["import {\n callOrReturn,\n Extension,\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":";;;;;;AAyBa,QAAA,SAAS,GAAGA,cAAS,CAAC,MAAM,CAAC;EACxC,IAAA,IAAI,EAAE,WAAW;MAEjB,qBAAqB,GAAA;UACnB,OAAO;EACL,YAAAC,8BAAS,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;;;;;;;;;;;"}
|
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.
|
|
4
|
+
"version": "2.0.0-beta.200",
|
|
5
5
|
"homepage": "https://tiptap.dev",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"tiptap",
|
|
@@ -15,18 +15,20 @@
|
|
|
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",
|
|
22
21
|
"dist"
|
|
23
22
|
],
|
|
24
23
|
"peerDependencies": {
|
|
25
|
-
"@tiptap/core": "^2.0.0-beta.
|
|
24
|
+
"@tiptap/core": "^2.0.0-beta.193"
|
|
26
25
|
},
|
|
27
26
|
"dependencies": {
|
|
28
|
-
"
|
|
29
|
-
"prosemirror-gapcursor": "^1.1.5"
|
|
27
|
+
"prosemirror-gapcursor": "^1.3.1"
|
|
30
28
|
},
|
|
31
|
-
"
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/ueberdosis/tiptap",
|
|
32
|
+
"directory": "packages/extension-gapcursor"
|
|
33
|
+
}
|
|
32
34
|
}
|
package/src/gapcursor.ts
CHANGED
|
@@ -1,15 +1,25 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
callOrReturn,
|
|
3
|
+
Extension,
|
|
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: {
|
|
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 = {
|
|
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
|
|
43
|
+
allowGapCursor: callOrReturn(getExtensionField(extension, 'allowGapCursor', context)) ?? null,
|
|
30
44
|
}
|
|
31
45
|
},
|
|
32
46
|
})
|
package/CHANGELOG.md
DELETED
|
@@ -1,131 +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.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)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [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)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
# [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)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# [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)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
# [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)
|
|
39
|
-
|
|
40
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
# [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)
|
|
47
|
-
|
|
48
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
# [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)
|
|
55
|
-
|
|
56
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
# [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)
|
|
63
|
-
|
|
64
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
# [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)
|
|
71
|
-
|
|
72
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
# [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)
|
|
79
|
-
|
|
80
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
# [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)
|
|
87
|
-
|
|
88
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
# [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)
|
|
95
|
-
|
|
96
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
# [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)
|
|
103
|
-
|
|
104
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
# [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)
|
|
111
|
-
|
|
112
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
# [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)
|
|
119
|
-
|
|
120
|
-
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
# 1.0.0-alpha.1 (2020-11-16)
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
### Reverts
|
|
130
|
-
|
|
131
|
-
* Revert "use global namespace" ([0c9ce26](https://github.com/ueberdosis/tiptap-next/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.
|