zova-ui-vuetify 5.0.321 → 5.0.323

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-vuetify",
3
- "version": "5.0.321",
3
+ "version": "5.0.323",
4
4
  "description": "A vue3 vuetify framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -50,13 +50,13 @@
50
50
  "vue-router": "^4.4.5",
51
51
  "vuetify": "^3.7.1",
52
52
  "zod": "^3.23.8",
53
- "zova": "^5.0.217",
53
+ "zova": "^5.0.219",
54
54
  "zova-module-a-core": "^5.0.46",
55
55
  "zova-module-a-model": "^5.0.33",
56
56
  "zova-module-a-pinia": "^5.0.32",
57
57
  "zova-module-a-router": "^5.0.67",
58
58
  "zova-module-a-style": "^5.0.44",
59
- "zova-module-a-tabs": "^5.0.23",
59
+ "zova-module-a-tabs": "^5.0.25",
60
60
  "zova-module-demo-basic": "workspace:^",
61
61
  "zova-module-home-base": "workspace:^",
62
62
  "zova-module-home-icon": "workspace:^",
@@ -79,5 +79,5 @@
79
79
  "zova-vite": "^1.0.176"
80
80
  },
81
81
  "license": "MIT",
82
- "gitHead": "58df6fbc368d8334d142e5504439742a782daae2"
82
+ "gitHead": "e9e4c722b0aa3d259dd1d3d89a5868171154de43"
83
83
  }
@@ -1,4 +1,4 @@
1
- import { BeanControllerBase, Local, PropsBase } from 'zova';
1
+ import { BeanControllerBase, Local, PropsBase, RequiredSome } from 'zova';
2
2
  import { JSX } from 'vue/jsx-runtime';
3
3
 
4
4
  export interface Props extends PropsBase<ControllerCard, Slots> {
@@ -18,7 +18,12 @@ export interface Slots {
18
18
  }
19
19
 
20
20
  @Local()
21
- export class ControllerCard extends BeanControllerBase<unknown, Props, Emits, Slots> {
21
+ export class ControllerCard extends BeanControllerBase<
22
+ unknown,
23
+ RequiredSome<Props, keyof typeof ControllerCard.$propsDefault>,
24
+ Emits,
25
+ Slots
26
+ > {
22
27
  static $propsDefault = {
23
28
  header: 'default header',
24
29
  };
@@ -1,4 +1,4 @@
1
- import { BeanControllerBase, Local, PropsBase } from 'zova';
1
+ import { BeanControllerBase, Local, PropsBase, RequiredSome } from 'zova';
2
2
  import { ScopeModule } from '../../.metadata/this.js';
3
3
  import { JSX } from 'vue/jsx-runtime';
4
4
 
@@ -11,7 +11,12 @@ export interface Slots {
11
11
  }
12
12
 
13
13
  @Local()
14
- export class ControllerPage extends BeanControllerBase<ScopeModule, Props, Emits, Slots> {
14
+ export class ControllerPage extends BeanControllerBase<
15
+ ScopeModule,
16
+ RequiredSome<Props, keyof typeof ControllerPage.$propsDefault>,
17
+ Emits,
18
+ Slots
19
+ > {
15
20
  static $propsDefault = {};
16
21
 
17
22
  protected async __init__() {}
@@ -1,4 +1,4 @@
1
- import { BeanControllerBase, Local, PropsBase } from 'zova';
1
+ import { BeanControllerBase, Local, PropsBase, RequiredSome } from 'zova';
2
2
 
3
3
  export interface Props extends PropsBase<ControllerEssentialLink, Slots> {
4
4
  title: string;
@@ -13,7 +13,12 @@ export type Emits = {};
13
13
  export interface Slots {}
14
14
 
15
15
  @Local()
16
- export class ControllerEssentialLink extends BeanControllerBase<unknown, Props, Emits, Slots> {
16
+ export class ControllerEssentialLink extends BeanControllerBase<
17
+ unknown,
18
+ RequiredSome<Props, keyof typeof ControllerEssentialLink.$propsDefault>,
19
+ Emits,
20
+ Slots
21
+ > {
17
22
  static $propsDefault = {
18
23
  caption: '',
19
24
  icon: '',
@@ -1,4 +1,4 @@
1
- import { BeanControllerBase, Local, Use, PropsBase, useComputed, useCustomRef } from 'zova';
1
+ import { BeanControllerBase, Local, Use, PropsBase, useComputed, useCustomRef, RequiredSome } from 'zova';
2
2
  import { ModelMenu } from '../../bean/model.menu.js';
3
3
  import { ModelLayout } from '../../bean/model.layout.js';
4
4
 
@@ -9,7 +9,12 @@ export type Emits = {};
9
9
  export interface Slots {}
10
10
 
11
11
  @Local()
12
- export class ControllerLayoutDefault extends BeanControllerBase<unknown, Props, Emits, Slots> {
12
+ export class ControllerLayoutDefault extends BeanControllerBase<
13
+ unknown,
14
+ RequiredSome<Props, keyof typeof ControllerLayoutDefault.$propsDefault>,
15
+ Emits,
16
+ Slots
17
+ > {
13
18
  static $propsDefault = {};
14
19
 
15
20
  @Use()
@@ -1,4 +1,4 @@
1
- import { BeanControllerBase, Local, PropsBase } from 'zova';
1
+ import { BeanControllerBase, Local, PropsBase, RequiredSome } from 'zova';
2
2
 
3
3
  export interface Props extends PropsBase<ControllerLayoutEmpty, Slots> {}
4
4
 
@@ -7,6 +7,11 @@ export type Emits = {};
7
7
  export interface Slots {}
8
8
 
9
9
  @Local()
10
- export class ControllerLayoutEmpty extends BeanControllerBase<unknown, Props, Emits, Slots> {
10
+ export class ControllerLayoutEmpty extends BeanControllerBase<
11
+ unknown,
12
+ RequiredSome<Props, keyof typeof ControllerLayoutEmpty.$propsDefault>,
13
+ Emits,
14
+ Slots
15
+ > {
11
16
  static $propsDefault = {};
12
17
  }