zova-suite-a-devui 5.0.18 → 5.0.20

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-module-a-devui",
3
- "version": "5.0.18",
3
+ "version": "5.0.20",
4
4
  "title": "a-devui",
5
5
  "zovaModule": {
6
6
  "capabilities": {
@@ -31,5 +31,5 @@
31
31
  "dist"
32
32
  ],
33
33
  "scripts": {},
34
- "gitHead": "f2058826a17b91b4e3a1206cab1bf448bedaa88d"
34
+ "gitHead": "b87bdd8540395b181993a617d33cad57b3c4d446"
35
35
  }
@@ -0,0 +1,25 @@
1
+ /** beans: begin */
2
+ export * from '../bean/tool.themeHandler.js';
3
+ import { ToolThemeHandler } from '../bean/tool.themeHandler.js';
4
+ import 'zova';
5
+ declare module 'zova' {
6
+ export interface IBeanRecord {
7
+ 'a-devui.tool.themeHandler': ToolThemeHandler;
8
+ }
9
+ }
10
+ /** beans: end */
11
+ /** scope: begin */
12
+ import { BeanScopeBase, Scope, TypeModuleResource } from 'zova';
13
+
14
+ @Scope()
15
+ export class ScopeModuleADevui extends BeanScopeBase {}
16
+
17
+ export interface ScopeModuleADevui extends TypeModuleResource<any, any, any, any, any, any> {}
18
+
19
+ import 'zova';
20
+ declare module 'zova' {
21
+ export interface IBeanScopeRecord {
22
+ 'a-devui': ScopeModuleADevui;
23
+ }
24
+ }
25
+ /** scope: end */
@@ -0,0 +1,2 @@
1
+ export const __ThisModule__ = 'a-devui';
2
+ export { ScopeModuleADevui as ScopeModule } from './index.js';
@@ -1,5 +1,5 @@
1
1
  import { BeanBase, Local } from 'zova';
2
- import { ScopeModule } from '../resource/this.js';
2
+ import { ScopeModule } from '../.metadata/this.js';
3
3
 
4
4
  @Local()
5
5
  export class LocalSSR extends BeanBase<ScopeModule> {
@@ -1,5 +1,5 @@
1
1
  import { BeanBase, Tool } from 'zova';
2
- import { ScopeModule } from '../resource/this.js';
2
+ import { ScopeModule } from '../.metadata/this.js';
3
3
  import { ThemeHandler, ThemeHandlerApplyParams } from 'zova-module-a-style';
4
4
 
5
5
  const __Themes = { 'a-demo.theme.orange': 'orange', 'home-theme.theme.default': '' };
@@ -1,10 +1,4 @@
1
- import './assets/css/module.scss';
2
- export * from './config/index.js';
3
- export * from './resource/index.js';
4
- export * from './api/index.js';
5
- export * from './routes.js';
1
+ export * from './.metadata/index.js';
6
2
  export * from './types.js';
7
3
  export * from './monkey.js';
8
4
  export * from './themeToken.js';
9
-
10
- import './typings.js';
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "zova-suite-a-devui",
3
- "version": "5.0.18",
3
+ "version": "5.0.20",
4
4
  "title": "a-devui",
5
5
  "type": "module",
6
6
  "description": "devui",
7
7
  "author": "zhennann",
8
8
  "dependencies": {
9
- "zova-module-a-devui": "^5.0.18"
9
+ "zova-module-a-devui": "^5.0.20"
10
10
  },
11
- "gitHead": "f2058826a17b91b4e3a1206cab1bf448bedaa88d"
11
+ "gitHead": "b87bdd8540395b181993a617d33cad57b3c4d446"
12
12
  }
@@ -1,2 +0,0 @@
1
- export * from './interface/index.js';
2
- export * from './service/index.js';
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export const services = {};
File without changes
@@ -1,5 +0,0 @@
1
- import { ZovaApplication } from 'zova';
2
-
3
- export const config = (_app: ZovaApplication) => {
4
- return {};
5
- };
@@ -1 +0,0 @@
1
- export const constants = null;
@@ -1 +0,0 @@
1
- export enum Errors {}
@@ -1,4 +0,0 @@
1
- export * from './locales.js';
2
- export * from './errors.js';
3
- export * from './config.js';
4
- export * from './constants.js';
@@ -1 +0,0 @@
1
- export default {};
@@ -1 +0,0 @@
1
- export default {};
@@ -1,7 +0,0 @@
1
- import en_us from './locale/en-us.js';
2
- import zh_cn from './locale/zh-cn.js';
3
-
4
- export const locales = {
5
- 'en-us': en_us,
6
- 'zh-cn': zh_cn,
7
- };
File without changes
@@ -1,8 +0,0 @@
1
- export * from '../bean/tool.themeHandler.js';
2
- import { ToolThemeHandler } from '../bean/tool.themeHandler.js';
3
- import 'zova';
4
- declare module 'zova' {
5
- export interface IBeanRecord {
6
- 'a-devui.tool.themeHandler': ToolThemeHandler;
7
- }
8
- }
@@ -1 +0,0 @@
1
- export const components = {};
@@ -1,3 +0,0 @@
1
- export * from './scope.js';
2
- export * from './beans.js';
3
- export * from './components.js';
@@ -1,32 +0,0 @@
1
- import { BeanScopeBase, Scope, TypeLocaleBase, TypeModuleResource } from 'zova';
2
- import { config, Errors, locales, constants } from '../config/index.js';
3
- import { components } from './components.js';
4
- import { services } from '../api/service/index.js';
5
-
6
- @Scope()
7
- export class ScopeModuleADevui extends BeanScopeBase {}
8
-
9
- export interface ScopeModuleADevui
10
- extends TypeModuleResource<
11
- typeof components,
12
- typeof config,
13
- typeof Errors,
14
- (typeof locales)[TypeLocaleBase],
15
- typeof constants,
16
- typeof services
17
- > {}
18
-
19
- import 'zova';
20
- declare module 'zova' {
21
- export interface IBeanScopeRecord {
22
- 'a-devui': ScopeModuleADevui;
23
- }
24
-
25
- export interface IBeanScopeConfig {
26
- 'a-devui': ReturnType<typeof config>;
27
- }
28
-
29
- export interface IBeanScopeLocale {
30
- 'a-devui': (typeof locales)[TypeLocaleBase];
31
- }
32
- }
@@ -1,4 +0,0 @@
1
- export const __ThisModule__ = 'a-devui';
2
- export type __ThisModuleType__ = typeof __ThisModule__;
3
-
4
- export { ScopeModuleADevui as ScopeModule } from './scope.js';
@@ -1,3 +0,0 @@
1
- import { IModuleRoute } from 'zova-module-a-router';
2
-
3
- export const routes: IModuleRoute[] = [];
@@ -1 +0,0 @@
1
- export {};
@@ -1,5 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "compilerOptions": {},
4
- "exclude": ["dist", "node_modules"]
5
- }
@@ -1,4 +0,0 @@
1
- {
2
- "extends": "../../../tsconfig.base.json",
3
- "compilerOptions": {}
4
- }