zova-ui-empty 5.0.282 → 5.0.283
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 +11 -11
- package/src/suite/a-demo/modules/a-demo/src/.metadata/index.ts +3 -2
- package/src/suite/a-demo/modules/a-demo/src/page/component/render.tsx +2 -2
- package/src/suite/a-home/modules/home-base/src/.metadata/index.ts +3 -2
- package/src/suite/a-home/modules/home-base/src/types.ts +0 -2
- package/src/suite/a-home/modules/home-layout/src/.metadata/index.ts +9 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-ui-empty",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.283",
|
|
4
4
|
"description": "A vue3 empty framework with ioc",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -52,14 +52,14 @@
|
|
|
52
52
|
"vue": "^3.5.6",
|
|
53
53
|
"vue-router": "^4.4.5",
|
|
54
54
|
"zod": "^3.23.8",
|
|
55
|
-
"zova": "^5.0.
|
|
56
|
-
"zova-module-a-core": "^5.0.
|
|
55
|
+
"zova": "^5.0.206",
|
|
56
|
+
"zova-module-a-core": "^5.0.45",
|
|
57
57
|
"zova-module-a-demo": "^5.0.0",
|
|
58
|
-
"zova-module-a-model": "^5.0.
|
|
59
|
-
"zova-module-a-pinia": "^5.0.
|
|
60
|
-
"zova-module-a-router": "^5.0.
|
|
61
|
-
"zova-module-a-style": "^5.0.
|
|
62
|
-
"zova-module-a-tabs": "^5.0.
|
|
58
|
+
"zova-module-a-model": "^5.0.30",
|
|
59
|
+
"zova-module-a-pinia": "^5.0.30",
|
|
60
|
+
"zova-module-a-router": "^5.0.65",
|
|
61
|
+
"zova-module-a-style": "^5.0.42",
|
|
62
|
+
"zova-module-a-tabs": "^5.0.21",
|
|
63
63
|
"zova-module-home-base": "^5.0.0",
|
|
64
64
|
"zova-module-home-icon": "^5.0.0",
|
|
65
65
|
"zova-module-home-index": "^5.0.0",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"@types/node": "^20.14.2",
|
|
72
72
|
"@vitejs/plugin-vue": "^5.0.5",
|
|
73
73
|
"concurrently": "^8.2.2",
|
|
74
|
-
"quasar-app-extension-zova": "^1.1.
|
|
74
|
+
"quasar-app-extension-zova": "^1.1.170",
|
|
75
75
|
"sass": "^1.77.5",
|
|
76
76
|
"typescript": "^5.4.5",
|
|
77
77
|
"vite": "^5.3.1",
|
|
78
78
|
"vue-tsc": "^2.0.29",
|
|
79
|
-
"zova-vite": "^1.0.
|
|
79
|
+
"zova-vite": "^1.0.171"
|
|
80
80
|
},
|
|
81
81
|
"license": "MIT",
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "1aade8046f4e35d238fe490542d128a64e969ea4"
|
|
83
83
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/** components: begin */
|
|
2
2
|
export * as NSControllerCard from '../component/card/controller.js';
|
|
3
3
|
import * as NSControllerCard from '../component/card/controller.js';
|
|
4
|
-
|
|
4
|
+
export { default as ZCard } from '../component/card/index.vue';
|
|
5
|
+
import ZCard from '../component/card/index.vue';
|
|
5
6
|
export const components = {
|
|
6
|
-
card:
|
|
7
|
+
card: ZCard,
|
|
7
8
|
};
|
|
8
9
|
import 'zova';
|
|
9
10
|
declare module 'zova' {
|
|
@@ -9,7 +9,7 @@ export class RenderComponent extends BeanRenderBase<ScopeModule> {
|
|
|
9
9
|
render() {
|
|
10
10
|
return (
|
|
11
11
|
<div>
|
|
12
|
-
<
|
|
12
|
+
<ZCard
|
|
13
13
|
controllerRef={ref => {
|
|
14
14
|
this.cardRef = ref;
|
|
15
15
|
}}
|
|
@@ -30,7 +30,7 @@ export class RenderComponent extends BeanRenderBase<ScopeModule> {
|
|
|
30
30
|
return <div>this is a footer slot from parent</div>;
|
|
31
31
|
},
|
|
32
32
|
}}
|
|
33
|
-
></
|
|
33
|
+
></ZCard>
|
|
34
34
|
</div>
|
|
35
35
|
);
|
|
36
36
|
}
|
|
@@ -17,9 +17,10 @@ declare module 'zova' {
|
|
|
17
17
|
/** components: begin */
|
|
18
18
|
export * as NSControllerPage from '../component/page/controller.js';
|
|
19
19
|
import * as NSControllerPage from '../component/page/controller.js';
|
|
20
|
-
|
|
20
|
+
export { default as ZPage } from '../component/page/index.vue';
|
|
21
|
+
import ZPage from '../component/page/index.vue';
|
|
21
22
|
export const components = {
|
|
22
|
-
page:
|
|
23
|
+
page: ZPage,
|
|
23
24
|
};
|
|
24
25
|
import 'zova';
|
|
25
26
|
declare module 'zova' {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { AxiosInstance } from 'axios';
|
|
2
2
|
import { BeanApi } from './bean/bean.api.js';
|
|
3
3
|
import { StyleDefault } from './bean/style.default.js';
|
|
4
|
-
import { components } from './.metadata/index.js';
|
|
5
4
|
import 'zova';
|
|
6
5
|
|
|
7
6
|
declare module 'zova' {
|
|
@@ -12,6 +11,5 @@ declare module 'zova' {
|
|
|
12
11
|
export interface BeanBase {
|
|
13
12
|
$api: BeanApi;
|
|
14
13
|
$class: StyleDefault;
|
|
15
|
-
$component: typeof components;
|
|
16
14
|
}
|
|
17
15
|
}
|
|
@@ -15,13 +15,16 @@ export * as NSControllerLayoutEmpty from '../component/layoutEmpty/controller.js
|
|
|
15
15
|
import * as NSControllerEssentialLink from '../component/essentialLink/controller.js';
|
|
16
16
|
import * as NSControllerLayoutDefault from '../component/layoutDefault/controller.js';
|
|
17
17
|
import * as NSControllerLayoutEmpty from '../component/layoutEmpty/controller.js';
|
|
18
|
-
|
|
19
|
-
import
|
|
20
|
-
|
|
18
|
+
export { default as ZEssentialLink } from '../component/essentialLink/index.vue';
|
|
19
|
+
import ZEssentialLink from '../component/essentialLink/index.vue';
|
|
20
|
+
export { default as ZLayoutDefault } from '../component/layoutDefault/index.vue';
|
|
21
|
+
import ZLayoutDefault from '../component/layoutDefault/index.vue';
|
|
22
|
+
export { default as ZLayoutEmpty } from '../component/layoutEmpty/index.vue';
|
|
23
|
+
import ZLayoutEmpty from '../component/layoutEmpty/index.vue';
|
|
21
24
|
export const components = {
|
|
22
|
-
essentialLink:
|
|
23
|
-
layoutDefault:
|
|
24
|
-
layoutEmpty:
|
|
25
|
+
essentialLink: ZEssentialLink,
|
|
26
|
+
layoutDefault: ZLayoutDefault,
|
|
27
|
+
layoutEmpty: ZLayoutEmpty,
|
|
25
28
|
};
|
|
26
29
|
import 'zova';
|
|
27
30
|
declare module 'zova' {
|