@ibiz-template/runtime 0.0.1-alpha.25 → 0.0.1-alpha.26

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/out/index.d.ts CHANGED
@@ -3,6 +3,7 @@ export { install } from './install';
3
3
  export * from './command';
4
4
  export * from './constant';
5
5
  export * from './interface';
6
+ export { RegisterCenter } from './register/register-center';
6
7
  export * from './register';
7
8
  export * from './utils';
8
9
  export * from './view-logic';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,CAAC;AAEjB,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,CAAC;AAEjB,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC"}
package/out/index.js CHANGED
@@ -3,6 +3,7 @@ export { install } from './install';
3
3
  export * from './command';
4
4
  export * from './constant';
5
5
  export * from './interface';
6
+ export { RegisterCenter } from './register/register-center';
6
7
  export * from './register';
7
8
  export * from './utils';
8
9
  export * from './view-logic';
@@ -1,3 +1,2 @@
1
1
  export * from './register-base';
2
- export * from './register-center';
3
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/register/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/register/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
@@ -1,2 +1 @@
1
1
  export * from './register-base';
2
- export * from './register-center';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz-template/runtime",
3
- "version": "0.0.1-alpha.25",
3
+ "version": "0.0.1-alpha.26",
4
4
  "description": "控制器包",
5
5
  "type": "module",
6
6
  "main": "out/index.js",
@@ -27,13 +27,13 @@
27
27
  "author": "chitanda",
28
28
  "license": "MIT",
29
29
  "dependencies": {
30
- "@ibiz-template/command": "^0.0.1-alpha.23"
30
+ "@ibiz-template/command": "^0.0.1-alpha.26"
31
31
  },
32
32
  "devDependencies": {
33
- "@ibiz-template/core": "^0.0.1-alpha.23",
34
- "@ibiz-template/model": "^0.0.1-alpha.23",
35
- "@ibiz-template/service": "^0.0.1-alpha.25",
36
- "qx-util": "^0.4.1"
33
+ "@ibiz-template/core": "^0.0.1-alpha.26",
34
+ "@ibiz-template/model": "^0.0.1-alpha.26",
35
+ "@ibiz-template/service": "^0.0.1-alpha.26",
36
+ "qx-util": "0.4.3"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@ibiz-template/core": "^0.0.1-alpha.2",
@@ -41,5 +41,5 @@
41
41
  "@ibiz-template/service": "^0.0.1-alpha.2",
42
42
  "qx-util": "^0.4.1"
43
43
  },
44
- "gitHead": "5a51f2540ce3691f8bb4fae6f54f96679e900428"
44
+ "gitHead": "f516fd1387cea04747beec765f3287a92bf5f39f"
45
45
  }
package/src/index.ts CHANGED
@@ -4,6 +4,7 @@ export { install } from './install';
4
4
  export * from './command';
5
5
  export * from './constant';
6
6
  export * from './interface';
7
+ export { RegisterCenter } from './register/register-center';
7
8
  export * from './register';
8
9
  export * from './utils';
9
10
  export * from './view-logic';
@@ -1,2 +1 @@
1
1
  export * from './register-base';
2
- export * from './register-center';