@tiptap/extension-dropcursor 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/index.cjs CHANGED
@@ -21,7 +21,6 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
21
21
  var index_exports = {};
22
22
  __export(index_exports, {
23
23
  Dropcursor: () => import_extensions2.Dropcursor,
24
- DropcursorOptions: () => import_extensions2.DropcursorOptions,
25
24
  default: () => index_default
26
25
  });
27
26
  module.exports = __toCommonJS(index_exports);
@@ -30,7 +29,6 @@ var import_extensions2 = require("@tiptap/extensions");
30
29
  var index_default = import_extensions.Dropcursor;
31
30
  // Annotate the CommonJS export names for ESM import in node:
32
31
  0 && (module.exports = {
33
- Dropcursor,
34
- DropcursorOptions
32
+ Dropcursor
35
33
  });
36
34
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { Dropcursor } from '@tiptap/extensions'\n\nexport { Dropcursor, DropcursorOptions } from '@tiptap/extensions'\n\nexport default Dropcursor\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAA2B;AAE3B,IAAAA,qBAA8C;AAE9C,IAAO,gBAAQ;","names":["import_extensions"]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { Dropcursor } from '@tiptap/extensions'\n\nexport type { DropcursorOptions } from '@tiptap/extensions'\nexport { Dropcursor } from '@tiptap/extensions'\n\nexport default Dropcursor\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAA2B;AAG3B,IAAAA,qBAA2B;AAE3B,IAAO,gBAAQ;","names":["import_extensions"]}
package/dist/index.js CHANGED
@@ -1,10 +1,9 @@
1
1
  // src/index.ts
2
2
  import { Dropcursor } from "@tiptap/extensions";
3
- import { Dropcursor as Dropcursor2, DropcursorOptions } from "@tiptap/extensions";
3
+ import { Dropcursor as Dropcursor2 } from "@tiptap/extensions";
4
4
  var index_default = Dropcursor;
5
5
  export {
6
6
  Dropcursor2 as Dropcursor,
7
- DropcursorOptions,
8
7
  index_default as default
9
8
  };
10
9
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { Dropcursor } from '@tiptap/extensions'\n\nexport { Dropcursor, DropcursorOptions } from '@tiptap/extensions'\n\nexport default Dropcursor\n"],"mappings":";AAAA,SAAS,kBAAkB;AAE3B,SAAS,cAAAA,aAAY,yBAAyB;AAE9C,IAAO,gBAAQ;","names":["Dropcursor"]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { Dropcursor } from '@tiptap/extensions'\n\nexport type { DropcursorOptions } from '@tiptap/extensions'\nexport { Dropcursor } from '@tiptap/extensions'\n\nexport default Dropcursor\n"],"mappings":";AAAA,SAAS,kBAAkB;AAG3B,SAAS,cAAAA,mBAAkB;AAE3B,IAAO,gBAAQ;","names":["Dropcursor"]}
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": "3.0.0-next.6",
4
+ "version": "3.0.0-next.7",
5
5
  "homepage": "https://tiptap.dev",
6
6
  "keywords": [
7
7
  "tiptap",
@@ -31,7 +31,7 @@
31
31
  "dist"
32
32
  ],
33
33
  "devDependencies": {
34
- "@tiptap/extensions": "^3.0.0-next.6"
34
+ "@tiptap/extensions": "^3.0.0-next.7"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "@tiptap/extensions": "^3.0.0-next.3"
@@ -39,7 +39,7 @@
39
39
  "repository": {
40
40
  "type": "git",
41
41
  "url": "https://github.com/ueberdosis/tiptap",
42
- "directory": "packages/extension-dropcursor"
42
+ "directory": "packages-deprecated/extension-dropcursor"
43
43
  },
44
44
  "scripts": {
45
45
  "build": "tsup",
package/src/index.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { Dropcursor } from '@tiptap/extensions'
2
2
 
3
- export { Dropcursor, DropcursorOptions } from '@tiptap/extensions'
3
+ export type { DropcursorOptions } from '@tiptap/extensions'
4
+ export { Dropcursor } from '@tiptap/extensions'
4
5
 
5
6
  export default Dropcursor