@jx3box/jx3box-common-ui 6.5.6 → 6.5.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jx3box/jx3box-common-ui",
3
- "version": "6.5.6",
3
+ "version": "6.5.7",
4
4
  "description": "JX3BOX UI",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -31,9 +31,9 @@
31
31
  ],
32
32
  "dependencies": {
33
33
  "@jx3box/jx3box-comment-ui": "^1.7.1",
34
- "@jx3box/jx3box-common": "^7.4.8",
35
- "@jx3box/jx3box-data": "^1.11.5",
36
- "@jx3box/jx3box-editor": "^1.5.5",
34
+ "@jx3box/jx3box-common": "^7.6.1",
35
+ "@jx3box/jx3box-data": "^3.0.3",
36
+ "@jx3box/jx3box-editor": "^1.6.1",
37
37
  "axios": "^0.26.1",
38
38
  "dayjs": "^1.11.0",
39
39
  "element-ui": "^2.13.2",
@@ -39,6 +39,7 @@ import Bus from "../service/bus";
39
39
  import { isApp } from "../assets/js/app.js";
40
40
  import {getDecoration} from "../service/cms"
41
41
  import { __imgPath } from "@jx3box/jx3box-common/data/jx3box.json";
42
+ import User from '@jx3box/jx3box-common'
42
43
  export default {
43
44
  name: "LeftSidebar",
44
45
  props: ["open", "withoutBread"],
@@ -117,7 +118,7 @@ export default {
117
118
  },
118
119
  created: function () {
119
120
  this.isOpen = this.open === undefined ? true : this.open;
120
- this.getDecoration()
121
+ User.isLogin() && this.getDecoration()
121
122
  },
122
123
  };
123
124
  </script>