@nocobase/plugin-data-visualization-echarts 2.1.0-beta.9 → 2.2.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.
Files changed (35) hide show
  1. package/client-v2.d.ts +2 -0
  2. package/client-v2.js +1 -0
  3. package/dist/client/index.js +1 -1
  4. package/dist/client-v2/echarts/ReactEChart.d.ts +11 -0
  5. package/dist/client-v2/echarts/bar.d.ts +14 -0
  6. package/dist/client-v2/echarts/column.d.ts +22 -0
  7. package/dist/client-v2/echarts/configs.d.ts +322 -0
  8. package/dist/client-v2/echarts/diverging-bar.d.ts +15 -0
  9. package/dist/client-v2/echarts/echart.d.ts +56 -0
  10. package/dist/client-v2/echarts/funnel.d.ts +38 -0
  11. package/dist/client-v2/echarts/index.d.ts +13 -0
  12. package/dist/client-v2/echarts/line.d.ts +14 -0
  13. package/dist/client-v2/echarts/pie.d.ts +15 -0
  14. package/dist/client-v2/echarts/radar.d.ts +29 -0
  15. package/dist/client-v2/echarts/themes/dark/chalk.d.ts +363 -0
  16. package/dist/client-v2/echarts/themes/dark/dark.d.ts +363 -0
  17. package/dist/client-v2/echarts/themes/dark/halloween.d.ts +370 -0
  18. package/dist/client-v2/echarts/themes/dark/purple-passion.d.ts +363 -0
  19. package/dist/client-v2/echarts/themes/light/essos.d.ts +363 -0
  20. package/dist/client-v2/echarts/themes/light/infographic.d.ts +363 -0
  21. package/dist/client-v2/echarts/themes/light/macarons.d.ts +363 -0
  22. package/dist/client-v2/echarts/themes/light/roma.d.ts +363 -0
  23. package/dist/client-v2/echarts/themes/light/shine.d.ts +363 -0
  24. package/dist/client-v2/echarts/themes/light/vintage.d.ts +363 -0
  25. package/dist/client-v2/echarts/themes/light/walden.d.ts +363 -0
  26. package/dist/client-v2/echarts/themes/light/westeros.d.ts +363 -0
  27. package/dist/client-v2/echarts/themes/light/wonderland.d.ts +363 -0
  28. package/dist/client-v2/echarts/transform.d.ts +9 -0
  29. package/dist/client-v2/echarts/treemap.d.ts +26 -0
  30. package/dist/client-v2/echarts/wordcloud.d.ts +24 -0
  31. package/dist/client-v2/index.d.ts +15 -0
  32. package/dist/client-v2/index.js +10 -0
  33. package/dist/client-v2/locale.d.ts +12 -0
  34. package/dist/externalVersion.js +5 -4
  35. package/package.json +5 -4
