zova-ui-empty 5.0.295 → 5.0.299

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/env/.env CHANGED
@@ -3,9 +3,7 @@ APP_ROUTER_BASE =
3
3
  APP_PUBLIC_PATH =
4
4
  APP_NAME = Zova
5
5
  APP_TITLE = Zova
6
- APP_VERSION = 5.0.0
7
-
8
- APP_BASE_JWT = true
6
+ APP_VERSION = 1.0.0
9
7
 
10
8
  DEV_SERVER_HOST =
11
9
  DEV_SERVER_PORT = 9000
@@ -19,6 +17,7 @@ BUILD_ANALYZE = false
19
17
 
20
18
  API_BASE_URL=
21
19
  API_PREFIX = /api
20
+ API_JWT = true
22
21
 
23
22
  PINIA_ENABLED = false
24
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-empty",
3
- "version": "5.0.295",
3
+ "version": "5.0.299",
4
4
  "description": "A vue3 empty framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -37,22 +37,15 @@
37
37
  "url": "https://github.com/cabloy/zova/issues"
38
38
  },
39
39
  "dependencies": {
40
- "@tanstack/query-persist-client-core": "^5.45.0",
41
- "@tanstack/vue-query": "^5.45.0",
42
- "axios": "^1.6.8",
43
40
  "compression": "^1.7.4",
44
41
  "connect": "^3.7.0",
45
42
  "cors": "^2.8.5",
46
- "csx": "^10.0.2",
47
43
  "express": "^4.19.2",
48
- "localforage": "^1.10.0",
49
- "pinia": "^2.1.7",
50
44
  "quasar": "^2.17.0",
51
45
  "typestyle": "^2.4.0",
52
46
  "vue": "^3.5.6",
53
- "vue-router": "^4.4.5",
54
47
  "zod": "^3.23.8",
55
- "zova": "^5.0.210",
48
+ "zova": "^5.0.213",
56
49
  "zova-module-a-core": "^5.0.46",
57
50
  "zova-module-a-demo": "workspace:^",
58
51
  "zova-module-a-model": "^5.0.32",
@@ -79,5 +72,5 @@
79
72
  "zova-vite": "^1.0.174"
80
73
  },
81
74
  "license": "MIT",
82
- "gitHead": "483437e571f796b9ec67986973c94fe069d584cd"
75
+ "gitHead": "19d57849af6990d02eae07c666a08b84d5e50a79"
83
76
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-empty",
3
- "version": "5.0.291",
3
+ "version": "5.0.298",
4
4
  "description": "A vue3 empty framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -45,7 +45,7 @@
45
45
  "typestyle": "^2.4.0",
46
46
  "vue": "^3.5.6",
47
47
  "zod": "^3.23.8",
48
- "zova": "^5.0.207"
48
+ "zova": "^5.0.213"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@cabloy/lint": "^4.0.11",
@@ -53,13 +53,13 @@
53
53
  "@types/node": "^20.14.2",
54
54
  "@vitejs/plugin-vue": "^5.0.5",
55
55
  "concurrently": "^8.2.2",
56
- "quasar-app-extension-zova": "^1.1.173",
56
+ "quasar-app-extension-zova": "^1.1.175",
57
57
  "sass": "^1.77.5",
58
58
  "typescript": "^5.4.5",
59
59
  "vite": "^5.3.1",
60
60
  "vue-tsc": "^2.0.29",
61
- "zova-vite": "^1.0.172"
61
+ "zova-vite": "^1.0.174"
62
62
  },
63
63
  "license": "MIT",
64
- "gitHead": "544f25da60609ebc63c14f92057dedb289ba5946"
64
+ "gitHead": "25e1a6a705edb2edbb362563a9f8d69b55e1c7e9"
65
65
  }
@@ -24,7 +24,7 @@ export class BeanApi extends BeanBase {
24
24
  // request
25
25
  api.interceptors.request.use(
26
26
  config => {
27
- if (this.app.config.base.jwt) {
27
+ if (this.app.config.api.jwt) {
28
28
  config.headers.Authorization = 'Bearer ';
29
29
  }
30
30
  return config;