zova-ui-empty 5.0.244 → 5.0.246
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-ui-empty",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.246",
|
|
4
4
|
"description": "A vue3 empty framework with ioc",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"vue": "^3.4.29",
|
|
40
40
|
"vue-router": "^4.3.3",
|
|
41
41
|
"zod": "^3.23.8",
|
|
42
|
-
"zova": "^5.0.
|
|
42
|
+
"zova": "^5.0.178",
|
|
43
43
|
"zova-module-a-model": "^5.0.23",
|
|
44
44
|
"zova-module-a-pinia": "^5.0.24",
|
|
45
45
|
"zova-module-a-router": "^5.0.58",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"typescript": "^5.4.5",
|
|
56
56
|
"vite": "^5.3.1",
|
|
57
57
|
"vue-tsc": "^2.0.29",
|
|
58
|
-
"zova-vite": "^1.0.
|
|
58
|
+
"zova-vite": "^1.0.152"
|
|
59
59
|
},
|
|
60
60
|
"license": "MIT",
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "1c7e281e72bf0a47cb1e694545dc9ed868289b6d"
|
|
62
62
|
}
|
|
@@ -1,14 +1,7 @@
|
|
|
1
1
|
import { ZovaConfigMeta, ZovaConfigOptional } from 'zova';
|
|
2
2
|
|
|
3
3
|
export default function (_meta: ZovaConfigMeta) {
|
|
4
|
-
const config: ZovaConfigOptional = {
|
|
5
|
-
layout: {
|
|
6
|
-
sidebar: {
|
|
7
|
-
leftOpenPC: true,
|
|
8
|
-
breakpoint: 1023,
|
|
9
|
-
},
|
|
10
|
-
},
|
|
11
|
-
};
|
|
4
|
+
const config: ZovaConfigOptional = {};
|
|
12
5
|
|
|
13
6
|
// modules
|
|
14
7
|
config.modules = {};
|
|
@@ -1,14 +1,7 @@
|
|
|
1
1
|
import { ZovaConfigMeta, ZovaConfigOptional } from 'zova';
|
|
2
2
|
|
|
3
3
|
export default function (_meta: ZovaConfigMeta) {
|
|
4
|
-
const config: ZovaConfigOptional = {
|
|
5
|
-
layout: {
|
|
6
|
-
sidebar: {
|
|
7
|
-
leftOpenPC: false,
|
|
8
|
-
breakpoint: 1023,
|
|
9
|
-
},
|
|
10
|
-
},
|
|
11
|
-
};
|
|
4
|
+
const config: ZovaConfigOptional = {};
|
|
12
5
|
|
|
13
6
|
// modules
|
|
14
7
|
config.modules = {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
|
|
3
|
+
// Forces TS to apply `@quasar/app-vite` augmentations of `quasar` package
|
|
4
|
+
// Removing this would break `quasar/wrappers` imports as those typings are declared
|
|
5
|
+
// into `@quasar/app-vite`
|
|
6
|
+
// As a side effect, since `@quasar/app-vite` reference `quasar` to augment it,
|
|
7
|
+
// this declaration also apply `quasar` own
|
|
8
|
+
// augmentations (eg. adds `$q` into Vue component context)
|
|
9
|
+
/// <reference types="@quasar/app-vite" />
|
|
@@ -6,8 +6,6 @@ const SymbolApi = Symbol('SymbolApi');
|
|
|
6
6
|
|
|
7
7
|
export interface BeanApi extends AxiosInstance {}
|
|
8
8
|
|
|
9
|
-
// const __ApiMethods = ['delete', 'get', 'head', 'options', 'post', 'put', 'patch'];
|
|
10
|
-
|
|
11
9
|
@Bean()
|
|
12
10
|
export class BeanApi extends BeanBase {
|
|
13
11
|
private [SymbolApi]: AxiosInstance;
|