@tiptap/extension-bullet-list 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
  BulletList: () => import_extension_list2.BulletList,
24
- BulletListOptions: () => import_extension_list2.BulletListOptions,
25
24
  default: () => index_default
26
25
  });
27
26
  module.exports = __toCommonJS(index_exports);
@@ -30,7 +29,6 @@ var import_extension_list2 = require("@tiptap/extension-list");
30
29
  var index_default = import_extension_list.BulletList;
31
30
  // Annotate the CommonJS export names for ESM import in node:
32
31
  0 && (module.exports = {
33
- BulletList,
34
- BulletListOptions
32
+ BulletList
35
33
  });
36
34
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { BulletList } from '@tiptap/extension-list'\n\nexport { BulletList, BulletListOptions } from '@tiptap/extension-list'\n\nexport default BulletList\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,4BAA2B;AAE3B,IAAAA,yBAA8C;AAE9C,IAAO,gBAAQ;","names":["import_extension_list"]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { BulletList } from '@tiptap/extension-list'\n\nexport type { BulletListOptions } from '@tiptap/extension-list'\nexport { BulletList } from '@tiptap/extension-list'\n\nexport default BulletList\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,4BAA2B;AAG3B,IAAAA,yBAA2B;AAE3B,IAAO,gBAAQ;","names":["import_extension_list"]}
package/dist/index.js CHANGED
@@ -1,10 +1,9 @@
1
1
  // src/index.ts
2
2
  import { BulletList } from "@tiptap/extension-list";
3
- import { BulletList as BulletList2, BulletListOptions } from "@tiptap/extension-list";
3
+ import { BulletList as BulletList2 } from "@tiptap/extension-list";
4
4
  var index_default = BulletList;
5
5
  export {
6
6
  BulletList2 as BulletList,
7
- BulletListOptions,
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 { BulletList } from '@tiptap/extension-list'\n\nexport { BulletList, BulletListOptions } from '@tiptap/extension-list'\n\nexport default BulletList\n"],"mappings":";AAAA,SAAS,kBAAkB;AAE3B,SAAS,cAAAA,aAAY,yBAAyB;AAE9C,IAAO,gBAAQ;","names":["BulletList"]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { BulletList } from '@tiptap/extension-list'\n\nexport type { BulletListOptions } from '@tiptap/extension-list'\nexport { BulletList } from '@tiptap/extension-list'\n\nexport default BulletList\n"],"mappings":";AAAA,SAAS,kBAAkB;AAG3B,SAAS,cAAAA,mBAAkB;AAE3B,IAAO,gBAAQ;","names":["BulletList"]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tiptap/extension-bullet-list",
3
3
  "description": "bullet list 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/extension-list": "^3.0.0-next.6"
34
+ "@tiptap/extension-list": "^3.0.0-next.7"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "@tiptap/extension-list": "^3.0.0-next.4"
package/src/index.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { BulletList } from '@tiptap/extension-list'
2
2
 
3
- export { BulletList, BulletListOptions } from '@tiptap/extension-list'
3
+ export type { BulletListOptions } from '@tiptap/extension-list'
4
+ export { BulletList } from '@tiptap/extension-list'
4
5
 
5
6
  export default BulletList