@nocobase/plugin-data-visualization 2.0.0-alpha.19 → 2.0.0-alpha.20
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/dist/client/643666f55b6cd6fb.js +47 -0
- package/dist/client/flow/models/ChartOptionsBuilder.service.d.ts +15 -5
- package/dist/client/flow/resources/ChartResource.d.ts +1 -0
- package/dist/client/index.js +1 -1
- package/dist/externalVersion.js +9 -9
- package/dist/locale/en-US.json +28 -8
- package/dist/locale/zh-CN.json +25 -5
- package/dist/node_modules/koa-compose/package.json +1 -1
- package/dist/node_modules/moment-timezone/package.json +1 -1
- package/package.json +2 -2
- package/dist/client/a735c3f0a1dee962.js +0 -47
|
@@ -6,22 +6,32 @@
|
|
|
6
6
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
7
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
8
|
*/
|
|
9
|
-
export type ChartTypeKey = 'line' | 'bar' | 'barHorizontal' | 'pie' | 'scatter' | 'area';
|
|
9
|
+
export type ChartTypeKey = 'line' | 'bar' | 'barHorizontal' | 'pie' | 'doughnut' | 'scatter' | 'area' | 'funnel';
|
|
10
10
|
export declare function getChartFormSpec(type: ChartTypeKey): ({
|
|
11
11
|
kind: string;
|
|
12
12
|
name: any;
|
|
13
|
-
|
|
13
|
+
labelKey: any;
|
|
14
|
+
options: any;
|
|
15
|
+
required?: undefined;
|
|
16
|
+
allowClear?: undefined;
|
|
17
|
+
placeholderKey?: undefined;
|
|
18
|
+
min?: undefined;
|
|
19
|
+
max?: undefined;
|
|
20
|
+
} | {
|
|
21
|
+
kind: string;
|
|
22
|
+
name: any;
|
|
23
|
+
labelKey: any;
|
|
14
24
|
required: boolean;
|
|
15
25
|
allowClear: boolean;
|
|
16
26
|
placeholderKey: string;
|
|
17
|
-
|
|
27
|
+
options?: undefined;
|
|
18
28
|
min?: undefined;
|
|
19
29
|
max?: undefined;
|
|
20
30
|
} | {
|
|
21
31
|
kind: string;
|
|
22
32
|
name: any;
|
|
23
33
|
labelKey: any;
|
|
24
|
-
|
|
34
|
+
options?: undefined;
|
|
25
35
|
required?: undefined;
|
|
26
36
|
allowClear?: undefined;
|
|
27
37
|
placeholderKey?: undefined;
|
|
@@ -33,7 +43,7 @@ export declare function getChartFormSpec(type: ChartTypeKey): ({
|
|
|
33
43
|
labelKey: any;
|
|
34
44
|
min: any;
|
|
35
45
|
max: any;
|
|
36
|
-
|
|
46
|
+
options?: undefined;
|
|
37
47
|
required?: undefined;
|
|
38
48
|
allowClear?: undefined;
|
|
39
49
|
placeholderKey?: undefined;
|