@@ -0,0 +1,363 @@
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
+ declare const _default: {
10
+ color: string[];
11
+ backgroundColor: string;
12
+ textStyle: {};
13
+ title: {
14
+ textStyle: {
15
+ color: string;
16
+ };
17
+ subtextStyle: {
18
+ color: string;
19
+ };
20
+ };
21
+ line: {
22
+ itemStyle: {
23
+ borderWidth: string;
24
+ };
25
+ lineStyle: {
26
+ width: string;
27
+ };
28
+ symbolSize: string;
29
+ symbol: string;
30
+ smooth: boolean;
31
+ };
32
+ radar: {
33
+ itemStyle: {
34
+ borderWidth: string;
35
+ };
36
+ lineStyle: {
37
+ width: string;
38
+ };
39
+ symbolSize: string;
40
+ symbol: string;
41
+ smooth: boolean;
42
+ };
43
+ bar: {
44
+ itemStyle: {
45
+ barBorderWidth: number;
46
+ barBorderColor: string;
47
+ };
48
+ };
49
+ pie: {
50
+ itemStyle: {
51
+ borderWidth: number;
52
+ borderColor: string;
53
+ };
54
+ };
55
+ scatter: {
56
+ itemStyle: {
57
+ borderWidth: number;
58
+ borderColor: string;
59
+ };
60
+ };
61
+ boxplot: {
62
+ itemStyle: {
63
+ borderWidth: number;
64
+ borderColor: string;
65
+ };
66
+ };
67
+ parallel: {
68
+ itemStyle: {
69
+ borderWidth: number;
70
+ borderColor: string;
71
+ };
72
+ };
73
+ sankey: {
74
+ itemStyle: {
75
+ borderWidth: number;
76
+ borderColor: string;
77
+ };
78
+ };
79
+ funnel: {
80
+ itemStyle: {
81
+ borderWidth: number;
82
+ borderColor: string;
83
+ };
84
+ };
85
+ gauge: {
86
+ itemStyle: {
87
+ borderWidth: number;
88
+ borderColor: string;
89
+ };
90
+ };
91
+ candlestick: {
92
+ itemStyle: {
93
+ color: string;
94
+ color0: string;
95
+ borderColor: string;
96
+ borderColor0: string;
97
+ borderWidth: string;
98
+ };
99
+ };
100
+ graph: {
101
+ itemStyle: {
102
+ borderWidth: number;
103
+ borderColor: string;
104
+ };
105
+ lineStyle: {
106
+ width: string;
107
+ color: string;
108
+ };
109
+ symbolSize: string;
110
+ symbol: string;
111
+ smooth: boolean;
112
+ color: string[];
113
+ label: {
114
+ color: string;
115
+ };
116
+ };
117
+ map: {
118
+ itemStyle: {
119
+ areaColor: string;
120
+ borderColor: string;
121
+ borderWidth: number;
122
+ };
123
+ label: {
124
+ color: string;
125
+ };
126
+ emphasis: {
127
+ itemStyle: {
128
+ areaColor: string;
129
+ borderColor: string;
130
+ borderWidth: number;
131
+ };
132
+ label: {
133
+ color: string;
134
+ };
135
+ };
136
+ };
137
+ geo: {
138
+ itemStyle: {
139
+ areaColor: string;
140
+ borderColor: string;
141
+ borderWidth: number;
142
+ };
143
+ label: {
144
+ color: string;
145
+ };
146
+ emphasis: {
147
+ itemStyle: {
148
+ areaColor: string;
149
+ borderColor: string;
150
+ borderWidth: number;
151
+ };
152
+ label: {
153
+ color: string;
154
+ };
155
+ };
156
+ };
157
+ categoryAxis: {
158
+ axisLine: {
159
+ show: boolean;
160
+ lineStyle: {
161
+ color: string;
162
+ };
163
+ };
164
+ axisTick: {
165
+ show: boolean;
166
+ lineStyle: {
167
+ color: string;
168
+ };
169
+ };
170
+ axisLabel: {
171
+ show: boolean;
172
+ color: string;
173
+ };
174
+ splitLine: {
175
+ show: boolean;
176
+ lineStyle: {
177
+ color: string[];
178
+ };
179
+ };
180
+ splitArea: {
181
+ show: boolean;
182
+ areaStyle: {
183
+ color: string[];
184
+ };
185
+ };
186
+ };
187
+ valueAxis: {
188
+ axisLine: {
189
+ show: boolean;
190
+ lineStyle: {
191
+ color: string;
192
+ };
193
+ };
194
+ axisTick: {
195
+ show: boolean;
196
+ lineStyle: {
197
+ color: string;
198
+ };
199
+ };
200
+ axisLabel: {
201
+ show: boolean;
202
+ color: string;
203
+ };
204
+ splitLine: {
205
+ show: boolean;
206
+ lineStyle: {
207
+ color: string[];
208
+ };
209
+ };
210
+ splitArea: {
211
+ show: boolean;
212
+ areaStyle: {
213
+ color: string[];
214
+ };
215
+ };
216
+ };
217
+ logAxis: {
218
+ axisLine: {
219
+ show: boolean;
220
+ lineStyle: {
221
+ color: string;
222
+ };
223
+ };
224
+ axisTick: {
225
+ show: boolean;
226
+ lineStyle: {
227
+ color: string;
228
+ };
229
+ };
230
+ axisLabel: {
231
+ show: boolean;
232
+ color: string;
233
+ };
234
+ splitLine: {
235
+ show: boolean;
236
+ lineStyle: {
237
+ color: string[];
238
+ };
239
+ };
240
+ splitArea: {
241
+ show: boolean;
242
+ areaStyle: {
243
+ color: string[];
244
+ };
245
+ };
246
+ };
247
+ timeAxis: {
248
+ axisLine: {
249
+ show: boolean;
250
+ lineStyle: {
251
+ color: string;
252
+ };
253
+ };
254
+ axisTick: {
255
+ show: boolean;
256
+ lineStyle: {
257
+ color: string;
258
+ };
259
+ };
260
+ axisLabel: {
261
+ show: boolean;
262
+ color: string;
263
+ };
264
+ splitLine: {
265
+ show: boolean;
266
+ lineStyle: {
267
+ color: string[];
268
+ };
269
+ };
270
+ splitArea: {
271
+ show: boolean;
272
+ areaStyle: {
273
+ color: string[];
274
+ };
275
+ };
276
+ };
277
+ toolbox: {
278
+ iconStyle: {
279
+ borderColor: string;
280
+ };
281
+ emphasis: {
282
+ iconStyle: {
283
+ borderColor: string;
284
+ };
285
+ };
286
+ };
287
+ legend: {
288
+ textStyle: {
289
+ color: string;
290
+ };
291
+ };
292
+ tooltip: {
293
+ axisPointer: {
294
+ lineStyle: {
295
+ color: string;
296
+ width: number;
297
+ };
298
+ crossStyle: {
299
+ color: string;
300
+ width: number;
301
+ };
302
+ };
303
+ };
304
+ timeline: {
305
+ lineStyle: {
306
+ color: string;
307
+ width: number;
308
+ };
309
+ itemStyle: {
310
+ color: string;
311
+ borderWidth: number;
312
+ };
313
+ controlStyle: {
314
+ color: string;
315
+ borderColor: string;
316
+ borderWidth: number;
317
+ };
318
+ checkpointStyle: {
319
+ color: string;
320
+ borderColor: string;
321
+ };
322
+ label: {
323
+ color: string;
324
+ };
325
+ emphasis: {
326
+ itemStyle: {
327
+ color: string;
328
+ };
329
+ controlStyle: {
330
+ color: string;
331
+ borderColor: string;
332
+ borderWidth: number;
333
+ };
334
+ label: {
335
+ color: string;
336
+ };
337
+ };
338
+ };
339
+ visualMap: {
340
+ color: string[];
341
+ };
342
+ dataZoom: {
343
+ backgroundColor: string;
344
+ dataBackgroundColor: string;
345
+ fillerColor: string;
346
+ handleColor: string;
347
+ handleSize: string;
348
+ textStyle: {
349
+ color: string;
350
+ };
351
+ };
352
+ markPoint: {
353
+ label: {
354
+ color: string;
355
+ };
356
+ emphasis: {
357
+ label: {
358
+ color: string;
359
+ };
360
+ };
361
+ };
362
+ };
363
+ export default _default;
@@ -0,0 +1,363 @@
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
+ declare const _default: {
10
+ color: string[];
11
+ backgroundColor: string;
12
+ textStyle: {};
13
+ title: {
14
+ textStyle: {
15
+ color: string;
16
+ };
17
+ subtextStyle: {
18
+ color: string;
19
+ };
20
+ };
21
+ line: {
22
+ itemStyle: {
23
+ borderWidth: string;
24
+ };
25
+ lineStyle: {
26
+ width: string;
27
+ };
28
+ symbolSize: string;
29
+ symbol: string;
30
+ smooth: boolean;
31
+ };
32
+ radar: {
33
+ itemStyle: {
34
+ borderWidth: string;
35
+ };
36
+ lineStyle: {
37
+ width: string;
38
+ };
39
+ symbolSize: string;
40
+ symbol: string;
41
+ smooth: boolean;
42
+ };
43
+ bar: {
44
+ itemStyle: {
45
+ barBorderWidth: number;
46
+ barBorderColor: string;
47
+ };
48
+ };
49
+ pie: {
50
+ itemStyle: {
51
+ borderWidth: number;
52
+ borderColor: string;
53
+ };
54
+ };
55
+ scatter: {
56
+ itemStyle: {
57
+ borderWidth: number;
58
+ borderColor: string;
59
+ };
60
+ };
61
+ boxplot: {
62
+ itemStyle: {
63
+ borderWidth: number;
64
+ borderColor: string;
65
+ };
66
+ };
67
+ parallel: {
68
+ itemStyle: {
69
+ borderWidth: number;
70
+ borderColor: string;
71
+ };
72
+ };
73
+ sankey: {
74
+ itemStyle: {
75
+ borderWidth: number;
76
+ borderColor: string;
77
+ };
78
+ };
79
+ funnel: {
80
+ itemStyle: {
81
+ borderWidth: number;
82
+ borderColor: string;
83
+ };
84
+ };
85
+ gauge: {
86
+ itemStyle: {
87
+ borderWidth: number;
88
+ borderColor: string;
89
+ };
90
+ };
91
+ candlestick: {
92
+ itemStyle: {
93
+ color: string;
94
+ color0: string;
95
+ borderColor: string;
96
+ borderColor0: string;
97
+ borderWidth: string;
98
+ };
99
+ };
100
+ graph: {
101
+ itemStyle: {
102
+ borderWidth: number;
103
+ borderColor: string;
104
+ };
105
+ lineStyle: {
106
+ width: number;
107
+ color: string;
108
+ };
109
+ symbolSize: string;
110
+ symbol: string;
111
+ smooth: boolean;
112
+ color: string[];
113
+ label: {
114
+ color: string;
115
+ };
116
+ };
117
+ map: {
118
+ itemStyle: {
119
+ areaColor: string;
120
+ borderColor: string;
121
+ borderWidth: number;
122
+ };
123
+ label: {
124
+ color: string;
125
+ };
126
+ emphasis: {
127
+ itemStyle: {
128
+ areaColor: string;
129
+ borderColor: string;
130
+ borderWidth: number;
131
+ };
132
+ label: {
133
+ color: string;
134
+ };
135
+ };
136
+ };
137
+ geo: {
138
+ itemStyle: {
139
+ areaColor: string;
140
+ borderColor: string;
141
+ borderWidth: number;
142
+ };
143
+ label: {
144
+ color: string;
145
+ };
146
+ emphasis: {
147
+ itemStyle: {
148
+ areaColor: string;
149
+ borderColor: string;
150
+ borderWidth: number;
151
+ };
152
+ label: {
153
+ color: string;
154
+ };
155
+ };
156
+ };
157
+ categoryAxis: {
158
+ axisLine: {
159
+ show: boolean;
160
+ lineStyle: {
161
+ color: string;
162
+ };
163
+ };
164
+ axisTick: {
165
+ show: boolean;
166
+ lineStyle: {
167
+ color: string;
168
+ };
169
+ };
170
+ axisLabel: {
171
+ show: boolean;
172
+ color: string;
173
+ };
174
+ splitLine: {
175
+ show: boolean;
176
+ lineStyle: {
177
+ color: string[];
178
+ };
179
+ };
180
+ splitArea: {
181
+ show: boolean;
182
+ areaStyle: {
183
+ color: string[];
184
+ };
185
+ };
186
+ };
187
+ valueAxis: {
188
+ axisLine: {
189
+ show: boolean;
190
+ lineStyle: {
191
+ color: string;
192
+ };
193
+ };
194
+ axisTick: {
195
+ show: boolean;
196
+ lineStyle: {
197
+ color: string;
198
+ };
199
+ };
200
+ axisLabel: {
201
+ show: boolean;
202
+ color: string;
203
+ };
204
+ splitLine: {
205
+ show: boolean;
206
+ lineStyle: {
207
+ color: string[];
208
+ };
209
+ };
210
+ splitArea: {
211
+ show: boolean;
212
+ areaStyle: {
213
+ color: string[];
214
+ };
215
+ };
216
+ };
217
+ logAxis: {
218
+ axisLine: {
219
+ show: boolean;
220
+ lineStyle: {
221
+ color: string;
222
+ };
223
+ };
224
+ axisTick: {
225
+ show: boolean;
226
+ lineStyle: {
227
+ color: string;
228
+ };
229
+ };
230
+ axisLabel: {
231
+ show: boolean;
232
+ color: string;
233
+ };
234
+ splitLine: {
235
+ show: boolean;
236
+ lineStyle: {
237
+ color: string[];
238
+ };
239
+ };
240
+ splitArea: {
241
+ show: boolean;
242
+ areaStyle: {
243
+ color: string[];
244
+ };
245
+ };
246
+ };
247
+ timeAxis: {
248
+ axisLine: {
249
+ show: boolean;
250
+ lineStyle: {
251
+ color: string;
252
+ };
253
+ };
254
+ axisTick: {
255
+ show: boolean;
256
+ lineStyle: {
257
+ color: string;
258
+ };
259
+ };
260
+ axisLabel: {
261
+ show: boolean;
262
+ color: string;
263
+ };
264
+ splitLine: {
265
+ show: boolean;
266
+ lineStyle: {
267
+ color: string[];
268
+ };
269
+ };
270
+ splitArea: {
271
+ show: boolean;
272
+ areaStyle: {
273
+ color: string[];
274
+ };
275
+ };
276
+ };
277
+ toolbox: {
278
+ iconStyle: {
279
+ borderColor: string;
280
+ };
281
+ emphasis: {
282
+ iconStyle: {
283
+ borderColor: string;
284
+ };
285
+ };
286
+ };
287
+ legend: {
288
+ textStyle: {
289
+ color: string;
290
+ };
291
+ };
292
+ tooltip: {
293
+ axisPointer: {
294
+ lineStyle: {
295
+ color: string;
296
+ width: number;
297
+ };
298
+ crossStyle: {
299
+ color: string;
300
+ width: number;
301
+ };
302
+ };
303
+ };
304
+ timeline: {
305
+ lineStyle: {
306
+ color: string;
307
+ width: number;
308
+ };
309
+ itemStyle: {
310
+ color: string;
311
+ borderWidth: number;
312
+ };
313
+ controlStyle: {
314
+ color: string;
315
+ borderColor: string;
316
+ borderWidth: number;
317
+ };
318
+ checkpointStyle: {
319
+ color: string;
320
+ borderColor: string;
321
+ };
322
+ label: {
323
+ color: string;
324
+ };
325
+ emphasis: {
326
+ itemStyle: {
327
+ color: string;
328
+ };
329
+ controlStyle: {
330
+ color: string;
331
+ borderColor: string;
332
+ borderWidth: number;
333
+ };
334
+ label: {
335
+ color: string;
336
+ };
337
+ };
338
+ };
339
+ visualMap: {
340
+ color: string[];
341
+ };
342
+ dataZoom: {
343
+ backgroundColor: string;
344
+ dataBackgroundColor: string;
345
+ fillerColor: string;
346
+ handleColor: string;
347
+ handleSize: string;
348
+ textStyle: {
349
+ color: string;
350
+ };
351
+ };
352
+ markPoint: {
353
+ label: {
354
+ color: string;
355
+ };
356
+ emphasis: {
357
+ label: {
358
+ color: string;
359
+ };
360
+ };
361
+ };
362
+ };
363
+ export default _default;