zova-ui-empty 5.1.37 → 5.1.39
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/env/.env +1 -1
- package/package.json +34 -20
- package/package.original.json +16 -3
- package/pnpm-workspace.yaml +0 -11
- package/src/suite/a-demo/modules/demo-basic/src/.metadata/index.ts +0 -35
- package/src/suite/a-home/modules/home-base/src/.metadata/index.ts +0 -70
- package/src/suite/a-home/modules/home-base/src/types/index.ts +1 -2
- package/src/suite/a-home/modules/home-base/src/types/{style.ts → scopeBase.ts} +0 -2
- package/src/suite/a-home/modules/home-theme/package.json +53 -0
- package/src/suite/a-home/modules/home-theme/src/.metadata/index.ts +112 -0
- package/src/suite/a-home/modules/home-theme/src/.metadata/this.ts +2 -0
- package/src/suite/a-home/modules/home-theme/src/index.ts +2 -0
- package/src/suite/a-home/modules/home-theme/src/types/index.ts +2 -0
- package/src/suite/a-home/modules/home-theme/src/types/style.ts +8 -0
- package/src/suite/a-home/modules/home-theme/tsconfig.build.json +13 -0
- package/src/suite/a-home/modules/home-theme/tsconfig.json +5 -0
- package/src/suite/a-home/package.json +2 -1
- /package/src/suite/a-home/modules/{home-base → home-theme}/src/bean/css.default.ts +0 -0
- /package/src/suite/a-home/modules/{home-base → home-theme}/src/bean/theme.default.ts +0 -0
- /package/src/suite/{a-demo/modules/demo-basic → a-home/modules/home-theme}/src/bean/theme.orange.ts +0 -0
- /package/src/suite/a-home/modules/{home-base → home-theme}/src/types/themeToken.ts +0 -0
package/env/.env
CHANGED
|
@@ -25,7 +25,7 @@ LAYOUT_COMPONENT_EMPTY = home-layout:layoutEmpty
|
|
|
25
25
|
LAYOUT_COMPONENT_DEFAULT = home-layout:layoutTabs
|
|
26
26
|
LAYOUT_SIDEBAR_LEFTOPENPC = true
|
|
27
27
|
|
|
28
|
-
STYLE_DEFAULT_THEME = home-
|
|
28
|
+
STYLE_DEFAULT_THEME = home-theme:default
|
|
29
29
|
|
|
30
30
|
LOGGER_CLIENT_DEFAULT =
|
|
31
31
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-ui-empty",
|
|
3
|
-
"version": "5.1.
|
|
4
|
-
"gitHead": "
|
|
3
|
+
"version": "5.1.39",
|
|
4
|
+
"gitHead": "72627fa200eff1faeea9d0240d7d971a716c51b2",
|
|
5
5
|
"description": "A vue3 empty framework with ioc",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"ioc",
|
|
@@ -45,18 +45,18 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@cabloy/compose": "^2.1.4",
|
|
48
|
-
"@cabloy/deps": "^1.1.
|
|
49
|
-
"@cabloy/json5": "^1.1.
|
|
48
|
+
"@cabloy/deps": "^1.1.3",
|
|
49
|
+
"@cabloy/json5": "^1.1.3",
|
|
50
50
|
"@cabloy/logger": "^1.1.9",
|
|
51
51
|
"@cabloy/module-info": "^2.0.0",
|
|
52
|
-
"@cabloy/utils": "^2.1.
|
|
52
|
+
"@cabloy/utils": "^2.1.3",
|
|
53
53
|
"@cabloy/vue-router": "^4.4.16",
|
|
54
54
|
"@cabloy/word-utils": "^2.1.8",
|
|
55
|
-
"@cabloy/zod-openapi": "^1.1.
|
|
56
|
-
"@tanstack/query-core": "^5.
|
|
55
|
+
"@cabloy/zod-openapi": "^1.1.3",
|
|
56
|
+
"@tanstack/query-core": "^5.97.0",
|
|
57
57
|
"@tanstack/table-core": "^8.21.3",
|
|
58
58
|
"@tanstack/vue-form": "^1.29.0",
|
|
59
|
-
"@tanstack/vue-query": "^5.
|
|
59
|
+
"@tanstack/vue-query": "^5.97.0",
|
|
60
60
|
"@tanstack/vue-table": "^8.21.3",
|
|
61
61
|
"axios": "^1.15.0",
|
|
62
62
|
"compression": "^1.8.1",
|
|
@@ -69,13 +69,13 @@
|
|
|
69
69
|
"mutate-on-copy": "^1.1.8",
|
|
70
70
|
"openapi3-ts": "^4.5.0",
|
|
71
71
|
"quasar": "^2.18.1",
|
|
72
|
-
"table-identity": "^1.1.
|
|
72
|
+
"table-identity": "^1.1.3",
|
|
73
73
|
"typestyle": "^2.4.0",
|
|
74
74
|
"vue": "^3.5.6",
|
|
75
75
|
"vue-router": "^4.4.5",
|
|
76
76
|
"zod": "^4.3.6",
|
|
77
|
-
"zova": "^5.1.
|
|
78
|
-
"zova-jsx": "^1.1.
|
|
77
|
+
"zova": "^5.1.26",
|
|
78
|
+
"zova-jsx": "^1.1.13",
|
|
79
79
|
"zova-module-a-action": "^5.1.11",
|
|
80
80
|
"zova-module-a-actions": "^5.1.9",
|
|
81
81
|
"zova-module-a-api": "^5.1.8",
|
|
@@ -89,32 +89,33 @@
|
|
|
89
89
|
"zova-module-a-fetch": "^5.1.8",
|
|
90
90
|
"zova-module-a-form": "^5.1.9",
|
|
91
91
|
"zova-module-a-icon": "^5.1.11",
|
|
92
|
-
"zova-module-a-interceptor": "^5.1.
|
|
92
|
+
"zova-module-a-interceptor": "^5.1.8",
|
|
93
93
|
"zova-module-a-logger": "^5.1.9",
|
|
94
94
|
"zova-module-a-meta": "^5.1.8",
|
|
95
|
-
"zova-module-a-model": "^5.1.
|
|
95
|
+
"zova-module-a-model": "^5.1.8",
|
|
96
96
|
"zova-module-a-openapi": "^5.1.8",
|
|
97
97
|
"zova-module-a-pinia": "^5.1.8",
|
|
98
98
|
"zova-module-a-router": "^5.1.10",
|
|
99
99
|
"zova-module-a-routerstack": "^5.1.9",
|
|
100
|
-
"zova-module-a-routertabs": "^5.1.
|
|
100
|
+
"zova-module-a-routertabs": "^5.1.9",
|
|
101
101
|
"zova-module-a-ssr": "^5.1.9",
|
|
102
102
|
"zova-module-a-ssrhmr": "^5.1.8",
|
|
103
103
|
"zova-module-a-ssrserver": "^5.1.8",
|
|
104
|
-
"zova-module-a-style": "^5.1.
|
|
104
|
+
"zova-module-a-style": "^5.1.9",
|
|
105
105
|
"zova-module-a-table": "^5.1.9",
|
|
106
|
-
"zova-module-a-zod": "^5.1.
|
|
107
|
-
"zova-module-a-zova": "^5.1.
|
|
106
|
+
"zova-module-a-zod": "^5.1.9",
|
|
107
|
+
"zova-module-a-zova": "^5.1.15",
|
|
108
108
|
"zova-module-demo-basic": "workspace:^",
|
|
109
109
|
"zova-module-home-api": "workspace:^",
|
|
110
110
|
"zova-module-home-base": "workspace:^",
|
|
111
111
|
"zova-module-home-icon": "workspace:^",
|
|
112
112
|
"zova-module-home-index": "workspace:^",
|
|
113
113
|
"zova-module-home-layout": "workspace:^",
|
|
114
|
-
"zova-module-home-passport": "workspace:^"
|
|
114
|
+
"zova-module-home-passport": "workspace:^",
|
|
115
|
+
"zova-module-home-theme": "workspace:^"
|
|
115
116
|
},
|
|
116
117
|
"devDependencies": {
|
|
117
|
-
"@cabloy/cli": "^3.1.
|
|
118
|
+
"@cabloy/cli": "^3.1.3",
|
|
118
119
|
"@cabloy/lint": "^5.1.5",
|
|
119
120
|
"@cabloy/openapi-typescript": "^7.9.2",
|
|
120
121
|
"@quasar/app-vite": "2.4.0",
|
|
@@ -133,5 +134,18 @@
|
|
|
133
134
|
"zova-openapi": "^1.1.8",
|
|
134
135
|
"zova-vite": "^1.1.17"
|
|
135
136
|
},
|
|
136
|
-
"packageManager": "pnpm@10.19.0"
|
|
137
|
+
"packageManager": "pnpm@10.19.0",
|
|
138
|
+
"pnpm": {
|
|
139
|
+
"overrides": {
|
|
140
|
+
"@quasar/app-vite": "npm:@cabloy/quasar-app-vite@^2.5.9",
|
|
141
|
+
"@vue/babel-plugin-jsx": "npm:@cabloy/vue-babel-plugin-jsx@^2.0.1",
|
|
142
|
+
"@vue/compiler-sfc": "npm:@cabloy/vue-compiler-sfc@^3.5.14",
|
|
143
|
+
"@vue/runtime-core": "npm:@cabloy/vue-runtime-core@^3.5.51",
|
|
144
|
+
"@vue/runtime-dom": "npm:@cabloy/vue-runtime-dom@^3.5.13",
|
|
145
|
+
"@vue/reactivity": "npm:@cabloy/vue-reactivity@^3.5.16",
|
|
146
|
+
"@vue/server-renderer": "npm:@cabloy/vue-server-renderer@^3.5.18",
|
|
147
|
+
"vue-router": "npm:@cabloy/vue-router@^4.4.16",
|
|
148
|
+
"zod": "npm:@cabloy/zod@4.3.6"
|
|
149
|
+
}
|
|
150
|
+
}
|
|
137
151
|
}
|
package/package.original.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-ui-empty",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.38",
|
|
4
4
|
"packageManager": "pnpm@10.19.0",
|
|
5
5
|
"description": "A vue3 empty framework with ioc",
|
|
6
6
|
"publishConfig": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"quasar": "^2.18.1",
|
|
47
47
|
"vue": "^3.5.6",
|
|
48
48
|
"vue-router": "^4.4.5",
|
|
49
|
-
"zova": "^5.1.
|
|
49
|
+
"zova": "^5.1.25"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@cabloy/lint": "^5.1.5",
|
|
@@ -65,5 +65,18 @@
|
|
|
65
65
|
"zova-vite": "^1.1.17"
|
|
66
66
|
},
|
|
67
67
|
"license": "MIT",
|
|
68
|
-
"gitHead": "4d11b0fed7af50b828971785af3c014046be6afa"
|
|
68
|
+
"gitHead": "4d11b0fed7af50b828971785af3c014046be6afa",
|
|
69
|
+
"pnpm": {
|
|
70
|
+
"overrides": {
|
|
71
|
+
"@quasar/app-vite": "npm:@cabloy/quasar-app-vite@^2.5.9",
|
|
72
|
+
"@vue/babel-plugin-jsx": "npm:@cabloy/vue-babel-plugin-jsx@^2.0.1",
|
|
73
|
+
"@vue/compiler-sfc": "npm:@cabloy/vue-compiler-sfc@^3.5.14",
|
|
74
|
+
"@vue/runtime-core": "npm:@cabloy/vue-runtime-core@^3.5.51",
|
|
75
|
+
"@vue/runtime-dom": "npm:@cabloy/vue-runtime-dom@^3.5.13",
|
|
76
|
+
"@vue/reactivity": "npm:@cabloy/vue-reactivity@^3.5.16",
|
|
77
|
+
"@vue/server-renderer": "npm:@cabloy/vue-server-renderer@^3.5.18",
|
|
78
|
+
"vue-router": "npm:@cabloy/vue-router@^4.4.16",
|
|
79
|
+
"zod": "npm:@cabloy/zod@4.3.6"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
69
82
|
}
|
package/pnpm-workspace.yaml
CHANGED
|
@@ -37,14 +37,3 @@ publicHoistPattern:
|
|
|
37
37
|
- 'zod'
|
|
38
38
|
- '*quasar*'
|
|
39
39
|
- '*@quasar*'
|
|
40
|
-
|
|
41
|
-
overrides:
|
|
42
|
-
'@quasar/app-vite': 'npm:@cabloy/quasar-app-vite@^2.5.9'
|
|
43
|
-
'@vue/babel-plugin-jsx': 'npm:@cabloy/vue-babel-plugin-jsx@^2.0.1'
|
|
44
|
-
'@vue/compiler-sfc': 'npm:@cabloy/vue-compiler-sfc@^3.5.14'
|
|
45
|
-
'@vue/runtime-core': 'npm:@cabloy/vue-runtime-core@^3.5.51'
|
|
46
|
-
'@vue/runtime-dom': 'npm:@cabloy/vue-runtime-dom@^3.5.13'
|
|
47
|
-
'@vue/reactivity': 'npm:@cabloy/vue-reactivity@^3.5.16'
|
|
48
|
-
'@vue/server-renderer': 'npm:@cabloy/vue-server-renderer@^3.5.18'
|
|
49
|
-
'vue-router': 'npm:@cabloy/vue-router@^4.4.16'
|
|
50
|
-
'zod': 'npm:@cabloy/zod@4.3.6'
|
|
@@ -82,41 +82,6 @@ export interface IZovaComponentRecord {
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
/** components: end */
|
|
85
|
-
/** theme: begin */
|
|
86
|
-
export * from '../bean/theme.orange.js';
|
|
87
|
-
import { IThemeOptionsOrange } from '../bean/theme.orange.js';
|
|
88
|
-
import 'zova-module-a-style';
|
|
89
|
-
declare module 'zova-module-a-style' {
|
|
90
|
-
|
|
91
|
-
export interface IThemeRecord {
|
|
92
|
-
'demo-basic:orange': IThemeOptionsOrange;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
}
|
|
97
|
-
declare module 'zova-module-demo-basic' {
|
|
98
|
-
|
|
99
|
-
export interface ThemeOrange {
|
|
100
|
-
/** @internal */
|
|
101
|
-
get scope(): ScopeModuleDemoBasic;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
export interface ThemeOrange {
|
|
105
|
-
get $beanFullName(): 'demo-basic.theme.orange';
|
|
106
|
-
get $onionName(): 'demo-basic:orange';
|
|
107
|
-
get $onionOptions(): IThemeOptionsOrange;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
/** theme: end */
|
|
111
|
-
/** theme: begin */
|
|
112
|
-
import { ThemeOrange } from '../bean/theme.orange.js';
|
|
113
|
-
import 'zova';
|
|
114
|
-
declare module 'zova' {
|
|
115
|
-
export interface IBeanRecordLocal {
|
|
116
|
-
'demo-basic.theme.orange': ThemeOrange;
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
/** theme: end */
|
|
120
85
|
/** scope: begin */
|
|
121
86
|
import { BeanScopeBase, type BeanScopeUtil } from 'zova';
|
|
122
87
|
import { Scope } from 'zova-module-a-bean';
|
|
@@ -154,76 +154,6 @@ export interface IZovaComponentRecord {
|
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
/** components: end */
|
|
157
|
-
/** css: begin */
|
|
158
|
-
export * from '../bean/css.default.js';
|
|
159
|
-
import { ICssOptionsDefault } from '../bean/css.default.js';
|
|
160
|
-
import 'zova-module-a-style';
|
|
161
|
-
declare module 'zova-module-a-style' {
|
|
162
|
-
|
|
163
|
-
export interface ICssRecord {
|
|
164
|
-
'home-base:default': ICssOptionsDefault;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
}
|
|
169
|
-
declare module 'zova-module-home-base' {
|
|
170
|
-
|
|
171
|
-
export interface CssDefault {
|
|
172
|
-
/** @internal */
|
|
173
|
-
get scope(): ScopeModuleHomeBase;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
export interface CssDefault {
|
|
177
|
-
get $beanFullName(): 'home-base.css.default';
|
|
178
|
-
get $onionName(): 'home-base:default';
|
|
179
|
-
get $onionOptions(): ICssOptionsDefault;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
/** css: end */
|
|
183
|
-
/** css: begin */
|
|
184
|
-
import { CssDefault } from '../bean/css.default.js';
|
|
185
|
-
import 'zova';
|
|
186
|
-
declare module 'zova' {
|
|
187
|
-
export interface IBeanRecordLocal {
|
|
188
|
-
'home-base.css.default': CssDefault;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
/** css: end */
|
|
192
|
-
/** theme: begin */
|
|
193
|
-
export * from '../bean/theme.default.js';
|
|
194
|
-
import { IThemeOptionsDefault } from '../bean/theme.default.js';
|
|
195
|
-
import 'zova-module-a-style';
|
|
196
|
-
declare module 'zova-module-a-style' {
|
|
197
|
-
|
|
198
|
-
export interface IThemeRecord {
|
|
199
|
-
'home-base:default': IThemeOptionsDefault;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
}
|
|
204
|
-
declare module 'zova-module-home-base' {
|
|
205
|
-
|
|
206
|
-
export interface ThemeDefault {
|
|
207
|
-
/** @internal */
|
|
208
|
-
get scope(): ScopeModuleHomeBase;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
export interface ThemeDefault {
|
|
212
|
-
get $beanFullName(): 'home-base.theme.default';
|
|
213
|
-
get $onionName(): 'home-base:default';
|
|
214
|
-
get $onionOptions(): IThemeOptionsDefault;
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
/** theme: end */
|
|
218
|
-
/** theme: begin */
|
|
219
|
-
import { ThemeDefault } from '../bean/theme.default.js';
|
|
220
|
-
import 'zova';
|
|
221
|
-
declare module 'zova' {
|
|
222
|
-
export interface IBeanRecordLocal {
|
|
223
|
-
'home-base.theme.default': ThemeDefault;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
/** theme: end */
|
|
227
157
|
/** locale: begin */
|
|
228
158
|
import { locales } from './locales.js';
|
|
229
159
|
/** locale: end */
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './themeToken.js';
|
|
1
|
+
export * from './scopeBase.js';
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zova-module-home-theme",
|
|
3
|
+
"version": "5.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Zova Module"
|
|
7
|
+
],
|
|
8
|
+
"author": "",
|
|
9
|
+
"files": [
|
|
10
|
+
"mock",
|
|
11
|
+
"dist",
|
|
12
|
+
"src",
|
|
13
|
+
"icons",
|
|
14
|
+
"assets",
|
|
15
|
+
"rest"
|
|
16
|
+
],
|
|
17
|
+
"type": "module",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": [
|
|
21
|
+
"./src/index.ts",
|
|
22
|
+
"./dist/index.d.ts"
|
|
23
|
+
],
|
|
24
|
+
"import": "./src/index.ts",
|
|
25
|
+
"default": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./*": "./*"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"clean": "rimraf dist tsconfig.build.tsbuildinfo",
|
|
31
|
+
"tsc:publish": "npm run clean && zova :bin:buildModule --sourcemap && tsc -p tsconfig.build.json",
|
|
32
|
+
"prepublishOnly": "npm run tsc:publish",
|
|
33
|
+
"prepack": "clean-package",
|
|
34
|
+
"postpack": "clean-package restore && npm run clean"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"clean-package": "^2.2.0",
|
|
39
|
+
"rimraf": "^6.1.3"
|
|
40
|
+
},
|
|
41
|
+
"clean-package": {
|
|
42
|
+
"indent": 2,
|
|
43
|
+
"replace": {
|
|
44
|
+
"exports.\\..types": "./dist/index.d.ts"
|
|
45
|
+
},
|
|
46
|
+
"remove": [
|
|
47
|
+
"clean-package",
|
|
48
|
+
"devDependencies",
|
|
49
|
+
"exports.\\..import"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"title": "home-theme"
|
|
53
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
// eslint-disable
|
|
2
|
+
/** css: begin */
|
|
3
|
+
export * from '../bean/css.default.js';
|
|
4
|
+
import { ICssOptionsDefault } from '../bean/css.default.js';
|
|
5
|
+
import 'zova-module-a-style';
|
|
6
|
+
declare module 'zova-module-a-style' {
|
|
7
|
+
|
|
8
|
+
export interface ICssRecord {
|
|
9
|
+
'home-theme:default': ICssOptionsDefault;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
}
|
|
14
|
+
declare module 'zova-module-home-theme' {
|
|
15
|
+
|
|
16
|
+
export interface CssDefault {
|
|
17
|
+
/** @internal */
|
|
18
|
+
get scope(): ScopeModuleHomeTheme;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface CssDefault {
|
|
22
|
+
get $beanFullName(): 'home-theme.css.default';
|
|
23
|
+
get $onionName(): 'home-theme:default';
|
|
24
|
+
get $onionOptions(): ICssOptionsDefault;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
/** css: end */
|
|
28
|
+
/** css: begin */
|
|
29
|
+
import { CssDefault } from '../bean/css.default.js';
|
|
30
|
+
import 'zova';
|
|
31
|
+
declare module 'zova' {
|
|
32
|
+
export interface IBeanRecordLocal {
|
|
33
|
+
'home-theme.css.default': CssDefault;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
/** css: end */
|
|
37
|
+
/** theme: begin */
|
|
38
|
+
export * from '../bean/theme.default.js';
|
|
39
|
+
export * from '../bean/theme.orange.js';
|
|
40
|
+
import { IThemeOptionsDefault } from '../bean/theme.default.js';
|
|
41
|
+
import { IThemeOptionsOrange } from '../bean/theme.orange.js';
|
|
42
|
+
import 'zova-module-a-style';
|
|
43
|
+
declare module 'zova-module-a-style' {
|
|
44
|
+
|
|
45
|
+
export interface IThemeRecord {
|
|
46
|
+
'home-theme:default': IThemeOptionsDefault;
|
|
47
|
+
'home-theme:orange': IThemeOptionsOrange;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
}
|
|
52
|
+
declare module 'zova-module-home-theme' {
|
|
53
|
+
|
|
54
|
+
export interface ThemeDefault {
|
|
55
|
+
/** @internal */
|
|
56
|
+
get scope(): ScopeModuleHomeTheme;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface ThemeDefault {
|
|
60
|
+
get $beanFullName(): 'home-theme.theme.default';
|
|
61
|
+
get $onionName(): 'home-theme:default';
|
|
62
|
+
get $onionOptions(): IThemeOptionsDefault;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export interface ThemeOrange {
|
|
66
|
+
/** @internal */
|
|
67
|
+
get scope(): ScopeModuleHomeTheme;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export interface ThemeOrange {
|
|
71
|
+
get $beanFullName(): 'home-theme.theme.orange';
|
|
72
|
+
get $onionName(): 'home-theme:orange';
|
|
73
|
+
get $onionOptions(): IThemeOptionsOrange;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
/** theme: end */
|
|
77
|
+
/** theme: begin */
|
|
78
|
+
import { ThemeDefault } from '../bean/theme.default.js';
|
|
79
|
+
import { ThemeOrange } from '../bean/theme.orange.js';
|
|
80
|
+
import 'zova';
|
|
81
|
+
declare module 'zova' {
|
|
82
|
+
export interface IBeanRecordLocal {
|
|
83
|
+
'home-theme.theme.default': ThemeDefault;
|
|
84
|
+
'home-theme.theme.orange': ThemeOrange;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
/** theme: end */
|
|
88
|
+
/** scope: begin */
|
|
89
|
+
import { BeanScopeBase, type BeanScopeUtil } from 'zova';
|
|
90
|
+
import { Scope } from 'zova-module-a-bean';
|
|
91
|
+
|
|
92
|
+
@Scope()
|
|
93
|
+
export class ScopeModuleHomeTheme extends BeanScopeBase {}
|
|
94
|
+
|
|
95
|
+
export interface ScopeModuleHomeTheme {
|
|
96
|
+
util: BeanScopeUtil;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
import 'zova';
|
|
100
|
+
declare module 'zova' {
|
|
101
|
+
export interface IBeanScopeRecord {
|
|
102
|
+
'home-theme': ScopeModuleHomeTheme;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/** scope: end */
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../tsconfig.base",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"rootDir": "src",
|
|
5
|
+
"outDir": "dist",
|
|
6
|
+
"declaration": true,
|
|
7
|
+
"declarationMap": true,
|
|
8
|
+
"emitDeclarationOnly": true,
|
|
9
|
+
"allowImportingTsExtensions": true,
|
|
10
|
+
"noEmit": false
|
|
11
|
+
},
|
|
12
|
+
"include": ["src", "src/.metadata/**/*"]
|
|
13
|
+
}
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"zova-module-home-icon": "workspace:^",
|
|
11
11
|
"zova-module-home-index": "workspace:^",
|
|
12
12
|
"zova-module-home-layout": "workspace:^",
|
|
13
|
-
"zova-module-home-passport": "^5.0.0"
|
|
13
|
+
"zova-module-home-passport": "^5.0.0",
|
|
14
|
+
"zova-module-home-theme": "^5.0.0"
|
|
14
15
|
},
|
|
15
16
|
"title": "Home"
|
|
16
17
|
}
|
|
File without changes
|
|
File without changes
|
/package/src/suite/{a-demo/modules/demo-basic → a-home/modules/home-theme}/src/bean/theme.orange.ts
RENAMED
|
File without changes
|
|
File without changes
|