beer-assembly-biz 1.1.3-alpha.17 → 1.1.3-alpha.18
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/layout/AppLayout.d.ts +6 -2
- package/package.json +1 -1
package/layout/AppLayout.d.ts
CHANGED
|
@@ -19,11 +19,11 @@ export declare type App = {
|
|
|
19
19
|
/**
|
|
20
20
|
* App图标
|
|
21
21
|
*/
|
|
22
|
-
icon
|
|
22
|
+
icon?: string;
|
|
23
23
|
/**
|
|
24
24
|
* App描述
|
|
25
25
|
*/
|
|
26
|
-
description
|
|
26
|
+
description?: string;
|
|
27
27
|
/**
|
|
28
28
|
* 路径
|
|
29
29
|
*/
|
|
@@ -32,6 +32,10 @@ export declare type App = {
|
|
|
32
32
|
* App 默认路径
|
|
33
33
|
*/
|
|
34
34
|
defaultPath: string;
|
|
35
|
+
/**
|
|
36
|
+
* 配置.
|
|
37
|
+
*/
|
|
38
|
+
config?: {};
|
|
35
39
|
};
|
|
36
40
|
/**
|
|
37
41
|
* 用户信息实体.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beer-assembly-biz",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.1.3-alpha.
|
|
4
|
+
"version": "1.1.3-alpha.18",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"pub-w": "tsc && copy package.json .\\dist\\package.json && npm publish ./dist",
|
|
7
7
|
"copy": "cp -a src/rich/AIEditor.css dist/rich/AIEditor.css && cp -a src/icon dist/icon && cp -a src/images dist/images",
|