g-ui-web 0.9.3 → 0.9.5

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
@@ -2,11 +2,10 @@ type EventCallback = (data: any) => void;
2
2
  export default class DataSource {
3
3
  dsKey: string;
4
4
  data: any;
5
- dataUrl: string | object | undefined;
5
+ dataUrl: string | object | undefined | any;
6
6
  events: {
7
7
  [key: string]: EventCallback[];
8
8
  };
9
- params: string | object | undefined;
10
9
  constructor(dataUrl: any);
11
10
  loadStaticData(data: any): void;
12
11
  load(dataUrl: any): Promise<void>;
@@ -20,4 +19,5 @@ export default class DataSource {
20
19
  * @returns
21
20
  */
22
21
  export declare const resetDataSource: (data: any) => any;
22
+ export declare const checkType: (value: any) => "数组" | "对象" | "字符串" | "其他类型";
23
23
  export {};
@@ -2,11 +2,10 @@ type EventCallback = (data: any) => void;
2
2
  export default class DataSource {
3
3
  dsKey: string;
4
4
  data: any;
5
- dataUrl: string | object | undefined;
5
+ dataUrl: any;
6
6
  events: {
7
7
  [key: string]: EventCallback[];
8
8
  };
9
- params: string | object | undefined;
10
9
  constructor(dataUrl: any);
11
10
  loadStaticData(data: any): void;
12
11
  load(dataUrl: any): Promise<void>;
@@ -20,4 +19,5 @@ export default class DataSource {
20
19
  * @returns
21
20
  */
22
21
  export declare const resetDataSource: (data: any) => any;
22
+ export declare const checkType: (value: any) => "数组" | "对象" | "字符串" | "其他类型";
23
23
  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.9.3",
5
+ "version": "0.9.5",
6
6
  "author": "wyu",
7
7
  "license": "MIT",
8
8
  "type": "module",