@creatorsn/powereditor3 0.1.6 → 0.1.8

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.
@@ -2,10 +2,11 @@ import { Plugin } from 'vue';
2
2
  import PowerEditor from './editor';
3
3
  import DevC from './devC';
4
4
  export declare const PowerEditorPlugins: Plugin;
5
- declare module 'vue' {
5
+ declare module '@vue/runtime-core' {
6
6
  interface GlobalComponents {
7
- DevC: typeof DevC;
8
7
  PowerEditor: typeof PowerEditor;
8
+ DevC: typeof DevC;
9
9
  }
10
10
  }
11
+ export {};
11
12
  export default PowerEditorPlugins;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@creatorsn/powereditor3",
3
3
  "private": false,
4
- "version": "0.1.6",
4
+ "version": "0.1.8",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -12,7 +12,8 @@
12
12
  "exports": {
13
13
  ".": {
14
14
  "import": "./dist/powereditor3.js",
15
- "require": "./dist/powereditor3.umd.cjs"
15
+ "require": "./dist/powereditor3.umd.cjs",
16
+ "types": "./dist/types/index.d.ts"
16
17
  },
17
18
  "./powereditor3.css": "./dist/powereditor3.css"
18
19
  },
@@ -27,7 +28,7 @@
27
28
  "preview": "vite preview"
28
29
  },
29
30
  "dependencies": {
30
- "@creatorsn/vfluent3": "^0.3.3",
31
+ "@creatorsn/vfluent3": "^0.3.13",
31
32
  "@tiptap/core": "2.3.0",
32
33
  "@tiptap/extension-bubble-menu": "2.3.0",
33
34
  "@tiptap/extension-code-block": "2.3.0",