vue-editify 0.0.49 → 0.0.50
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 +4 -1
- package/lib/editify.es.js +2 -2
- package/lib/editify.umd.js +1 -1
- package/package.json +1 -1
- package/src/core/index.js +1 -1
- package/src/index.js +1 -1
package/examples/App.vue
CHANGED
@@ -13,7 +13,7 @@ export default {
|
|
13
13
|
return {
|
14
14
|
value: ``,
|
15
15
|
menuConfig: {
|
16
|
-
mode: '
|
16
|
+
mode: 'default',
|
17
17
|
sequence: {
|
18
18
|
alert: 100,
|
19
19
|
zip: 101
|
@@ -25,6 +25,9 @@ export default {
|
|
25
25
|
sourceView: {
|
26
26
|
show: true
|
27
27
|
},
|
28
|
+
fullScreen: {
|
29
|
+
show: true
|
30
|
+
},
|
28
31
|
extends: {
|
29
32
|
zip: {
|
30
33
|
title: '上传压缩包',
|
package/lib/editify.es.js
CHANGED
@@ -16494,7 +16494,7 @@ const getMenuConfig = function(editTrans, editLocale) {
|
|
16494
16494
|
//全屏
|
16495
16495
|
fullScreen: {
|
16496
16496
|
//是否显示此工具
|
16497
|
-
show:
|
16497
|
+
show: false,
|
16498
16498
|
//左侧边框是否显示
|
16499
16499
|
leftBorder: false,
|
16500
16500
|
//右侧边框是否显示
|
@@ -23196,7 +23196,7 @@ const i18n = (locale) => {
|
|
23196
23196
|
return translations[locale][key];
|
23197
23197
|
};
|
23198
23198
|
};
|
23199
|
-
const version = "0.0.
|
23199
|
+
const version = "0.0.50";
|
23200
23200
|
const install = (app, props) => {
|
23201
23201
|
const locale = (props ? props.locale : "zh_CN") || "zh_CN";
|
23202
23202
|
app.provide("$editTrans", i18n(locale));
|