zova-ui-vuetify 5.1.87 → 5.1.88
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.
|
|
4
|
-
"gitHead": "
|
|
3
|
+
"version": "5.1.88",
|
|
4
|
+
"gitHead": "651fbd41343b83e2a0d6d67d2e824281a9f16f06",
|
|
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": "
|
|
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",
|
package/package.original.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-ui-vuetify",
|
|
3
|
-
"version": "5.1.
|
|
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.
|
|
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.
|
|
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.
|
|
84
|
+
"zova-vite": "^1.1.25"
|
|
85
85
|
},
|
|
86
86
|
"license": "MIT",
|
|
87
87
|
"gitHead": "1c1c99cd879a2f00f32fb4b369a16ae90b9405da",
|
|
@@ -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
|
}
|