@siemens/ix-echarts 2.1.2-beta.0 → 2.2.0

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.
@@ -1,74 +1,331 @@
1
1
  declare const _default: {
2
- version: number;
3
2
  themeName: string;
4
3
  theme: {
5
- seriesCnt: number;
6
- backgroundColor: string;
7
- titleColor: string;
8
- subtitleColor: string;
9
- textColorShow: boolean;
10
- textColor: string;
11
- markTextColor: string;
12
4
  color: string[];
13
- borderColor: string;
14
- borderWidth: number;
15
- visualMapColor: string[];
16
- legendTextColor: string;
5
+ backgroundColor: string;
6
+ textStyle: {};
7
+ title: {
8
+ textStyle: {
9
+ color: string;
10
+ };
11
+ subtextStyle: {
12
+ color: string;
13
+ };
14
+ };
15
+ line: {
16
+ itemStyle: {
17
+ borderWidth: number;
18
+ };
19
+ lineStyle: {
20
+ width: number;
21
+ };
22
+ symbolSize: number;
23
+ symbol: string;
24
+ smooth: boolean;
25
+ };
26
+ radar: {
27
+ itemStyle: {
28
+ borderWidth: number;
29
+ };
30
+ lineStyle: {
31
+ width: number;
32
+ };
33
+ symbolSize: number;
34
+ symbol: string;
35
+ smooth: boolean;
36
+ };
37
+ bar: {
38
+ itemStyle: {
39
+ barBorderWidth: number;
40
+ barBorderColor: string;
41
+ };
42
+ };
43
+ pie: {
44
+ itemStyle: {
45
+ borderWidth: number;
46
+ borderColor: string;
47
+ };
48
+ };
49
+ scatter: {
50
+ itemStyle: {
51
+ borderWidth: number;
52
+ borderColor: string;
53
+ };
54
+ };
55
+ boxplot: {
56
+ itemStyle: {
57
+ borderWidth: number;
58
+ borderColor: string;
59
+ };
60
+ };
61
+ parallel: {
62
+ itemStyle: {
63
+ borderWidth: number;
64
+ borderColor: string;
65
+ };
66
+ };
67
+ sankey: {
68
+ itemStyle: {
69
+ borderWidth: number;
70
+ borderColor: string;
71
+ };
72
+ };
73
+ funnel: {
74
+ itemStyle: {
75
+ borderWidth: number;
76
+ borderColor: string;
77
+ };
78
+ };
79
+ gauge: {
80
+ itemStyle: {
81
+ borderWidth: number;
82
+ borderColor: string;
83
+ };
84
+ };
85
+ candlestick: {
86
+ itemStyle: {
87
+ color: string;
88
+ color0: string;
89
+ borderColor: string;
90
+ borderColor0: string;
91
+ borderWidth: number;
92
+ };
93
+ };
94
+ graph: {
95
+ itemStyle: {
96
+ borderWidth: number;
97
+ borderColor: string;
98
+ };
99
+ lineStyle: {
100
+ width: string;
101
+ color: string;
102
+ };
103
+ symbolSize: number;
104
+ symbol: string;
105
+ smooth: boolean;
106
+ color: string[];
107
+ label: {
108
+ color: string;
109
+ };
110
+ };
111
+ categoryAxis: {
112
+ axisLine: {
113
+ show: boolean;
114
+ lineStyle: {
115
+ color: string;
116
+ };
117
+ };
118
+ axisTick: {
119
+ show: boolean;
120
+ lineStyle: {
121
+ color: string;
122
+ };
123
+ };
124
+ axisLabel: {
125
+ show: boolean;
126
+ color: string;
127
+ };
128
+ splitLine: {
129
+ show: boolean;
130
+ lineStyle: {
131
+ color: string[];
132
+ };
133
+ };
134
+ splitArea: {
135
+ show: boolean;
136
+ areaStyle: {
137
+ color: string[];
138
+ };
139
+ };
140
+ };
141
+ valueAxis: {
142
+ axisLine: {
143
+ show: boolean;
144
+ lineStyle: {
145
+ color: string;
146
+ };
147
+ };
148
+ axisTick: {
149
+ show: boolean;
150
+ lineStyle: {
151
+ color: string;
152
+ };
153
+ };
154
+ axisLabel: {
155
+ show: boolean;
156
+ color: string;
157
+ };
158
+ splitLine: {
159
+ show: boolean;
160
+ lineStyle: {
161
+ color: string[];
162
+ };
163
+ };
164
+ splitArea: {
165
+ show: boolean;
166
+ areaStyle: {
167
+ color: string[];
168
+ };
169
+ };
170
+ };
171
+ logAxis: {
172
+ axisLine: {
173
+ show: boolean;
174
+ lineStyle: {
175
+ color: string;
176
+ };
177
+ };
178
+ axisTick: {
179
+ show: boolean;
180
+ lineStyle: {
181
+ color: string;
182
+ };
183
+ };
184
+ axisLabel: {
185
+ show: boolean;
186
+ color: string;
187
+ };
188
+ splitLine: {
189
+ show: boolean;
190
+ lineStyle: {
191
+ color: string[];
192
+ };
193
+ };
194
+ splitArea: {
195
+ show: boolean;
196
+ areaStyle: {
197
+ color: string[];
198
+ };
199
+ };
200
+ };
201
+ timeAxis: {
202
+ axisLine: {
203
+ show: boolean;
204
+ lineStyle: {
205
+ color: string;
206
+ };
207
+ };
208
+ axisTick: {
209
+ show: boolean;
210
+ lineStyle: {
211
+ color: string;
212
+ };
213
+ };
214
+ axisLabel: {
215
+ show: boolean;
216
+ color: string;
217
+ };
218
+ splitLine: {
219
+ show: boolean;
220
+ lineStyle: {
221
+ color: string[];
222
+ };
223
+ };
224
+ splitArea: {
225
+ show: boolean;
226
+ areaStyle: {
227
+ color: string[];
228
+ };
229
+ };
230
+ };
231
+ toolbox: {
232
+ iconStyle: {
233
+ borderColor: string;
234
+ };
235
+ emphasis: {
236
+ iconStyle: {
237
+ borderColor: string;
238
+ };
239
+ };
240
+ };
17
241
  legend: {
18
242
  textStyle: {
19
243
  color: string;
20
244
  };
21
245
  };
22
- kColor: string;
23
- kColor0: string;
24
- kBorderColor: string;
25
- kBorderColor0: string;
26
- kBorderWidth: number;
27
- lineWidth: number;
28
- symbolSize: number;
29
- symbol: string;
30
- symbolBorderWidth: number;
31
- lineSmooth: boolean;
32
- graphLineWidth: string;
33
- graphLineColor: string;
34
- mapLabelColor: string;
35
- mapLabelColorE: string;
36
- mapBorderColor: string;
37
- mapBorderColorE: string;
38
- mapBorderWidth: number;
39
- mapBorderWidthE: number;
40
- mapAreaColor: string;
41
- mapAreaColorE: string;
42
- axes: {
43
- type: string;
44
- name: string;
45
- axisLineShow: boolean;
46
- axisLineColor: string;
47
- axisTickShow: boolean;
48
- axisTickColor: string;
49
- axisLabelShow: boolean;
50
- axisLabelColor: string;
51
- splitLineShow: boolean;
52
- splitLineColor: string[];
53
- splitAreaShow: boolean;
54
- splitAreaColor: string[];
55
- }[];
56
- axisSeperateSetting: boolean;
57
- toolboxColor: string;
58
- toolboxEmphasisColor: string;
59
- tooltipAxisColor: string;
60
- tooltipAxisWidth: string;
61
- timelineLineColor: string;
62
- timelineLineWidth: string;
63
- timelineItemColor: string;
64
- timelineItemColorE: string;
65
- timelineCheckColor: string;
66
- timelineCheckBorderColor: string;
67
- timelineItemBorderWidth: string;
68
- timelineControlColor: string;
69
- timelineControlBorderColor: string;
70
- timelineControlBorderWidth: string;
71
- timelineLabelColor: string;
246
+ tooltip: {
247
+ backgroundColor: string;
248
+ borderColor: string;
249
+ textStyle: {
250
+ color: string;
251
+ };
252
+ axisPointer: {
253
+ lineStyle: {
254
+ color: string;
255
+ width: string;
256
+ };
257
+ crossStyle: {
258
+ color: string;
259
+ width: string;
260
+ };
261
+ };
262
+ };
263
+ timeline: {
264
+ lineStyle: {
265
+ color: string;
266
+ width: string;
267
+ };
268
+ itemStyle: {
269
+ color: string;
270
+ borderWidth: string;
271
+ };
272
+ controlStyle: {
273
+ color: string;
274
+ borderColor: string;
275
+ borderWidth: string;
276
+ };
277
+ checkpointStyle: {
278
+ color: string;
279
+ borderColor: string;
280
+ };
281
+ label: {
282
+ color: string;
283
+ };
284
+ emphasis: {
285
+ itemStyle: {
286
+ color: string;
287
+ };
288
+ controlStyle: {
289
+ color: string;
290
+ borderColor: string;
291
+ borderWidth: string;
292
+ };
293
+ label: {
294
+ color: string;
295
+ };
296
+ };
297
+ };
298
+ visualMap: {
299
+ color: string[];
300
+ };
301
+ dataZoom: {
302
+ handleSize: string;
303
+ textStyle: {};
304
+ };
305
+ nameTextStyle: {
306
+ color: string;
307
+ };
308
+ markPoint: {
309
+ label: {
310
+ color: string;
311
+ textBorderColor: string;
312
+ textBorderWidth: number;
313
+ };
314
+ };
315
+ markLine: {
316
+ label: {
317
+ color: string;
318
+ textBorderColor: string;
319
+ textBorderWidth: number;
320
+ };
321
+ };
322
+ markArea: {
323
+ label: {
324
+ color: string;
325
+ textBorderColor: string;
326
+ textBorderWidth: number;
327
+ };
328
+ };
72
329
  };
73
330
  };
