@tiptap/extension-dropcursor 2.0.0-beta.19 → 2.0.0-beta.195
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/packages/extension-dropcursor/src/dropcursor.d.ts +4 -4
- package/dist/tiptap-extension-dropcursor.cjs.js +7 -5
- package/dist/tiptap-extension-dropcursor.cjs.js.map +1 -1
- package/dist/tiptap-extension-dropcursor.esm.js +6 -4
- package/dist/tiptap-extension-dropcursor.esm.js.map +1 -1
- package/dist/tiptap-extension-dropcursor.umd.js +10 -8
- package/dist/tiptap-extension-dropcursor.umd.js.map +1 -1
- package/package.json +4 -6
- package/src/dropcursor.ts +9 -7
- package/CHANGELOG.md +0 -268
- package/LICENSE.md +0 -21
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Extension } from '@tiptap/core';
|
|
2
2
|
export interface DropcursorOptions {
|
|
3
|
-
color: string |
|
|
4
|
-
width: number |
|
|
5
|
-
class: string |
|
|
3
|
+
color: string | undefined;
|
|
4
|
+
width: number | undefined;
|
|
5
|
+
class: string | undefined;
|
|
6
6
|
}
|
|
7
|
-
export declare const Dropcursor: Extension<DropcursorOptions>;
|
|
7
|
+
export declare const Dropcursor: Extension<DropcursorOptions, any>;
|
|
@@ -7,10 +7,12 @@ var prosemirrorDropcursor = require('prosemirror-dropcursor');
|
|
|
7
7
|
|
|
8
8
|
const Dropcursor = core.Extension.create({
|
|
9
9
|
name: 'dropCursor',
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
addOptions() {
|
|
11
|
+
return {
|
|
12
|
+
color: 'currentColor',
|
|
13
|
+
width: 1,
|
|
14
|
+
class: undefined,
|
|
15
|
+
};
|
|
14
16
|
},
|
|
15
17
|
addProseMirrorPlugins() {
|
|
16
18
|
return [
|
|
@@ -20,5 +22,5 @@ const Dropcursor = core.Extension.create({
|
|
|
20
22
|
});
|
|
21
23
|
|
|
22
24
|
exports.Dropcursor = Dropcursor;
|
|
23
|
-
exports[
|
|
25
|
+
exports["default"] = Dropcursor;
|
|
24
26
|
//# sourceMappingURL=tiptap-extension-dropcursor.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-dropcursor.cjs.js","sources":["../src/dropcursor.ts"],"sourcesContent":["import { Extension } from '@tiptap/core'\nimport { dropCursor } from 'prosemirror-dropcursor'\n\nexport interface DropcursorOptions {\n color: string |
|
|
1
|
+
{"version":3,"file":"tiptap-extension-dropcursor.cjs.js","sources":["../src/dropcursor.ts"],"sourcesContent":["import { Extension } from '@tiptap/core'\nimport { dropCursor } from 'prosemirror-dropcursor'\n\nexport interface DropcursorOptions {\n color: string | undefined,\n width: number | undefined,\n class: string | undefined,\n}\n\nexport const Dropcursor = Extension.create<DropcursorOptions>({\n name: 'dropCursor',\n\n addOptions() {\n return {\n color: 'currentColor',\n width: 1,\n class: undefined,\n }\n },\n\n addProseMirrorPlugins() {\n return [\n dropCursor(this.options),\n ]\n },\n})\n"],"names":["Extension","dropCursor"],"mappings":";;;;;;;AASa,MAAA,UAAU,GAAGA,cAAS,CAAC,MAAM,CAAoB;AAC5D,IAAA,IAAI,EAAE,YAAY;IAElB,UAAU,GAAA;QACR,OAAO;AACL,YAAA,KAAK,EAAE,cAAc;AACrB,YAAA,KAAK,EAAE,CAAC;AACR,YAAA,KAAK,EAAE,SAAS;SACjB,CAAA;KACF;IAED,qBAAqB,GAAA;QACnB,OAAO;AACL,YAAAC,gCAAU,CAAC,IAAI,CAAC,OAAO,CAAC;SACzB,CAAA;KACF;AACF,CAAA;;;;;"}
|
|
@@ -3,10 +3,12 @@ import { dropCursor } from 'prosemirror-dropcursor';
|
|
|
3
3
|
|
|
4
4
|
const Dropcursor = Extension.create({
|
|
5
5
|
name: 'dropCursor',
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
addOptions() {
|
|
7
|
+
return {
|
|
8
|
+
color: 'currentColor',
|
|
9
|
+
width: 1,
|
|
10
|
+
class: undefined,
|
|
11
|
+
};
|
|
10
12
|
},
|
|
11
13
|
addProseMirrorPlugins() {
|
|
12
14
|
return [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-dropcursor.esm.js","sources":["../src/dropcursor.ts"],"sourcesContent":["import { Extension } from '@tiptap/core'\nimport { dropCursor } from 'prosemirror-dropcursor'\n\nexport interface DropcursorOptions {\n color: string |
|
|
1
|
+
{"version":3,"file":"tiptap-extension-dropcursor.esm.js","sources":["../src/dropcursor.ts"],"sourcesContent":["import { Extension } from '@tiptap/core'\nimport { dropCursor } from 'prosemirror-dropcursor'\n\nexport interface DropcursorOptions {\n color: string | undefined,\n width: number | undefined,\n class: string | undefined,\n}\n\nexport const Dropcursor = Extension.create<DropcursorOptions>({\n name: 'dropCursor',\n\n addOptions() {\n return {\n color: 'currentColor',\n width: 1,\n class: undefined,\n }\n },\n\n addProseMirrorPlugins() {\n return [\n dropCursor(this.options),\n ]\n },\n})\n"],"names":[],"mappings":";;;AASa,MAAA,UAAU,GAAG,SAAS,CAAC,MAAM,CAAoB;AAC5D,IAAA,IAAI,EAAE,YAAY;IAElB,UAAU,GAAA;QACR,OAAO;AACL,YAAA,KAAK,EAAE,cAAc;AACrB,YAAA,KAAK,EAAE,CAAC;AACR,YAAA,KAAK,EAAE,SAAS;SACjB,CAAA;KACF;IAED,qBAAqB,GAAA;QACnB,OAAO;AACL,YAAA,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC;SACzB,CAAA;KACF;AACF,CAAA;;;;"}
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tiptap/core'), require('prosemirror-dropcursor')) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define(['exports', '@tiptap/core', 'prosemirror-dropcursor'], factory) :
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global[
|
|
5
|
-
}(this, (function (exports, core, prosemirrorDropcursor) { 'use strict';
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@tiptap/extension-dropcursor"] = {}, global.core, global.prosemirrorDropcursor));
|
|
5
|
+
})(this, (function (exports, core, prosemirrorDropcursor) { 'use strict';
|
|
6
6
|
|
|
7
7
|
const Dropcursor = core.Extension.create({
|
|
8
8
|
name: 'dropCursor',
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
addOptions() {
|
|
10
|
+
return {
|
|
11
|
+
color: 'currentColor',
|
|
12
|
+
width: 1,
|
|
13
|
+
class: undefined,
|
|
14
|
+
};
|
|
13
15
|
},
|
|
14
16
|
addProseMirrorPlugins() {
|
|
15
17
|
return [
|
|
@@ -19,9 +21,9 @@
|
|
|
19
21
|
});
|
|
20
22
|
|
|
21
23
|
exports.Dropcursor = Dropcursor;
|
|
22
|
-
exports[
|
|
24
|
+
exports["default"] = Dropcursor;
|
|
23
25
|
|
|
24
26
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
25
27
|
|
|
26
|
-
}))
|
|
28
|
+
}));
|
|
27
29
|
//# sourceMappingURL=tiptap-extension-dropcursor.umd.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-dropcursor.umd.js","sources":["../src/dropcursor.ts"],"sourcesContent":["import { Extension } from '@tiptap/core'\nimport { dropCursor } from 'prosemirror-dropcursor'\n\nexport interface DropcursorOptions {\n color: string |
|
|
1
|
+
{"version":3,"file":"tiptap-extension-dropcursor.umd.js","sources":["../src/dropcursor.ts"],"sourcesContent":["import { Extension } from '@tiptap/core'\nimport { dropCursor } from 'prosemirror-dropcursor'\n\nexport interface DropcursorOptions {\n color: string | undefined,\n width: number | undefined,\n class: string | undefined,\n}\n\nexport const Dropcursor = Extension.create<DropcursorOptions>({\n name: 'dropCursor',\n\n addOptions() {\n return {\n color: 'currentColor',\n width: 1,\n class: undefined,\n }\n },\n\n addProseMirrorPlugins() {\n return [\n dropCursor(this.options),\n ]\n },\n})\n"],"names":["Extension","dropCursor"],"mappings":";;;;;;AASa,QAAA,UAAU,GAAGA,cAAS,CAAC,MAAM,CAAoB;EAC5D,IAAA,IAAI,EAAE,YAAY;MAElB,UAAU,GAAA;UACR,OAAO;EACL,YAAA,KAAK,EAAE,cAAc;EACrB,YAAA,KAAK,EAAE,CAAC;EACR,YAAA,KAAK,EAAE,SAAS;WACjB,CAAA;OACF;MAED,qBAAqB,GAAA;UACnB,OAAO;EACL,YAAAC,gCAAU,CAAC,IAAI,CAAC,OAAO,CAAC;WACzB,CAAA;OACF;EACF,CAAA;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiptap/extension-dropcursor",
|
|
3
3
|
"description": "dropcursor extension for tiptap",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.195",
|
|
5
5
|
"homepage": "https://tiptap.dev",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"tiptap",
|
|
@@ -21,16 +21,14 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@tiptap/core": "^2.0.0-beta.
|
|
24
|
+
"@tiptap/core": "^2.0.0-beta.193"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"
|
|
28
|
-
"prosemirror-dropcursor": "^1.3.5"
|
|
27
|
+
"prosemirror-dropcursor": "1.5.0"
|
|
29
28
|
},
|
|
30
29
|
"repository": {
|
|
31
30
|
"type": "git",
|
|
32
31
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
33
32
|
"directory": "packages/extension-dropcursor"
|
|
34
|
-
}
|
|
35
|
-
"gitHead": "6ad4777a6e0269ab7b3f59a26e9b44e634990772"
|
|
33
|
+
}
|
|
36
34
|
}
|
package/src/dropcursor.ts
CHANGED
|
@@ -2,18 +2,20 @@ import { Extension } from '@tiptap/core'
|
|
|
2
2
|
import { dropCursor } from 'prosemirror-dropcursor'
|
|
3
3
|
|
|
4
4
|
export interface DropcursorOptions {
|
|
5
|
-
color: string |
|
|
6
|
-
width: number |
|
|
7
|
-
class: string |
|
|
5
|
+
color: string | undefined,
|
|
6
|
+
width: number | undefined,
|
|
7
|
+
class: string | undefined,
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export const Dropcursor = Extension.create<DropcursorOptions>({
|
|
11
11
|
name: 'dropCursor',
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
addOptions() {
|
|
14
|
+
return {
|
|
15
|
+
color: 'currentColor',
|
|
16
|
+
width: 1,
|
|
17
|
+
class: undefined,
|
|
18
|
+
}
|
|
17
19
|
},
|
|
18
20
|
|
|
19
21
|
addProseMirrorPlugins() {
|
package/CHANGELOG.md
DELETED
|
@@ -1,268 +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.19](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.18...@tiptap/extension-dropcursor@2.0.0-beta.19) (2021-08-26)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [2.0.0-beta.18](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.17...@tiptap/extension-dropcursor@2.0.0-beta.18) (2021-07-26)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
# [2.0.0-beta.17](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.16...@tiptap/extension-dropcursor@2.0.0-beta.17) (2021-07-09)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# [2.0.0-beta.16](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.15...@tiptap/extension-dropcursor@2.0.0-beta.16) (2021-06-15)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
# [2.0.0-beta.15](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.14...@tiptap/extension-dropcursor@2.0.0-beta.15) (2021-06-14)
|
|
39
|
-
|
|
40
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
# [2.0.0-beta.14](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.13...@tiptap/extension-dropcursor@2.0.0-beta.14) (2021-05-27)
|
|
47
|
-
|
|
48
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
# [2.0.0-beta.13](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.12...@tiptap/extension-dropcursor@2.0.0-beta.13) (2021-05-18)
|
|
55
|
-
|
|
56
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
# [2.0.0-beta.12](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.11...@tiptap/extension-dropcursor@2.0.0-beta.12) (2021-05-13)
|
|
63
|
-
|
|
64
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
# [2.0.0-beta.11](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.10...@tiptap/extension-dropcursor@2.0.0-beta.11) (2021-05-07)
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
### Bug Fixes
|
|
74
|
-
|
|
75
|
-
* revert adding exports ([bc320d0](https://github.com/ueberdosis/tiptap/commit/bc320d0b4b80b0e37a7e47a56e0f6daec6e65d98))
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
# [2.0.0-beta.10](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.9...@tiptap/extension-dropcursor@2.0.0-beta.10) (2021-05-06)
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
### Bug Fixes
|
|
85
|
-
|
|
86
|
-
* revert adding type: module ([f8d6475](https://github.com/ueberdosis/tiptap/commit/f8d6475e2151faea6f96baecdd6bd75880d50d2c))
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
# [2.0.0-beta.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.8...@tiptap/extension-dropcursor@2.0.0-beta.9) (2021-05-06)
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
### Bug Fixes
|
|
96
|
-
|
|
97
|
-
* add exports to package.json ([1277fa4](https://github.com/ueberdosis/tiptap/commit/1277fa47151e9c039508cdb219bdd0ffe647f4ee))
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
# [2.0.0-beta.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.7...@tiptap/extension-dropcursor@2.0.0-beta.8) (2021-05-06)
|
|
104
|
-
|
|
105
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
# [2.0.0-beta.7](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.6...@tiptap/extension-dropcursor@2.0.0-beta.7) (2021-05-05)
|
|
112
|
-
|
|
113
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
# [2.0.0-beta.6](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.5...@tiptap/extension-dropcursor@2.0.0-beta.6) (2021-04-23)
|
|
120
|
-
|
|
121
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
# [2.0.0-beta.5](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.4...@tiptap/extension-dropcursor@2.0.0-beta.5) (2021-04-22)
|
|
128
|
-
|
|
129
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
# [2.0.0-beta.4](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.3...@tiptap/extension-dropcursor@2.0.0-beta.4) (2021-04-16)
|
|
136
|
-
|
|
137
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
# [2.0.0-beta.3](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.2...@tiptap/extension-dropcursor@2.0.0-beta.3) (2021-04-15)
|
|
144
|
-
|
|
145
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
# [2.0.0-beta.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-beta.1...@tiptap/extension-dropcursor@2.0.0-beta.2) (2021-04-06)
|
|
152
|
-
|
|
153
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
# [2.0.0-beta.1](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.11...@tiptap/extension-dropcursor@2.0.0-beta.1) (2021-03-05)
|
|
160
|
-
|
|
161
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
# [2.0.0-alpha.11](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.10...@tiptap/extension-dropcursor@2.0.0-alpha.11) (2021-02-16)
|
|
168
|
-
|
|
169
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
# [2.0.0-alpha.10](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.9...@tiptap/extension-dropcursor@2.0.0-alpha.10) (2021-02-07)
|
|
176
|
-
|
|
177
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
# [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.8...@tiptap/extension-dropcursor@2.0.0-alpha.9) (2021-02-05)
|
|
184
|
-
|
|
185
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.7...@tiptap/extension-dropcursor@2.0.0-alpha.8) (2021-01-29)
|
|
192
|
-
|
|
193
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.6...@tiptap/extension-dropcursor@2.0.0-alpha.7) (2021-01-29)
|
|
200
|
-
|
|
201
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
# [2.0.0-alpha.6](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.5...@tiptap/extension-dropcursor@2.0.0-alpha.6) (2021-01-28)
|
|
208
|
-
|
|
209
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
# [2.0.0-alpha.5](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.4...@tiptap/extension-dropcursor@2.0.0-alpha.5) (2020-12-18)
|
|
216
|
-
|
|
217
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
# [2.0.0-alpha.4](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.3...@tiptap/extension-dropcursor@2.0.0-alpha.4) (2020-12-02)
|
|
224
|
-
|
|
225
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.2...@tiptap/extension-dropcursor@2.0.0-alpha.3) (2020-11-19)
|
|
232
|
-
|
|
233
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@2.0.0-alpha.1...@tiptap/extension-dropcursor@2.0.0-alpha.2) (2020-11-19)
|
|
240
|
-
|
|
241
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@1.0.0-alpha.2...@tiptap/extension-dropcursor@2.0.0-alpha.1) (2020-11-18)
|
|
248
|
-
|
|
249
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
# [1.0.0-alpha.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-dropcursor@1.0.0-alpha.1...@tiptap/extension-dropcursor@1.0.0-alpha.2) (2020-11-16)
|
|
256
|
-
|
|
257
|
-
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
# 1.0.0-alpha.1 (2020-11-16)
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
### Reverts
|
|
267
|
-
|
|
268
|
-
* 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) 2021, ü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.
|