web-core-tcm 0.0.59 → 0.0.62
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/dist/_virtual/_plugin-vue_export-helper.js +9 -0
- package/dist/node_modules/@alova/shared/dist/alova-shared.esm.js +92 -229
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/file.js +10 -9
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/create.js +1 -1
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/from-binary.js +56 -60
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.js +3 -12
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js +10 -14
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.js +12 -32
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/nested-types.js +6 -42
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.js +50 -58
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js +4 -26
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js +1 -1
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/registry.js +99 -130
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/base64-encoding.js +27 -48
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.js +6 -10
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/descriptor_pb.js +63 -137
- package/dist/node_modules/@vueuse/core/index.js +254 -0
- package/dist/node_modules/@vueuse/shared/index.js +37 -0
- package/dist/node_modules/alova/dist/adapter/fetch.esm.js +34 -30
- package/dist/node_modules/alova/dist/alova.esm.js +220 -266
- package/dist/node_modules/alova/dist/clienthook/index.esm.js +70 -2110
- package/dist/node_modules/builder-pattern/dist/index.js +13 -25
- package/dist/node_modules/echarts/index.js +87 -0
- package/dist/node_modules/echarts/lib/action/roamHelper.js +22 -0
- package/dist/node_modules/echarts/lib/animation/basicTransition.js +96 -0
- package/dist/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js +55 -0
- package/dist/node_modules/echarts/lib/animation/customGraphicTransition.js +223 -0
- package/dist/node_modules/echarts/lib/animation/morphTransitionHelper.js +106 -0
- package/dist/node_modules/echarts/lib/animation/universalTransition.js +336 -0
- package/dist/node_modules/echarts/lib/chart/bar/BarSeries.js +54 -0
- package/dist/node_modules/echarts/lib/chart/bar/BarView.js +476 -0
- package/dist/node_modules/echarts/lib/chart/bar/BaseBarSeries.js +76 -0
- package/dist/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js +48 -0
- package/dist/node_modules/echarts/lib/chart/bar/PictorialBarView.js +325 -0
- package/dist/node_modules/echarts/lib/chart/bar/install.js +23 -0
- package/dist/node_modules/echarts/lib/chart/bar/installPictorialBar.js +10 -0
- package/dist/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js +56 -0
- package/dist/node_modules/echarts/lib/chart/boxplot/BoxplotView.js +95 -0
- package/dist/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js +72 -0
- package/dist/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js +23 -0
- package/dist/node_modules/echarts/lib/chart/boxplot/install.js +10 -0
- package/dist/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js +25 -0
- package/dist/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js +70 -0
- package/dist/node_modules/echarts/lib/chart/candlestick/CandlestickView.js +195 -0
- package/dist/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js +76 -0
- package/dist/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js +35 -0
- package/dist/node_modules/echarts/lib/chart/candlestick/install.js +11 -0
- package/dist/node_modules/echarts/lib/chart/candlestick/preprocessor.js +9 -0
- package/dist/node_modules/echarts/lib/chart/custom/CustomSeries.js +55 -0
- package/dist/node_modules/echarts/lib/chart/custom/CustomView.js +437 -0
- package/dist/node_modules/echarts/lib/chart/custom/install.js +8 -0
- package/dist/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js +60 -0
- package/dist/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js +44 -0
- package/dist/node_modules/echarts/lib/chart/effectScatter/install.js +9 -0
- package/dist/node_modules/echarts/lib/chart/funnel/FunnelSeries.js +83 -0
- package/dist/node_modules/echarts/lib/chart/funnel/FunnelView.js +109 -0
- package/dist/node_modules/echarts/lib/chart/funnel/funnelLayout.js +97 -0
- package/dist/node_modules/echarts/lib/chart/funnel/install.js +10 -0
- package/dist/node_modules/echarts/lib/chart/gauge/GaugeSeries.js +142 -0
- package/dist/node_modules/echarts/lib/chart/gauge/GaugeView.js +299 -0
- package/dist/node_modules/echarts/lib/chart/gauge/PointerPath.js +29 -0
- package/dist/node_modules/echarts/lib/chart/gauge/install.js +8 -0
- package/dist/node_modules/echarts/lib/chart/graph/GraphSeries.js +180 -0
- package/dist/node_modules/echarts/lib/chart/graph/GraphView.js +135 -0
- package/dist/node_modules/echarts/lib/chart/graph/adjustEdge.js +53 -0
- package/dist/node_modules/echarts/lib/chart/graph/categoryFilter.js +22 -0
- package/dist/node_modules/echarts/lib/chart/graph/categoryVisual.js +29 -0
- package/dist/node_modules/echarts/lib/chart/graph/circularLayout.js +9 -0
- package/dist/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js +80 -0
- package/dist/node_modules/echarts/lib/chart/graph/createView.js +33 -0
- package/dist/node_modules/echarts/lib/chart/graph/edgeVisual.js +28 -0
- package/dist/node_modules/echarts/lib/chart/graph/forceHelper.js +73 -0
- package/dist/node_modules/echarts/lib/chart/graph/forceLayout.js +61 -0
- package/dist/node_modules/echarts/lib/chart/graph/graphHelper.js +15 -0
- package/dist/node_modules/echarts/lib/chart/graph/install.js +42 -0
- package/dist/node_modules/echarts/lib/chart/graph/simpleLayout.js +24 -0
- package/dist/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js +23 -0
- package/dist/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js +45 -0
- package/dist/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js +44 -0
- package/dist/node_modules/echarts/lib/chart/heatmap/HeatmapView.js +146 -0
- package/dist/node_modules/echarts/lib/chart/heatmap/install.js +8 -0
- package/dist/node_modules/echarts/lib/chart/helper/EffectLine.js +68 -0
- package/dist/node_modules/echarts/lib/chart/helper/EffectPolyline.js +54 -0
- package/dist/node_modules/echarts/lib/chart/helper/EffectSymbol.js +89 -0
- package/dist/node_modules/echarts/lib/chart/helper/LargeLineDraw.js +157 -0
- package/dist/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js +143 -0
- package/dist/node_modules/echarts/lib/chart/helper/Line.js +208 -0
- package/dist/node_modules/echarts/lib/chart/helper/LineDraw.js +87 -0
- package/dist/node_modules/echarts/lib/chart/helper/LinePath.js +52 -0
- package/dist/node_modules/echarts/lib/chart/helper/Polyline.js +45 -0
- package/dist/node_modules/echarts/lib/chart/helper/Symbol.js +155 -0
- package/dist/node_modules/echarts/lib/chart/helper/SymbolDraw.js +106 -0
- package/dist/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js +70 -0
- package/dist/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js +50 -0
- package/dist/node_modules/echarts/lib/chart/helper/createRenderPlanner.js +11 -0
- package/dist/node_modules/echarts/lib/chart/helper/createSeriesData.js +70 -0
- package/dist/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js +15 -0
- package/dist/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js +13 -0
- package/dist/node_modules/echarts/lib/chart/helper/labelHelper.js +27 -0
- package/dist/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js +67 -0
- package/dist/node_modules/echarts/lib/chart/helper/sectorHelper.js +19 -0
- package/dist/node_modules/echarts/lib/chart/helper/treeHelper.js +41 -0
- package/dist/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js +51 -0
- package/dist/node_modules/echarts/lib/chart/line/LineSeries.js +87 -0
- package/dist/node_modules/echarts/lib/chart/line/LineView.js +525 -0
- package/dist/node_modules/echarts/lib/chart/line/helper.js +40 -0
- package/dist/node_modules/echarts/lib/chart/line/install.js +16 -0
- package/dist/node_modules/echarts/lib/chart/line/lineAnimationDiff.js +60 -0
- package/dist/node_modules/echarts/lib/chart/line/poly.js +163 -0
- package/dist/node_modules/echarts/lib/chart/lines/LinesSeries.js +144 -0
- package/dist/node_modules/echarts/lib/chart/lines/LinesView.js +65 -0
- package/dist/node_modules/echarts/lib/chart/lines/install.js +10 -0
- package/dist/node_modules/echarts/lib/chart/lines/linesLayout.js +47 -0
- package/dist/node_modules/echarts/lib/chart/lines/linesVisual.js +20 -0
- package/dist/node_modules/echarts/lib/chart/map/MapSeries.js +143 -0
- package/dist/node_modules/echarts/lib/chart/map/MapView.js +83 -0
- package/dist/node_modules/echarts/lib/chart/map/install.js +13 -0
- package/dist/node_modules/echarts/lib/chart/map/mapDataStatistic.js +32 -0
- package/dist/node_modules/echarts/lib/chart/map/mapSymbolLayout.js +31 -0
- package/dist/node_modules/echarts/lib/chart/parallel/ParallelSeries.js +63 -0
- package/dist/node_modules/echarts/lib/chart/parallel/ParallelView.js +111 -0
- package/dist/node_modules/echarts/lib/chart/parallel/install.js +11 -0
- package/dist/node_modules/echarts/lib/chart/parallel/parallelVisual.js +26 -0
- package/dist/node_modules/echarts/lib/chart/pie/PieSeries.js +142 -0
- package/dist/node_modules/echarts/lib/chart/pie/PieView.js +151 -0
- package/dist/node_modules/echarts/lib/chart/pie/install.js +13 -0
- package/dist/node_modules/echarts/lib/chart/pie/labelLayout.js +199 -0
- package/dist/node_modules/echarts/lib/chart/pie/pieLayout.js +99 -0
- package/dist/node_modules/echarts/lib/chart/radar/RadarSeries.js +73 -0
- package/dist/node_modules/echarts/lib/chart/radar/RadarView.js +123 -0
- package/dist/node_modules/echarts/lib/chart/radar/backwardCompat.js +17 -0
- package/dist/node_modules/echarts/lib/chart/radar/install.js +13 -0
- package/dist/node_modules/echarts/lib/chart/radar/radarLayout.js +30 -0
- package/dist/node_modules/echarts/lib/chart/sankey/SankeySeries.js +121 -0
- package/dist/node_modules/echarts/lib/chart/sankey/SankeyView.js +168 -0
- package/dist/node_modules/echarts/lib/chart/sankey/install.js +23 -0
- package/dist/node_modules/echarts/lib/chart/sankey/sankeyLayout.js +277 -0
- package/dist/node_modules/echarts/lib/chart/sankey/sankeyVisual.js +33 -0
- package/dist/node_modules/echarts/lib/chart/scatter/ScatterSeries.js +61 -0
- package/dist/node_modules/echarts/lib/chart/scatter/ScatterView.js +60 -0
- package/dist/node_modules/echarts/lib/chart/scatter/install.js +11 -0
- package/dist/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js +82 -0
- package/dist/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js +128 -0
- package/dist/node_modules/echarts/lib/chart/sunburst/SunburstView.js +93 -0
- package/dist/node_modules/echarts/lib/chart/sunburst/install.js +13 -0
- package/dist/node_modules/echarts/lib/chart/sunburst/sunburstAction.js +49 -0
- package/dist/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js +98 -0
- package/dist/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js +23 -0
- package/dist/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js +122 -0
- package/dist/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js +100 -0
- package/dist/node_modules/echarts/lib/chart/themeRiver/install.js +10 -0
- package/dist/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js +63 -0
- package/dist/node_modules/echarts/lib/chart/tree/TreeSeries.js +100 -0
- package/dist/node_modules/echarts/lib/chart/tree/TreeView.js +314 -0
- package/dist/node_modules/echarts/lib/chart/tree/install.js +11 -0
- package/dist/node_modules/echarts/lib/chart/tree/layoutHelper.js +102 -0
- package/dist/node_modules/echarts/lib/chart/tree/traversalHelper.js +24 -0
- package/dist/node_modules/echarts/lib/chart/tree/treeAction.js +37 -0
- package/dist/node_modules/echarts/lib/chart/tree/treeLayout.js +53 -0
- package/dist/node_modules/echarts/lib/chart/tree/treeVisual.js +13 -0
- package/dist/node_modules/echarts/lib/chart/treemap/Breadcrumb.js +99 -0
- package/dist/node_modules/echarts/lib/chart/treemap/TreemapSeries.js +203 -0
- package/dist/node_modules/echarts/lib/chart/treemap/TreemapView.js +454 -0
- package/dist/node_modules/echarts/lib/chart/treemap/install.js +11 -0
- package/dist/node_modules/echarts/lib/chart/treemap/treemapAction.js +30 -0
- package/dist/node_modules/echarts/lib/chart/treemap/treemapLayout.js +217 -0
- package/dist/node_modules/echarts/lib/chart/treemap/treemapVisual.js +95 -0
- package/dist/node_modules/echarts/lib/component/aria/install.js +8 -0
- package/dist/node_modules/echarts/lib/component/aria/preprocessor.js +12 -0
- package/dist/node_modules/echarts/lib/component/axis/AngleAxisView.js +195 -0
- package/dist/node_modules/echarts/lib/component/axis/AxisBuilder.js +294 -0
- package/dist/node_modules/echarts/lib/component/axis/AxisView.js +38 -0
- package/dist/node_modules/echarts/lib/component/axis/CartesianAxisView.js +123 -0
- package/dist/node_modules/echarts/lib/component/axis/ParallelAxisView.js +88 -0
- package/dist/node_modules/echarts/lib/component/axis/RadiusAxisView.js +117 -0
- package/dist/node_modules/echarts/lib/component/axis/SingleAxisView.js +70 -0
- package/dist/node_modules/echarts/lib/component/axis/axisSplitHelper.js +53 -0
- package/dist/node_modules/echarts/lib/component/axis/parallelAxisAction.js +25 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js +71 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js +31 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js +185 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js +85 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js +83 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js +80 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/axisTrigger.js +202 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js +36 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/globalListener.js +58 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/install.js +25 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/modelHelper.js +137 -0
- package/dist/node_modules/echarts/lib/component/axisPointer/viewHelper.js +114 -0
- package/dist/node_modules/echarts/lib/component/brush/BrushModel.js +56 -0
- package/dist/node_modules/echarts/lib/component/brush/BrushView.js +46 -0
- package/dist/node_modules/echarts/lib/component/brush/install.js +32 -0
- package/dist/node_modules/echarts/lib/component/brush/preprocessor.js +30 -0
- package/dist/node_modules/echarts/lib/component/brush/selector.js +63 -0
- package/dist/node_modules/echarts/lib/component/brush/visualEncoding.js +140 -0
- package/dist/node_modules/echarts/lib/component/calendar/CalendarView.js +187 -0
- package/dist/node_modules/echarts/lib/component/calendar/install.js +9 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/AxisProxy.js +125 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js +187 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/DataZoomView.js +18 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js +24 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js +76 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js +16 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js +16 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js +87 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js +452 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js +18 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js +57 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/helper.js +67 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/history.js +56 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/install.js +9 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/installCommon.js +11 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js +10 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js +9 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js +9 -0
- package/dist/node_modules/echarts/lib/component/dataZoom/roams.js +126 -0
- package/dist/node_modules/echarts/lib/component/dataset/install.js +43 -0
- package/dist/node_modules/echarts/lib/component/geo/GeoView.js +49 -0
- package/dist/node_modules/echarts/lib/component/geo/install.js +72 -0
- package/dist/node_modules/echarts/lib/component/graphic/GraphicModel.js +86 -0
- package/dist/node_modules/echarts/lib/component/graphic/GraphicView.js +180 -0
- package/dist/node_modules/echarts/lib/component/graphic/install.js +16 -0
- package/dist/node_modules/echarts/lib/component/grid/install.js +9 -0
- package/dist/node_modules/echarts/lib/component/grid/installSimple.js +42 -0
- package/dist/node_modules/echarts/lib/component/helper/BrushController.js +464 -0
- package/dist/node_modules/echarts/lib/component/helper/BrushTargetManager.js +195 -0
- package/dist/node_modules/echarts/lib/component/helper/MapDraw.js +303 -0
- package/dist/node_modules/echarts/lib/component/helper/RoamController.js +106 -0
- package/dist/node_modules/echarts/lib/component/helper/brushHelper.js +28 -0
- package/dist/node_modules/echarts/lib/component/helper/cursorHelper.js +12 -0
- package/dist/node_modules/echarts/lib/component/helper/interactionMutex.js +27 -0
- package/dist/node_modules/echarts/lib/component/helper/listComponent.js +29 -0
- package/dist/node_modules/echarts/lib/component/helper/roamHelper.js +17 -0
- package/dist/node_modules/echarts/lib/component/helper/sliderMove.js +28 -0
- package/dist/node_modules/echarts/lib/component/legend/LegendModel.js +196 -0
- package/dist/node_modules/echarts/lib/component/legend/LegendView.js +243 -0
- package/dist/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js +49 -0
- package/dist/node_modules/echarts/lib/component/legend/ScrollableLegendView.js +184 -0
- package/dist/node_modules/echarts/lib/component/legend/install.js +9 -0
- package/dist/node_modules/echarts/lib/component/legend/installLegendPlain.js +12 -0
- package/dist/node_modules/echarts/lib/component/legend/installLegendScroll.js +11 -0
- package/dist/node_modules/echarts/lib/component/legend/legendAction.js +40 -0
- package/dist/node_modules/echarts/lib/component/legend/legendFilter.js +14 -0
- package/dist/node_modules/echarts/lib/component/legend/scrollableLegendAction.js +15 -0
- package/dist/node_modules/echarts/lib/component/marker/MarkAreaModel.js +43 -0
- package/dist/node_modules/echarts/lib/component/marker/MarkAreaView.js +179 -0
- package/dist/node_modules/echarts/lib/component/marker/MarkLineModel.js +46 -0
- package/dist/node_modules/echarts/lib/component/marker/MarkLineView.js +178 -0
- package/dist/node_modules/echarts/lib/component/marker/MarkPointModel.js +40 -0
- package/dist/node_modules/echarts/lib/component/marker/MarkPointView.js +84 -0
- package/dist/node_modules/echarts/lib/component/marker/MarkerModel.js +72 -0
- package/dist/node_modules/echarts/lib/component/marker/MarkerView.js +45 -0
- package/dist/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js +12 -0
- package/dist/node_modules/echarts/lib/component/marker/installMarkArea.js +11 -0
- package/dist/node_modules/echarts/lib/component/marker/installMarkLine.js +11 -0
- package/dist/node_modules/echarts/lib/component/marker/installMarkPoint.js +11 -0
- package/dist/node_modules/echarts/lib/component/marker/markerHelper.js +83 -0
- package/dist/node_modules/echarts/lib/component/parallel/ParallelView.js +66 -0
- package/dist/node_modules/echarts/lib/component/parallel/install.js +26 -0
- package/dist/node_modules/echarts/lib/component/polar/install.js +40 -0
- package/dist/node_modules/echarts/lib/component/radar/RadarView.js +119 -0
- package/dist/node_modules/echarts/lib/component/radar/install.js +17 -0
- package/dist/node_modules/echarts/lib/component/singleAxis/install.js +27 -0
- package/dist/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js +115 -0
- package/dist/node_modules/echarts/lib/component/timeline/SliderTimelineView.js +361 -0
- package/dist/node_modules/echarts/lib/component/timeline/TimelineAxis.js +20 -0
- package/dist/node_modules/echarts/lib/component/timeline/TimelineModel.js +79 -0
- package/dist/node_modules/echarts/lib/component/timeline/TimelineView.js +16 -0
- package/dist/node_modules/echarts/lib/component/timeline/install.js +12 -0
- package/dist/node_modules/echarts/lib/component/timeline/preprocessor.js +35 -0
- package/dist/node_modules/echarts/lib/component/timeline/timelineAction.js +29 -0
- package/dist/node_modules/echarts/lib/component/title/install.js +121 -0
- package/dist/node_modules/echarts/lib/component/toolbox/ToolboxModel.js +60 -0
- package/dist/node_modules/echarts/lib/component/toolbox/ToolboxView.js +140 -0
- package/dist/node_modules/echarts/lib/component/toolbox/feature/Brush.js +69 -0
- package/dist/node_modules/echarts/lib/component/toolbox/feature/DataView.js +269 -0
- package/dist/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js +152 -0
- package/dist/node_modules/echarts/lib/component/toolbox/feature/MagicType.js +123 -0
- package/dist/node_modules/echarts/lib/component/toolbox/feature/Restore.js +37 -0
- package/dist/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js +69 -0
- package/dist/node_modules/echarts/lib/component/toolbox/featureManager.js +19 -0
- package/dist/node_modules/echarts/lib/component/toolbox/install.js +16 -0
- package/dist/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js +152 -0
- package/dist/node_modules/echarts/lib/component/tooltip/TooltipModel.js +82 -0
- package/dist/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js +89 -0
- package/dist/node_modules/echarts/lib/component/tooltip/TooltipView.js +412 -0
- package/dist/node_modules/echarts/lib/component/tooltip/helper.js +32 -0
- package/dist/node_modules/echarts/lib/component/tooltip/install.js +19 -0
- package/dist/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js +63 -0
- package/dist/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js +186 -0
- package/dist/node_modules/echarts/lib/component/transform/filterTransform.js +32 -0
- package/dist/node_modules/echarts/lib/component/transform/install.js +8 -0
- package/dist/node_modules/echarts/lib/component/transform/sortTransform.js +51 -0
- package/dist/node_modules/echarts/lib/component/visualMap/ContinuousModel.js +109 -0
- package/dist/node_modules/echarts/lib/component/visualMap/ContinuousView.js +382 -0
- package/dist/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js +216 -0
- package/dist/node_modules/echarts/lib/component/visualMap/PiecewiseView.js +118 -0
- package/dist/node_modules/echarts/lib/component/visualMap/VisualMapModel.js +161 -0
- package/dist/node_modules/echarts/lib/component/visualMap/VisualMapView.js +77 -0
- package/dist/node_modules/echarts/lib/component/visualMap/helper.js +24 -0
- package/dist/node_modules/echarts/lib/component/visualMap/install.js +9 -0
- package/dist/node_modules/echarts/lib/component/visualMap/installCommon.js +15 -0
- package/dist/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js +9 -0
- package/dist/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js +9 -0
- package/dist/node_modules/echarts/lib/component/visualMap/preprocessor.js +20 -0
- package/dist/node_modules/echarts/lib/component/visualMap/visualEncoding.js +51 -0
- package/dist/node_modules/echarts/lib/component/visualMap/visualMapAction.js +17 -0
- package/dist/node_modules/echarts/lib/coord/Axis.js +107 -0
- package/dist/node_modules/echarts/lib/coord/CoordinateSystem.js +6 -0
- package/dist/node_modules/echarts/lib/coord/View.js +91 -0
- package/dist/node_modules/echarts/lib/coord/axisAlignTicks.js +39 -0
- package/dist/node_modules/echarts/lib/coord/axisCommonTypes.js +9 -0
- package/dist/node_modules/echarts/lib/coord/axisDefault.js +160 -0
- package/dist/node_modules/echarts/lib/coord/axisHelper.js +162 -0
- package/dist/node_modules/echarts/lib/coord/axisModelCommonMixin.js +15 -0
- package/dist/node_modules/echarts/lib/coord/axisModelCreator.js +40 -0
- package/dist/node_modules/echarts/lib/coord/axisTickLabelBuilder.js +176 -0
- package/dist/node_modules/echarts/lib/coord/calendar/Calendar.js +158 -0
- package/dist/node_modules/echarts/lib/coord/calendar/CalendarModel.js +91 -0
- package/dist/node_modules/echarts/lib/coord/calendar/prepareCustom.js +28 -0
- package/dist/node_modules/echarts/lib/coord/cartesian/Axis2D.js +28 -0
- package/dist/node_modules/echarts/lib/coord/cartesian/AxisModel.js +22 -0
- package/dist/node_modules/echarts/lib/coord/cartesian/Cartesian.js +26 -0
- package/dist/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js +66 -0
- package/dist/node_modules/echarts/lib/coord/cartesian/Grid.js +226 -0
- package/dist/node_modules/echarts/lib/coord/cartesian/GridModel.js +30 -0
- package/dist/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js +44 -0
- package/dist/node_modules/echarts/lib/coord/cartesian/prepareCustom.js +29 -0
- package/dist/node_modules/echarts/lib/coord/geo/Geo.js +86 -0
- package/dist/node_modules/echarts/lib/coord/geo/GeoJSONResource.js +70 -0
- package/dist/node_modules/echarts/lib/coord/geo/GeoModel.js +125 -0
- package/dist/node_modules/echarts/lib/coord/geo/GeoSVGResource.js +108 -0
- package/dist/node_modules/echarts/lib/coord/geo/Region.js +137 -0
- package/dist/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js +10 -0
- package/dist/node_modules/echarts/lib/coord/geo/fix/nanhai.js +22 -0
- package/dist/node_modules/echarts/lib/coord/geo/fix/textCoord.js +21 -0
- package/dist/node_modules/echarts/lib/coord/geo/geoCreator.js +106 -0
- package/dist/node_modules/echarts/lib/coord/geo/geoSourceManager.js +66 -0
- package/dist/node_modules/echarts/lib/coord/geo/parseGeoJson.js +67 -0
- package/dist/node_modules/echarts/lib/coord/geo/prepareCustom.js +29 -0
- package/dist/node_modules/echarts/lib/coord/parallel/AxisModel.js +51 -0
- package/dist/node_modules/echarts/lib/coord/parallel/Parallel.js +180 -0
- package/dist/node_modules/echarts/lib/coord/parallel/ParallelAxis.js +18 -0
- package/dist/node_modules/echarts/lib/coord/parallel/ParallelModel.js +61 -0
- package/dist/node_modules/echarts/lib/coord/parallel/parallelCreator.js +20 -0
- package/dist/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js +25 -0
- package/dist/node_modules/echarts/lib/coord/polar/AngleAxis.js +29 -0
- package/dist/node_modules/echarts/lib/coord/polar/AxisModel.js +44 -0
- package/dist/node_modules/echarts/lib/coord/polar/Polar.js +86 -0
- package/dist/node_modules/echarts/lib/coord/polar/PolarModel.js +26 -0
- package/dist/node_modules/echarts/lib/coord/polar/RadiusAxis.js +19 -0
- package/dist/node_modules/echarts/lib/coord/polar/polarCreator.js +61 -0
- package/dist/node_modules/echarts/lib/coord/polar/prepareCustom.js +29 -0
- package/dist/node_modules/echarts/lib/coord/radar/IndicatorAxis.js +16 -0
- package/dist/node_modules/echarts/lib/coord/radar/Radar.js +79 -0
- package/dist/node_modules/echarts/lib/coord/radar/RadarModel.js +89 -0
- package/dist/node_modules/echarts/lib/coord/scaleRawExtentInfo.js +70 -0
- package/dist/node_modules/echarts/lib/coord/single/AxisModel.js +60 -0
- package/dist/node_modules/echarts/lib/coord/single/Single.js +88 -0
- package/dist/node_modules/echarts/lib/coord/single/SingleAxis.js +21 -0
- package/dist/node_modules/echarts/lib/coord/single/prepareCustom.js +26 -0
- package/dist/node_modules/echarts/lib/coord/single/singleAxisHelper.js +32 -0
- package/dist/node_modules/echarts/lib/coord/single/singleCreator.js +21 -0
- package/dist/node_modules/echarts/lib/core/CoordinateSystem.js +29 -0
- package/dist/node_modules/echarts/lib/core/ExtensionAPI.js +34 -0
- package/dist/node_modules/echarts/lib/core/Scheduler.js +226 -0
- package/dist/node_modules/echarts/lib/core/echarts.js +1019 -0
- package/dist/node_modules/echarts/lib/core/impl.js +11 -0
- package/dist/node_modules/echarts/lib/core/lifecycle.js +5 -0
- package/dist/node_modules/echarts/lib/core/locale.js +37 -0
- package/dist/node_modules/echarts/lib/core/task.js +91 -0
- package/dist/node_modules/echarts/lib/data/DataDiffer.js +80 -0
- package/dist/node_modules/echarts/lib/data/DataStore.js +427 -0
- package/dist/node_modules/echarts/lib/data/Graph.js +207 -0
- package/dist/node_modules/echarts/lib/data/OrdinalMeta.js +36 -0
- package/dist/node_modules/echarts/lib/data/SeriesData.js +328 -0
- package/dist/node_modules/echarts/lib/data/SeriesDimensionDefine.js +13 -0
- package/dist/node_modules/echarts/lib/data/Source.js +157 -0
- package/dist/node_modules/echarts/lib/data/Tree.js +154 -0
- package/dist/node_modules/echarts/lib/data/helper/SeriesDataSchema.js +86 -0
- package/dist/node_modules/echarts/lib/data/helper/createDimensions.js +122 -0
- package/dist/node_modules/echarts/lib/data/helper/dataProvider.js +165 -0
- package/dist/node_modules/echarts/lib/data/helper/dataStackHelper.js +60 -0
- package/dist/node_modules/echarts/lib/data/helper/dataValueHelper.js +89 -0
- package/dist/node_modules/echarts/lib/data/helper/dimensionHelper.js +57 -0
- package/dist/node_modules/echarts/lib/data/helper/linkSeriesData.js +62 -0
- package/dist/node_modules/echarts/lib/data/helper/sourceHelper.js +163 -0
- package/dist/node_modules/echarts/lib/data/helper/sourceManager.js +136 -0
- package/dist/node_modules/echarts/lib/data/helper/transform.js +164 -0
- package/dist/node_modules/echarts/lib/extension.js +61 -0
- package/dist/node_modules/echarts/lib/i18n/langEN.js +114 -0
- package/dist/node_modules/echarts/lib/i18n/langZH.js +114 -0
- package/dist/node_modules/echarts/lib/label/LabelManager.js +235 -0
- package/dist/node_modules/echarts/lib/label/installLabelLayout.js +17 -0
- package/dist/node_modules/echarts/lib/label/labelGuideHelper.js +234 -0
- package/dist/node_modules/echarts/lib/label/labelLayoutHelper.js +132 -0
- package/dist/node_modules/echarts/lib/label/labelStyle.js +193 -0
- package/dist/node_modules/echarts/lib/label/sectorLabel.js +94 -0
- package/dist/node_modules/echarts/lib/layout/barGrid.js +235 -0
- package/dist/node_modules/echarts/lib/layout/barPolar.js +101 -0
- package/dist/node_modules/echarts/lib/layout/points.js +37 -0
- package/dist/node_modules/echarts/lib/legacy/dataSelectAction.js +50 -0
- package/dist/node_modules/echarts/lib/loading/default.js +92 -0
- package/dist/node_modules/echarts/lib/model/Component.js +81 -0
- package/dist/node_modules/echarts/lib/model/Global.js +280 -0
- package/dist/node_modules/echarts/lib/model/Model.js +64 -0
- package/dist/node_modules/echarts/lib/model/OptionManager.js +86 -0
- package/dist/node_modules/echarts/lib/model/Series.js +231 -0
- package/dist/node_modules/echarts/lib/model/globalDefault.js +87 -0
- package/dist/node_modules/echarts/lib/model/internalComponentCreator.js +16 -0
- package/dist/node_modules/echarts/lib/model/mixin/areaStyle.js +24 -0
- package/dist/node_modules/echarts/lib/model/mixin/dataFormat.js +70 -0
- package/dist/node_modules/echarts/lib/model/mixin/itemStyle.js +31 -0
- package/dist/node_modules/echarts/lib/model/mixin/lineStyle.js +30 -0
- package/dist/node_modules/echarts/lib/model/mixin/makeStyleMapper.js +18 -0
- package/dist/node_modules/echarts/lib/model/mixin/palette.js +42 -0
- package/dist/node_modules/echarts/lib/model/mixin/textStyle.js +30 -0
- package/dist/node_modules/echarts/lib/model/referHelper.js +46 -0
- package/dist/node_modules/echarts/lib/preprocessor/backwardCompat.js +79 -0
- package/dist/node_modules/echarts/lib/preprocessor/helper/compatStyle.js +106 -0
- package/dist/node_modules/echarts/lib/processor/dataFilter.js +22 -0
- package/dist/node_modules/echarts/lib/processor/dataSample.js +51 -0
- package/dist/node_modules/echarts/lib/processor/dataStack.js +50 -0
- package/dist/node_modules/echarts/lib/processor/negativeDataFilter.js +16 -0
- package/dist/node_modules/echarts/lib/renderer/installCanvasRenderer.js +7 -0
- package/dist/node_modules/echarts/lib/renderer/installSVGRenderer.js +7 -0
- package/dist/node_modules/echarts/lib/scale/Interval.js +97 -0
- package/dist/node_modules/echarts/lib/scale/Log.js +68 -0
- package/dist/node_modules/echarts/lib/scale/Ordinal.js +76 -0
- package/dist/node_modules/echarts/lib/scale/Scale.js +32 -0
- package/dist/node_modules/echarts/lib/scale/Time.js +257 -0
- package/dist/node_modules/echarts/lib/scale/helper.js +42 -0
- package/dist/node_modules/echarts/lib/theme/dark.js +180 -0
- package/dist/node_modules/echarts/lib/theme/light.js +8 -0
- package/dist/node_modules/echarts/lib/util/ECEventProcessor.js +54 -0
- package/dist/node_modules/echarts/lib/util/animation.js +40 -0
- package/dist/node_modules/echarts/lib/util/clazz.js +106 -0
- package/dist/node_modules/echarts/lib/util/component.js +78 -0
- package/dist/node_modules/echarts/lib/util/conditionalExpression.js +146 -0
- package/dist/node_modules/echarts/lib/util/decal.js +168 -0
- package/dist/node_modules/echarts/lib/util/event.js +8 -0
- package/dist/node_modules/echarts/lib/util/format.js +111 -0
- package/dist/node_modules/echarts/lib/util/graphic.js +294 -0
- package/dist/node_modules/echarts/lib/util/innerStore.js +14 -0
- package/dist/node_modules/echarts/lib/util/layout.js +140 -0
- package/dist/node_modules/echarts/lib/util/log.js +6 -0
- package/dist/node_modules/echarts/lib/util/model.js +339 -0
- package/dist/node_modules/echarts/lib/util/number.js +196 -0
- package/dist/node_modules/echarts/lib/util/shape/sausage.js +32 -0
- package/dist/node_modules/echarts/lib/util/states.js +390 -0
- package/dist/node_modules/echarts/lib/util/styleCompat.js +50 -0
- package/dist/node_modules/echarts/lib/util/symbol.js +155 -0
- package/dist/node_modules/echarts/lib/util/throttle.js +41 -0
- package/dist/node_modules/echarts/lib/util/time.js +193 -0
- package/dist/node_modules/echarts/lib/util/types.js +13 -0
- package/dist/node_modules/echarts/lib/util/vendor.js +8 -0
- package/dist/node_modules/echarts/lib/view/Chart.js +87 -0
- package/dist/node_modules/echarts/lib/view/Component.js +27 -0
- package/dist/node_modules/echarts/lib/visual/LegendVisualProvider.js +24 -0
- package/dist/node_modules/echarts/lib/visual/VisualMapping.js +262 -0
- package/dist/node_modules/echarts/lib/visual/aria.js +133 -0
- package/dist/node_modules/echarts/lib/visual/decal.js +23 -0
- package/dist/node_modules/echarts/lib/visual/helper.js +47 -0
- package/dist/node_modules/echarts/lib/visual/style.js +95 -0
- package/dist/node_modules/echarts/lib/visual/symbol.js +52 -0
- package/dist/node_modules/echarts/lib/visual/visualDefault.js +46 -0
- package/dist/node_modules/echarts/lib/visual/visualSolution.js +97 -0
- package/dist/node_modules/pinyin/lib/esm/pinyin.js +2 -2
- package/dist/node_modules/punycode/punycode.es6.js +17 -17
- package/dist/node_modules/quasar/lang/en-US.js +106 -0
- package/dist/node_modules/quasar/src/components/btn/QBtn.js +188 -0
- package/dist/node_modules/quasar/src/components/btn/use-btn.js +122 -0
- package/dist/node_modules/quasar/src/components/btn-group/QBtnGroup.js +27 -0
- package/dist/node_modules/quasar/src/components/btn-toggle/QBtnToggle.js +114 -0
- package/dist/node_modules/quasar/src/components/card/QCard.js +26 -0
- package/dist/node_modules/quasar/src/components/card/QCardActions.js +20 -0
- package/dist/node_modules/quasar/src/components/card/QCardSection.js +22 -0
- package/dist/node_modules/quasar/src/components/checkbox/QCheckbox.js +50 -0
- package/dist/node_modules/quasar/src/components/checkbox/use-checkbox.js +130 -0
- package/dist/node_modules/quasar/src/components/chip/QChip.js +127 -0
- package/dist/node_modules/quasar/src/components/dialog/QDialog.js +202 -0
- package/dist/node_modules/quasar/src/components/field/QField.js +22 -0
- package/dist/node_modules/quasar/src/components/icon/QIcon.js +131 -0
- package/dist/node_modules/quasar/src/components/infinite-scroll/QInfiniteScroll.js +135 -0
- package/dist/node_modules/quasar/src/components/input/QInput.js +212 -0
- package/dist/node_modules/quasar/src/components/input/use-mask.js +291 -0
- package/dist/node_modules/quasar/src/components/item/QItem.js +75 -0
- package/dist/node_modules/quasar/src/components/item/QItemLabel.js +29 -0
- package/dist/node_modules/quasar/src/components/item/QItemSection.js +22 -0
- package/dist/node_modules/quasar/src/components/item/QList.js +29 -0
- package/dist/node_modules/quasar/src/components/linear-progress/QLinearProgress.js +83 -0
- package/dist/node_modules/quasar/src/components/menu/QMenu.js +183 -0
- package/dist/node_modules/quasar/src/components/option-group/QOptionGroup.js +90 -0
- package/dist/node_modules/quasar/src/components/radio/QRadio.js +118 -0
- package/dist/node_modules/quasar/src/components/resize-observer/QResizeObserver.js +71 -0
- package/dist/node_modules/quasar/src/components/scroll-area/QScrollArea.js +288 -0
- package/dist/node_modules/quasar/src/components/scroll-area/ScrollAreaControls.js +47 -0
- package/dist/node_modules/quasar/src/components/scroll-observer/QScrollObserver.js +77 -0
- package/dist/node_modules/quasar/src/components/select/QSelect.js +762 -0
- package/dist/node_modules/quasar/src/components/slide-item/QSlideItem.js +118 -0
- package/dist/node_modules/quasar/src/components/space/QSpace.js +12 -0
- package/dist/node_modules/quasar/src/components/spinner/QSpinner.js +36 -0
- package/dist/node_modules/quasar/src/components/spinner/QSpinnerBall.js +22 -0
- package/dist/node_modules/quasar/src/components/spinner/use-spinner.js +21 -0
- package/dist/node_modules/quasar/src/components/toggle/QToggle.js +39 -0
- package/dist/node_modules/quasar/src/components/virtual-scroll/use-virtual-scroll.js +372 -0
- package/dist/node_modules/quasar/src/composables/private.use-align/use-align.js +27 -0
- package/dist/node_modules/quasar/src/composables/private.use-anchor/use-anchor.js +118 -0
- package/dist/node_modules/quasar/src/composables/private.use-dark/use-dark.js +14 -0
- package/dist/node_modules/quasar/src/composables/private.use-field/use-field.js +316 -0
- package/dist/node_modules/quasar/src/composables/private.use-file/use-file-dom-props.js +25 -0
- package/dist/node_modules/quasar/src/composables/private.use-history/use-history.js +17 -0
- package/dist/node_modules/quasar/src/composables/private.use-key-composition/use-key-composition.js +13 -0
- package/dist/node_modules/quasar/src/composables/private.use-model-toggle/use-model-toggle.js +68 -0
- package/dist/node_modules/quasar/src/composables/private.use-portal/use-portal.js +53 -0
- package/dist/node_modules/quasar/src/composables/private.use-prevent-scroll/use-prevent-scroll.js +12 -0
- package/dist/node_modules/quasar/src/composables/private.use-refocus-target/use-refocus-target.js +19 -0
- package/dist/node_modules/quasar/src/composables/private.use-router-link/use-router-link.js +141 -0
- package/dist/node_modules/quasar/src/composables/private.use-scroll-target/use-scroll-target.js +24 -0
- package/dist/node_modules/quasar/src/composables/private.use-size/use-size.js +18 -0
- package/dist/node_modules/quasar/src/composables/private.use-transition/use-transition.js +38 -0
- package/dist/node_modules/quasar/src/composables/private.use-validate/use-validate.js +87 -0
- package/dist/node_modules/quasar/src/composables/use-form/private.use-form.js +22 -0
- package/dist/node_modules/quasar/src/composables/use-form/use-form-child.js +18 -0
- package/dist/node_modules/quasar/src/composables/use-hydration/use-hydration.js +11 -0
- package/dist/node_modules/quasar/src/composables/use-id/use-id.js +23 -0
- package/dist/node_modules/quasar/src/composables/use-quasar/use-quasar.js +8 -0
- package/dist/node_modules/quasar/src/composables/use-render-cache/use-render-cache.js +18 -0
- package/dist/node_modules/quasar/src/composables/use-split-attrs/use-split-attrs.js +20 -0
- package/dist/node_modules/quasar/src/composables/use-tick/use-tick.js +20 -0
- package/dist/node_modules/quasar/src/composables/use-timeout/use-timeout.js +20 -0
- package/dist/node_modules/quasar/src/directives/close-popup/ClosePopup.js +41 -0
- package/dist/node_modules/quasar/src/directives/ripple/Ripple.js +81 -0
- package/dist/node_modules/quasar/src/directives/touch-pan/TouchPan.js +174 -0
- package/dist/node_modules/quasar/src/plugins/lang/Lang.js +42 -0
- package/dist/node_modules/quasar/src/plugins/platform/Platform.js +115 -0
- package/dist/node_modules/quasar/src/utils/date/date.js +633 -0
- package/dist/node_modules/quasar/src/utils/debounce/debounce.js +15 -0
- package/dist/node_modules/quasar/src/utils/dom/dom.js +36 -0
- package/dist/node_modules/quasar/src/utils/event/event.js +88 -0
- package/dist/node_modules/quasar/src/utils/format/format.js +25 -0
- package/dist/node_modules/quasar/src/utils/is/is.js +79 -0
- package/dist/node_modules/quasar/src/utils/patterns/patterns.js +25 -0
- package/dist/node_modules/quasar/src/utils/private.click-outside/click-outside.js +37 -0
- package/dist/node_modules/quasar/src/utils/private.config/instance-config.js +4 -0
- package/dist/node_modules/quasar/src/utils/private.config/nodes.js +17 -0
- package/dist/node_modules/quasar/src/utils/private.create/create.js +26 -0
- package/dist/node_modules/quasar/src/utils/private.focus/focus-manager.js +22 -0
- package/dist/node_modules/quasar/src/utils/private.focus/focusout.js +16 -0
- package/dist/node_modules/quasar/src/utils/private.inject-obj-prop/inject-obj-prop.js +10 -0
- package/dist/node_modules/quasar/src/utils/private.keyboard/escape-key.js +27 -0
- package/dist/node_modules/quasar/src/utils/private.keyboard/key-composition.js +10 -0
- package/dist/node_modules/quasar/src/utils/private.option-sizes/option-sizes.js +10 -0
- package/dist/node_modules/quasar/src/utils/private.portal/portal.js +37 -0
- package/dist/node_modules/quasar/src/utils/private.position-engine/position-engine.js +168 -0
- package/dist/node_modules/quasar/src/utils/private.render/render.js +30 -0
- package/dist/node_modules/quasar/src/utils/private.rtl/rtl.js +17 -0
- package/dist/node_modules/quasar/src/utils/private.selection/selection.js +10 -0
- package/dist/node_modules/quasar/src/utils/private.symbols/symbols.js +5 -0
- package/dist/node_modules/quasar/src/utils/private.touch/touch.js +23 -0
- package/dist/node_modules/quasar/src/utils/private.vm/vm.js +21 -0
- package/dist/node_modules/quasar/src/utils/scroll/prevent-scroll.js +58 -0
- package/dist/node_modules/quasar/src/utils/scroll/scroll.js +108 -0
- package/dist/node_modules/quasar/src/utils/throttle/throttle.js +11 -0
- package/dist/node_modules/quasar/src/utils/uid/uid.js +30 -0
- package/dist/node_modules/tslib/tslib.es6.js +19 -0
- package/dist/node_modules/vue-router/dist/devtools-EWN81iOl.js +19 -0
- package/dist/node_modules/vue-router/dist/vue-router.js +12 -0
- package/dist/node_modules/zrender/lib/Element.js +433 -0
- package/dist/node_modules/zrender/lib/Handler.js +168 -0
- package/dist/node_modules/zrender/lib/Storage.js +75 -0
- package/dist/node_modules/zrender/lib/animation/Animation.js +66 -0
- package/dist/node_modules/zrender/lib/animation/Animator.js +381 -0
- package/dist/node_modules/zrender/lib/animation/Clip.js +33 -0
- package/dist/node_modules/zrender/lib/animation/cubicEasing.js +18 -0
- package/dist/node_modules/zrender/lib/animation/easing.js +104 -0
- package/dist/node_modules/zrender/lib/animation/requestAnimationFrame.js +8 -0
- package/dist/node_modules/zrender/lib/canvas/Layer.js +134 -0
- package/dist/node_modules/zrender/lib/canvas/Painter.js +302 -0
- package/dist/node_modules/zrender/lib/canvas/dashStyle.js +18 -0
- package/dist/node_modules/zrender/lib/canvas/graphic.js +197 -0
- package/dist/node_modules/zrender/lib/canvas/helper.js +47 -0
- package/dist/node_modules/zrender/lib/config.js +11 -0
- package/dist/node_modules/zrender/lib/contain/arc.js +24 -0
- package/dist/node_modules/zrender/lib/contain/cubic.js +13 -0
- package/dist/node_modules/zrender/lib/contain/line.js +16 -0
- package/dist/node_modules/zrender/lib/contain/path.js +148 -0
- package/dist/node_modules/zrender/lib/contain/polygon.js +19 -0
- package/dist/node_modules/zrender/lib/contain/quadratic.js +13 -0
- package/dist/node_modules/zrender/lib/contain/text.js +96 -0
- package/dist/node_modules/zrender/lib/contain/util.js +7 -0
- package/dist/node_modules/zrender/lib/contain/windingLine.js +11 -0
- package/dist/node_modules/zrender/lib/core/BoundingRect.js +64 -0
- package/dist/node_modules/zrender/lib/core/Eventful.js +97 -0
- package/dist/node_modules/zrender/lib/core/GestureMgr.js +63 -0
- package/dist/node_modules/zrender/lib/core/LRU.js +52 -0
- package/dist/node_modules/zrender/lib/core/OrientedBoundingRect.js +46 -0
- package/dist/node_modules/zrender/lib/core/PathProxy.js +300 -0
- package/dist/node_modules/zrender/lib/core/Point.js +72 -0
- package/dist/node_modules/zrender/lib/core/Transformable.js +105 -0
- package/dist/node_modules/zrender/lib/core/WeakMap.js +26 -0
- package/dist/node_modules/zrender/lib/core/bbox.js +52 -0
- package/dist/node_modules/zrender/lib/core/curve.js +161 -0
- package/dist/node_modules/zrender/lib/core/dom.js +67 -0
- package/dist/node_modules/zrender/lib/core/env.js +21 -0
- package/dist/node_modules/zrender/lib/core/event.js +69 -0
- package/dist/node_modules/zrender/lib/core/fourPointsTransform.js +41 -0
- package/dist/node_modules/zrender/lib/core/matrix.js +44 -0
- package/dist/node_modules/zrender/lib/core/platform.js +48 -0
- package/dist/node_modules/zrender/lib/core/timsort.js +286 -0
- package/dist/node_modules/zrender/lib/core/util.js +405 -0
- package/dist/node_modules/zrender/lib/core/vector.js +76 -0
- package/dist/node_modules/zrender/lib/dom/HandlerProxy.js +188 -0
- package/dist/node_modules/zrender/lib/graphic/CompoundPath.js +29 -0
- package/dist/node_modules/zrender/lib/graphic/Displayable.js +146 -0
- package/dist/node_modules/zrender/lib/graphic/Gradient.js +14 -0
- package/dist/node_modules/zrender/lib/graphic/Group.js +93 -0
- package/dist/node_modules/zrender/lib/graphic/Image.js +55 -0
- package/dist/node_modules/zrender/lib/graphic/IncrementalDisplayable.js +69 -0
- package/dist/node_modules/zrender/lib/graphic/LinearGradient.js +13 -0
- package/dist/node_modules/zrender/lib/graphic/Path.js +216 -0
- package/dist/node_modules/zrender/lib/graphic/RadialGradient.js +13 -0
- package/dist/node_modules/zrender/lib/graphic/TSpan.js +52 -0
- package/dist/node_modules/zrender/lib/graphic/Text.js +218 -0
- package/dist/node_modules/zrender/lib/graphic/constants.js +6 -0
- package/dist/node_modules/zrender/lib/graphic/helper/image.js +41 -0
- package/dist/node_modules/zrender/lib/graphic/helper/parseText.js +211 -0
- package/dist/node_modules/zrender/lib/graphic/helper/poly.js +22 -0
- package/dist/node_modules/zrender/lib/graphic/helper/roundRect.js +9 -0
- package/dist/node_modules/zrender/lib/graphic/helper/roundSector.js +79 -0
- package/dist/node_modules/zrender/lib/graphic/helper/smoothBezier.js +29 -0
- package/dist/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js +28 -0
- package/dist/node_modules/zrender/lib/graphic/shape/Arc.js +29 -0
- package/dist/node_modules/zrender/lib/graphic/shape/BezierCurve.js +47 -0
- package/dist/node_modules/zrender/lib/graphic/shape/Circle.js +23 -0
- package/dist/node_modules/zrender/lib/graphic/shape/Ellipse.js +24 -0
- package/dist/node_modules/zrender/lib/graphic/shape/Line.js +42 -0
- package/dist/node_modules/zrender/lib/graphic/shape/Polygon.js +24 -0
- package/dist/node_modules/zrender/lib/graphic/shape/Polyline.js +29 -0
- package/dist/node_modules/zrender/lib/graphic/shape/Rect.js +33 -0
- package/dist/node_modules/zrender/lib/graphic/shape/Ring.js +24 -0
- package/dist/node_modules/zrender/lib/graphic/shape/Sector.js +26 -0
- package/dist/node_modules/zrender/lib/mixin/Draggable.js +29 -0
- package/dist/node_modules/zrender/lib/svg/Painter.js +151 -0
- package/dist/node_modules/zrender/lib/svg/SVGPathRebuilder.js +52 -0
- package/dist/node_modules/zrender/lib/svg/core.js +98 -0
- package/dist/node_modules/zrender/lib/svg/cssAnimation.js +182 -0
- package/dist/node_modules/zrender/lib/svg/cssClassId.js +7 -0
- package/dist/node_modules/zrender/lib/svg/cssEmphasis.js +33 -0
- package/dist/node_modules/zrender/lib/svg/domapi.js +30 -0
- package/dist/node_modules/zrender/lib/svg/graphic.js +229 -0
- package/dist/node_modules/zrender/lib/svg/helper.js +112 -0
- package/dist/node_modules/zrender/lib/svg/mapStyleToAttrs.js +50 -0
- package/dist/node_modules/zrender/lib/svg/patch.js +85 -0
- package/dist/node_modules/zrender/lib/tool/color.js +342 -0
- package/dist/node_modules/zrender/lib/tool/convertPath.js +91 -0
- package/dist/node_modules/zrender/lib/tool/dividePath.js +181 -0
- package/dist/node_modules/zrender/lib/tool/morphPath.js +319 -0
- package/dist/node_modules/zrender/lib/tool/parseSVG.js +401 -0
- package/dist/node_modules/zrender/lib/tool/parseXML.js +14 -0
- package/dist/node_modules/zrender/lib/tool/path.js +164 -0
- package/dist/node_modules/zrender/lib/tool/transformPath.js +38 -0
- package/dist/node_modules/zrender/lib/zrender.js +129 -0
- package/dist/src/api/algorithm/alova/implement/comprehensiveAlgorithm.d.ts +1 -0
- package/dist/src/api/algorithm/alova/implement/comprehensiveAlgorithm.js +20 -5
- package/dist/src/api/algorithm/alova/implement/inquiriesAlgorithm.js +7 -4
- package/dist/src/api/algorithm/alova/implement/inspectionsAlgorithm.js +10 -7
- package/dist/src/api/algorithm/alova/implement/lisemsAlgorithm.js +9 -6
- package/dist/src/api/algorithm/alova/implement/pulsationsAlgorithm.js +10 -7
- package/dist/src/api/algorithm/alova/index.d.ts +0 -1
- package/dist/src/api/algorithm/alova/index.js +21 -21
- package/dist/src/api/algorithm/comprehensiveAlgorithm.d.ts +1 -1
- package/dist/src/api/algorithm/comprehensiveAlgorithm.js +7 -6
- package/dist/src/api/algorithm/index.d.ts +1 -1
- package/dist/src/api/algorithm/index.js +18 -18
- package/dist/src/api/algorithm/lisemsAlgorithm.js +1 -1
- package/dist/src/api/authorization/alova/createApis.js +7 -1
- package/dist/src/api/authorization/alova/index.js +8 -10
- package/dist/src/api/check/alova/createApis.js +7 -1
- package/dist/src/api/check/alova/index.js +6 -5
- package/dist/src/api/check/check.js +2 -2
- package/dist/src/api/doctor/alova/createApis.js +7 -1
- package/dist/src/api/doctor/alova/index.js +9 -10
- package/dist/src/api/metric/index.js +4 -5
- package/dist/src/api/oauth/alova/createApis.js +7 -1
- package/dist/src/api/oauth/alova/index.js +11 -13
- package/dist/src/api/outpatient/alova/createApis.js +7 -1
- package/dist/src/api/outpatient/alova/index.js +5 -5
- package/dist/src/api/patient/alova/createApis.js +7 -1
- package/dist/src/api/patient/alova/index.js +12 -9
- package/dist/src/api/patient/meta.js +0 -1
- package/dist/src/api/prescription/alova/createApis.js +7 -1
- package/dist/src/api/prescription/alova/index.js +7 -8
- package/dist/src/api/scientist/alova/createApis.js +7 -1
- package/dist/src/api/scientist/alova/index.js +5 -5
- package/dist/src/assets/body_1.svg.js +108 -0
- package/dist/src/assets/priclose.png.js +4 -0
- package/dist/src/boot/ioc.d.ts +2 -0
- package/dist/src/components/core/TakeImageCollected.vue.js +7 -0
- package/dist/src/components/core/TakeImageCollected.vue2.js +302 -0
- package/dist/src/components/tcm/index.d.ts +12 -4
- package/dist/src/components/tcm/inquirise/ComplaintViewCollected.vue.d.ts +20 -0
- package/dist/src/components/tcm/inquirise/ComplaintViewCollected.vue.js +7 -0
- package/dist/src/components/tcm/inquirise/ComplaintViewCollected.vue2.js +429 -0
- package/dist/src/components/tcm/inquirise/ComplaintsRecognitionCollected.vue.d.ts +18 -0
- package/dist/src/components/tcm/inquirise/ComplaintsRecognitionCollected.vue.js +7 -0
- package/dist/src/components/tcm/inquirise/ComplaintsRecognitionCollected.vue2.js +364 -0
- package/dist/src/components/tcm/inquirise/index.d.ts +3 -1
- package/dist/src/components/tcm/inquirise/symptoms.d.ts +15 -0
- package/dist/src/components/tcm/inquirise/symptoms.js +20 -0
- package/dist/src/components/tcm/inspections/CheckSceneMetaCollected.vue.d.ts +6 -0
- package/dist/src/components/tcm/inspections/CheckSceneMetaCollected.vue.js +7 -0
- package/dist/src/components/tcm/inspections/CheckSceneMetaCollected.vue2.js +22 -0
- package/dist/src/components/tcm/inspections/FaceMetaCollected.vue.d.ts +3 -3
- package/dist/src/components/tcm/inspections/FaceMetaCollected.vue.js +7 -0
- package/dist/src/components/tcm/inspections/FaceMetaCollected.vue2.js +42 -0
- package/dist/src/components/tcm/inspections/InspectionDeviceTakeImageCollected.vue.d.ts +9 -0
- package/dist/src/components/tcm/inspections/InspectionDeviceTakeImageCollected.vue.js +7 -0
- package/dist/src/components/tcm/inspections/InspectionDeviceTakeImageCollected.vue2.js +174 -0
- package/dist/src/components/tcm/inspections/SceneMetaCollected.vue.d.ts +7 -0
- package/dist/src/components/tcm/inspections/SceneMetaCollected.vue.js +7 -0
- package/dist/src/components/tcm/inspections/SceneMetaCollected.vue2.js +28 -0
- package/dist/src/components/tcm/inspections/TongueMetaCollected.vue.js +7 -0
- package/dist/src/components/tcm/inspections/TongueMetaCollected.vue2.js +22 -0
- package/dist/src/components/tcm/inspections/index.d.ts +3 -0
- package/dist/src/components/tcm/lisems/EPPCollected.vue.d.ts +7 -0
- package/dist/src/components/tcm/lisems/EPPCollected.vue.js +7 -0
- package/dist/src/components/tcm/lisems/EPPCollected.vue2.js +761 -0
- package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue.js +835 -0
- package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue2.js +4 -0
- package/dist/src/components/tcm/lisems/index.d.ts +2 -1
- package/dist/src/components/tcm/palpations/OnePulsationCollect.vue.d.ts +2 -0
- package/dist/src/components/tcm/palpations/OnePulsationCollect.vue.js +150 -0
- package/dist/src/components/tcm/palpations/OnePulsationCollect.vue2.js +4 -0
- package/dist/src/components/tcm/palpations/PulsationCollect.vue.d.ts +10 -0
- package/dist/src/components/tcm/palpations/PulsationCollect.vue.js +7 -0
- package/dist/src/components/tcm/palpations/PulsationCollect.vue2.js +238 -0
- package/dist/src/components/tcm/palpations/index.d.ts +2 -1
- package/dist/src/env.d.ts +2 -2
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +58 -36
- package/dist/src/layouts/UserLayout.vue.d.ts +2 -0
- package/dist/src/proto/types/Images_pb.js +6 -7
- package/dist/src/proto/types/WaveMap_pb.js +3 -4
- package/dist/src/util/helper.js +2 -38
- package/dist/src/util/number.js +38 -0
- package/dist/src/util/string.d.ts +1 -0
- package/dist/src/util/string.js +5 -47
- package/dist/web-core-tcm.css +1 -0
- package/package.json +5 -4
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/clone.js +0 -35
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/embed.js +0 -109
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/enum.js +0 -16
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/extension.js +0 -9
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/index.js +0 -28
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/scalar.js +0 -48
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/service.js +0 -8
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/symbols.js +0 -49
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/types.js +0 -1
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/equals.js +0 -127
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/extensions.js +0 -86
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/fields.js +0 -11
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/from-json.js +0 -434
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/index.js +0 -49
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/merge.js +0 -33
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/to-json.js +0 -279
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/types.js +0 -1
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/index.js +0 -24
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/size-delimited.js +0 -123
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/any.js +0 -40
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/duration.js +0 -18
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/any_pb.js +0 -7
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/api_pb.js +0 -11
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/compiler/plugin_pb.js +0 -19
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/cpp_features_pb.js +0 -18
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/duration_pb.js +0 -7
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/empty_pb.js +0 -7
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/field_mask_pb.js +0 -7
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/go_features_pb.js +0 -25
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/java_features_pb.js +0 -26
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/source_context_pb.js +0 -7
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/struct_pb.js +0 -17
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/timestamp_pb.js +0 -7
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/type_pb.js +0 -35
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/wrappers_pb.js +0 -15
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/index.js +0 -180
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/timestamp.js +0 -29
- package/dist/src/api/algorithm/alova/implement/index.js +0 -12
- package/dist/src/api/authorization/alova/globals.js +0 -1
- package/dist/src/api/authorization/alova/implement/index.js +0 -4
- package/dist/src/api/check/alova/globals.js +0 -1
- package/dist/src/api/check/alova/implement/index.js +0 -5
- package/dist/src/api/doctor/alova/globals.js +0 -1
- package/dist/src/api/doctor/alova/implement/index.js +0 -4
- package/dist/src/api/index.js +0 -28
- package/dist/src/api/metric/alova/implement/index.js +0 -4
- package/dist/src/api/metric/alova/index.js +0 -1
- package/dist/src/api/oauth/alova/globals.js +0 -1
- package/dist/src/api/oauth/alova/implement/index.js +0 -4
- package/dist/src/api/outpatient/alova/globals.js +0 -1
- package/dist/src/api/outpatient/alova/implement/index.js +0 -4
- package/dist/src/api/patient/alova/globals.js +0 -1
- package/dist/src/api/patient/alova/implement/index.js +0 -16
- package/dist/src/api/prescription/alova/globals.js +0 -1
- package/dist/src/api/prescription/alova/implement/index.js +0 -6
- package/dist/src/api/scientist/alova/globals.js +0 -1
- package/dist/src/api/scientist/alova/implement/index.js +0 -4
- package/dist/src/proto/index.js +0 -10
- /package/dist/src/components/{core/TestFather.vue.d.ts → tcm/lisems/EcgAndPcgCollect.vue.d.ts} +0 -0
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
import { __extends as re } from "../../../../tslib/tslib.es6.js";
|
|
2
|
+
import { each as Q, isArray as U, retrieve as te, extend as z } from "../../../../zrender/lib/core/util.js";
|
|
3
|
+
import * as Z from "../../util/graphic.js";
|
|
4
|
+
import { toggleHoverEmphasis as ae } from "../../util/states.js";
|
|
5
|
+
import { normalizeSymbolOffset as ne, createSymbol as oe } from "../../util/symbol.js";
|
|
6
|
+
import { parsePercent as L, isNumeric as le } from "../../util/number.js";
|
|
7
|
+
import ce from "../../view/Chart.js";
|
|
8
|
+
import { getDefaultLabel as se } from "../helper/labelHelper.js";
|
|
9
|
+
import { setLabelStyle as ve, getLabelStatesModels as ue } from "../../label/labelStyle.js";
|
|
10
|
+
import pe from "../../../../zrender/lib/graphic/Image.js";
|
|
11
|
+
import { getECData as he } from "../../util/innerStore.js";
|
|
12
|
+
import { createClipPath as de } from "../helper/createClipPathFromCoordSys.js";
|
|
13
|
+
import X from "../../../../zrender/lib/graphic/Group.js";
|
|
14
|
+
import fe from "../../../../zrender/lib/graphic/shape/Circle.js";
|
|
15
|
+
import q from "../../../../zrender/lib/graphic/shape/Rect.js";
|
|
16
|
+
import { updateProps as F, removeElement as me } from "../../animation/basicTransition.js";
|
|
17
|
+
var ge = ["itemStyle", "borderWidth"], V = [{
|
|
18
|
+
xy: "x",
|
|
19
|
+
wh: "width",
|
|
20
|
+
index: 0,
|
|
21
|
+
posDesc: ["left", "right"]
|
|
22
|
+
}, {
|
|
23
|
+
xy: "y",
|
|
24
|
+
wh: "height",
|
|
25
|
+
index: 1,
|
|
26
|
+
posDesc: ["top", "bottom"]
|
|
27
|
+
}], B = new fe(), He = (
|
|
28
|
+
/** @class */
|
|
29
|
+
(function(i) {
|
|
30
|
+
re(r, i);
|
|
31
|
+
function r() {
|
|
32
|
+
var e = i !== null && i.apply(this, arguments) || this;
|
|
33
|
+
return e.type = r.type, e;
|
|
34
|
+
}
|
|
35
|
+
return r.prototype.render = function(e, n, a) {
|
|
36
|
+
var t = this.group, o = e.getData(), d = this._data, f = e.coordinateSystem, m = f.getBaseAxis(), u = m.isHorizontal(), p = f.master.getRect(), l = {
|
|
37
|
+
ecSize: {
|
|
38
|
+
width: a.getWidth(),
|
|
39
|
+
height: a.getHeight()
|
|
40
|
+
},
|
|
41
|
+
seriesModel: e,
|
|
42
|
+
coordSys: f,
|
|
43
|
+
coordSysExtent: [[p.x, p.x + p.width], [p.y, p.y + p.height]],
|
|
44
|
+
isHorizontal: u,
|
|
45
|
+
valueDim: V[+u],
|
|
46
|
+
categoryDim: V[1 - +u]
|
|
47
|
+
};
|
|
48
|
+
o.diff(d).add(function(c) {
|
|
49
|
+
if (o.hasValue(c)) {
|
|
50
|
+
var s = G(o, c), h = W(o, c, s, l), g = H(o, l, h);
|
|
51
|
+
o.setItemGraphicEl(c, g), t.add(g), k(g, l, h);
|
|
52
|
+
}
|
|
53
|
+
}).update(function(c, s) {
|
|
54
|
+
var h = d.getItemGraphicEl(s);
|
|
55
|
+
if (!o.hasValue(c)) {
|
|
56
|
+
t.remove(h);
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
var g = G(o, c), S = W(o, c, g, l), _ = ee(o, S);
|
|
60
|
+
h && _ !== h.__pictorialShapeStr && (t.remove(h), o.setItemGraphicEl(c, null), h = null), h ? Re(h, l, S) : h = H(o, l, S, !0), o.setItemGraphicEl(c, h), h.__pictorialSymbolMeta = S, t.add(h), k(h, l, S);
|
|
61
|
+
}).remove(function(c) {
|
|
62
|
+
var s = d.getItemGraphicEl(c);
|
|
63
|
+
s && b(d, c, s.__pictorialSymbolMeta.animationModel, s);
|
|
64
|
+
}).execute();
|
|
65
|
+
var v = e.get("clip", !0) ? de(e.coordinateSystem, !1, e) : null;
|
|
66
|
+
return v ? t.setClipPath(v) : t.removeClipPath(), this._data = o, this.group;
|
|
67
|
+
}, r.prototype.remove = function(e, n) {
|
|
68
|
+
var a = this.group, t = this._data;
|
|
69
|
+
e.get("animation") ? t && t.eachItemGraphicEl(function(o) {
|
|
70
|
+
b(t, he(o).dataIndex, e, o);
|
|
71
|
+
}) : a.removeAll();
|
|
72
|
+
}, r.type = "pictorialBar", r;
|
|
73
|
+
})(ce)
|
|
74
|
+
);
|
|
75
|
+
function W(i, r, e, n) {
|
|
76
|
+
var a = i.getItemLayout(r), t = e.get("symbolRepeat"), o = e.get("symbolClip"), d = e.get("symbolPosition") || "start", f = e.get("symbolRotate"), m = (f || 0) * Math.PI / 180 || 0, u = e.get("symbolPatternSize") || 2, p = e.isAnimationEnabled(), l = {
|
|
77
|
+
dataIndex: r,
|
|
78
|
+
layout: a,
|
|
79
|
+
itemModel: e,
|
|
80
|
+
symbolType: i.getItemVisual(r, "symbol") || "circle",
|
|
81
|
+
style: i.getItemVisual(r, "style"),
|
|
82
|
+
symbolClip: o,
|
|
83
|
+
symbolRepeat: t,
|
|
84
|
+
symbolRepeatDirection: e.get("symbolRepeatDirection"),
|
|
85
|
+
symbolPatternSize: u,
|
|
86
|
+
rotation: m,
|
|
87
|
+
animationModel: p ? e : null,
|
|
88
|
+
hoverScale: p && e.get(["emphasis", "scale"]),
|
|
89
|
+
z2: e.getShallow("z", !0) || 0
|
|
90
|
+
};
|
|
91
|
+
Se(e, t, a, n, l), _e(i, r, a, t, o, l.boundingLength, l.pxSign, u, n, l), xe(e, l.symbolScale, m, n, l);
|
|
92
|
+
var v = l.symbolSize, c = ne(e.get("symbolOffset"), v);
|
|
93
|
+
return Pe(e, v, a, t, o, c, d, l.valueLineWidth, l.boundingLength, l.repeatCutLength, n, l), l;
|
|
94
|
+
}
|
|
95
|
+
function Se(i, r, e, n, a) {
|
|
96
|
+
var t = n.valueDim, o = i.get("symbolBoundingData"), d = n.coordSys.getOtherAxis(n.coordSys.getBaseAxis()), f = d.toGlobalCoord(d.dataToCoord(0)), m = 1 - +(e[t.wh] <= 0), u;
|
|
97
|
+
if (U(o)) {
|
|
98
|
+
var p = [A(d, o[0]) - f, A(d, o[1]) - f];
|
|
99
|
+
p[1] < p[0] && p.reverse(), u = p[m];
|
|
100
|
+
} else o != null ? u = A(d, o) - f : r ? u = n.coordSysExtent[t.index][m] - f : u = e[t.wh];
|
|
101
|
+
a.boundingLength = u, r && (a.repeatCutLength = e[t.wh]);
|
|
102
|
+
var l = t.xy === "x", v = d.inverse;
|
|
103
|
+
a.pxSign = l && !v || !l && v ? u >= 0 ? 1 : -1 : u > 0 ? 1 : -1;
|
|
104
|
+
}
|
|
105
|
+
function A(i, r) {
|
|
106
|
+
return i.toGlobalCoord(i.dataToCoord(i.scale.parse(r)));
|
|
107
|
+
}
|
|
108
|
+
function _e(i, r, e, n, a, t, o, d, f, m) {
|
|
109
|
+
var u = f.valueDim, p = f.categoryDim, l = Math.abs(e[p.wh]), v = i.getItemVisual(r, "symbolSize"), c;
|
|
110
|
+
U(v) ? c = v.slice() : v == null ? c = ["100%", "100%"] : c = [v, v], c[p.index] = L(c[p.index], l), c[u.index] = L(c[u.index], n ? l : Math.abs(t)), m.symbolSize = c;
|
|
111
|
+
var s = m.symbolScale = [c[0] / d, c[1] / d];
|
|
112
|
+
s[u.index] *= (f.isHorizontal ? -1 : 1) * o;
|
|
113
|
+
}
|
|
114
|
+
function xe(i, r, e, n, a) {
|
|
115
|
+
var t = i.get(ge) || 0;
|
|
116
|
+
t && (B.attr({
|
|
117
|
+
scaleX: r[0],
|
|
118
|
+
scaleY: r[1],
|
|
119
|
+
rotation: e
|
|
120
|
+
}), B.updateTransform(), t /= B.getLineScale(), t *= r[n.valueDim.index]), a.valueLineWidth = t || 0;
|
|
121
|
+
}
|
|
122
|
+
function Pe(i, r, e, n, a, t, o, d, f, m, u, p) {
|
|
123
|
+
var l = u.categoryDim, v = u.valueDim, c = p.pxSign, s = Math.max(r[v.index] + d, 0), h = s;
|
|
124
|
+
if (n) {
|
|
125
|
+
var g = Math.abs(f), S = te(i.get("symbolMargin"), "15%") + "", _ = !1;
|
|
126
|
+
S.lastIndexOf("!") === S.length - 1 && (_ = !0, S = S.slice(0, S.length - 1));
|
|
127
|
+
var x = L(S, r[v.index]), R = Math.max(s + x * 2, 0), w = _ ? 0 : x * 2, Y = le(n), P = Y ? n : j((g + w) / R), ie = g - P * s;
|
|
128
|
+
x = ie / 2 / (_ ? P : Math.max(P - 1, 1)), R = s + x * 2, w = _ ? 0 : x * 2, !Y && n !== "fixed" && (P = m ? j((Math.abs(m) + w) / R) : 0), h = P * R - w, p.repeatTimes = P, p.symbolMargin = x;
|
|
129
|
+
}
|
|
130
|
+
var I = c * (h / 2), D = p.pathPosition = [];
|
|
131
|
+
D[l.index] = e[l.wh] / 2, D[v.index] = o === "start" ? I : o === "end" ? f - I : f / 2, t && (D[0] += t[0], D[1] += t[1]);
|
|
132
|
+
var E = p.bundlePosition = [];
|
|
133
|
+
E[l.index] = e[l.xy], E[v.index] = e[v.xy];
|
|
134
|
+
var O = p.barRectShape = z({}, e);
|
|
135
|
+
O[v.wh] = c * Math.max(Math.abs(e[v.wh]), Math.abs(D[v.index] + I)), O[l.wh] = e[l.wh];
|
|
136
|
+
var C = p.clipShape = {};
|
|
137
|
+
C[l.xy] = -e[l.xy], C[l.wh] = u.ecSize[l.wh], C[v.xy] = 0, C[v.wh] = e[v.wh];
|
|
138
|
+
}
|
|
139
|
+
function J(i) {
|
|
140
|
+
var r = i.symbolPatternSize, e = oe(
|
|
141
|
+
// Consider texture img, make a big size.
|
|
142
|
+
i.symbolType,
|
|
143
|
+
-r / 2,
|
|
144
|
+
-r / 2,
|
|
145
|
+
r,
|
|
146
|
+
r
|
|
147
|
+
);
|
|
148
|
+
return e.attr({
|
|
149
|
+
culling: !0
|
|
150
|
+
}), e.type !== "image" && e.setStyle({
|
|
151
|
+
strokeNoScale: !0
|
|
152
|
+
}), e;
|
|
153
|
+
}
|
|
154
|
+
function K(i, r, e, n) {
|
|
155
|
+
var a = i.__pictorialBundle, t = e.symbolSize, o = e.valueLineWidth, d = e.pathPosition, f = r.valueDim, m = e.repeatTimes || 0, u = 0, p = t[r.valueDim.index] + o + e.symbolMargin * 2;
|
|
156
|
+
for (T(i, function(s) {
|
|
157
|
+
s.__pictorialAnimationIndex = u, s.__pictorialRepeatTimes = m, u < m ? y(s, null, c(u), e, n) : y(s, null, {
|
|
158
|
+
scaleX: 0,
|
|
159
|
+
scaleY: 0
|
|
160
|
+
}, e, n, function() {
|
|
161
|
+
a.remove(s);
|
|
162
|
+
}), u++;
|
|
163
|
+
}); u < m; u++) {
|
|
164
|
+
var l = J(e);
|
|
165
|
+
l.__pictorialAnimationIndex = u, l.__pictorialRepeatTimes = m, a.add(l);
|
|
166
|
+
var v = c(u);
|
|
167
|
+
y(l, {
|
|
168
|
+
x: v.x,
|
|
169
|
+
y: v.y,
|
|
170
|
+
scaleX: 0,
|
|
171
|
+
scaleY: 0
|
|
172
|
+
}, {
|
|
173
|
+
scaleX: v.scaleX,
|
|
174
|
+
scaleY: v.scaleY,
|
|
175
|
+
rotation: v.rotation
|
|
176
|
+
}, e, n);
|
|
177
|
+
}
|
|
178
|
+
function c(s) {
|
|
179
|
+
var h = d.slice(), g = e.pxSign, S = s;
|
|
180
|
+
return (e.symbolRepeatDirection === "start" ? g > 0 : g < 0) && (S = m - 1 - s), h[f.index] = p * (S - m / 2 + 0.5) + d[f.index], {
|
|
181
|
+
x: h[0],
|
|
182
|
+
y: h[1],
|
|
183
|
+
scaleX: e.symbolScale[0],
|
|
184
|
+
scaleY: e.symbolScale[1],
|
|
185
|
+
rotation: e.rotation
|
|
186
|
+
};
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
function $(i, r, e, n) {
|
|
190
|
+
var a = i.__pictorialBundle, t = i.__pictorialMainPath;
|
|
191
|
+
t ? y(t, null, {
|
|
192
|
+
x: e.pathPosition[0],
|
|
193
|
+
y: e.pathPosition[1],
|
|
194
|
+
scaleX: e.symbolScale[0],
|
|
195
|
+
scaleY: e.symbolScale[1],
|
|
196
|
+
rotation: e.rotation
|
|
197
|
+
}, e, n) : (t = i.__pictorialMainPath = J(e), a.add(t), y(t, {
|
|
198
|
+
x: e.pathPosition[0],
|
|
199
|
+
y: e.pathPosition[1],
|
|
200
|
+
scaleX: 0,
|
|
201
|
+
scaleY: 0,
|
|
202
|
+
rotation: e.rotation
|
|
203
|
+
}, {
|
|
204
|
+
scaleX: e.symbolScale[0],
|
|
205
|
+
scaleY: e.symbolScale[1]
|
|
206
|
+
}, e, n));
|
|
207
|
+
}
|
|
208
|
+
function N(i, r, e) {
|
|
209
|
+
var n = z({}, r.barRectShape), a = i.__pictorialBarRect;
|
|
210
|
+
a ? y(a, null, {
|
|
211
|
+
shape: n
|
|
212
|
+
}, r, e) : (a = i.__pictorialBarRect = new q({
|
|
213
|
+
z2: 2,
|
|
214
|
+
shape: n,
|
|
215
|
+
silent: !0,
|
|
216
|
+
style: {
|
|
217
|
+
stroke: "transparent",
|
|
218
|
+
fill: "transparent",
|
|
219
|
+
lineWidth: 0
|
|
220
|
+
}
|
|
221
|
+
}), a.disableMorphing = !0, i.add(a));
|
|
222
|
+
}
|
|
223
|
+
function M(i, r, e, n) {
|
|
224
|
+
if (e.symbolClip) {
|
|
225
|
+
var a = i.__pictorialClipPath, t = z({}, e.clipShape), o = r.valueDim, d = e.animationModel, f = e.dataIndex;
|
|
226
|
+
if (a)
|
|
227
|
+
F(a, {
|
|
228
|
+
shape: t
|
|
229
|
+
}, d, f);
|
|
230
|
+
else {
|
|
231
|
+
t[o.wh] = 0, a = new q({
|
|
232
|
+
shape: t
|
|
233
|
+
}), i.__pictorialBundle.setClipPath(a), i.__pictorialClipPath = a;
|
|
234
|
+
var m = {};
|
|
235
|
+
m[o.wh] = e.clipShape[o.wh], Z[n ? "updateProps" : "initProps"](a, {
|
|
236
|
+
shape: m
|
|
237
|
+
}, d, f);
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
function G(i, r) {
|
|
242
|
+
var e = i.getItemModel(r);
|
|
243
|
+
return e.getAnimationDelayParams = ye, e.isAnimationEnabled = De, e;
|
|
244
|
+
}
|
|
245
|
+
function ye(i) {
|
|
246
|
+
return {
|
|
247
|
+
index: i.__pictorialAnimationIndex,
|
|
248
|
+
count: i.__pictorialRepeatTimes
|
|
249
|
+
};
|
|
250
|
+
}
|
|
251
|
+
function De() {
|
|
252
|
+
return this.parentModel.isAnimationEnabled() && !!this.getShallow("animation");
|
|
253
|
+
}
|
|
254
|
+
function H(i, r, e, n) {
|
|
255
|
+
var a = new X(), t = new X();
|
|
256
|
+
return a.add(t), a.__pictorialBundle = t, t.x = e.bundlePosition[0], t.y = e.bundlePosition[1], e.symbolRepeat ? K(a, r, e) : $(a, r, e), N(a, e, n), M(a, r, e, n), a.__pictorialShapeStr = ee(i, e), a.__pictorialSymbolMeta = e, a;
|
|
257
|
+
}
|
|
258
|
+
function Re(i, r, e) {
|
|
259
|
+
var n = e.animationModel, a = e.dataIndex, t = i.__pictorialBundle;
|
|
260
|
+
F(t, {
|
|
261
|
+
x: e.bundlePosition[0],
|
|
262
|
+
y: e.bundlePosition[1]
|
|
263
|
+
}, n, a), e.symbolRepeat ? K(i, r, e, !0) : $(i, r, e, !0), N(i, e, !0), M(i, r, e, !0);
|
|
264
|
+
}
|
|
265
|
+
function b(i, r, e, n) {
|
|
266
|
+
var a = n.__pictorialBarRect;
|
|
267
|
+
a && a.removeTextContent();
|
|
268
|
+
var t = [];
|
|
269
|
+
T(n, function(o) {
|
|
270
|
+
t.push(o);
|
|
271
|
+
}), n.__pictorialMainPath && t.push(n.__pictorialMainPath), n.__pictorialClipPath && (e = null), Q(t, function(o) {
|
|
272
|
+
me(o, {
|
|
273
|
+
scaleX: 0,
|
|
274
|
+
scaleY: 0
|
|
275
|
+
}, e, r, function() {
|
|
276
|
+
n.parent && n.parent.remove(n);
|
|
277
|
+
});
|
|
278
|
+
}), i.setItemGraphicEl(r, null);
|
|
279
|
+
}
|
|
280
|
+
function ee(i, r) {
|
|
281
|
+
return [i.getItemVisual(r.dataIndex, "symbol") || "none", !!r.symbolRepeat, !!r.symbolClip].join(":");
|
|
282
|
+
}
|
|
283
|
+
function T(i, r, e) {
|
|
284
|
+
Q(i.__pictorialBundle.children(), function(n) {
|
|
285
|
+
n !== i.__pictorialBarRect && r.call(e, n);
|
|
286
|
+
});
|
|
287
|
+
}
|
|
288
|
+
function y(i, r, e, n, a, t) {
|
|
289
|
+
r && i.attr(r), n.symbolClip && !a ? e && i.attr(e) : e && Z[a ? "updateProps" : "initProps"](i, e, n.animationModel, n.dataIndex, t);
|
|
290
|
+
}
|
|
291
|
+
function k(i, r, e) {
|
|
292
|
+
var n = e.dataIndex, a = e.itemModel, t = a.getModel("emphasis"), o = t.getModel("itemStyle").getItemStyle(), d = a.getModel(["blur", "itemStyle"]).getItemStyle(), f = a.getModel(["select", "itemStyle"]).getItemStyle(), m = a.getShallow("cursor"), u = t.get("focus"), p = t.get("blurScope"), l = t.get("scale");
|
|
293
|
+
T(i, function(s) {
|
|
294
|
+
if (s instanceof pe) {
|
|
295
|
+
var h = s.style;
|
|
296
|
+
s.useStyle(z({
|
|
297
|
+
// TODO other properties like dx, dy ?
|
|
298
|
+
image: h.image,
|
|
299
|
+
x: h.x,
|
|
300
|
+
y: h.y,
|
|
301
|
+
width: h.width,
|
|
302
|
+
height: h.height
|
|
303
|
+
}, e.style));
|
|
304
|
+
} else
|
|
305
|
+
s.useStyle(e.style);
|
|
306
|
+
var g = s.ensureState("emphasis");
|
|
307
|
+
g.style = o, l && (g.scaleX = s.scaleX * 1.1, g.scaleY = s.scaleY * 1.1), s.ensureState("blur").style = d, s.ensureState("select").style = f, m && (s.cursor = m), s.z2 = e.z2;
|
|
308
|
+
});
|
|
309
|
+
var v = r.valueDim.posDesc[+(e.boundingLength > 0)], c = i.__pictorialBarRect;
|
|
310
|
+
c.ignoreClip = !0, ve(c, ue(a), {
|
|
311
|
+
labelFetcher: r.seriesModel,
|
|
312
|
+
labelDataIndex: n,
|
|
313
|
+
defaultText: se(r.seriesModel.getData(), n),
|
|
314
|
+
inheritColor: e.style.fill,
|
|
315
|
+
defaultOpacity: e.style.opacity,
|
|
316
|
+
defaultOutsidePosition: v
|
|
317
|
+
}), ae(i, u, p, t.get("disabled"));
|
|
318
|
+
}
|
|
319
|
+
function j(i) {
|
|
320
|
+
var r = Math.round(i);
|
|
321
|
+
return Math.abs(i - r) < 1e-4 ? r : Math.ceil(i);
|
|
322
|
+
}
|
|
323
|
+
export {
|
|
324
|
+
He as default
|
|
325
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { curry as i } from "../../../../zrender/lib/core/util.js";
|
|
2
|
+
import { layout as a, createProgressiveLayout as m } from "../../layout/barGrid.js";
|
|
3
|
+
import I from "../../processor/dataSample.js";
|
|
4
|
+
import p from "./BarSeries.js";
|
|
5
|
+
import c from "./BarView.js";
|
|
6
|
+
function R(o) {
|
|
7
|
+
o.registerChartView(c), o.registerSeriesModel(p), o.registerLayout(o.PRIORITY.VISUAL.LAYOUT, i(a, "bar")), o.registerLayout(o.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT, m("bar")), o.registerProcessor(o.PRIORITY.PROCESSOR.STATISTIC, I("bar")), o.registerAction({
|
|
8
|
+
type: "changeAxisOrder",
|
|
9
|
+
event: "changeAxisOrder",
|
|
10
|
+
update: "update"
|
|
11
|
+
}, function(r, e) {
|
|
12
|
+
var t = r.componentType || "series";
|
|
13
|
+
e.eachComponent({
|
|
14
|
+
mainType: t,
|
|
15
|
+
query: r
|
|
16
|
+
}, function(n) {
|
|
17
|
+
r.sortInfo && n.axis.setCategorySortInfo(r.sortInfo);
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
export {
|
|
22
|
+
R as install
|
|
23
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import o from "./PictorialBarView.js";
|
|
2
|
+
import i from "./PictorialBarSeries.js";
|
|
3
|
+
import { layout as t, createProgressiveLayout as a } from "../../layout/barGrid.js";
|
|
4
|
+
import { curry as e } from "../../../../zrender/lib/core/util.js";
|
|
5
|
+
function I(r) {
|
|
6
|
+
r.registerChartView(o), r.registerSeriesModel(i), r.registerLayout(r.PRIORITY.VISUAL.LAYOUT, e(t, "pictorialBar")), r.registerLayout(r.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT, a("pictorialBar"));
|
|
7
|
+
}
|
|
8
|
+
export {
|
|
9
|
+
I as install
|
|
10
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { __extends as i } from "../../../../tslib/tslib.es6.js";
|
|
2
|
+
import r from "../../model/Series.js";
|
|
3
|
+
import { WhiskerBoxCommonMixin as a } from "../helper/whiskerBoxCommon.js";
|
|
4
|
+
import { mixin as l } from "../../../../zrender/lib/core/util.js";
|
|
5
|
+
var n = (
|
|
6
|
+
/** @class */
|
|
7
|
+
(function(o) {
|
|
8
|
+
i(e, o);
|
|
9
|
+
function e() {
|
|
10
|
+
var t = o !== null && o.apply(this, arguments) || this;
|
|
11
|
+
return t.type = e.type, t.defaultValueDimensions = [{
|
|
12
|
+
name: "min",
|
|
13
|
+
defaultTooltip: !0
|
|
14
|
+
}, {
|
|
15
|
+
name: "Q1",
|
|
16
|
+
defaultTooltip: !0
|
|
17
|
+
}, {
|
|
18
|
+
name: "median",
|
|
19
|
+
defaultTooltip: !0
|
|
20
|
+
}, {
|
|
21
|
+
name: "Q3",
|
|
22
|
+
defaultTooltip: !0
|
|
23
|
+
}, {
|
|
24
|
+
name: "max",
|
|
25
|
+
defaultTooltip: !0
|
|
26
|
+
}], t.visualDrawType = "stroke", t;
|
|
27
|
+
}
|
|
28
|
+
return e.type = "series.boxplot", e.dependencies = ["xAxis", "yAxis", "grid"], e.defaultOption = {
|
|
29
|
+
// zlevel: 0,
|
|
30
|
+
z: 2,
|
|
31
|
+
coordinateSystem: "cartesian2d",
|
|
32
|
+
legendHoverLink: !0,
|
|
33
|
+
layout: null,
|
|
34
|
+
boxWidth: [7, 50],
|
|
35
|
+
itemStyle: {
|
|
36
|
+
color: "#fff",
|
|
37
|
+
borderWidth: 1
|
|
38
|
+
},
|
|
39
|
+
emphasis: {
|
|
40
|
+
scale: !0,
|
|
41
|
+
itemStyle: {
|
|
42
|
+
borderWidth: 2,
|
|
43
|
+
shadowBlur: 5,
|
|
44
|
+
shadowOffsetX: 1,
|
|
45
|
+
shadowOffsetY: 1,
|
|
46
|
+
shadowColor: "rgba(0,0,0,0.2)"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
animationDuration: 800
|
|
50
|
+
}, e;
|
|
51
|
+
})(r)
|
|
52
|
+
);
|
|
53
|
+
l(n, a, !0);
|
|
54
|
+
export {
|
|
55
|
+
n as default
|
|
56
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { __extends as v } from "../../../../tslib/tslib.es6.js";
|
|
2
|
+
import { map as d } from "../../../../zrender/lib/core/util.js";
|
|
3
|
+
import g from "../../view/Chart.js";
|
|
4
|
+
import * as y from "../../util/graphic.js";
|
|
5
|
+
import { setStatesStylesFromModel as B, toggleHoverEmphasis as P } from "../../util/states.js";
|
|
6
|
+
import M from "../../../../zrender/lib/graphic/Path.js";
|
|
7
|
+
import { saveOldStyle as S } from "../../animation/basicTransition.js";
|
|
8
|
+
var k = (
|
|
9
|
+
/** @class */
|
|
10
|
+
(function(i) {
|
|
11
|
+
v(e, i);
|
|
12
|
+
function e() {
|
|
13
|
+
var o = i !== null && i.apply(this, arguments) || this;
|
|
14
|
+
return o.type = e.type, o;
|
|
15
|
+
}
|
|
16
|
+
return e.prototype.render = function(o, r, a) {
|
|
17
|
+
var t = o.getData(), s = this.group, p = this._data;
|
|
18
|
+
this._data || s.removeAll();
|
|
19
|
+
var u = o.get("layout") === "horizontal" ? 1 : 0;
|
|
20
|
+
t.diff(p).add(function(n) {
|
|
21
|
+
if (t.hasValue(n)) {
|
|
22
|
+
var h = t.getItemLayout(n), l = f(h, t, n, u, !0);
|
|
23
|
+
t.setItemGraphicEl(n, l), s.add(l);
|
|
24
|
+
}
|
|
25
|
+
}).update(function(n, h) {
|
|
26
|
+
var l = p.getItemGraphicEl(h);
|
|
27
|
+
if (!t.hasValue(n)) {
|
|
28
|
+
s.remove(l);
|
|
29
|
+
return;
|
|
30
|
+
}
|
|
31
|
+
var m = t.getItemLayout(n);
|
|
32
|
+
l ? (S(l), c(m, l, t, n)) : l = f(m, t, n, u), s.add(l), t.setItemGraphicEl(n, l);
|
|
33
|
+
}).remove(function(n) {
|
|
34
|
+
var h = p.getItemGraphicEl(n);
|
|
35
|
+
h && s.remove(h);
|
|
36
|
+
}).execute(), this._data = t;
|
|
37
|
+
}, e.prototype.remove = function(o) {
|
|
38
|
+
var r = this.group, a = this._data;
|
|
39
|
+
this._data = null, a && a.eachItemGraphicEl(function(t) {
|
|
40
|
+
t && r.remove(t);
|
|
41
|
+
});
|
|
42
|
+
}, e.type = "boxplot", e;
|
|
43
|
+
})(g)
|
|
44
|
+
), E = (
|
|
45
|
+
/** @class */
|
|
46
|
+
/* @__PURE__ */ (function() {
|
|
47
|
+
function i() {
|
|
48
|
+
}
|
|
49
|
+
return i;
|
|
50
|
+
})()
|
|
51
|
+
), V = (
|
|
52
|
+
/** @class */
|
|
53
|
+
(function(i) {
|
|
54
|
+
v(e, i);
|
|
55
|
+
function e(o) {
|
|
56
|
+
var r = i.call(this, o) || this;
|
|
57
|
+
return r.type = "boxplotBoxPath", r;
|
|
58
|
+
}
|
|
59
|
+
return e.prototype.getDefaultShape = function() {
|
|
60
|
+
return new E();
|
|
61
|
+
}, e.prototype.buildPath = function(o, r) {
|
|
62
|
+
var a = r.points, t = 0;
|
|
63
|
+
for (o.moveTo(a[t][0], a[t][1]), t++; t < 4; t++)
|
|
64
|
+
o.lineTo(a[t][0], a[t][1]);
|
|
65
|
+
for (o.closePath(); t < a.length; t++)
|
|
66
|
+
o.moveTo(a[t][0], a[t][1]), t++, o.lineTo(a[t][0], a[t][1]);
|
|
67
|
+
}, e;
|
|
68
|
+
})(M)
|
|
69
|
+
);
|
|
70
|
+
function f(i, e, o, r, a) {
|
|
71
|
+
var t = i.ends, s = new V({
|
|
72
|
+
shape: {
|
|
73
|
+
points: a ? _(t, r, i) : t
|
|
74
|
+
}
|
|
75
|
+
});
|
|
76
|
+
return c(i, s, e, o, a), s;
|
|
77
|
+
}
|
|
78
|
+
function c(i, e, o, r, a) {
|
|
79
|
+
var t = o.hostModel, s = y[a ? "initProps" : "updateProps"];
|
|
80
|
+
s(e, {
|
|
81
|
+
shape: {
|
|
82
|
+
points: i.ends
|
|
83
|
+
}
|
|
84
|
+
}, t, r), e.useStyle(o.getItemVisual(r, "style")), e.style.strokeNoScale = !0, e.z2 = 100;
|
|
85
|
+
var p = o.getItemModel(r), u = p.getModel("emphasis");
|
|
86
|
+
B(e, p), P(e, u.get("focus"), u.get("blurScope"), u.get("disabled"));
|
|
87
|
+
}
|
|
88
|
+
function _(i, e, o) {
|
|
89
|
+
return d(i, function(r) {
|
|
90
|
+
return r = r.slice(), r[e] = o.initBaseline, r;
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
export {
|
|
94
|
+
k as default
|
|
95
|
+
};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { each as P, indexOf as D, isArray as T } from "../../../../zrender/lib/core/util.js";
|
|
2
|
+
import { parsePercent as E } from "../../util/number.js";
|
|
3
|
+
var N = P;
|
|
4
|
+
function k(a) {
|
|
5
|
+
var v = z(a);
|
|
6
|
+
N(v, function(r) {
|
|
7
|
+
var n = r.seriesModels;
|
|
8
|
+
n.length && (G(r), N(n, function(t, i) {
|
|
9
|
+
R(t, r.boxOffsetList[i], r.boxWidthList[i]);
|
|
10
|
+
}));
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
function z(a) {
|
|
14
|
+
var v = [], r = [];
|
|
15
|
+
return a.eachSeriesByType("boxplot", function(n) {
|
|
16
|
+
var t = n.getBaseAxis(), i = D(r, t);
|
|
17
|
+
i < 0 && (i = r.length, r[i] = t, v[i] = {
|
|
18
|
+
axis: t,
|
|
19
|
+
seriesModels: []
|
|
20
|
+
}), v[i].seriesModels.push(n);
|
|
21
|
+
}), v;
|
|
22
|
+
}
|
|
23
|
+
function G(a) {
|
|
24
|
+
var v = a.axis, r = a.seriesModels, n = r.length, t = a.boxWidthList = [], i = a.boxOffsetList = [], s = [], f;
|
|
25
|
+
if (v.type === "category")
|
|
26
|
+
f = v.getBandWidth();
|
|
27
|
+
else {
|
|
28
|
+
var L = 0;
|
|
29
|
+
N(r, function(l) {
|
|
30
|
+
L = Math.max(L, l.getData().count());
|
|
31
|
+
});
|
|
32
|
+
var W = v.getExtent();
|
|
33
|
+
f = Math.abs(W[1] - W[0]) / L;
|
|
34
|
+
}
|
|
35
|
+
N(r, function(l) {
|
|
36
|
+
var e = l.get("boxWidth");
|
|
37
|
+
T(e) || (e = [e, e]), s.push([E(e[0], f) || 0, E(e[1], f) || 0]);
|
|
38
|
+
});
|
|
39
|
+
var u = f * 0.8 - 2, o = u / n * 0.3, c = (u - o * (n - 1)) / n, B = c / 2 - u / 2;
|
|
40
|
+
N(r, function(l, e) {
|
|
41
|
+
i.push(B), B += o + c, t.push(Math.min(Math.max(c, s[e][0]), s[e][1]));
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
function R(a, v, r) {
|
|
45
|
+
var n = a.coordinateSystem, t = a.getData(), i = r / 2, s = a.get("layout") === "horizontal" ? 0 : 1, f = 1 - s, L = ["x", "y"], W = t.mapDimension(L[s]), u = t.mapDimensionsAll(L[f]);
|
|
46
|
+
if (W == null || u.length < 5)
|
|
47
|
+
return;
|
|
48
|
+
for (var o = 0; o < t.count(); o++) {
|
|
49
|
+
var c = t.get(W, o), B = M(c, u[2], o), l = M(c, u[0], o), e = M(c, u[1], o), m = M(c, u[3], o), O = M(c, u[4], o), b = [];
|
|
50
|
+
d(b, e, !1), d(b, m, !0), b.push(l, e, O, m), S(b, l), S(b, O), S(b, B), t.setItemLayout(o, {
|
|
51
|
+
initBaseline: B[f],
|
|
52
|
+
ends: b
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
function M(p, y, x) {
|
|
56
|
+
var h = t.get(y, x), g = [];
|
|
57
|
+
g[s] = p, g[f] = h;
|
|
58
|
+
var A;
|
|
59
|
+
return isNaN(p) || isNaN(h) ? A = [NaN, NaN] : (A = n.dataToPoint(g), A[s] += v), A;
|
|
60
|
+
}
|
|
61
|
+
function d(p, y, x) {
|
|
62
|
+
var h = y.slice(), g = y.slice();
|
|
63
|
+
h[s] += i, g[s] -= i, x ? p.push(h, g) : p.push(g, h);
|
|
64
|
+
}
|
|
65
|
+
function S(p, y) {
|
|
66
|
+
var x = y.slice(), h = y.slice();
|
|
67
|
+
x[s] -= i, h[s] += i, p.push(x, h);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
export {
|
|
71
|
+
k as default
|
|
72
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import e from "./prepareBoxplotData.js";
|
|
2
|
+
import { throwError as m } from "../../util/log.js";
|
|
3
|
+
import { SOURCE_FORMAT_ARRAY_ROWS as p } from "../../util/types.js";
|
|
4
|
+
var u = {
|
|
5
|
+
type: "echarts:boxplot",
|
|
6
|
+
transform: function(r) {
|
|
7
|
+
var o = r.upstream;
|
|
8
|
+
if (o.sourceFormat !== p) {
|
|
9
|
+
var a = "";
|
|
10
|
+
m(a);
|
|
11
|
+
}
|
|
12
|
+
var t = e(o.getRawData(), r.config);
|
|
13
|
+
return [{
|
|
14
|
+
dimensions: ["ItemName", "Low", "Q1", "Q2", "Q3", "High"],
|
|
15
|
+
data: t.boxData
|
|
16
|
+
}, {
|
|
17
|
+
data: t.outliers
|
|
18
|
+
}];
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
export {
|
|
22
|
+
u as boxplotTransform
|
|
23
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import r from "./BoxplotSeries.js";
|
|
2
|
+
import t from "./BoxplotView.js";
|
|
3
|
+
import e from "./boxplotLayout.js";
|
|
4
|
+
import { boxplotTransform as i } from "./boxplotTransform.js";
|
|
5
|
+
function a(o) {
|
|
6
|
+
o.registerSeriesModel(r), o.registerChartView(t), o.registerLayout(e), o.registerTransform(i);
|
|
7
|
+
}
|
|
8
|
+
export {
|
|
9
|
+
a as install
|
|
10
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { asc as k, quantile as p } from "../../util/number.js";
|
|
2
|
+
import { isFunction as y, isString as z } from "../../../../zrender/lib/core/util.js";
|
|
3
|
+
function G(h, a) {
|
|
4
|
+
a = a || {};
|
|
5
|
+
for (var x = [], b = [], n = a.boundIQR, g = n === "none" || n === 0, v = 0; v < h.length; v++) {
|
|
6
|
+
var r = k(h[v].slice()), l = p(r, 0.25), S = p(r, 0.5), o = p(r, 0.75), D = r[0], M = r[r.length - 1], R = (n ?? 1.5) * (o - l), q = g ? D : Math.max(D, l - R), B = g ? M : Math.min(M, o + R), u = a.itemNameFormatter, E = y(u) ? u({
|
|
7
|
+
value: v
|
|
8
|
+
}) : z(u) ? u.replace("{value}", v + "") : v + "";
|
|
9
|
+
x.push([E, q, l, S, o, B]);
|
|
10
|
+
for (var e = 0; e < r.length; e++) {
|
|
11
|
+
var f = r[e];
|
|
12
|
+
if (f < q || f > B) {
|
|
13
|
+
var d = [E, f];
|
|
14
|
+
b.push(d);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
return {
|
|
19
|
+
boxData: x,
|
|
20
|
+
outliers: b
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
export {
|
|
24
|
+
G as default
|
|
25
|
+
};
|