74
331
  export default _default;
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "url": "https://github.com/siemens/ix",
8
8
  "directory": "packages/echarts"
9
9
  },
10
- "version": "2.1.2-beta.0",
10
+ "version": "2.2.0",
11
11
  "description": "Siemens iX theme for echarts",
12
12
  "main": "dist/index.js",
13
13
  "module": "dist/index.esm.js",
@@ -15,16 +15,13 @@
15
15
  "files": [
16
16
  "dist"
17
17
  ],
18
- "scripts": {
19
- "build": "npm run clean && npm run compile",
20
- "clean": "rimraf dist",
21
- "compile": "rollup -c"
22
- },
23
18
  "author": "",
24
19
  "license": "MIT",
25
20
  "devDependencies": {
21
+ "@playwright/test": "^1.32.1",
26
22
  "@rollup/plugin-typescript": "^8.4.0",
27
23
  "echarts": "^5.4.1",
24
+ "http-server": "^14.1.1",
28
25
  "rimraf": "^3.0.2",
29
26
  "rollup": "^2.78.1",
30
27
  "rollup-plugin-dts": "^4.2.0",
@@ -36,5 +33,12 @@
36
33
  "dependencies": {},
37
34
  "peerDependencies": {
38
35
  "echarts": "^5.3.3"
36
+ },
37
+ "scripts": {
38
+ "build": "npm run clean && npm run compile",
39
+ "clean": "rimraf dist",
40
+ "compile": "rollup -c",
41
+ "visual-regression": "playwright test",
42
+ "host-root": "http-server -a 127.0.0.1"
39
43
  }
40
- }
44
+ }