zova-ui-vuetify 5.1.87 → 5.1.89

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,7 +1,7 @@
1
1
  {
2
2
  "name": "zova-ui-vuetify",
3
- "version": "5.1.87",
4
- "gitHead": "4c0d437257e2e7a6e050aa4afdd7e135bc48c022",
3
+ "version": "5.1.89",
4
+ "gitHead": "02e537307eb164daefbdbceaec14e703a5796724",
5
5
  "description": "A vue3 vuetify framework with ioc",
6
6
  "keywords": [
7
7
  "ioc",
@@ -87,7 +87,7 @@
87
87
  "vue": "^3.5.34",
88
88
  "vue-router": "npm:@cabloy/vue-router@^4.4.16",
89
89
  "vuetify": "^4.0.7",
90
- "zod": "npm:@cabloy/zod@4.3.6",
90
+ "zod": "^4.3.6",
91
91
  "zova": "^5.1.63",
92
92
  "zova-jsx": "^1.1.38",
93
93
  "zova-module-a-api": "^5.1.10",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-vuetify",
3
- "version": "5.1.85",
3
+ "version": "5.1.87",
4
4
  "description": "A vue3 vuetify framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -59,7 +59,7 @@
59
59
  "vue": "^3.5.34",
60
60
  "vuetify": "^4.0.7",
61
61
  "vue-router": "npm:@cabloy/vue-router@^4.4.16",
62
- "zova": "^5.1.61",
62
+ "zova": "^5.1.63",
63
63
  "zova-suite-a-cabloy": "^5.1.20"
64
64
  },
65
65
  "devDependencies": {
@@ -73,7 +73,7 @@
73
73
  "oxfmt": "^0.45.0",
74
74
  "oxlint": "^1.64.0",
75
75
  "less": "^4.6.4",
76
- "quasar-app-extension-zova": "^1.2.25",
76
+ "quasar-app-extension-zova": "^1.2.26",
77
77
  "sass-embedded": "^1.99.0",
78
78
  "typescript": "^5.9.3",
79
79
  "unplugin-fonts": "^1.4.0",
@@ -81,7 +81,7 @@
81
81
  "vite-plugin-fake-server-turbo": "^3.0.18",
82
82
  "vite-plugin-vuetify": "^2.1.3",
83
83
  "vue-tsc": "^3.2.8",
84
- "zova-vite": "^1.1.24"
84
+ "zova-vite": "^1.1.25"
85
85
  },
86
86
  "license": "MIT",
87
87
  "gitHead": "1c1c99cd879a2f00f32fb4b369a16ae90b9405da",
@@ -0,0 +1,15 @@
1
+ import type { ZovaConfigOptional, ZovaSys } from 'zova';
2
+
3
+ export default function (_sys: ZovaSys) {
4
+ const config: ZovaConfigOptional = {};
5
+
6
+ // routes
7
+ config.routes = {
8
+ path: {
9
+ ['/start/login' as any]: { alias: '/login' },
10
+ },
11
+ name: {},
12
+ };
13
+
14
+ return config;
15
+ }
@@ -0,0 +1,15 @@
1
+ import type { ZovaConfigOptional, ZovaSys } from 'zova';
2
+
3
+ export default function (_sys: ZovaSys) {
4
+ const config: ZovaConfigOptional = {};
5
+
6
+ // routes
7
+ config.routes = {
8
+ path: {
9
+ ['/start/login' as any]: { alias: '/login' },
10
+ },
11
+ name: {},
12
+ };
13
+
14
+ return config;
15
+ }
@@ -136,7 +136,7 @@ export class ModelPassport extends BeanModelBase {
136
136
 
137
137
  async ensurePassport() {
138
138
  if (process.env.CLIENT) return this.passport;
139
- if (!this.isAuthenticated && this.accessToken) {
139
+ if (!this.sys.config.ssr.ignoreCookieOnServer && !this.isAuthenticated && this.accessToken) {
140
140
  this.passport = await this.$api.homeUserPassport.current();
141
141
  this._setLocaleTz();
142
142
  }