xframelib 0.9.3 → 0.9.5

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.
@@ -27,6 +27,11 @@ export interface IUIObject {
27
27
  * 是否是能访问互联网,还是内网部署应用
28
28
  * */
29
29
  IsInternet?: boolean;
30
+ /**
31
+ * 是否:只用户验证,不验证角色与功能授权,默认为false
32
+ * true:只验证用户,不检查角色授权
33
+ */
34
+ OnlyUserVerify?: boolean;
30
35
  /**
31
36
  * 网站灰色模式,用于可能悼念的日期开启
32
37
  * 默认为false
@@ -1,3 +1,6 @@
1
+ /**
2
+ * 为了解决循环引用依赖问题
3
+ */
1
4
  import { ITokenInfo } from '../model/IUserModel';
2
5
  import StorageHelper from '../utils/Storage';
3
6
  export declare const storageHelper: StorageHelper;
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "xframelib",
3
- "version": "0.9.3",
3
+ "version": "0.9.5",
4
4
  "description": "积累的前端开发基础库",
5
5
  "main": "dist/index.js",
6
6
  "common": "dist/index.cjs",
7
7
  "typings": "dist/index.d.ts",
8
+ "type":"module",
8
9
  "scripts": {
9
10
  "dev": "vite --port 8099",
10
11
  "build": "vite build",
@@ -31,9 +32,9 @@
31
32
  "@hprose/io": "^3.0.10",
32
33
  "@hprose/rpc-core": "^3.0.10",
33
34
  "@hprose/rpc-html5": "^3.0.10",
34
- "@iconify/vue": "^4.3.0",
35
+ "@iconify/vue": "^5.0.0",
35
36
  "@microsoft/signalr": "^8.0.7",
36
- "axios": "^1.8.4",
37
+ "axios": "^1.9.0",
37
38
  "fflate": "^0.8.2",
38
39
  "iconv-lite": "^0.6.3",
39
40
  "localforage": "^1.10.0",
@@ -52,17 +53,17 @@
52
53
  "@rollup/plugin-typescript": "^12.1.2",
53
54
  "@types/streamsaver": "^2.0.5",
54
55
  "@vitejs/plugin-vue": "^5.2.3",
55
- "esbuild": "^0.25.2",
56
+ "esbuild": "^0.25.3",
56
57
  "rimraf": "^6.0.1",
57
58
  "rollup-plugin-copy": "^3.5.0",
58
59
  "rollup-plugin-esbuild": "^6.2.1",
59
60
  "rollup-plugin-scss": "^4.0.1",
60
61
  "rollup-plugin-typescript2": "^0.36.0",
61
62
  "rollup-plugin-vue": "^6.0.0",
62
- "sass": "^1.86.3",
63
+ "sass": "^1.87.0",
63
64
  "typescript": "^5.8.3",
64
- "vite": "^6.2.5",
65
+ "vite": "^6.3.4",
65
66
  "vue": "^3.5.13",
66
- "vue-router": "^4.5.0"
67
+ "vue-router": "^4.5.1"
67
68
  }
68
69
  }