@visactor/vrender-components 1.1.3-alpha.2 → 1.1.3-alpha.3
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/cjs/index.d.ts +32 -1
- package/cjs/index.js +312 -16
- package/cjs/index.js.map +1 -1
- package/cjs/indicator/config.js +1 -1
- package/cjs/indicator/index.js +1 -1
- package/cjs/indicator/indicator.js +1 -1
- package/cjs/indicator/register.js +1 -1
- package/cjs/indicator/type.js +1 -1
- package/cjs/jsx/index.js +1 -1
- package/cjs/label/arc.js +1 -1
- package/cjs/label/base.js +1 -1
- package/cjs/label/data-label-register.js +1 -1
- package/cjs/label/dataLabel.js +1 -1
- package/dist/index.es.js +1 -1
- package/es/index.d.ts +32 -1
- package/es/index.js +63 -1
- package/es/index.js.map +1 -1
- package/es/indicator/config.js +1 -1
- package/es/indicator/index.js +1 -1
- package/es/indicator/indicator.js +1 -1
- package/es/indicator/register.js +1 -1
- package/es/indicator/type.js +1 -1
- package/es/jsx/index.js +1 -1
- package/es/label/arc.js +1 -1
- package/es/label/base.js +1 -1
- package/es/label/data-label-register.js +1 -1
- package/es/label/dataLabel.js +1 -1
- package/package.json +4 -4
package/cjs/index.d.ts
CHANGED
|
@@ -1,24 +1,54 @@
|
|
|
1
|
-
export declare const version = "1.1.3-alpha.
|
|
1
|
+
export declare const version = "1.1.3-alpha.3";
|
|
2
2
|
export * from './core/base';
|
|
3
3
|
export * from './core/type';
|
|
4
4
|
export * from './scrollbar';
|
|
5
|
+
export { ScrollBar } from './scrollbar/scrollbar';
|
|
6
|
+
export { loadScrollbar } from './scrollbar/module';
|
|
5
7
|
export * from './tag';
|
|
6
8
|
export * from './poptip';
|
|
9
|
+
export { loadPoptip } from './poptip/module';
|
|
7
10
|
export * from './crosshair';
|
|
11
|
+
export { LineCrosshair } from './crosshair/line';
|
|
12
|
+
export { CircleCrosshair } from './crosshair/circle';
|
|
13
|
+
export { SectorCrosshair } from './crosshair/sector';
|
|
14
|
+
export { PolygonCrosshair } from './crosshair/polygon';
|
|
8
15
|
export * from './label';
|
|
16
|
+
export { DataLabel } from './label/dataLabel';
|
|
17
|
+
export { registerSymbolDataLabel } from './label/symbol';
|
|
9
18
|
export * from './axis';
|
|
19
|
+
export { LineAxis } from './axis/line';
|
|
20
|
+
export { CircleAxis } from './axis/circle';
|
|
21
|
+
export { continuousTicks } from './axis/tick-data/continuous';
|
|
22
|
+
export { polarAngleAxisDiscreteTicks } from './axis/tick-data/discrete/polar-angle';
|
|
10
23
|
export * from './axis/grid';
|
|
24
|
+
export { LineAxisGrid } from './axis/grid/line';
|
|
25
|
+
export { CircleAxisGrid } from './axis/grid/circle';
|
|
11
26
|
export * from './segment';
|
|
12
27
|
export * from './data-zoom';
|
|
28
|
+
export { DataZoom } from './data-zoom/data-zoom';
|
|
13
29
|
export * from './marker';
|
|
30
|
+
export { MarkLine, registerMarkLineAnimate } from './marker/line';
|
|
31
|
+
export { MarkArea, registerMarkAreaAnimate } from './marker/area';
|
|
32
|
+
export { MarkArcLine, registerMarkArcLineAnimate } from './marker/arc-line';
|
|
33
|
+
export { MarkArcArea, registerMarkArcAreaAnimate } from './marker/arc-area';
|
|
34
|
+
export { MarkPoint, registerMarkPointAnimate } from './marker/point';
|
|
14
35
|
export * from './pager';
|
|
15
36
|
export * from './legend';
|
|
37
|
+
export { ColorContinuousLegend } from './legend/color/color';
|
|
38
|
+
export { SizeContinuousLegend } from './legend/size/size';
|
|
16
39
|
export * from './title';
|
|
40
|
+
export { Title } from './title/title';
|
|
17
41
|
export * from './indicator';
|
|
42
|
+
export { Indicator } from './indicator/indicator';
|
|
18
43
|
export * from './slider';
|
|
19
44
|
export * from './link-path';
|
|
20
45
|
export * from './player';
|
|
46
|
+
export { DiscretePlayer } from './player/discrete-player';
|
|
47
|
+
export { ContinuousPlayer } from './player/continuous-player';
|
|
48
|
+
export { PlayerEventEnum } from './player/type/event';
|
|
21
49
|
export * from './brush';
|
|
50
|
+
export { Brush } from './brush/brush';
|
|
51
|
+
export { IOperateType } from './brush/type';
|
|
22
52
|
export * from './tooltip';
|
|
23
53
|
export * from './timeline';
|
|
24
54
|
export * from './interface';
|
|
@@ -28,6 +58,7 @@ export * from './radio';
|
|
|
28
58
|
export * from './empty-tip';
|
|
29
59
|
export * from './weather';
|
|
30
60
|
export * from './util';
|
|
61
|
+
export { labelSmartInvert } from './util/label-smartInvert';
|
|
31
62
|
export * from './switch';
|
|
32
63
|
export * from './label-item';
|
|
33
64
|
export * from './table-series-number';
|
package/cjs/index.js
CHANGED
|
@@ -17,21 +17,317 @@ var __createBinding = this && this.__createBinding || (Object.create ? function(
|
|
|
17
17
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", {
|
|
19
19
|
value: !0
|
|
20
|
-
}), exports.
|
|
21
|
-
|
|
22
|
-
__exportStar(require("./
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
20
|
+
}), exports.labelSmartInvert = exports.IOperateType = exports.Brush = exports.PlayerEventEnum = exports.ContinuousPlayer = exports.DiscretePlayer = exports.Indicator = exports.Title = exports.SizeContinuousLegend = exports.ColorContinuousLegend = exports.registerMarkPointAnimate = exports.MarkPoint = exports.registerMarkArcAreaAnimate = exports.MarkArcArea = exports.registerMarkArcLineAnimate = exports.MarkArcLine = exports.registerMarkAreaAnimate = exports.MarkArea = exports.registerMarkLineAnimate = exports.MarkLine = exports.DataZoom = exports.CircleAxisGrid = exports.LineAxisGrid = exports.polarAngleAxisDiscreteTicks = exports.continuousTicks = exports.CircleAxis = exports.LineAxis = exports.registerSymbolDataLabel = exports.DataLabel = exports.PolygonCrosshair = exports.SectorCrosshair = exports.CircleCrosshair = exports.LineCrosshair = exports.loadPoptip = exports.loadScrollbar = exports.ScrollBar = exports.version = void 0,
|
|
21
|
+
exports.version = "1.1.3-alpha.3", __exportStar(require("./core/base"), exports),
|
|
22
|
+
__exportStar(require("./core/type"), exports), __exportStar(require("./scrollbar"), exports);
|
|
23
|
+
|
|
24
|
+
var scrollbar_1 = require("./scrollbar/scrollbar");
|
|
25
|
+
|
|
26
|
+
Object.defineProperty(exports, "ScrollBar", {
|
|
27
|
+
enumerable: !0,
|
|
28
|
+
get: function() {
|
|
29
|
+
return scrollbar_1.ScrollBar;
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
var module_1 = require("./scrollbar/module");
|
|
34
|
+
|
|
35
|
+
Object.defineProperty(exports, "loadScrollbar", {
|
|
36
|
+
enumerable: !0,
|
|
37
|
+
get: function() {
|
|
38
|
+
return module_1.loadScrollbar;
|
|
39
|
+
}
|
|
40
|
+
}), __exportStar(require("./tag"), exports), __exportStar(require("./poptip"), exports);
|
|
41
|
+
|
|
42
|
+
var module_2 = require("./poptip/module");
|
|
43
|
+
|
|
44
|
+
Object.defineProperty(exports, "loadPoptip", {
|
|
45
|
+
enumerable: !0,
|
|
46
|
+
get: function() {
|
|
47
|
+
return module_2.loadPoptip;
|
|
48
|
+
}
|
|
49
|
+
}), __exportStar(require("./crosshair"), exports);
|
|
50
|
+
|
|
51
|
+
var line_1 = require("./crosshair/line");
|
|
52
|
+
|
|
53
|
+
Object.defineProperty(exports, "LineCrosshair", {
|
|
54
|
+
enumerable: !0,
|
|
55
|
+
get: function() {
|
|
56
|
+
return line_1.LineCrosshair;
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
var circle_1 = require("./crosshair/circle");
|
|
61
|
+
|
|
62
|
+
Object.defineProperty(exports, "CircleCrosshair", {
|
|
63
|
+
enumerable: !0,
|
|
64
|
+
get: function() {
|
|
65
|
+
return circle_1.CircleCrosshair;
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
var sector_1 = require("./crosshair/sector");
|
|
70
|
+
|
|
71
|
+
Object.defineProperty(exports, "SectorCrosshair", {
|
|
72
|
+
enumerable: !0,
|
|
73
|
+
get: function() {
|
|
74
|
+
return sector_1.SectorCrosshair;
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
var polygon_1 = require("./crosshair/polygon");
|
|
79
|
+
|
|
80
|
+
Object.defineProperty(exports, "PolygonCrosshair", {
|
|
81
|
+
enumerable: !0,
|
|
82
|
+
get: function() {
|
|
83
|
+
return polygon_1.PolygonCrosshair;
|
|
84
|
+
}
|
|
85
|
+
}), __exportStar(require("./label"), exports);
|
|
86
|
+
|
|
87
|
+
var dataLabel_1 = require("./label/dataLabel");
|
|
88
|
+
|
|
89
|
+
Object.defineProperty(exports, "DataLabel", {
|
|
90
|
+
enumerable: !0,
|
|
91
|
+
get: function() {
|
|
92
|
+
return dataLabel_1.DataLabel;
|
|
93
|
+
}
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
var symbol_1 = require("./label/symbol");
|
|
97
|
+
|
|
98
|
+
Object.defineProperty(exports, "registerSymbolDataLabel", {
|
|
99
|
+
enumerable: !0,
|
|
100
|
+
get: function() {
|
|
101
|
+
return symbol_1.registerSymbolDataLabel;
|
|
102
|
+
}
|
|
103
|
+
}), __exportStar(require("./axis"), exports);
|
|
104
|
+
|
|
105
|
+
var line_2 = require("./axis/line");
|
|
106
|
+
|
|
107
|
+
Object.defineProperty(exports, "LineAxis", {
|
|
108
|
+
enumerable: !0,
|
|
109
|
+
get: function() {
|
|
110
|
+
return line_2.LineAxis;
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
var circle_2 = require("./axis/circle");
|
|
115
|
+
|
|
116
|
+
Object.defineProperty(exports, "CircleAxis", {
|
|
117
|
+
enumerable: !0,
|
|
118
|
+
get: function() {
|
|
119
|
+
return circle_2.CircleAxis;
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
var continuous_1 = require("./axis/tick-data/continuous");
|
|
124
|
+
|
|
125
|
+
Object.defineProperty(exports, "continuousTicks", {
|
|
126
|
+
enumerable: !0,
|
|
127
|
+
get: function() {
|
|
128
|
+
return continuous_1.continuousTicks;
|
|
129
|
+
}
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
var polar_angle_1 = require("./axis/tick-data/discrete/polar-angle");
|
|
133
|
+
|
|
134
|
+
Object.defineProperty(exports, "polarAngleAxisDiscreteTicks", {
|
|
135
|
+
enumerable: !0,
|
|
136
|
+
get: function() {
|
|
137
|
+
return polar_angle_1.polarAngleAxisDiscreteTicks;
|
|
138
|
+
}
|
|
139
|
+
}), __exportStar(require("./axis/grid"), exports);
|
|
140
|
+
|
|
141
|
+
var line_3 = require("./axis/grid/line");
|
|
142
|
+
|
|
143
|
+
Object.defineProperty(exports, "LineAxisGrid", {
|
|
144
|
+
enumerable: !0,
|
|
145
|
+
get: function() {
|
|
146
|
+
return line_3.LineAxisGrid;
|
|
147
|
+
}
|
|
148
|
+
});
|
|
149
|
+
|
|
150
|
+
var circle_3 = require("./axis/grid/circle");
|
|
151
|
+
|
|
152
|
+
Object.defineProperty(exports, "CircleAxisGrid", {
|
|
153
|
+
enumerable: !0,
|
|
154
|
+
get: function() {
|
|
155
|
+
return circle_3.CircleAxisGrid;
|
|
156
|
+
}
|
|
157
|
+
}), __exportStar(require("./segment"), exports), __exportStar(require("./data-zoom"), exports);
|
|
158
|
+
|
|
159
|
+
var data_zoom_1 = require("./data-zoom/data-zoom");
|
|
160
|
+
|
|
161
|
+
Object.defineProperty(exports, "DataZoom", {
|
|
162
|
+
enumerable: !0,
|
|
163
|
+
get: function() {
|
|
164
|
+
return data_zoom_1.DataZoom;
|
|
165
|
+
}
|
|
166
|
+
}), __exportStar(require("./marker"), exports);
|
|
167
|
+
|
|
168
|
+
var line_4 = require("./marker/line");
|
|
169
|
+
|
|
170
|
+
Object.defineProperty(exports, "MarkLine", {
|
|
171
|
+
enumerable: !0,
|
|
172
|
+
get: function() {
|
|
173
|
+
return line_4.MarkLine;
|
|
174
|
+
}
|
|
175
|
+
}), Object.defineProperty(exports, "registerMarkLineAnimate", {
|
|
176
|
+
enumerable: !0,
|
|
177
|
+
get: function() {
|
|
178
|
+
return line_4.registerMarkLineAnimate;
|
|
179
|
+
}
|
|
180
|
+
});
|
|
181
|
+
|
|
182
|
+
var area_1 = require("./marker/area");
|
|
183
|
+
|
|
184
|
+
Object.defineProperty(exports, "MarkArea", {
|
|
185
|
+
enumerable: !0,
|
|
186
|
+
get: function() {
|
|
187
|
+
return area_1.MarkArea;
|
|
188
|
+
}
|
|
189
|
+
}), Object.defineProperty(exports, "registerMarkAreaAnimate", {
|
|
190
|
+
enumerable: !0,
|
|
191
|
+
get: function() {
|
|
192
|
+
return area_1.registerMarkAreaAnimate;
|
|
193
|
+
}
|
|
194
|
+
});
|
|
195
|
+
|
|
196
|
+
var arc_line_1 = require("./marker/arc-line");
|
|
197
|
+
|
|
198
|
+
Object.defineProperty(exports, "MarkArcLine", {
|
|
199
|
+
enumerable: !0,
|
|
200
|
+
get: function() {
|
|
201
|
+
return arc_line_1.MarkArcLine;
|
|
202
|
+
}
|
|
203
|
+
}), Object.defineProperty(exports, "registerMarkArcLineAnimate", {
|
|
204
|
+
enumerable: !0,
|
|
205
|
+
get: function() {
|
|
206
|
+
return arc_line_1.registerMarkArcLineAnimate;
|
|
207
|
+
}
|
|
208
|
+
});
|
|
209
|
+
|
|
210
|
+
var arc_area_1 = require("./marker/arc-area");
|
|
211
|
+
|
|
212
|
+
Object.defineProperty(exports, "MarkArcArea", {
|
|
213
|
+
enumerable: !0,
|
|
214
|
+
get: function() {
|
|
215
|
+
return arc_area_1.MarkArcArea;
|
|
216
|
+
}
|
|
217
|
+
}), Object.defineProperty(exports, "registerMarkArcAreaAnimate", {
|
|
218
|
+
enumerable: !0,
|
|
219
|
+
get: function() {
|
|
220
|
+
return arc_area_1.registerMarkArcAreaAnimate;
|
|
221
|
+
}
|
|
222
|
+
});
|
|
223
|
+
|
|
224
|
+
var point_1 = require("./marker/point");
|
|
225
|
+
|
|
226
|
+
Object.defineProperty(exports, "MarkPoint", {
|
|
227
|
+
enumerable: !0,
|
|
228
|
+
get: function() {
|
|
229
|
+
return point_1.MarkPoint;
|
|
230
|
+
}
|
|
231
|
+
}), Object.defineProperty(exports, "registerMarkPointAnimate", {
|
|
232
|
+
enumerable: !0,
|
|
233
|
+
get: function() {
|
|
234
|
+
return point_1.registerMarkPointAnimate;
|
|
235
|
+
}
|
|
236
|
+
}), __exportStar(require("./pager"), exports), __exportStar(require("./legend"), exports);
|
|
237
|
+
|
|
238
|
+
var color_1 = require("./legend/color/color");
|
|
239
|
+
|
|
240
|
+
Object.defineProperty(exports, "ColorContinuousLegend", {
|
|
241
|
+
enumerable: !0,
|
|
242
|
+
get: function() {
|
|
243
|
+
return color_1.ColorContinuousLegend;
|
|
244
|
+
}
|
|
245
|
+
});
|
|
246
|
+
|
|
247
|
+
var size_1 = require("./legend/size/size");
|
|
248
|
+
|
|
249
|
+
Object.defineProperty(exports, "SizeContinuousLegend", {
|
|
250
|
+
enumerable: !0,
|
|
251
|
+
get: function() {
|
|
252
|
+
return size_1.SizeContinuousLegend;
|
|
253
|
+
}
|
|
254
|
+
}), __exportStar(require("./title"), exports);
|
|
255
|
+
|
|
256
|
+
var title_1 = require("./title/title");
|
|
257
|
+
|
|
258
|
+
Object.defineProperty(exports, "Title", {
|
|
259
|
+
enumerable: !0,
|
|
260
|
+
get: function() {
|
|
261
|
+
return title_1.Title;
|
|
262
|
+
}
|
|
263
|
+
}), __exportStar(require("./indicator"), exports);
|
|
264
|
+
|
|
265
|
+
var indicator_1 = require("./indicator/indicator");
|
|
266
|
+
|
|
267
|
+
Object.defineProperty(exports, "Indicator", {
|
|
268
|
+
enumerable: !0,
|
|
269
|
+
get: function() {
|
|
270
|
+
return indicator_1.Indicator;
|
|
271
|
+
}
|
|
272
|
+
}), __exportStar(require("./slider"), exports), __exportStar(require("./link-path"), exports),
|
|
273
|
+
__exportStar(require("./player"), exports);
|
|
274
|
+
|
|
275
|
+
var discrete_player_1 = require("./player/discrete-player");
|
|
276
|
+
|
|
277
|
+
Object.defineProperty(exports, "DiscretePlayer", {
|
|
278
|
+
enumerable: !0,
|
|
279
|
+
get: function() {
|
|
280
|
+
return discrete_player_1.DiscretePlayer;
|
|
281
|
+
}
|
|
282
|
+
});
|
|
283
|
+
|
|
284
|
+
var continuous_player_1 = require("./player/continuous-player");
|
|
285
|
+
|
|
286
|
+
Object.defineProperty(exports, "ContinuousPlayer", {
|
|
287
|
+
enumerable: !0,
|
|
288
|
+
get: function() {
|
|
289
|
+
return continuous_player_1.ContinuousPlayer;
|
|
290
|
+
}
|
|
291
|
+
});
|
|
292
|
+
|
|
293
|
+
var event_1 = require("./player/type/event");
|
|
294
|
+
|
|
295
|
+
Object.defineProperty(exports, "PlayerEventEnum", {
|
|
296
|
+
enumerable: !0,
|
|
297
|
+
get: function() {
|
|
298
|
+
return event_1.PlayerEventEnum;
|
|
299
|
+
}
|
|
300
|
+
}), __exportStar(require("./brush"), exports);
|
|
301
|
+
|
|
302
|
+
var brush_1 = require("./brush/brush");
|
|
303
|
+
|
|
304
|
+
Object.defineProperty(exports, "Brush", {
|
|
305
|
+
enumerable: !0,
|
|
306
|
+
get: function() {
|
|
307
|
+
return brush_1.Brush;
|
|
308
|
+
}
|
|
309
|
+
});
|
|
310
|
+
|
|
311
|
+
var type_1 = require("./brush/type");
|
|
312
|
+
|
|
313
|
+
Object.defineProperty(exports, "IOperateType", {
|
|
314
|
+
enumerable: !0,
|
|
315
|
+
get: function() {
|
|
316
|
+
return type_1.IOperateType;
|
|
317
|
+
}
|
|
318
|
+
}), __exportStar(require("./tooltip"), exports), __exportStar(require("./timeline"), exports),
|
|
319
|
+
__exportStar(require("./interface"), exports), __exportStar(require("./jsx"), exports),
|
|
320
|
+
__exportStar(require("./checkbox"), exports), __exportStar(require("./radio"), exports),
|
|
321
|
+
__exportStar(require("./empty-tip"), exports), __exportStar(require("./weather"), exports),
|
|
322
|
+
__exportStar(require("./util"), exports);
|
|
323
|
+
|
|
324
|
+
var label_smartInvert_1 = require("./util/label-smartInvert");
|
|
325
|
+
|
|
326
|
+
Object.defineProperty(exports, "labelSmartInvert", {
|
|
327
|
+
enumerable: !0,
|
|
328
|
+
get: function() {
|
|
329
|
+
return label_smartInvert_1.labelSmartInvert;
|
|
330
|
+
}
|
|
331
|
+
}), __exportStar(require("./switch"), exports), __exportStar(require("./label-item"), exports),
|
|
36
332
|
__exportStar(require("./table-series-number"), exports);
|
|
37
333
|
//# sourceMappingURL=index.js.map
|
package/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AACa,QAAA,OAAO,GAAG,eAAe,CAAC;AAEvC,8CAA4B;AAC5B,8CAA4B;AAC5B,8CAA4B;AAC5B,wCAAsB;AACtB,2CAAyB;AACzB,8CAA4B;AAC5B,0CAAwB;AACxB,yCAAuB;AACvB,8CAA4B;AAC5B,4CAA0B;AAC1B,8CAA4B;AAC5B,2CAAyB;AACzB,0CAAwB;AACxB,2CAAyB;AACzB,0CAAwB;AACxB,8CAA4B;AAC5B,2CAAyB;AACzB,8CAA4B;AAC5B,2CAAyB;AACzB,0CAAwB;AACxB,4CAA0B;AAC1B,6CAA2B;AAC3B,8CAA4B;AAC5B,wCAAsB;AACtB,6CAA2B;AAC3B,0CAAwB;AACxB,8CAA4B;AAC5B,4CAA0B;AAC1B,yCAAuB;AACvB,2CAAyB;AACzB,+CAA6B;AAC7B,wDAAsC","file":"index.js","sourcesContent":["// 导出版本号\nexport const version = \"1.1.3-alpha.
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AACa,QAAA,OAAO,GAAG,eAAe,CAAC;AAEvC,8CAA4B;AAC5B,8CAA4B;AAC5B,8CAA4B;AAC5B,mDAAkD;AAAzC,sGAAA,SAAS,OAAA;AAClB,6CAAmD;AAA1C,uGAAA,aAAa,OAAA;AACtB,wCAAsB;AACtB,2CAAyB;AACzB,0CAA6C;AAApC,oGAAA,UAAU,OAAA;AACnB,8CAA4B;AAC5B,yCAAiD;AAAxC,qGAAA,aAAa,OAAA;AACtB,6CAAqD;AAA5C,yGAAA,eAAe,OAAA;AACxB,6CAAqD;AAA5C,yGAAA,eAAe,OAAA;AACxB,+CAAuD;AAA9C,2GAAA,gBAAgB,OAAA;AACzB,0CAAwB;AACxB,+CAA8C;AAArC,sGAAA,SAAS,OAAA;AAClB,yCAAyD;AAAhD,iHAAA,uBAAuB,OAAA;AAChC,yCAAuB;AACvB,oCAAuC;AAA9B,gGAAA,QAAQ,OAAA;AACjB,wCAA2C;AAAlC,oGAAA,UAAU,OAAA;AACnB,0DAA8D;AAArD,6GAAA,eAAe,OAAA;AACxB,qEAAoF;AAA3E,0HAAA,2BAA2B,OAAA;AACpC,8CAA4B;AAC5B,yCAAgD;AAAvC,oGAAA,YAAY,OAAA;AACrB,6CAAoD;AAA3C,wGAAA,cAAc,OAAA;AACvB,4CAA0B;AAC1B,8CAA4B;AAC5B,mDAAiD;AAAxC,qGAAA,QAAQ,OAAA;AACjB,2CAAyB;AACzB,sCAAkE;AAAzD,gGAAA,QAAQ,OAAA;AAAE,+GAAA,uBAAuB,OAAA;AAC1C,sCAAkE;AAAzD,gGAAA,QAAQ,OAAA;AAAE,+GAAA,uBAAuB,OAAA;AAC1C,8CAA4E;AAAnE,uGAAA,WAAW,OAAA;AAAE,sHAAA,0BAA0B,OAAA;AAChD,8CAA4E;AAAnE,uGAAA,WAAW,OAAA;AAAE,sHAAA,0BAA0B,OAAA;AAChD,wCAAqE;AAA5D,kGAAA,SAAS,OAAA;AAAE,iHAAA,wBAAwB,OAAA;AAC5C,0CAAwB;AACxB,2CAAyB;AACzB,8CAA6D;AAApD,8GAAA,qBAAqB,OAAA;AAC9B,2CAA0D;AAAjD,4GAAA,oBAAoB,OAAA;AAC7B,0CAAwB;AACxB,uCAAsC;AAA7B,8FAAA,KAAK,OAAA;AACd,8CAA4B;AAC5B,mDAAkD;AAAzC,sGAAA,SAAS,OAAA;AAClB,2CAAyB;AACzB,8CAA4B;AAC5B,2CAAyB;AACzB,4DAA0D;AAAjD,iHAAA,cAAc,OAAA;AACvB,gEAA8D;AAArD,qHAAA,gBAAgB,OAAA;AACzB,6CAAsD;AAA7C,wGAAA,eAAe,OAAA;AACxB,0CAAwB;AACxB,uCAAsC;AAA7B,8FAAA,KAAK,OAAA;AACd,qCAA4C;AAAnC,oGAAA,YAAY,OAAA;AACrB,4CAA0B;AAC1B,6CAA2B;AAC3B,8CAA4B;AAC5B,wCAAsB;AACtB,6CAA2B;AAC3B,0CAAwB;AACxB,8CAA4B;AAC5B,4CAA0B;AAC1B,yCAAuB;AACvB,8DAA4D;AAAnD,qHAAA,gBAAgB,OAAA;AACzB,2CAAyB;AACzB,+CAA6B;AAC7B,wDAAsC","file":"index.js","sourcesContent":["// 导出版本号\nexport const version = \"1.1.3-alpha.3\";\n\nexport * from './core/base';\nexport * from './core/type';\nexport * from './scrollbar';\nexport { ScrollBar } from './scrollbar/scrollbar';\nexport { loadScrollbar } from './scrollbar/module';\nexport * from './tag';\nexport * from './poptip';\nexport { loadPoptip } from './poptip/module';\nexport * from './crosshair';\nexport { LineCrosshair } from './crosshair/line';\nexport { CircleCrosshair } from './crosshair/circle';\nexport { SectorCrosshair } from './crosshair/sector';\nexport { PolygonCrosshair } from './crosshair/polygon';\nexport * from './label';\nexport { DataLabel } from './label/dataLabel';\nexport { registerSymbolDataLabel } from './label/symbol';\nexport * from './axis';\nexport { LineAxis } from './axis/line';\nexport { CircleAxis } from './axis/circle';\nexport { continuousTicks } from './axis/tick-data/continuous';\nexport { polarAngleAxisDiscreteTicks } from './axis/tick-data/discrete/polar-angle';\nexport * from './axis/grid';\nexport { LineAxisGrid } from './axis/grid/line';\nexport { CircleAxisGrid } from './axis/grid/circle';\nexport * from './segment';\nexport * from './data-zoom';\nexport { DataZoom } from './data-zoom/data-zoom';\nexport * from './marker';\nexport { MarkLine, registerMarkLineAnimate } from './marker/line';\nexport { MarkArea, registerMarkAreaAnimate } from './marker/area';\nexport { MarkArcLine, registerMarkArcLineAnimate } from './marker/arc-line';\nexport { MarkArcArea, registerMarkArcAreaAnimate } from './marker/arc-area';\nexport { MarkPoint, registerMarkPointAnimate } from './marker/point';\nexport * from './pager';\nexport * from './legend';\nexport { ColorContinuousLegend } from './legend/color/color';\nexport { SizeContinuousLegend } from './legend/size/size';\nexport * from './title';\nexport { Title } from './title/title';\nexport * from './indicator';\nexport { Indicator } from './indicator/indicator';\nexport * from './slider';\nexport * from './link-path';\nexport * from './player';\nexport { DiscretePlayer } from './player/discrete-player';\nexport { ContinuousPlayer } from './player/continuous-player';\nexport { PlayerEventEnum } from './player/type/event';\nexport * from './brush';\nexport { Brush } from './brush/brush';\nexport { IOperateType } from './brush/type';\nexport * from './tooltip';\nexport * from './timeline';\nexport * from './interface';\nexport * from './jsx';\nexport * from './checkbox';\nexport * from './radio';\nexport * from './empty-tip';\nexport * from './weather';\nexport * from './util';\nexport { labelSmartInvert } from './util/label-smartInvert';\nexport * from './switch';\nexport * from './label-item';\nexport * from './table-series-number';\n"]}
|
package/cjs/indicator/config.js
CHANGED
package/cjs/indicator/index.js
CHANGED
|
@@ -18,4 +18,4 @@ var __createBinding = this && this.__createBinding || (Object.create ? function(
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", {
|
|
19
19
|
value: !0
|
|
20
20
|
}), __exportStar(require("./indicator"), exports), __exportStar(require("./type"), exports);
|
|
21
|
-
//# sourceMappingURL=index.js.map
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
package/cjs/indicator/type.js
CHANGED
package/cjs/jsx/index.js
CHANGED
|
@@ -18,4 +18,4 @@ var __createBinding = this && this.__createBinding || (Object.create ? function(
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", {
|
|
19
19
|
value: !0
|
|
20
20
|
}), __exportStar(require("./component-type"), exports);
|
|
21
|
-
//# sourceMappingURL=index.js.map
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
package/cjs/label/arc.js
CHANGED
package/cjs/label/base.js
CHANGED
|
@@ -13,4 +13,4 @@ exports.registerLabelComponent = registerLabelComponent;
|
|
|
13
13
|
const getLabelComponent = type => labelComponentMap[type];
|
|
14
14
|
|
|
15
15
|
exports.getLabelComponent = getLabelComponent;
|
|
16
|
-
//# sourceMappingURL=data-label-register.js.map
|
|
16
|
+
//# sourceMappingURL=data-label-register.js.map
|
package/cjs/label/dataLabel.js
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -36527,6 +36527,6 @@ TableSeriesNumber.defaultAttributes = {
|
|
|
36527
36527
|
select: true
|
|
36528
36528
|
};
|
|
36529
36529
|
|
|
36530
|
-
const version = "1.1.3-alpha.
|
|
36530
|
+
const version = "1.1.3-alpha.3";
|
|
36531
36531
|
|
|
36532
36532
|
export { AXIS_ELEMENT_NAME, AbstractComponent, ArcInfo, ArcLabel, ArcSegment, AxisStateValue, BasePlayer, Brush, CheckBox, CircleAxis, CircleAxisGrid, CircleCrosshair, ColorContinuousLegend, ContinuousPlayer, DEFAULT_ITEM_SPACE_COL, DEFAULT_ITEM_SPACE_ROW, DEFAULT_LABEL_SPACE, DEFAULT_PAGER_SPACE, DEFAULT_SHAPE_SIZE, DEFAULT_SHAPE_SPACE, DEFAULT_STATES$1 as DEFAULT_STATES, DEFAULT_TITLE_SPACE, DEFAULT_VALUE_SPACE, DataLabel, DataZoom, DataZoomActiveTag, DirectionEnum, DiscreteLegend, DiscretePlayer, EmptyTip, GroupTransition, IDataZoomEvent, IDataZoomInteractiveEvent, IMarkAreaLabelPosition, IMarkCommonArcLabelPosition, IMarkLineLabelPosition, IMarkPointItemPosition, IOperateType, Indicator, LEGEND_ELEMENT_NAME, LabelBase, LegendEvent, LegendStateValue, LineAxis, LineAxisGrid, LineCrosshair, LineLabel, LinkPath, MarkArcArea, MarkArcLine, MarkArea, MarkLine, MarkPoint, Pager, PlayerEventEnum, PolygonCrosshair, PolygonSectorCrosshair, PopTip, Radio, RectCrosshair, RectLabel, SLIDER_ELEMENT_NAME, ScrollBar, SectorCrosshair, Segment, SeriesNumberCellStateValue, SeriesNumberEvent, SizeContinuousLegend, Slider, StoryLabelItem, Switch, SymbolLabel, TableSeriesNumber, Tag, Timeline, Title, Tooltip, TopZIndex, VTag, WeatherBox, alignTextInLine, angle, angleLabelOrientAttribute, angleTo, cartesianTicks, clampRadian, computeOffsetForlimit, continuousTicks, contrastAccessibilityChecker, convertDomainToTickData, createTextGraphicByType, deltaXYToAngle, fuzzyEqualNumber, getAxisBreakSymbolAttrs, getCircleLabelPosition, getCirclePoints, getCircleVerticalVector, getElMap, getHorizontalPath, getMarksByName, getNoneGroupMarksByName, getPolarAngleLabelPosition, getPolygonPath, getSizeHandlerPath, getTextAlignAttrOfVerticalDir, getTextType, getVerticalCoord, getVerticalPath, hasOverlap, htmlAttributeTransform, initTextMeasure, installPoptipToApp, installScrollbarToApp, isInRange, isPostiveXAxis, isRichText, isVisible, labelSmartInvert, length, limitShapeInBounds, linearDiscreteTicks, loadPoptip, loadScrollbar, measureTextSize, normalize, polarAngleAxisDiscreteTicks, polarTicks, reactAttributeTransform, registerArcDataLabel, registerLineDataLabel, registerMarkArcAreaAnimate, registerMarkArcLineAnimate, registerMarkAreaAnimate, registerMarkLineAnimate, registerMarkPointAnimate, registerRectDataLabel, registerSymbolDataLabel, removeRepeatPoint, richTextAttributeTransform, scale, setPoptipTheme, smartInvertStrategy, tan2AngleToAngle, textIntersect, ticks, traverseGroup, version };
|
package/es/index.d.ts
CHANGED
|
@@ -1,24 +1,54 @@
|
|
|
1
|
-
export declare const version = "1.1.3-alpha.
|
|
1
|
+
export declare const version = "1.1.3-alpha.3";
|
|
2
2
|
export * from './core/base';
|
|
3
3
|
export * from './core/type';
|
|
4
4
|
export * from './scrollbar';
|
|
5
|
+
export { ScrollBar } from './scrollbar/scrollbar';
|
|
6
|
+
export { loadScrollbar } from './scrollbar/module';
|
|
5
7
|
export * from './tag';
|
|
6
8
|
export * from './poptip';
|
|
9
|
+
export { loadPoptip } from './poptip/module';
|
|
7
10
|
export * from './crosshair';
|
|
11
|
+
export { LineCrosshair } from './crosshair/line';
|
|
12
|
+
export { CircleCrosshair } from './crosshair/circle';
|
|
13
|
+
export { SectorCrosshair } from './crosshair/sector';
|
|
14
|
+
export { PolygonCrosshair } from './crosshair/polygon';
|
|
8
15
|
export * from './label';
|
|
16
|
+
export { DataLabel } from './label/dataLabel';
|
|
17
|
+
export { registerSymbolDataLabel } from './label/symbol';
|
|
9
18
|
export * from './axis';
|
|
19
|
+
export { LineAxis } from './axis/line';
|
|
20
|
+
export { CircleAxis } from './axis/circle';
|
|
21
|
+
export { continuousTicks } from './axis/tick-data/continuous';
|
|
22
|
+
export { polarAngleAxisDiscreteTicks } from './axis/tick-data/discrete/polar-angle';
|
|
10
23
|
export * from './axis/grid';
|
|
24
|
+
export { LineAxisGrid } from './axis/grid/line';
|
|
25
|
+
export { CircleAxisGrid } from './axis/grid/circle';
|
|
11
26
|
export * from './segment';
|
|
12
27
|
export * from './data-zoom';
|
|
28
|
+
export { DataZoom } from './data-zoom/data-zoom';
|
|
13
29
|
export * from './marker';
|
|
30
|
+
export { MarkLine, registerMarkLineAnimate } from './marker/line';
|
|
31
|
+
export { MarkArea, registerMarkAreaAnimate } from './marker/area';
|
|
32
|
+
export { MarkArcLine, registerMarkArcLineAnimate } from './marker/arc-line';
|
|
33
|
+
export { MarkArcArea, registerMarkArcAreaAnimate } from './marker/arc-area';
|
|
34
|
+
export { MarkPoint, registerMarkPointAnimate } from './marker/point';
|
|
14
35
|
export * from './pager';
|
|
15
36
|
export * from './legend';
|
|
37
|
+
export { ColorContinuousLegend } from './legend/color/color';
|
|
38
|
+
export { SizeContinuousLegend } from './legend/size/size';
|
|
16
39
|
export * from './title';
|
|
40
|
+
export { Title } from './title/title';
|
|
17
41
|
export * from './indicator';
|
|
42
|
+
export { Indicator } from './indicator/indicator';
|
|
18
43
|
export * from './slider';
|
|
19
44
|
export * from './link-path';
|
|
20
45
|
export * from './player';
|
|
46
|
+
export { DiscretePlayer } from './player/discrete-player';
|
|
47
|
+
export { ContinuousPlayer } from './player/continuous-player';
|
|
48
|
+
export { PlayerEventEnum } from './player/type/event';
|
|
21
49
|
export * from './brush';
|
|
50
|
+
export { Brush } from './brush/brush';
|
|
51
|
+
export { IOperateType } from './brush/type';
|
|
22
52
|
export * from './tooltip';
|
|
23
53
|
export * from './timeline';
|
|
24
54
|
export * from './interface';
|
|
@@ -28,6 +58,7 @@ export * from './radio';
|
|
|
28
58
|
export * from './empty-tip';
|
|
29
59
|
export * from './weather';
|
|
30
60
|
export * from './util';
|
|
61
|
+
export { labelSmartInvert } from './util/label-smartInvert';
|
|
31
62
|
export * from './switch';
|
|
32
63
|
export * from './label-item';
|
|
33
64
|
export * from './table-series-number';
|
package/es/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const version = "1.1.3-alpha.
|
|
1
|
+
export const version = "1.1.3-alpha.3";
|
|
2
2
|
|
|
3
3
|
export * from "./core/base";
|
|
4
4
|
|
|
@@ -6,40 +6,100 @@ export * from "./core/type";
|
|
|
6
6
|
|
|
7
7
|
export * from "./scrollbar";
|
|
8
8
|
|
|
9
|
+
export { ScrollBar } from "./scrollbar/scrollbar";
|
|
10
|
+
|
|
11
|
+
export { loadScrollbar } from "./scrollbar/module";
|
|
12
|
+
|
|
9
13
|
export * from "./tag";
|
|
10
14
|
|
|
11
15
|
export * from "./poptip";
|
|
12
16
|
|
|
17
|
+
export { loadPoptip } from "./poptip/module";
|
|
18
|
+
|
|
13
19
|
export * from "./crosshair";
|
|
14
20
|
|
|
21
|
+
export { LineCrosshair } from "./crosshair/line";
|
|
22
|
+
|
|
23
|
+
export { CircleCrosshair } from "./crosshair/circle";
|
|
24
|
+
|
|
25
|
+
export { SectorCrosshair } from "./crosshair/sector";
|
|
26
|
+
|
|
27
|
+
export { PolygonCrosshair } from "./crosshair/polygon";
|
|
28
|
+
|
|
15
29
|
export * from "./label";
|
|
16
30
|
|
|
31
|
+
export { DataLabel } from "./label/dataLabel";
|
|
32
|
+
|
|
33
|
+
export { registerSymbolDataLabel } from "./label/symbol";
|
|
34
|
+
|
|
17
35
|
export * from "./axis";
|
|
18
36
|
|
|
37
|
+
export { LineAxis } from "./axis/line";
|
|
38
|
+
|
|
39
|
+
export { CircleAxis } from "./axis/circle";
|
|
40
|
+
|
|
41
|
+
export { continuousTicks } from "./axis/tick-data/continuous";
|
|
42
|
+
|
|
43
|
+
export { polarAngleAxisDiscreteTicks } from "./axis/tick-data/discrete/polar-angle";
|
|
44
|
+
|
|
19
45
|
export * from "./axis/grid";
|
|
20
46
|
|
|
47
|
+
export { LineAxisGrid } from "./axis/grid/line";
|
|
48
|
+
|
|
49
|
+
export { CircleAxisGrid } from "./axis/grid/circle";
|
|
50
|
+
|
|
21
51
|
export * from "./segment";
|
|
22
52
|
|
|
23
53
|
export * from "./data-zoom";
|
|
24
54
|
|
|
55
|
+
export { DataZoom } from "./data-zoom/data-zoom";
|
|
56
|
+
|
|
25
57
|
export * from "./marker";
|
|
26
58
|
|
|
59
|
+
export { MarkLine, registerMarkLineAnimate } from "./marker/line";
|
|
60
|
+
|
|
61
|
+
export { MarkArea, registerMarkAreaAnimate } from "./marker/area";
|
|
62
|
+
|
|
63
|
+
export { MarkArcLine, registerMarkArcLineAnimate } from "./marker/arc-line";
|
|
64
|
+
|
|
65
|
+
export { MarkArcArea, registerMarkArcAreaAnimate } from "./marker/arc-area";
|
|
66
|
+
|
|
67
|
+
export { MarkPoint, registerMarkPointAnimate } from "./marker/point";
|
|
68
|
+
|
|
27
69
|
export * from "./pager";
|
|
28
70
|
|
|
29
71
|
export * from "./legend";
|
|
30
72
|
|
|
73
|
+
export { ColorContinuousLegend } from "./legend/color/color";
|
|
74
|
+
|
|
75
|
+
export { SizeContinuousLegend } from "./legend/size/size";
|
|
76
|
+
|
|
31
77
|
export * from "./title";
|
|
32
78
|
|
|
79
|
+
export { Title } from "./title/title";
|
|
80
|
+
|
|
33
81
|
export * from "./indicator";
|
|
34
82
|
|
|
83
|
+
export { Indicator } from "./indicator/indicator";
|
|
84
|
+
|
|
35
85
|
export * from "./slider";
|
|
36
86
|
|
|
37
87
|
export * from "./link-path";
|
|
38
88
|
|
|
39
89
|
export * from "./player";
|
|
40
90
|
|
|
91
|
+
export { DiscretePlayer } from "./player/discrete-player";
|
|
92
|
+
|
|
93
|
+
export { ContinuousPlayer } from "./player/continuous-player";
|
|
94
|
+
|
|
95
|
+
export { PlayerEventEnum } from "./player/type/event";
|
|
96
|
+
|
|
41
97
|
export * from "./brush";
|
|
42
98
|
|
|
99
|
+
export { Brush } from "./brush/brush";
|
|
100
|
+
|
|
101
|
+
export { IOperateType } from "./brush/type";
|
|
102
|
+
|
|
43
103
|
export * from "./tooltip";
|
|
44
104
|
|
|
45
105
|
export * from "./timeline";
|
|
@@ -58,6 +118,8 @@ export * from "./weather";
|
|
|
58
118
|
|
|
59
119
|
export * from "./util";
|
|
60
120
|
|
|
121
|
+
export { labelSmartInvert } from "./util/label-smartInvert";
|
|
122
|
+
|
|
61
123
|
export * from "./switch";
|
|
62
124
|
|
|
63
125
|
export * from "./label-item";
|
package/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AACA,MAAM,CAAC,MAAM,OAAO,GAAG,eAAe,CAAC;AAEvC,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,uBAAuB,CAAC","file":"index.js","sourcesContent":["// 导出版本号\nexport const version = \"1.1.3-alpha.
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["// 导出版本号\nexport const version = \"1.1.3-alpha.3\";\n\nexport * from './core/base';\nexport * from './core/type';\nexport * from './scrollbar';\nexport { ScrollBar } from './scrollbar/scrollbar';\nexport { loadScrollbar } from './scrollbar/module';\nexport * from './tag';\nexport * from './poptip';\nexport { loadPoptip } from './poptip/module';\nexport * from './crosshair';\nexport { LineCrosshair } from './crosshair/line';\nexport { CircleCrosshair } from './crosshair/circle';\nexport { SectorCrosshair } from './crosshair/sector';\nexport { PolygonCrosshair } from './crosshair/polygon';\nexport * from './label';\nexport { DataLabel } from './label/dataLabel';\nexport { registerSymbolDataLabel } from './label/symbol';\nexport * from './axis';\nexport { LineAxis } from './axis/line';\nexport { CircleAxis } from './axis/circle';\nexport { continuousTicks } from './axis/tick-data/continuous';\nexport { polarAngleAxisDiscreteTicks } from './axis/tick-data/discrete/polar-angle';\nexport * from './axis/grid';\nexport { LineAxisGrid } from './axis/grid/line';\nexport { CircleAxisGrid } from './axis/grid/circle';\nexport * from './segment';\nexport * from './data-zoom';\nexport { DataZoom } from './data-zoom/data-zoom';\nexport * from './marker';\nexport { MarkLine, registerMarkLineAnimate } from './marker/line';\nexport { MarkArea, registerMarkAreaAnimate } from './marker/area';\nexport { MarkArcLine, registerMarkArcLineAnimate } from './marker/arc-line';\nexport { MarkArcArea, registerMarkArcAreaAnimate } from './marker/arc-area';\nexport { MarkPoint, registerMarkPointAnimate } from './marker/point';\nexport * from './pager';\nexport * from './legend';\nexport { ColorContinuousLegend } from './legend/color/color';\nexport { SizeContinuousLegend } from './legend/size/size';\nexport * from './title';\nexport { Title } from './title/title';\nexport * from './indicator';\nexport { Indicator } from './indicator/indicator';\nexport * from './slider';\nexport * from './link-path';\nexport * from './player';\nexport { DiscretePlayer } from './player/discrete-player';\nexport { ContinuousPlayer } from './player/continuous-player';\nexport { PlayerEventEnum } from './player/type/event';\nexport * from './brush';\nexport { Brush } from './brush/brush';\nexport { IOperateType } from './brush/type';\nexport * from './tooltip';\nexport * from './timeline';\nexport * from './interface';\nexport * from './jsx';\nexport * from './checkbox';\nexport * from './radio';\nexport * from './empty-tip';\nexport * from './weather';\nexport * from './util';\nexport { labelSmartInvert } from './util/label-smartInvert';\nexport * from './switch';\nexport * from './label-item';\nexport * from './table-series-number';\n"]}
|
package/es/indicator/config.js
CHANGED
package/es/indicator/index.js
CHANGED
package/es/indicator/register.js
CHANGED
package/es/indicator/type.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { };
|
|
2
|
-
//# sourceMappingURL=type.js.map
|
|
2
|
+
//# sourceMappingURL=type.js.map
|
package/es/jsx/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "./component-type";
|
|
2
|
-
//# sourceMappingURL=index.js.map
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
package/es/label/arc.js
CHANGED
package/es/label/base.js
CHANGED
package/es/label/dataLabel.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vrender-components",
|
|
3
|
-
"version": "1.1.3-alpha.
|
|
3
|
+
"version": "1.1.3-alpha.3",
|
|
4
4
|
"description": "components library for dp visualization",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "cjs/index.js",
|
|
@@ -129,9 +129,9 @@
|
|
|
129
129
|
"dependencies": {
|
|
130
130
|
"@visactor/vutils": "~1.0.12",
|
|
131
131
|
"@visactor/vscale": "~1.0.12",
|
|
132
|
-
"@visactor/vrender-core": "1.1.3-alpha.
|
|
133
|
-
"@visactor/vrender-kits": "1.1.3-alpha.
|
|
134
|
-
"@visactor/vrender-animate": "1.1.3-alpha.
|
|
132
|
+
"@visactor/vrender-core": "1.1.3-alpha.3",
|
|
133
|
+
"@visactor/vrender-kits": "1.1.3-alpha.3",
|
|
134
|
+
"@visactor/vrender-animate": "1.1.3-alpha.3"
|
|
135
135
|
},
|
|
136
136
|
"devDependencies": {
|
|
137
137
|
"@rushstack/eslint-patch": "~1.1.4",
|