@visactor/vchart-types 1.7.1 → 1.7.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/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/types/animation/utils.d.ts +1 -0
- package/types/chart/bar/bar-3d.d.ts +2 -2
- package/types/chart/base-chart.d.ts +2 -5
- package/types/chart/cartesian/interface.d.ts +1 -1
- package/types/chart/interface/chart.d.ts +3 -3
- package/types/component/axis/base-axis.d.ts +2 -1
- package/types/component/axis/cartesian/axis.d.ts +1 -1
- package/types/component/axis/cartesian/util/common.d.ts +0 -2
- package/types/component/axis/interface/common.d.ts +1 -0
- package/types/component/axis/polar/interface/common.d.ts +2 -3
- package/types/component/base/base-component.d.ts +2 -7
- package/types/component/brush/brush.d.ts +1 -1
- package/types/component/crosshair/base.d.ts +4 -5
- package/types/component/crosshair/cartesian.d.ts +12 -35
- package/types/component/crosshair/config.d.ts +6 -0
- package/types/component/crosshair/interface/spec.d.ts +7 -3
- package/types/component/crosshair/polar.d.ts +13 -55
- package/types/component/custom-mark/custom-mark.d.ts +1 -1
- package/types/component/data-zoom/data-filter-base-component.d.ts +1 -1
- package/types/component/data-zoom/data-zoom/data-zoom.d.ts +1 -1
- package/types/component/data-zoom/scroll-bar/scroll-bar.d.ts +1 -1
- package/types/component/geo/geo-coordinate.d.ts +1 -1
- package/types/component/indicator/indicator.d.ts +1 -1
- package/types/component/label/base-label.d.ts +1 -1
- package/types/component/label/label.d.ts +1 -0
- package/types/component/label/totalLabel.d.ts +1 -0
- package/types/component/legend/base-legend.d.ts +1 -1
- package/types/component/legend/continuous/interface.d.ts +1 -0
- package/types/component/map-label/component.d.ts +1 -1
- package/types/component/marker/base-marker.d.ts +23 -25
- package/types/component/marker/interface.d.ts +19 -9
- package/types/component/marker/mark-area/interface/spec.d.ts +10 -12
- package/types/component/marker/mark-area/mark-area.d.ts +3 -2
- package/types/component/marker/mark-line/interface/spec.d.ts +20 -9
- package/types/component/marker/mark-line/mark-line.d.ts +4 -2
- package/types/component/marker/mark-point/interface/spec.d.ts +8 -6
- package/types/component/marker/mark-point/mark-point.d.ts +3 -2
- package/types/component/marker/utils.d.ts +13 -2
- package/types/component/player/player.d.ts +1 -1
- package/types/component/title/title.d.ts +1 -1
- package/types/component/tooltip/tooltip.d.ts +1 -1
- package/types/data/transforms/aggregation.d.ts +3 -3
- package/types/model/base-model.d.ts +1 -1
- package/types/model/interface.d.ts +2 -1
- package/types/series/gauge/gauge-pointer.d.ts +2 -1
- package/types/series/gauge/interface.d.ts +2 -0
- package/types/series/util/utils.d.ts +5 -0
- package/types/typings/visual.d.ts +3 -2
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vchart-types",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.3",
|
|
4
4
|
"description": "Provide the type declarations of VChart.",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "types/index.d.ts",
|
|
7
7
|
"dependencies": {},
|
|
8
8
|
"devDependencies": {
|
|
9
9
|
"@rushstack/eslint-patch": "~1.1.4",
|
|
10
|
-
"@internal/
|
|
11
|
-
"@internal/
|
|
10
|
+
"@internal/eslint-config": "0.0.1",
|
|
11
|
+
"@internal/ts-config": "0.0.1"
|
|
12
12
|
},
|
|
13
13
|
"homepage": "",
|
|
14
14
|
"bugs": "https://github.com/VisActor/VChart/issues",
|