vue-editify 0.0.49 → 0.0.50

Sign up to get free protection for your applications and to get access to all the features.
package/examples/App.vue CHANGED
@@ -13,7 +13,7 @@ export default {
13
13
  return {
14
14
  value: ``,
15
15
  menuConfig: {
16
- mode: 'fixed',
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: true,
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.49";
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));