zova-ui-empty 5.0.310 → 5.0.311
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.311",
|
|
4
4
|
"description": "A vue3 empty framework with ioc",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"vue": "^3.5.6",
|
|
49
49
|
"vue-router": "^4.4.5",
|
|
50
50
|
"zod": "^3.23.8",
|
|
51
|
-
"zova": "^5.0.
|
|
51
|
+
"zova": "^5.0.217",
|
|
52
52
|
"zova-module-a-core": "^5.0.46",
|
|
53
53
|
"zova-module-a-model": "^5.0.33",
|
|
54
54
|
"zova-module-a-pinia": "^5.0.32",
|
|
@@ -67,13 +67,13 @@
|
|
|
67
67
|
"@types/node": "^20.14.2",
|
|
68
68
|
"@vitejs/plugin-vue": "^5.0.5",
|
|
69
69
|
"concurrently": "^8.2.2",
|
|
70
|
-
"quasar-app-extension-zova": "^1.1.
|
|
70
|
+
"quasar-app-extension-zova": "^1.1.177",
|
|
71
71
|
"sass": "^1.77.5",
|
|
72
72
|
"typescript": "^5.4.5",
|
|
73
73
|
"vite": "^5.3.1",
|
|
74
74
|
"vue-tsc": "^2.0.29",
|
|
75
|
-
"zova-vite": "^1.0.
|
|
75
|
+
"zova-vite": "^1.0.176"
|
|
76
76
|
},
|
|
77
77
|
"license": "MIT",
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "6c290bcdc8483d922d46677644b4cf3b105aac2e"
|
|
79
79
|
}
|
package/package.original.json
CHANGED
|
@@ -2,6 +2,7 @@ import { BeanRenderBase, Local } from 'zova';
|
|
|
2
2
|
import type { ControllerPageComponent } from './controller.js';
|
|
3
3
|
import { ScopeModule } from '../../.metadata/this.js';
|
|
4
4
|
import { ZCard } from '../../index.js';
|
|
5
|
+
import { ZPage } from 'zova-module-home-base';
|
|
5
6
|
|
|
6
7
|
export interface RenderComponent extends ControllerPageComponent {}
|
|
7
8
|
|
|
@@ -9,7 +10,7 @@ export interface RenderComponent extends ControllerPageComponent {}
|
|
|
9
10
|
export class RenderComponent extends BeanRenderBase<ScopeModule> {
|
|
10
11
|
render() {
|
|
11
12
|
return (
|
|
12
|
-
<
|
|
13
|
+
<ZPage>
|
|
13
14
|
<ZCard
|
|
14
15
|
controllerRef={ref => {
|
|
15
16
|
this.cardRef = ref;
|
|
@@ -32,7 +33,7 @@ export class RenderComponent extends BeanRenderBase<ScopeModule> {
|
|
|
32
33
|
},
|
|
33
34
|
}}
|
|
34
35
|
></ZCard>
|
|
35
|
-
</
|
|
36
|
+
</ZPage>
|
|
36
37
|
);
|
|
37
38
|
}
|
|
38
39
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BeanRenderBase, Local } from 'zova';
|
|
2
2
|
import type { ControllerPageState } from './controller.js';
|
|
3
|
+
import { ZPage } from 'zova-module-home-base';
|
|
3
4
|
|
|
4
5
|
export interface RenderState extends ControllerPageState {}
|
|
5
6
|
|
|
@@ -7,12 +8,12 @@ export interface RenderState extends ControllerPageState {}
|
|
|
7
8
|
export class RenderState extends BeanRenderBase {
|
|
8
9
|
render() {
|
|
9
10
|
return (
|
|
10
|
-
<
|
|
11
|
+
<ZPage>
|
|
11
12
|
<div>{`count(ref): ${this.count}`}</div>
|
|
12
13
|
<div>{`count(computed): ${this.count2}`}</div>
|
|
13
14
|
<button onClick={() => this.increment()}>Increment</button>
|
|
14
15
|
<button onClick={() => this.decrement()}>Decrement</button>
|
|
15
|
-
</
|
|
16
|
+
</ZPage>
|
|
16
17
|
);
|
|
17
18
|
}
|
|
18
19
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BeanRenderBase, Local } from 'zova';
|
|
2
2
|
import type { StyleIndex } from './style.js';
|
|
3
3
|
import { ScopeModule } from '../../.metadata/this.js';
|
|
4
|
+
import { ZPage } from 'zova-module-home-base';
|
|
4
5
|
|
|
5
6
|
export interface RenderIndex extends StyleIndex {}
|
|
6
7
|
|
|
@@ -8,12 +9,12 @@ export interface RenderIndex extends StyleIndex {}
|
|
|
8
9
|
export class RenderIndex extends BeanRenderBase<ScopeModule> {
|
|
9
10
|
render() {
|
|
10
11
|
return (
|
|
11
|
-
<
|
|
12
|
+
<ZPage style="text-align: center;">
|
|
12
13
|
<div>
|
|
13
14
|
<div style="font-size: 36px;">Hello Zova</div>
|
|
14
15
|
<div style="font-size: 24px;opacity:.4;">Less is more, while more is less</div>
|
|
15
16
|
</div>
|
|
16
|
-
</
|
|
17
|
+
</ZPage>
|
|
17
18
|
);
|
|
18
19
|
}
|
|
19
20
|
}
|