@visactor/vchart-types 1.12.0-alpha.5 → 1.12.0-alpha.7
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 +1 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/types/animation/utils.d.ts +2 -2
- package/types/chart/area/area.d.ts +0 -1
- package/types/chart/bar/bar.d.ts +0 -1
- package/types/chart/base/base-chart.d.ts +0 -3
- package/types/chart/cartesian/cartesian-transformer.d.ts +4 -0
- package/types/chart/common/common.d.ts +0 -1
- package/types/chart/histogram/base/base.d.ts +0 -1
- package/types/chart/index.d.ts +5 -3
- package/types/chart/interface/type.d.ts +2 -1
- package/types/chart/line/line.d.ts +0 -1
- package/types/chart/mosaic/index.d.ts +3 -0
- package/types/chart/mosaic/interface.d.ts +7 -0
- package/types/chart/mosaic/mosaic-transformer.d.ts +9 -0
- package/types/chart/mosaic/mosaic.d.ts +22 -0
- package/types/chart/progress/circular/circular.d.ts +0 -1
- package/types/chart/progress/linear/linear.d.ts +0 -1
- package/types/chart/radar/radar.d.ts +0 -1
- package/types/chart/rose/rose.d.ts +0 -1
- package/types/chart/scatter/scatter.d.ts +0 -1
- package/types/chart/sequence/sequence-transformer.d.ts +3 -0
- package/types/chart/stack.d.ts +18 -1
- package/types/compile/compiler.d.ts +1 -1
- package/types/component/label/interface.d.ts +2 -1
- package/types/component/label/util.d.ts +9 -0
- package/types/component/marker/base-marker.d.ts +4 -3
- package/types/component/marker/interface.d.ts +3 -3
- package/types/component/marker/mark-area/cartesian-mark-area.d.ts +2 -2
- package/types/component/marker/mark-area/interface/spec.d.ts +3 -2
- package/types/component/marker/mark-area/polar-mark-area.d.ts +2 -2
- package/types/component/marker/mark-line/cartesian-mark-line.d.ts +2 -2
- package/types/component/marker/mark-line/interface/spec.d.ts +5 -5
- package/types/component/marker/mark-line/polar-mark-line.d.ts +2 -2
- package/types/component/marker/mark-point/cartesian-mark-point.d.ts +2 -2
- package/types/component/marker/mark-point/geo-mark-point.d.ts +2 -1
- package/types/component/marker/mark-point/interface/spec.d.ts +4 -3
- package/types/component/marker/mark-point/polar-mark-point.d.ts +2 -1
- package/types/component/marker/utils.d.ts +2 -3
- package/types/component/tooltip/interface/spec.d.ts +1 -1
- package/types/component/tooltip/interface/theme.d.ts +1 -0
- package/types/constant/index.d.ts +5 -0
- package/types/core/index.d.ts +0 -1
- package/types/data/transforms/aggregation.d.ts +8 -3
- package/types/index-wx.d.ts +1 -0
- package/types/index.d.ts +3 -1
- package/types/layout/layout-item.d.ts +1 -1
- package/types/model/base-model.d.ts +0 -1
- package/types/model/interface.d.ts +0 -1
- package/types/series/base/base-series.d.ts +0 -1
- package/types/series/interface/common.d.ts +2 -0
- package/types/series/interface/series.d.ts +3 -1
- package/types/series/interface/theme.d.ts +3 -3
- package/types/series/interface/type.d.ts +2 -1
- package/types/series/mosaic/interface.d.ts +16 -0
- package/types/series/mosaic/mosaic.d.ts +16 -0
- package/types/series/pie/animation/animation.d.ts +1 -0
- package/types/series/pie/interface.d.ts +5 -0
- package/types/series/pie/pie.d.ts +2 -0
- package/types/series/progress/linear/linear.d.ts +1 -3
- package/types/series/sankey/interface.d.ts +5 -4
- package/types/series/sankey/sankey-transformer.d.ts +5 -0
- package/types/series/sankey/sankey.d.ts +7 -2
- package/types/theme/builtin/common/series/funnel.d.ts +2 -1
- package/types/theme/builtin/common/series/mosaic.d.ts +2 -0
- package/types/theme/builtin/common/series/word-cloud.d.ts +2 -1
- package/types/util/data.d.ts +24 -1