g-ui-web 0.8.23 → 0.9.0

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/lib/style.css.gz CHANGED
Binary file
@@ -34,4 +34,20 @@ export declare function formatNumber(value: number | string, precision?: number,
34
34
  * 数据转化
35
35
  */
36
36
  export declare const getNestedValue: (obj: any, keys: any) => any;
37
+ /**
38
+ * 设置项目配置
39
+ */
40
+ interface configProps {
41
+ baseURL: string;
42
+ sysCode: string;
43
+ appType: string;
44
+ token: string;
45
+ }
46
+ export declare const setBaseConfig: (config?: configProps) => {
47
+ baseURL: string;
48
+ sysCode: string;
49
+ appType: string;
50
+ token: string;
51
+ };
52
+ export declare const getBaseConfig: () => any;
37
53
  export {};
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "g-ui-web",
3
3
  "private": false,
4
4
  "description": "可视化组件库",
5
- "version": "0.8.23",
5
+ "version": "0.9.0",
6
6
  "author": "wyu",
7
7
  "license": "MIT",
8
8
  "type": "module",