vue-editify 0.1.16 → 0.1.17

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.d.ts CHANGED
@@ -6,7 +6,7 @@ import { App } from 'vue';
6
6
  import { default as Editify } from './editify/editify.vue';
7
7
  import { AlexElement } from 'alex-editor';
8
8
 
9
- declare const version = "0.1.16";
9
+ declare const version = "0.1.17";
10
10
  declare const install: (app: App) => void;
11
11
  declare const stdin_default: {
12
12
  install: (app: App) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-editify",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "*.css"
@@ -17,7 +17,7 @@
17
17
  "lib": "vue-tsc && vite build"
18
18
  },
19
19
  "dependencies": {
20
- "alex-editor": "^1.3.25",
20
+ "alex-editor": "^1.3.26",
21
21
  "dap-util": "^1.5.4",
22
22
  "highlight.js": "^11.8.0",
23
23
  "vue": "^3.4.19"
package/src/index.ts CHANGED
@@ -12,7 +12,7 @@ import { InsertImageUploadErrorType } from './components/insertImage/props'
12
12
  import { InsertVideoUploadErrorType } from './components/insertVideo/props'
13
13
 
14
14
  //版本号
15
- const version = '0.1.16'
15
+ const version = '0.1.17'
16
16
  //安装函数
17
17
  const install = (app: App) => {
18
18
  app.component(Editify.name!, Editify)