@nocobase/plugin-data-visualization-echarts 2.1.0-beta.24 → 2.1.0-beta.26
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/client-v2.d.ts +2 -0
- package/client-v2.js +1 -0
- package/dist/client-v2/echarts/ReactEChart.d.ts +11 -0
- package/dist/client-v2/echarts/bar.d.ts +14 -0
- package/dist/client-v2/echarts/column.d.ts +22 -0
- package/dist/client-v2/echarts/configs.d.ts +322 -0
- package/dist/client-v2/echarts/diverging-bar.d.ts +15 -0
- package/dist/client-v2/echarts/echart.d.ts +56 -0
- package/dist/client-v2/echarts/funnel.d.ts +38 -0
- package/dist/client-v2/echarts/index.d.ts +13 -0
- package/dist/client-v2/echarts/line.d.ts +14 -0
- package/dist/client-v2/echarts/pie.d.ts +15 -0
- package/dist/client-v2/echarts/radar.d.ts +29 -0
- package/dist/client-v2/echarts/themes/dark/chalk.d.ts +363 -0
- package/dist/client-v2/echarts/themes/dark/dark.d.ts +363 -0
- package/dist/client-v2/echarts/themes/dark/halloween.d.ts +370 -0
- package/dist/client-v2/echarts/themes/dark/purple-passion.d.ts +363 -0
- package/dist/client-v2/echarts/themes/light/essos.d.ts +363 -0
- package/dist/client-v2/echarts/themes/light/infographic.d.ts +363 -0
- package/dist/client-v2/echarts/themes/light/macarons.d.ts +363 -0
- package/dist/client-v2/echarts/themes/light/roma.d.ts +363 -0
- package/dist/client-v2/echarts/themes/light/shine.d.ts +363 -0
- package/dist/client-v2/echarts/themes/light/vintage.d.ts +363 -0
- package/dist/client-v2/echarts/themes/light/walden.d.ts +363 -0
- package/dist/client-v2/echarts/themes/light/westeros.d.ts +363 -0
- package/dist/client-v2/echarts/themes/light/wonderland.d.ts +363 -0
- package/dist/client-v2/echarts/transform.d.ts +9 -0
- package/dist/client-v2/echarts/treemap.d.ts +26 -0
- package/dist/client-v2/echarts/wordcloud.d.ts +24 -0
- package/dist/client-v2/index.d.ts +15 -0
- package/dist/client-v2/index.js +10 -0
- package/dist/client-v2/locale.d.ts +12 -0
- package/dist/externalVersion.js +4 -3
- package/package.json +3 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
export declare function setTranslator(nextTranslator: (key: string) => string): void;
|
|
10
|
+
export declare function useT(): (str: string) => string;
|
|
11
|
+
export declare function tStr(key: string): string;
|
|
12
|
+
export declare function lang(key: string): string;
|
package/dist/externalVersion.js
CHANGED
|
@@ -8,9 +8,10 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"@nocobase/client": "2.1.0-beta.
|
|
12
|
-
"@nocobase/plugin-data-visualization": "2.1.0-beta.
|
|
13
|
-
"@nocobase/
|
|
11
|
+
"@nocobase/client": "2.1.0-beta.26",
|
|
12
|
+
"@nocobase/plugin-data-visualization": "2.1.0-beta.26",
|
|
13
|
+
"@nocobase/client-v2": "2.1.0-beta.26",
|
|
14
|
+
"@nocobase/server": "2.1.0-beta.26",
|
|
14
15
|
"react": "18.2.0",
|
|
15
16
|
"lodash": "4.18.1"
|
|
16
17
|
};
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"description.zh-CN": "使用 ECharts 实现数据可视化,支持漏斗图、雷达图等更多图表类型,并提供更友好的可视化配置。",
|
|
7
7
|
"homepage": "https://docs.nocobase.com/handbook/data-visualization/echarts",
|
|
8
8
|
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/data-visualization/echarts",
|
|
9
|
-
"version": "2.1.0-beta.
|
|
9
|
+
"version": "2.1.0-beta.26",
|
|
10
10
|
"main": "dist/server/index.js",
|
|
11
11
|
"nocobase": {
|
|
12
12
|
"supportedVersions": [
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@nocobase/client": "2.x",
|
|
25
|
+
"@nocobase/client-v2": "2.x",
|
|
25
26
|
"@nocobase/plugin-data-visualization": "2.x",
|
|
26
27
|
"@nocobase/server": "2.x",
|
|
27
28
|
"@nocobase/test": "2.x"
|
|
@@ -30,5 +31,5 @@
|
|
|
30
31
|
"Blocks"
|
|
31
32
|
],
|
|
32
33
|
"license": "Apache-2.0",
|
|
33
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "b17e1a72057813fa27d8435bf0f2af67ea4b059f"
|
|
34
35
|
}
|