zova-ui-empty 5.0.281 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-empty",
3
- "version": "5.0.281",
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.205",
56
- "zova-module-a-core": "^5.0.44",
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.29",
59
- "zova-module-a-pinia": "^5.0.29",
60
- "zova-module-a-router": "^5.0.64",
61
- "zova-module-a-style": "^5.0.41",
62
- "zova-module-a-tabs": "^5.0.20",
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.168",
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.169"
79
+ "zova-vite": "^1.0.171"
80
80
  },
81
81
  "license": "MIT",
82
- "gitHead": "82b2bc7d0826a0e8619a318de31e078fcaf47825"
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
- import component_card from '../component/card/index.vue';
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: component_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
- <this.scope.component.card
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
- ></this.scope.component.card>
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
- import component_page from '../component/page/index.vue';
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: component_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
- import component_essentialLink from '../component/essentialLink/index.vue';
19
- import component_layoutDefault from '../component/layoutDefault/index.vue';
20
- import component_layoutEmpty from '../component/layoutEmpty/index.vue';
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: component_essentialLink,
23
- layoutDefault: component_layoutDefault,
24
- layoutEmpty: component_layoutEmpty,
25
+ essentialLink: ZEssentialLink,
26
+ layoutDefault: ZLayoutDefault,
27
+ layoutEmpty: ZLayoutEmpty,
25
28
  };
26
29
  import 'zova';
27
30
  declare module 'zova' {