zova-ui-empty 5.0.282 → 5.0.284

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.282",
3
+ "version": "5.0.284",
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.169",
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.170"
79
+ "zova-vite": "^1.0.171"
80
80
  },
81
81
  "license": "MIT",
82
- "gitHead": "c08d7bf125ba6e68cbb90bee0c0ea2dbc7ba9148"
82
+ "gitHead": "c87d920a9ccc28c5c7b7522ae8b1a2615c71f3a8"
83
83
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-empty",
3
- "version": "5.0.280",
3
+ "version": "5.0.283",
4
4
  "description": "A vue3 empty framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -45,7 +45,7 @@
45
45
  "typestyle": "^2.4.0",
46
46
  "vue": "^3.5.6",
47
47
  "zod": "^3.23.8",
48
- "zova": "^5.0.204"
48
+ "zova": "^5.0.206"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@cabloy/lint": "^4.0.11",
@@ -53,13 +53,13 @@
53
53
  "@types/node": "^20.14.2",
54
54
  "@vitejs/plugin-vue": "^5.0.5",
55
55
  "concurrently": "^8.2.2",
56
- "quasar-app-extension-zova": "^1.1.167",
56
+ "quasar-app-extension-zova": "^1.1.170",
57
57
  "sass": "^1.77.5",
58
58
  "typescript": "^5.4.5",
59
59
  "vite": "^5.3.1",
60
60
  "vue-tsc": "^2.0.29",
61
- "zova-vite": "^1.0.169"
61
+ "zova-vite": "^1.0.171"
62
62
  },
63
63
  "license": "MIT",
64
- "gitHead": "05d23697b757afe62aff4ff5de98a9babdd326e2"
64
+ "gitHead": "544f25da60609ebc63c14f92057dedb289ba5946"
65
65
  }
@@ -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' {
@@ -35,7 +36,7 @@ import { BeanScopeBase, Scope, TypeModuleResource } from 'zova';
35
36
  @Scope()
36
37
  export class ScopeModuleADemo extends BeanScopeBase {}
37
38
 
38
- export interface ScopeModuleADemo extends TypeModuleResource<typeof components, any, any, any, any, any> {}
39
+ export interface ScopeModuleADemo extends TypeModuleResource<any, any, any, any, any> {}
39
40
 
40
41
  import 'zova';
41
42
  declare module 'zova' {
@@ -1,6 +1,7 @@
1
1
  import { BeanRenderBase, Local } from 'zova';
2
2
  import type { ControllerPageComponent } from './controller.js';
3
3
  import { ScopeModule } from '../../.metadata/this.js';
4
+ import { ZCard } from '../../index.js';
4
5
 
5
6
  export interface RenderComponent extends ControllerPageComponent {}
6
7
 
@@ -9,7 +10,7 @@ export class RenderComponent extends BeanRenderBase<ScopeModule> {
9
10
  render() {
10
11
  return (
11
12
  <div>
12
- <this.scope.component.card
13
+ <ZCard
13
14
  controllerRef={ref => {
14
15
  this.cardRef = ref;
15
16
  }}
@@ -30,7 +31,7 @@ export class RenderComponent extends BeanRenderBase<ScopeModule> {
30
31
  return <div>this is a footer slot from parent</div>;
31
32
  },
32
33
  }}
33
- ></this.scope.component.card>
34
+ ></ZCard>
34
35
  </div>
35
36
  );
36
37
  }
@@ -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' {
@@ -52,7 +53,7 @@ import { BeanScopeBase, Scope, TypeModuleResource } from 'zova';
52
53
  @Scope()
53
54
  export class ScopeModuleHomeBase extends BeanScopeBase {}
54
55
 
55
- export interface ScopeModuleHomeBase extends TypeModuleResource<typeof components, any, any, any, any, any> {}
56
+ export interface ScopeModuleHomeBase extends TypeModuleResource<any, any, any, any, any> {}
56
57
 
57
58
  import 'zova';
58
59
  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
  }
@@ -266,7 +266,7 @@ import { BeanScopeBase, Scope, TypeModuleResource } from 'zova';
266
266
  @Scope()
267
267
  export class ScopeModuleHomeIcon extends BeanScopeBase {}
268
268
 
269
- export interface ScopeModuleHomeIcon extends TypeModuleResource<any, any, any, any, any, any> {}
269
+ export interface ScopeModuleHomeIcon extends TypeModuleResource<any, any, any, any, any> {}
270
270
 
271
271
  import 'zova';
272
272
  declare module 'zova' {
@@ -19,7 +19,7 @@ import { BeanScopeBase, Scope, TypeModuleResource } from 'zova';
19
19
  @Scope()
20
20
  export class ScopeModuleHomeIndex extends BeanScopeBase {}
21
21
 
22
- export interface ScopeModuleHomeIndex extends TypeModuleResource<any, any, any, any, any, any> {}
22
+ export interface ScopeModuleHomeIndex extends TypeModuleResource<any, any, any, any, any> {}
23
23
 
24
24
  import 'zova';
25
25
  declare module 'zova' {
@@ -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' {
@@ -44,8 +47,7 @@ import { BeanScopeBase, Scope, TypeModuleResource } from 'zova';
44
47
  @Scope()
45
48
  export class ScopeModuleHomeLayout extends BeanScopeBase {}
46
49
 
47
- export interface ScopeModuleHomeLayout
48
- extends TypeModuleResource<typeof components, any, any, any, any, typeof services> {}
50
+ export interface ScopeModuleHomeLayout extends TypeModuleResource<any, any, any, any, typeof services> {}
49
51
 
50
52
  import 'zova';
51
53
  declare module 'zova' {