zova-ui-empty 5.1.82 → 5.1.83

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-empty",
3
- "version": "5.1.82",
4
- "gitHead": "4c0d437257e2e7a6e050aa4afdd7e135bc48c022",
3
+ "version": "5.1.83",
4
+ "gitHead": "651fbd41343b83e2a0d6d67d2e824281a9f16f06",
5
5
  "description": "A vue3 empty framework with ioc",
6
6
  "keywords": [
7
7
  "ioc",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-empty",
3
- "version": "5.1.80",
3
+ "version": "5.1.82",
4
4
  "packageManager": "pnpm@10.19.0",
5
5
  "description": "A vue3 empty framework with ioc",
6
6
  "publishConfig": {
@@ -46,7 +46,7 @@
46
46
  "quasar": "^2.19.3",
47
47
  "vue": "^3.5.34",
48
48
  "vue-router": "npm:@cabloy/vue-router@^4.4.16",
49
- "zova": "^5.1.61"
49
+ "zova": "^5.1.63"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@cabloy/lint": "^5.1.9",
@@ -56,13 +56,13 @@
56
56
  "concurrently": "^8.2.2",
57
57
  "oxfmt": "^0.45.0",
58
58
  "oxlint": "^1.64.0",
59
- "quasar-app-extension-zova": "^1.2.25",
59
+ "quasar-app-extension-zova": "^1.2.26",
60
60
  "sass": "^1.99.0",
61
61
  "typescript": "^5.9.3",
62
62
  "vite": "^7.3.3",
63
63
  "vite-plugin-fake-server-turbo": "^3.0.18",
64
64
  "vue-tsc": "^3.2.8",
65
- "zova-vite": "^1.1.24"
65
+ "zova-vite": "^1.1.25"
66
66
  },
67
67
  "license": "MIT",
68
68
  "gitHead": "1c1c99cd879a2f00f32fb4b369a16ae90b9405da",
@@ -132,7 +132,7 @@ export class ModelPassport extends BeanModelBase {
132
132
 
133
133
  async ensurePassport() {
134
134
  if (process.env.CLIENT) return this.passport;
135
- if (!this.isAuthenticated && this.accessToken) {
135
+ if (!this.sys.config.ssr.ignoreCookieOnServer && !this.isAuthenticated && this.accessToken) {
136
136
  this.passport = await this.$api.homeUserPassport.current();
137
137
  this._setLocaleTz();
138
138
  }