vue-editify 0.1.48 → 0.1.49
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 +72 -73
- package/lib/editify.umd.js +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/style.css +1 -1
- package/package.json +2 -2
- package/src/editify/editify.less +2 -2
- package/src/index.ts +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vue-editify",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.49",
|
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.4.
|
20
|
+
"alex-editor": "^1.4.14",
|
21
21
|
"dap-util": "^1.5.4",
|
22
22
|
"highlight.js": "^11.8.0",
|
23
23
|
"katex": "^0.16.10",
|
package/src/editify/editify.less
CHANGED
@@ -440,7 +440,7 @@
|
|
440
440
|
width: 100%;
|
441
441
|
border-radius: 4px;
|
442
442
|
margin-bottom: 15px;
|
443
|
-
padding: 10px 10px 10px
|
443
|
+
padding: 10px 10px 10px 60px;
|
444
444
|
font-size: @font-size;
|
445
445
|
|
446
446
|
&::before {
|
@@ -455,7 +455,7 @@
|
|
455
455
|
content: '\e610';
|
456
456
|
font-family: 'editify-icon' !important;
|
457
457
|
font-size: 1.25em;
|
458
|
-
padding: 0
|
458
|
+
padding: 0 20px;
|
459
459
|
}
|
460
460
|
}
|
461
461
|
|