@nocobase/plugin-data-visualization 2.0.0-alpha.8 → 2.0.0-beta.1
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/0613b4018765820a.js +47 -0
- package/dist/client/2ba6e739852f8f86.js +10 -0
- package/dist/client/8795975cb8946be4.js +10 -0
- package/dist/client/924c5f5607998e1c.js +10 -0
- package/dist/client/flow/components/AntdFilterSelector.d.ts +35 -0
- package/dist/client/flow/{models/FormItemLite.d.ts → components/DaraButton.d.ts} +5 -4
- package/dist/client/flow/models/Chart.d.ts +1 -0
- package/dist/client/flow/models/ChartBlockModel.d.ts +2 -1
- package/dist/client/flow/models/ChartOptionsBuilder.service.d.ts +15 -5
- package/dist/client/flow/models/ChartOptionsPanel.d.ts +1 -0
- package/dist/client/flow/models/QueryBuilder.d.ts +7 -1
- package/dist/client/flow/models/QueryBuilder.service.d.ts +20 -0
- package/dist/client/flow/resources/ChartResource.d.ts +1 -4
- package/dist/client/flow/utils.d.ts +8 -0
- package/dist/client/index.js +1 -1
- package/dist/client/utils.d.ts +11 -11
- package/dist/externalVersion.js +10 -9
- package/dist/locale/de-DE.json +122 -79
- package/dist/locale/en-US.json +122 -91
- package/dist/locale/es-ES.json +145 -0
- package/dist/locale/fr-FR.json +145 -0
- package/dist/locale/hu-HU.json +145 -0
- package/dist/locale/id-ID.json +145 -0
- package/dist/locale/it-IT.json +122 -79
- package/dist/locale/ja-JP.json +130 -78
- package/dist/locale/ko-KR.json +140 -70
- package/dist/locale/nl-NL.json +149 -99
- package/dist/locale/pt-BR.json +145 -0
- package/dist/locale/ru-RU.json +145 -0
- package/dist/locale/tr-TR.json +145 -0
- package/dist/locale/uk-UA.json +145 -0
- package/dist/locale/vi-VN.json +145 -0
- package/dist/locale/zh-CN.json +122 -92
- package/dist/locale/zh-TW.json +145 -0
- package/dist/node_modules/koa-compose/package.json +1 -1
- package/dist/node_modules/moment-timezone/package.json +1 -1
- package/dist/server/actions/query.js +20 -2
- package/package.json +8 -4
- package/dist/client/33f0f13fb9c8b63c.js +0 -10
- package/dist/client/9147ee5ec2a6b9da.js +0 -47
- package/dist/client/d5982ab2df5b1822.js +0 -10
- package/dist/client/e5eee84a69b5014e.js +0 -10
- package/dist/client/flow/models/queryBuilder.logic.d.ts +0 -25
|
@@ -17,6 +17,11 @@ export declare function convertDatasetFormats(data: Record<string, any>[]): {
|
|
|
17
17
|
rows: string[][];
|
|
18
18
|
columns: any[][];
|
|
19
19
|
};
|
|
20
|
+
/**
|
|
21
|
+
* Normalize ECharts option for dataset-based pie charts.
|
|
22
|
+
* Fixes `{c}` showing `[object Object]` when `dataset.source` is an array of objects by rewriting `{c}` to `{@<valueField>}`.
|
|
23
|
+
*/
|
|
24
|
+
export declare function normalizeEChartsOption(option: any): any;
|
|
20
25
|
export declare const formatters: {
|
|
21
26
|
datetime: {
|
|
22
27
|
label: string;
|
|
@@ -32,3 +37,6 @@ export declare const formatters: {
|
|
|
32
37
|
}[];
|
|
33
38
|
};
|
|
34
39
|
export declare function sleep(ms: number): Promise<void>;
|
|
40
|
+
export declare function appendColon(label: string, lang?: string): string;
|
|
41
|
+
export declare const isDebugEnabled: () => boolean;
|
|
42
|
+
export declare const debugLog: (...args: any[]) => void;
|