g-ui-web 0.9.1 → 0.9.3

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
@@ -0,0 +1,23 @@
1
+ type EventCallback = (data: any) => void;
2
+ export default class DataSource {
3
+ dsKey: string;
4
+ data: any;
5
+ dataUrl: string | object | undefined;
6
+ events: {
7
+ [key: string]: EventCallback[];
8
+ };
9
+ params: string | object | undefined;
10
+ constructor(dataUrl: any);
11
+ loadStaticData(data: any): void;
12
+ load(dataUrl: any): Promise<void>;
13
+ reload(params: any): void;
14
+ on(event: string, callback: EventCallback): void;
15
+ trigger(event: string, data: any): void;
16
+ }
17
+ /**
18
+ *
19
+ * @param data 有 静态形式 包含 array / object;或者dataUrl形式 包含 string / object;或者 DataSource形式
20
+ * @returns
21
+ */
22
+ export declare const resetDataSource: (data: any) => any;
23
+ export {};
@@ -110,5 +110,6 @@ declare const theme: {
110
110
  chartAxisLabelColor: string;
111
111
  };
112
112
  aMapStyle: string;
113
+ aMapScatterColor: string;
113
114
  };
114
115
  export default theme;
@@ -107,5 +107,6 @@ declare const theme: {
107
107
  chartAxisLabelColor: string;
108
108
  };
109
109
  aMapStyle: string;
110
+ aMapScatterColor: string;
110
111
  };
111
112
  export default theme;
@@ -107,5 +107,6 @@ declare const theme: {
107
107
  chartAxisLabelColor: string;
108
108
  };
109
109
  aMapStyle: string;
110
+ aMapScatterColor: string;
110
111
  };
111
112
  export default theme;
@@ -110,5 +110,6 @@ declare const theme: {
110
110
  chartAxisLabelColor: string;
111
111
  };
112
112
  aMapStyle: string;
113
+ aMapScatterColor: string;
113
114
  };
114
115
  export default theme;
@@ -107,5 +107,6 @@ declare const theme: {
107
107
  chartAxisLabelColor: string;
108
108
  };
109
109
  aMapStyle: string;
110
+ aMapScatterColor: string;
110
111
  };
111
112
  export default theme;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "g-ui-web",
3
3
  "private": false,
4
4
  "description": "可视化组件库",
5
- "version": "0.9.1",
5
+ "version": "0.9.3",
6
6
  "author": "wyu",
7
7
  "license": "MIT",
8
8
  "type": "module",