@tiptap/extension-focus 3.0.0-next.5 → 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
  Focus: () => import_extensions2.Focus,
24
- FocusOptions: () => import_extensions2.FocusOptions,
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.Focus;
31
30
  // Annotate the CommonJS export names for ESM import in node:
32
31
  0 && (module.exports = {
33
- Focus,
34
- FocusOptions
32
+ Focus
35
33
  });
36
34
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { Focus } from '@tiptap/extensions'\n\nexport { Focus, FocusOptions } from '@tiptap/extensions'\n\nexport default Focus\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAsB;AAEtB,IAAAA,qBAAoC;AAEpC,IAAO,gBAAQ;","names":["import_extensions"]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { Focus } from '@tiptap/extensions'\n\nexport type { FocusOptions } from '@tiptap/extensions'\nexport { Focus } from '@tiptap/extensions'\n\nexport default Focus\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAsB;AAGtB,IAAAA,qBAAsB;AAEtB,IAAO,gBAAQ;","names":["import_extensions"]}
package/dist/index.js CHANGED
@@ -1,10 +1,9 @@
1
1
  // src/index.ts
2
2
  import { Focus } from "@tiptap/extensions";
3
- import { Focus as Focus2, FocusOptions } from "@tiptap/extensions";
3
+ import { Focus as Focus2 } from "@tiptap/extensions";
4
4
  var index_default = Focus;
5
5
  export {
6
6
  Focus2 as Focus,
7
- FocusOptions,
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 { Focus } from '@tiptap/extensions'\n\nexport { Focus, FocusOptions } from '@tiptap/extensions'\n\nexport default Focus\n"],"mappings":";AAAA,SAAS,aAAa;AAEtB,SAAS,SAAAA,QAAO,oBAAoB;AAEpC,IAAO,gBAAQ;","names":["Focus"]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { Focus } from '@tiptap/extensions'\n\nexport type { FocusOptions } from '@tiptap/extensions'\nexport { Focus } from '@tiptap/extensions'\n\nexport default Focus\n"],"mappings":";AAAA,SAAS,aAAa;AAGtB,SAAS,SAAAA,cAAa;AAEtB,IAAO,gBAAQ;","names":["Focus"]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tiptap/extension-focus",
3
3
  "description": "focus extension for tiptap",
4
- "version": "3.0.0-next.5",
4
+ "version": "3.0.0-next.7",
5
5
  "homepage": "https://tiptap.dev",
6
6
  "keywords": [
7
7
  "tiptap",
@@ -31,15 +31,15 @@
31
31
  "dist"
32
32
  ],
33
33
  "devDependencies": {
34
- "@tiptap/extensions": "3.0.0-next.5"
34
+ "@tiptap/extensions": "3.0.0-next.7"
35
35
  },
36
36
  "peerDependencies": {
37
- "@tiptap/extensions": "3.0.0-next.5"
37
+ "@tiptap/extensions": "3.0.0-next.7"
38
38
  },
39
39
  "repository": {
40
40
  "type": "git",
41
41
  "url": "https://github.com/ueberdosis/tiptap",
42
- "directory": "packages/extension-focus"
42
+ "directory": "packages-deprecated/extension-focus"
43
43
  },
44
44
  "scripts": {
45
45
  "build": "tsup",
package/src/index.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { Focus } from '@tiptap/extensions'
2
2
 
3
- export { Focus, FocusOptions } from '@tiptap/extensions'
3
+ export type { FocusOptions } from '@tiptap/extensions'
4
+ export { Focus } from '@tiptap/extensions'
4
5
 
5
6
  export default Focus