vue-editify 0.1.16 → 0.1.17
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/examples/App.vue +1 -1
- package/lib/editify.es.js +4 -1
- package/lib/editify.umd.js +1 -1
- package/lib/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -1
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.
|
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.
|
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.
|
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.
|
15
|
+
const version = '0.1.17'
|
16
16
|
//安装函数
|
17
17
|
const install = (app: App) => {
|
18
18
|
app.component(Editify.name!, Editify)
|