zova-ui-vuetify 5.1.21 → 5.1.22
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 +15 -15
- package/package.original.json +19 -19
- package/src/css/settings.scss +8 -0
- package/src/suite/a-home/modules/home-api/src/api/captcha.ts +7 -9
- package/src/suite/a-home/modules/home-api/src/api/home.ts +1 -3
- package/src/suite/a-home/modules/home-api/src/api/homeBaseMenu.ts +1 -3
- package/src/suite/a-home/modules/home-api/src/api/homeBasePermission.ts +1 -3
- package/src/suite/a-home/modules/home-api/src/api/homeUserPassport.ts +5 -7
- package/src/suite/a-home/modules/home-api/src/api/openapi/schemas.ts +1 -67
- package/src/suite/a-home/modules/home-api/src/api/openapi/types.ts +572 -2096
- package/src/suite/a-home/modules/home-api/src/apiSchema/homeUserPassport.ts +6 -6
- package/src/suite/a-home/modules/home-base/src/page/errorNotFound/controller.tsx +0 -2
- package/src/suite/a-vuetify/modules/vuetify-adapter/src/bean/sys.icon.ts +11 -1
|
@@ -2,16 +2,16 @@ import { BeanBase } from 'zova';
|
|
|
2
2
|
import { ApiSchema, IApiSchemaOptions } from 'zova-module-a-api';
|
|
3
3
|
|
|
4
4
|
import {
|
|
5
|
-
ApiApiHomeUserPassportassociatePath,
|
|
6
|
-
ApiApiHomeUserPassportcreatePassportJwtFromOauthCodePath,
|
|
7
|
-
ApiApiHomeUserPassportcreateTempAuthTokenPath,
|
|
8
5
|
ApiApiHomeUserPassportcurrentPath,
|
|
9
|
-
ApiApiHomeUserPassportloginOauthPath,
|
|
10
|
-
ApiApiHomeUserPassportloginPath,
|
|
11
6
|
ApiApiHomeUserPassportlogoutPath,
|
|
7
|
+
ApiApiHomeUserPassportregisterPath,
|
|
8
|
+
ApiApiHomeUserPassportloginPath,
|
|
9
|
+
ApiApiHomeUserPassportloginOauthPath,
|
|
10
|
+
ApiApiHomeUserPassportassociatePath,
|
|
12
11
|
ApiApiHomeUserPassportmigratePath,
|
|
13
12
|
ApiApiHomeUserPassportrefreshAuthTokenPath,
|
|
14
|
-
|
|
13
|
+
ApiApiHomeUserPassportcreatePassportJwtFromOauthCodePath,
|
|
14
|
+
ApiApiHomeUserPassportcreateTempAuthTokenPath,
|
|
15
15
|
} from '../api/homeUserPassport.js';
|
|
16
16
|
|
|
17
17
|
@ApiSchema()
|
|
@@ -23,9 +23,7 @@ export class ControllerPageErrorNotFound extends BeanControllerPageBase {
|
|
|
23
23
|
<div class="text-center q-pa-md">
|
|
24
24
|
<div>
|
|
25
25
|
<div class={this.cTitle}>404</div>
|
|
26
|
-
|
|
27
26
|
<div class={this.cDescription}>Oops. Nothing here...</div>
|
|
28
|
-
|
|
29
27
|
<VBtn rounded elevation={12} ripple text="Go Home" to={this.sys.env.ROUTER_PAGE_HOME} />
|
|
30
28
|
</div>
|
|
31
29
|
</div>
|
|
@@ -5,7 +5,7 @@ import { useTextColor } from 'vuetify/lib/composables/color.js';
|
|
|
5
5
|
import { useIcon } from 'vuetify/lib/composables/icons.js';
|
|
6
6
|
import { useSize } from 'vuetify/lib/composables/size.js';
|
|
7
7
|
import { convertToUnit, flattenFragments, useRender } from 'vuetify/lib/util/index.js';
|
|
8
|
-
import { BeanBase, useApp } from 'zova';
|
|
8
|
+
import { BeanBase, isHttpUrl, useApp } from 'zova';
|
|
9
9
|
import { Sys } from 'zova-module-a-bean';
|
|
10
10
|
import { $getZovaIcon } from 'zova-module-a-icon';
|
|
11
11
|
|
|
@@ -96,6 +96,16 @@ export class SysIcon extends BeanBase {
|
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
private _getIconData(iconName) {
|
|
99
|
+
if (isHttpUrl(iconName)) {
|
|
100
|
+
return {
|
|
101
|
+
iconData: {
|
|
102
|
+
value: {
|
|
103
|
+
component: VSvgIconZova,
|
|
104
|
+
icon: iconName,
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
};
|
|
108
|
+
}
|
|
99
109
|
const iconInfo = $getZovaIcon(iconName);
|
|
100
110
|
if (!iconInfo) return;
|
|
101
111
|
return {
|