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,199 @@
|
|
|
1
|
+
import { parsePercent as y } from "../../util/number.js";
|
|
2
|
+
import "../../util/graphic.js";
|
|
3
|
+
import { each as H, isNumber as he } from "../../../../zrender/lib/core/util.js";
|
|
4
|
+
import { limitTurnAngle as be, limitSurfaceAngle as ce } from "../../label/labelGuideHelper.js";
|
|
5
|
+
import { shiftLayoutOnY as de } from "../../label/labelLayoutHelper.js";
|
|
6
|
+
import ie from "../../../../zrender/lib/core/Point.js";
|
|
7
|
+
var ue = Math.PI / 180;
|
|
8
|
+
function ve(a, l, u, g, o, M, h, T, x, m) {
|
|
9
|
+
if (a.length < 2)
|
|
10
|
+
return;
|
|
11
|
+
function A(n) {
|
|
12
|
+
for (var t = n.rB, b = t * t, c = 0; c < n.list.length; c++) {
|
|
13
|
+
var s = n.list[c], S = Math.abs(s.label.y - u), d = g + s.len, p = d * d, D = Math.sqrt(Math.abs((1 - S * S / b) * p)), i = l + (D + s.len2) * o, f = i - s.label.x, B = s.targetTextWidth - f * o;
|
|
14
|
+
ge(s, B, !0), s.label.x = i;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
function N(n) {
|
|
18
|
+
for (var t = {
|
|
19
|
+
list: [],
|
|
20
|
+
maxY: 0
|
|
21
|
+
}, b = {
|
|
22
|
+
list: [],
|
|
23
|
+
maxY: 0
|
|
24
|
+
}, c = 0; c < n.length; c++)
|
|
25
|
+
if (n[c].labelAlignTo === "none") {
|
|
26
|
+
var s = n[c], S = s.label.y > u ? b : t, d = Math.abs(s.label.y - u);
|
|
27
|
+
if (d >= S.maxY) {
|
|
28
|
+
var p = s.label.x - l - s.len2 * o, D = g + s.len, i = Math.abs(p) < D ? Math.sqrt(d * d / (1 - p * p / D / D)) : D;
|
|
29
|
+
S.rB = i, S.maxY = d;
|
|
30
|
+
}
|
|
31
|
+
S.list.push(s);
|
|
32
|
+
}
|
|
33
|
+
A(t), A(b);
|
|
34
|
+
}
|
|
35
|
+
for (var v = a.length, r = 0; r < v; r++)
|
|
36
|
+
if (a[r].position === "outer" && a[r].labelAlignTo === "labelLine") {
|
|
37
|
+
var e = a[r].label.x - m;
|
|
38
|
+
a[r].linePoints[1][0] += e, a[r].label.x = m;
|
|
39
|
+
}
|
|
40
|
+
de(a, x, x + h) && N(a);
|
|
41
|
+
}
|
|
42
|
+
function pe(a, l, u, g, o, M, h, T) {
|
|
43
|
+
for (var x = [], m = [], A = Number.MAX_VALUE, N = -Number.MAX_VALUE, v = 0; v < a.length; v++) {
|
|
44
|
+
var r = a[v].label;
|
|
45
|
+
W(a[v]) || (r.x < l ? (A = Math.min(A, r.x), x.push(a[v])) : (N = Math.max(N, r.x), m.push(a[v])));
|
|
46
|
+
}
|
|
47
|
+
for (var v = 0; v < a.length; v++) {
|
|
48
|
+
var e = a[v];
|
|
49
|
+
if (!W(e) && e.linePoints) {
|
|
50
|
+
if (e.labelStyleWidth != null)
|
|
51
|
+
continue;
|
|
52
|
+
var r = e.label, n = e.linePoints, t = void 0;
|
|
53
|
+
e.labelAlignTo === "edge" ? r.x < l ? t = n[2][0] - e.labelDistance - h - e.edgeDistance : t = h + o - e.edgeDistance - n[2][0] - e.labelDistance : e.labelAlignTo === "labelLine" ? r.x < l ? t = A - h - e.bleedMargin : t = h + o - N - e.bleedMargin : r.x < l ? t = r.x - h - e.bleedMargin : t = h + o - r.x - e.bleedMargin, e.targetTextWidth = t, ge(e, t);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
ve(m, l, u, g, 1, o, M, h, T, N), ve(x, l, u, g, -1, o, M, h, T, A);
|
|
57
|
+
for (var v = 0; v < a.length; v++) {
|
|
58
|
+
var e = a[v];
|
|
59
|
+
if (!W(e) && e.linePoints) {
|
|
60
|
+
var r = e.label, n = e.linePoints, b = e.labelAlignTo === "edge", c = r.style.padding, s = c ? c[1] + c[3] : 0, S = r.style.backgroundColor ? 0 : s, d = e.rect.width + S, p = n[1][0] - n[2][0];
|
|
61
|
+
b ? r.x < l ? n[2][0] = h + e.edgeDistance + d + e.labelDistance : n[2][0] = h + o - e.edgeDistance - d - e.labelDistance : (r.x < l ? n[2][0] = r.x + e.labelDistance : n[2][0] = r.x - e.labelDistance, n[1][0] = n[2][0] + p), n[1][1] = n[2][1] = r.y;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
function ge(a, l, u) {
|
|
66
|
+
if (u === void 0 && (u = !1), a.labelStyleWidth == null) {
|
|
67
|
+
var g = a.label, o = g.style, M = a.rect, h = o.backgroundColor, T = o.padding, x = T ? T[1] + T[3] : 0, m = o.overflow, A = M.width + (h ? 0 : x);
|
|
68
|
+
if (l < A || u) {
|
|
69
|
+
var N = M.height;
|
|
70
|
+
if (m && m.match("break")) {
|
|
71
|
+
g.setStyle("backgroundColor", null), g.setStyle("width", l - x);
|
|
72
|
+
var v = g.getBoundingRect();
|
|
73
|
+
g.setStyle("width", Math.ceil(v.width)), g.setStyle("backgroundColor", h);
|
|
74
|
+
} else {
|
|
75
|
+
var r = l - x, e = l < A ? r : (
|
|
76
|
+
// Current available width is enough, but the text may have
|
|
77
|
+
// already been wrapped with a smaller available width.
|
|
78
|
+
u ? r > a.unconstrainedWidth ? null : r : null
|
|
79
|
+
);
|
|
80
|
+
g.setStyle("width", e);
|
|
81
|
+
}
|
|
82
|
+
var n = g.getBoundingRect();
|
|
83
|
+
M.width = n.width;
|
|
84
|
+
var t = (g.style.margin || 0) + 2.1;
|
|
85
|
+
M.height = n.height + t, M.y -= (M.height - N) / 2;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
function W(a) {
|
|
90
|
+
return a.position === "center";
|
|
91
|
+
}
|
|
92
|
+
function Te(a) {
|
|
93
|
+
var l = a.getData(), u = [], g, o, M = !1, h = (a.get("minShowLabelAngle") || 0) * ue, T = l.getLayout("viewRect"), x = l.getLayout("r"), m = T.width, A = T.x, N = T.y, v = T.height;
|
|
94
|
+
function r(p) {
|
|
95
|
+
p.ignore = !0;
|
|
96
|
+
}
|
|
97
|
+
function e(p) {
|
|
98
|
+
if (!p.ignore)
|
|
99
|
+
return !0;
|
|
100
|
+
for (var D in p.states)
|
|
101
|
+
if (p.states[D].ignore === !1)
|
|
102
|
+
return !0;
|
|
103
|
+
return !1;
|
|
104
|
+
}
|
|
105
|
+
l.each(function(p) {
|
|
106
|
+
var D = l.getItemGraphicEl(p), i = D.shape, f = D.getTextContent(), B = D.getTextGuideLine(), z = l.getItemModel(p), O = z.getModel("label"), P = O.get("position") || z.get(["emphasis", "label", "position"]), F = O.get("distanceToLabelLine"), J = O.get("alignTo"), K = y(O.get("edgeDistance"), m), se = O.get("bleedMargin"), q = z.getModel("labelLine"), L = q.get("length");
|
|
107
|
+
L = y(L, m);
|
|
108
|
+
var R = q.get("length2");
|
|
109
|
+
if (R = y(R, m), Math.abs(i.endAngle - i.startAngle) < h) {
|
|
110
|
+
H(f.states, r), f.ignore = !0, B && (H(B.states, r), B.ignore = !0);
|
|
111
|
+
return;
|
|
112
|
+
}
|
|
113
|
+
if (e(f)) {
|
|
114
|
+
var U = (i.startAngle + i.endAngle) / 2, C = Math.cos(U), w = Math.sin(U), X, V, ee, j;
|
|
115
|
+
g = i.cx, o = i.cy;
|
|
116
|
+
var Y = P === "inside" || P === "inner";
|
|
117
|
+
if (P === "center")
|
|
118
|
+
X = i.cx, V = i.cy, j = "center";
|
|
119
|
+
else {
|
|
120
|
+
var Q = (Y ? (i.r + i.r0) / 2 * C : i.r * C) + g, Z = (Y ? (i.r + i.r0) / 2 * w : i.r * w) + o;
|
|
121
|
+
if (X = Q + C * 3, V = Z + w * 3, !Y) {
|
|
122
|
+
var re = Q + C * (L + x - i.r), ae = Z + w * (L + x - i.r), ne = re + (C < 0 ? -1 : 1) * R, te = ae;
|
|
123
|
+
J === "edge" ? X = C < 0 ? A + K : A + m - K : X = ne + (C < 0 ? -F : F), V = te, ee = [[Q, Z], [re, ae], [ne, te]];
|
|
124
|
+
}
|
|
125
|
+
j = Y ? "center" : J === "edge" ? C > 0 ? "right" : "left" : C > 0 ? "left" : "right";
|
|
126
|
+
}
|
|
127
|
+
var E = Math.PI, k = 0, _ = O.get("rotate");
|
|
128
|
+
if (he(_))
|
|
129
|
+
k = _ * (E / 180);
|
|
130
|
+
else if (P === "center")
|
|
131
|
+
k = 0;
|
|
132
|
+
else if (_ === "radial" || _ === !0) {
|
|
133
|
+
var oe = C < 0 ? -U + E : -U;
|
|
134
|
+
k = oe;
|
|
135
|
+
} else if (_ === "tangential" && P !== "outside" && P !== "outer") {
|
|
136
|
+
var I = Math.atan2(C, w);
|
|
137
|
+
I < 0 && (I = E * 2 + I);
|
|
138
|
+
var fe = w > 0;
|
|
139
|
+
fe && (I = E + I), k = I - E;
|
|
140
|
+
}
|
|
141
|
+
if (M = !!k, f.x = X, f.y = V, f.rotation = k, f.setStyle({
|
|
142
|
+
verticalAlign: "middle"
|
|
143
|
+
}), Y) {
|
|
144
|
+
f.setStyle({
|
|
145
|
+
align: j
|
|
146
|
+
});
|
|
147
|
+
var $ = f.states.select;
|
|
148
|
+
$ && ($.x += f.x, $.y += f.y);
|
|
149
|
+
} else {
|
|
150
|
+
var G = f.getBoundingRect().clone();
|
|
151
|
+
G.applyTransform(f.getComputedTransform());
|
|
152
|
+
var le = (f.style.margin || 0) + 2.1;
|
|
153
|
+
G.y -= le / 2, G.height += le, u.push({
|
|
154
|
+
label: f,
|
|
155
|
+
labelLine: B,
|
|
156
|
+
position: P,
|
|
157
|
+
len: L,
|
|
158
|
+
len2: R,
|
|
159
|
+
minTurnAngle: q.get("minTurnAngle"),
|
|
160
|
+
maxSurfaceAngle: q.get("maxSurfaceAngle"),
|
|
161
|
+
surfaceNormal: new ie(C, w),
|
|
162
|
+
linePoints: ee,
|
|
163
|
+
textAlign: j,
|
|
164
|
+
labelDistance: F,
|
|
165
|
+
labelAlignTo: J,
|
|
166
|
+
edgeDistance: K,
|
|
167
|
+
bleedMargin: se,
|
|
168
|
+
rect: G,
|
|
169
|
+
unconstrainedWidth: G.width,
|
|
170
|
+
labelStyleWidth: f.style.width
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
D.setTextConfig({
|
|
174
|
+
inside: Y
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
}), !M && a.get("avoidLabelOverlap") && pe(u, g, o, x, m, v, A, N);
|
|
178
|
+
for (var n = 0; n < u.length; n++) {
|
|
179
|
+
var t = u[n], b = t.label, c = t.labelLine, s = isNaN(b.x) || isNaN(b.y);
|
|
180
|
+
if (b) {
|
|
181
|
+
b.setStyle({
|
|
182
|
+
align: t.textAlign
|
|
183
|
+
}), s && (H(b.states, r), b.ignore = !0);
|
|
184
|
+
var S = b.states.select;
|
|
185
|
+
S && (S.x += b.x, S.y += b.y);
|
|
186
|
+
}
|
|
187
|
+
if (c) {
|
|
188
|
+
var d = t.linePoints;
|
|
189
|
+
s || !d ? (H(c.states, r), c.ignore = !0) : (be(d, t.minTurnAngle), ce(d, t.surfaceNormal, t.maxSurfaceAngle), c.setShape({
|
|
190
|
+
points: d
|
|
191
|
+
}), b.__hostTarget.textGuideLineConfig = {
|
|
192
|
+
anchor: new ie(d[0][0], d[0][1])
|
|
193
|
+
});
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
export {
|
|
198
|
+
Te as default
|
|
199
|
+
};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { linearMap as K, parsePercent as L } from "../../util/number.js";
|
|
2
|
+
import { getLayoutRect as O } from "../../util/layout.js";
|
|
3
|
+
import { isArray as j } from "../../../../zrender/lib/core/util.js";
|
|
4
|
+
import { normalizeArcAngles as Q } from "../../../../zrender/lib/core/PathProxy.js";
|
|
5
|
+
import { makeInner as U } from "../../util/model.js";
|
|
6
|
+
var q = Math.PI * 2, B = Math.PI / 180;
|
|
7
|
+
function F(h, s) {
|
|
8
|
+
return O(h.getBoxLayoutParams(), {
|
|
9
|
+
width: s.getWidth(),
|
|
10
|
+
height: s.getHeight()
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
function X(h, s) {
|
|
14
|
+
var u = F(h, s), a = h.get("center"), r = h.get("radius");
|
|
15
|
+
j(r) || (r = [0, r]);
|
|
16
|
+
var c = L(u.width, s.getWidth()), R = L(u.height, s.getHeight()), y = Math.min(c, R), x = L(r[0], y / 2), k = L(r[1], y / 2), A, N, t = h.coordinateSystem;
|
|
17
|
+
if (t) {
|
|
18
|
+
var g = t.dataToPoint(a);
|
|
19
|
+
A = g[0] || 0, N = g[1] || 0;
|
|
20
|
+
} else
|
|
21
|
+
j(a) || (a = [a, a]), A = L(a[0], c) + u.x, N = L(a[1], R) + u.y;
|
|
22
|
+
return {
|
|
23
|
+
cx: A,
|
|
24
|
+
cy: N,
|
|
25
|
+
r0: x,
|
|
26
|
+
r: k
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function ra(h, s, u) {
|
|
30
|
+
s.eachSeriesByType(h, function(a) {
|
|
31
|
+
var r = a.getData(), c = r.mapDimension("value"), R = F(a, u), y = X(a, u), x = y.cx, k = y.cy, A = y.r, N = y.r0, t = -a.get("startAngle") * B, g = a.get("endAngle"), p = a.get("padAngle") * B;
|
|
32
|
+
g = g === "auto" ? t - q : -g * B;
|
|
33
|
+
var G = a.get("minAngle") * B, I = G + p, P = 0;
|
|
34
|
+
r.each(c, function(v) {
|
|
35
|
+
!isNaN(v) && P++;
|
|
36
|
+
});
|
|
37
|
+
var b = r.getSum(c), S = Math.PI / (b || P) * 2, d = a.get("clockwise"), z = a.get("roseType"), J = a.get("stillShowZeroSum"), C = r.getDataExtent(c);
|
|
38
|
+
C[0] = 0;
|
|
39
|
+
var o = d ? 1 : -1, H = [t, g], l = o * p / 2;
|
|
40
|
+
Q(H, !d), t = H[0], g = H[1];
|
|
41
|
+
var W = Y(a);
|
|
42
|
+
W.startAngle = t, W.endAngle = g, W.clockwise = d;
|
|
43
|
+
var Z = Math.abs(g - t), T = Z, V = 0, m = t;
|
|
44
|
+
if (r.setLayout({
|
|
45
|
+
viewRect: R,
|
|
46
|
+
r: A
|
|
47
|
+
}), r.each(c, function(v, f) {
|
|
48
|
+
var e;
|
|
49
|
+
if (isNaN(v)) {
|
|
50
|
+
r.setItemLayout(f, {
|
|
51
|
+
angle: NaN,
|
|
52
|
+
startAngle: NaN,
|
|
53
|
+
endAngle: NaN,
|
|
54
|
+
clockwise: d,
|
|
55
|
+
cx: x,
|
|
56
|
+
cy: k,
|
|
57
|
+
r0: N,
|
|
58
|
+
r: z ? NaN : A
|
|
59
|
+
});
|
|
60
|
+
return;
|
|
61
|
+
}
|
|
62
|
+
z !== "area" ? e = b === 0 && J ? S : v * S : e = Z / P, e < I ? (e = I, T -= I) : V += v;
|
|
63
|
+
var i = m + o * e, n = 0, w = 0;
|
|
64
|
+
p > e ? (n = m + o * e / 2, w = n) : (n = m + l, w = i - l), r.setItemLayout(f, {
|
|
65
|
+
angle: e,
|
|
66
|
+
startAngle: n,
|
|
67
|
+
endAngle: w,
|
|
68
|
+
clockwise: d,
|
|
69
|
+
cx: x,
|
|
70
|
+
cy: k,
|
|
71
|
+
r0: N,
|
|
72
|
+
r: z ? K(v, C, [N, A]) : A
|
|
73
|
+
}), m = i;
|
|
74
|
+
}), T < q && P)
|
|
75
|
+
if (T <= 1e-3) {
|
|
76
|
+
var D = Z / P;
|
|
77
|
+
r.each(c, function(v, f) {
|
|
78
|
+
if (!isNaN(v)) {
|
|
79
|
+
var e = r.getItemLayout(f);
|
|
80
|
+
e.angle = D;
|
|
81
|
+
var i = 0, n = 0;
|
|
82
|
+
D < p ? (i = t + o * (f + 1 / 2) * D, n = i) : (i = t + o * f * D + l, n = t + o * (f + 1) * D - l), e.startAngle = i, e.endAngle = n;
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
} else
|
|
86
|
+
S = T / V, m = t, r.each(c, function(v, f) {
|
|
87
|
+
if (!isNaN(v)) {
|
|
88
|
+
var e = r.getItemLayout(f), i = e.angle === I ? I : v * S, n = 0, w = 0;
|
|
89
|
+
i < p ? (n = m + o * i / 2, w = n) : (n = m + l, w = m + o * i - l), e.startAngle = n, e.endAngle = w, m += o * i;
|
|
90
|
+
}
|
|
91
|
+
});
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
var Y = U();
|
|
95
|
+
export {
|
|
96
|
+
ra as default,
|
|
97
|
+
X as getBasicPieLayout,
|
|
98
|
+
Y as getSeriesLayoutData
|
|
99
|
+
};
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { __extends as h } from "../../../../tslib/tslib.es6.js";
|
|
2
|
+
import g from "../../model/Series.js";
|
|
3
|
+
import v from "../helper/createSeriesDataSimply.js";
|
|
4
|
+
import { bind as u, map as c } from "../../../../zrender/lib/core/util.js";
|
|
5
|
+
import S from "../../visual/LegendVisualProvider.js";
|
|
6
|
+
import { retrieveVisualColorForTooltipMarker as D, createTooltipMarkup as y } from "../../component/tooltip/tooltipMarkup.js";
|
|
7
|
+
var P = (
|
|
8
|
+
/** @class */
|
|
9
|
+
(function(i) {
|
|
10
|
+
h(e, i);
|
|
11
|
+
function e() {
|
|
12
|
+
var t = i !== null && i.apply(this, arguments) || this;
|
|
13
|
+
return t.type = e.type, t.hasSymbolVisual = !0, t;
|
|
14
|
+
}
|
|
15
|
+
return e.prototype.init = function(t) {
|
|
16
|
+
i.prototype.init.apply(this, arguments), this.legendVisualProvider = new S(u(this.getData, this), u(this.getRawData, this));
|
|
17
|
+
}, e.prototype.getInitialData = function(t, a) {
|
|
18
|
+
return v(this, {
|
|
19
|
+
generateCoord: "indicator_",
|
|
20
|
+
generateCoordCount: 1 / 0
|
|
21
|
+
});
|
|
22
|
+
}, e.prototype.formatTooltip = function(t, a, n) {
|
|
23
|
+
var o = this.getData(), r = this.coordinateSystem, l = r.getIndicatorAxes(), s = this.getData().getName(t), m = s === "" ? this.name : s, f = D(this, t);
|
|
24
|
+
return y("section", {
|
|
25
|
+
header: m,
|
|
26
|
+
sortBlocks: !0,
|
|
27
|
+
blocks: c(l, function(p) {
|
|
28
|
+
var d = o.get(o.mapDimension(p.dim), t);
|
|
29
|
+
return y("nameValue", {
|
|
30
|
+
markerType: "subItem",
|
|
31
|
+
markerColor: f,
|
|
32
|
+
name: p.name,
|
|
33
|
+
value: d,
|
|
34
|
+
sortParam: d
|
|
35
|
+
});
|
|
36
|
+
})
|
|
37
|
+
});
|
|
38
|
+
}, e.prototype.getTooltipPosition = function(t) {
|
|
39
|
+
if (t != null) {
|
|
40
|
+
for (var a = this.getData(), n = this.coordinateSystem, o = a.getValues(c(n.dimensions, function(m) {
|
|
41
|
+
return a.mapDimension(m);
|
|
42
|
+
}), t), r = 0, l = o.length; r < l; r++)
|
|
43
|
+
if (!isNaN(o[r])) {
|
|
44
|
+
var s = n.getIndicatorAxes();
|
|
45
|
+
return n.coordToPoint(s[r].dataToCoord(o[r]), r);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}, e.type = "series.radar", e.dependencies = ["radar"], e.defaultOption = {
|
|
49
|
+
// zlevel: 0,
|
|
50
|
+
z: 2,
|
|
51
|
+
colorBy: "data",
|
|
52
|
+
coordinateSystem: "radar",
|
|
53
|
+
legendHoverLink: !0,
|
|
54
|
+
radarIndex: 0,
|
|
55
|
+
lineStyle: {
|
|
56
|
+
width: 2,
|
|
57
|
+
type: "solid",
|
|
58
|
+
join: "round"
|
|
59
|
+
},
|
|
60
|
+
label: {
|
|
61
|
+
position: "top"
|
|
62
|
+
},
|
|
63
|
+
// areaStyle: {
|
|
64
|
+
// },
|
|
65
|
+
// itemStyle: {}
|
|
66
|
+
symbolSize: 8
|
|
67
|
+
// symbolRotate: null
|
|
68
|
+
}, e;
|
|
69
|
+
})(g)
|
|
70
|
+
);
|
|
71
|
+
export {
|
|
72
|
+
P as default
|
|
73
|
+
};
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { __extends as w } from "../../../../tslib/tslib.es6.js";
|
|
2
|
+
import * as x from "../../util/graphic.js";
|
|
3
|
+
import { setStatesStylesFromModel as A, toggleHoverEmphasis as C } from "../../util/states.js";
|
|
4
|
+
import { defaults as b, each as k, extend as N, clone as T, map as F } from "../../../../zrender/lib/core/util.js";
|
|
5
|
+
import { normalizeSymbolSize as H, createSymbol as O } from "../../util/symbol.js";
|
|
6
|
+
import X from "../../view/Chart.js";
|
|
7
|
+
import { setLabelStyle as Y, getLabelStatesModels as Z } from "../../label/labelStyle.js";
|
|
8
|
+
import $ from "../../../../zrender/lib/graphic/Image.js";
|
|
9
|
+
import { initProps as V, saveOldStyle as G, updateProps as z } from "../../animation/basicTransition.js";
|
|
10
|
+
import j from "../../../../zrender/lib/graphic/shape/Polygon.js";
|
|
11
|
+
import q from "../../../../zrender/lib/graphic/shape/Polyline.js";
|
|
12
|
+
import D from "../../../../zrender/lib/graphic/Group.js";
|
|
13
|
+
var ie = (
|
|
14
|
+
/** @class */
|
|
15
|
+
(function(y) {
|
|
16
|
+
w(c, y);
|
|
17
|
+
function c() {
|
|
18
|
+
var m = y !== null && y.apply(this, arguments) || this;
|
|
19
|
+
return m.type = c.type, m;
|
|
20
|
+
}
|
|
21
|
+
return c.prototype.render = function(m, B, J) {
|
|
22
|
+
var S = m.coordinateSystem, I = this.group, i = m.getData(), f = this._data;
|
|
23
|
+
function L(e, t) {
|
|
24
|
+
var r = e.getItemVisual(t, "symbol") || "circle";
|
|
25
|
+
if (r !== "none") {
|
|
26
|
+
var o = H(e.getItemVisual(t, "symbolSize")), l = O(r, -1, -1, 2, 2), p = e.getItemVisual(t, "symbolRotate") || 0;
|
|
27
|
+
return l.attr({
|
|
28
|
+
style: {
|
|
29
|
+
strokeNoScale: !0
|
|
30
|
+
},
|
|
31
|
+
z2: 100,
|
|
32
|
+
scaleX: o[0] / 2,
|
|
33
|
+
scaleY: o[1] / 2,
|
|
34
|
+
rotation: p * Math.PI / 180 || 0
|
|
35
|
+
}), l;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
function E(e, t, r, o, l, p) {
|
|
39
|
+
r.removeAll();
|
|
40
|
+
for (var a = 0; a < t.length - 1; a++) {
|
|
41
|
+
var s = L(o, l);
|
|
42
|
+
s && (s.__dimIdx = a, e[a] ? (s.setPosition(e[a]), x[p ? "initProps" : "updateProps"](s, {
|
|
43
|
+
x: t[a][0],
|
|
44
|
+
y: t[a][1]
|
|
45
|
+
}, m, l)) : s.setPosition(t[a]), r.add(s));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
function M(e) {
|
|
49
|
+
return F(e, function(t) {
|
|
50
|
+
return [S.cx, S.cy];
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
i.diff(f).add(function(e) {
|
|
54
|
+
var t = i.getItemLayout(e);
|
|
55
|
+
if (t) {
|
|
56
|
+
var r = new j(), o = new q(), l = {
|
|
57
|
+
shape: {
|
|
58
|
+
points: t
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
r.shape.points = M(t), o.shape.points = M(t), V(r, l, m, e), V(o, l, m, e);
|
|
62
|
+
var p = new D(), a = new D();
|
|
63
|
+
p.add(o), p.add(r), p.add(a), E(o.shape.points, t, a, i, e, !0), i.setItemGraphicEl(e, p);
|
|
64
|
+
}
|
|
65
|
+
}).update(function(e, t) {
|
|
66
|
+
var r = f.getItemGraphicEl(t), o = r.childAt(0), l = r.childAt(1), p = r.childAt(2), a = {
|
|
67
|
+
shape: {
|
|
68
|
+
points: i.getItemLayout(e)
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
a.shape.points && (E(o.shape.points, a.shape.points, p, i, e, !1), G(l), G(o), z(o, a, m), z(l, a, m), i.setItemGraphicEl(e, r));
|
|
72
|
+
}).remove(function(e) {
|
|
73
|
+
I.remove(f.getItemGraphicEl(e));
|
|
74
|
+
}).execute(), i.eachItemGraphicEl(function(e, t) {
|
|
75
|
+
var r = i.getItemModel(t), o = e.childAt(0), l = e.childAt(1), p = e.childAt(2), a = i.getItemVisual(t, "style"), s = a.fill;
|
|
76
|
+
I.add(e), o.useStyle(b(r.getModel("lineStyle").getLineStyle(), {
|
|
77
|
+
fill: "none",
|
|
78
|
+
stroke: s
|
|
79
|
+
})), A(o, r, "lineStyle"), A(l, r, "areaStyle");
|
|
80
|
+
var v = r.getModel("areaStyle"), _ = v.isEmpty() && v.parentModel.isEmpty();
|
|
81
|
+
l.ignore = _, k(["emphasis", "select", "blur"], function(n) {
|
|
82
|
+
var u = r.getModel([n, "areaStyle"]), h = u.isEmpty() && u.parentModel.isEmpty();
|
|
83
|
+
l.ensureState(n).ignore = h && _;
|
|
84
|
+
}), l.useStyle(b(v.getAreaStyle(), {
|
|
85
|
+
fill: s,
|
|
86
|
+
opacity: 0.7,
|
|
87
|
+
decal: a.decal
|
|
88
|
+
}));
|
|
89
|
+
var d = r.getModel("emphasis"), R = d.getModel("itemStyle").getItemStyle();
|
|
90
|
+
p.eachChild(function(n) {
|
|
91
|
+
if (n instanceof $) {
|
|
92
|
+
var u = n.style;
|
|
93
|
+
n.useStyle(N({
|
|
94
|
+
// TODO other properties like x, y ?
|
|
95
|
+
image: u.image,
|
|
96
|
+
x: u.x,
|
|
97
|
+
y: u.y,
|
|
98
|
+
width: u.width,
|
|
99
|
+
height: u.height
|
|
100
|
+
}, a));
|
|
101
|
+
} else
|
|
102
|
+
n.useStyle(a), n.setColor(s), n.style.strokeNoScale = !0;
|
|
103
|
+
var h = n.ensureState("emphasis");
|
|
104
|
+
h.style = T(R);
|
|
105
|
+
var g = i.getStore().get(i.getDimensionIndex(n.__dimIdx), t);
|
|
106
|
+
(g == null || isNaN(g)) && (g = ""), Y(n, Z(r), {
|
|
107
|
+
labelFetcher: i.hostModel,
|
|
108
|
+
labelDataIndex: t,
|
|
109
|
+
labelDimIndex: n.__dimIdx,
|
|
110
|
+
defaultText: g,
|
|
111
|
+
inheritColor: s,
|
|
112
|
+
defaultOpacity: a.opacity
|
|
113
|
+
});
|
|
114
|
+
}), C(e, d.get("focus"), d.get("blurScope"), d.get("disabled"));
|
|
115
|
+
}), this._data = i;
|
|
116
|
+
}, c.prototype.remove = function() {
|
|
117
|
+
this.group.removeAll(), this._data = null;
|
|
118
|
+
}, c.type = "radar", c;
|
|
119
|
+
})(X)
|
|
120
|
+
);
|
|
121
|
+
export {
|
|
122
|
+
ie as default
|
|
123
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { isArray as e, each as c } from "../../../../zrender/lib/core/util.js";
|
|
2
|
+
function x(r) {
|
|
3
|
+
var d = r.polar;
|
|
4
|
+
if (d) {
|
|
5
|
+
e(d) || (d = [d]);
|
|
6
|
+
var f = [];
|
|
7
|
+
c(d, function(a, u) {
|
|
8
|
+
a.indicator ? (a.type && !a.shape && (a.shape = a.type), r.radar = r.radar || [], e(r.radar) || (r.radar = [r.radar]), r.radar.push(a)) : f.push(a);
|
|
9
|
+
}), r.polar = f;
|
|
10
|
+
}
|
|
11
|
+
c(r.series, function(a) {
|
|
12
|
+
a && a.type === "radar" && a.polarIndex && (a.radarIndex = a.polarIndex);
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
export {
|
|
16
|
+
x as default
|
|
17
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { use as o } from "../../extension.js";
|
|
2
|
+
import a from "./radarLayout.js";
|
|
3
|
+
import t from "../../processor/dataFilter.js";
|
|
4
|
+
import i from "./backwardCompat.js";
|
|
5
|
+
import e from "./RadarView.js";
|
|
6
|
+
import m from "./RadarSeries.js";
|
|
7
|
+
import { install as p } from "../../component/radar/install.js";
|
|
8
|
+
function w(r) {
|
|
9
|
+
o(p), r.registerChartView(e), r.registerSeriesModel(m), r.registerLayout(a), r.registerProcessor(t("radar")), r.registerPreprocessor(i);
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
w as install
|
|
13
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { each as v, find as y } from "../../../../zrender/lib/core/util.js";
|
|
2
|
+
function g(t) {
|
|
3
|
+
t.eachSeriesByType("radar", function(u) {
|
|
4
|
+
var o = u.getData(), a = [], n = u.coordinateSystem;
|
|
5
|
+
if (n) {
|
|
6
|
+
var f = n.getIndicatorAxes();
|
|
7
|
+
v(f, function(i, r) {
|
|
8
|
+
o.each(o.mapDimension(f[r].dim), function(e, c) {
|
|
9
|
+
a[c] = a[c] || [];
|
|
10
|
+
var s = n.dataToPoint(e, r);
|
|
11
|
+
a[c][r] = m(s) ? s : p(n);
|
|
12
|
+
});
|
|
13
|
+
}), o.each(function(i) {
|
|
14
|
+
var r = y(a[i], function(e) {
|
|
15
|
+
return m(e);
|
|
16
|
+
}) || p(n);
|
|
17
|
+
a[i].push(r.slice()), o.setItemLayout(i, a[i]);
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
function m(t) {
|
|
23
|
+
return !isNaN(t[0]) && !isNaN(t[1]);
|
|
24
|
+
}
|
|
25
|
+
function p(t) {
|
|
26
|
+
return [t.cx, t.cy];
|
|
27
|
+
}
|
|
28
|
+
export {
|
|
29
|
+
g as default
|
|
30
|
+
};
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { __extends as D } from "../../../../tslib/tslib.es6.js";
|
|
2
|
+
import b from "../../model/Series.js";
|
|
3
|
+
import k from "../helper/createGraphFromNodeEdge.js";
|
|
4
|
+
import G from "../../model/Model.js";
|
|
5
|
+
import { createTooltipMarkup as S } from "../../component/tooltip/tooltipMarkup.js";
|
|
6
|
+
var E = (
|
|
7
|
+
/** @class */
|
|
8
|
+
(function(u) {
|
|
9
|
+
D(t, u);
|
|
10
|
+
function t() {
|
|
11
|
+
var e = u !== null && u.apply(this, arguments) || this;
|
|
12
|
+
return e.type = t.type, e;
|
|
13
|
+
}
|
|
14
|
+
return t.prototype.getInitialData = function(e, i) {
|
|
15
|
+
var a = e.edges || e.links || [], n = e.data || e.nodes || [], r = e.levels || [];
|
|
16
|
+
this.levelModels = [];
|
|
17
|
+
for (var p = this.levelModels, l = 0; l < r.length; l++)
|
|
18
|
+
r[l].depth != null && r[l].depth >= 0 && (p[r[l].depth] = new G(r[l], this, i));
|
|
19
|
+
var y = k(n, a, this, !0, m);
|
|
20
|
+
return y.data;
|
|
21
|
+
function m(d, v) {
|
|
22
|
+
d.wrapMethod("getItemModel", function(o, c) {
|
|
23
|
+
var s = o.parentModel, g = s.getData().getItemLayout(c);
|
|
24
|
+
if (g) {
|
|
25
|
+
var h = g.depth, f = s.levelModels[h];
|
|
26
|
+
f && (o.parentModel = f);
|
|
27
|
+
}
|
|
28
|
+
return o;
|
|
29
|
+
}), v.wrapMethod("getItemModel", function(o, c) {
|
|
30
|
+
var s = o.parentModel, g = s.getGraph().getEdgeByIndex(c), h = g.node1.getLayout();
|
|
31
|
+
if (h) {
|
|
32
|
+
var f = h.depth, M = s.levelModels[f];
|
|
33
|
+
M && (o.parentModel = M);
|
|
34
|
+
}
|
|
35
|
+
return o;
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
}, t.prototype.setNodePosition = function(e, i) {
|
|
39
|
+
var a = this.option.data || this.option.nodes, n = a[e];
|
|
40
|
+
n.localX = i[0], n.localY = i[1];
|
|
41
|
+
}, t.prototype.getGraph = function() {
|
|
42
|
+
return this.getData().graph;
|
|
43
|
+
}, t.prototype.getEdgeData = function() {
|
|
44
|
+
return this.getGraph().edgeData;
|
|
45
|
+
}, t.prototype.formatTooltip = function(e, i, a) {
|
|
46
|
+
function n(o) {
|
|
47
|
+
return isNaN(o) || o == null;
|
|
48
|
+
}
|
|
49
|
+
if (a === "edge") {
|
|
50
|
+
var r = this.getDataParams(e, a), p = r.data, l = r.value, y = p.source + " -- " + p.target;
|
|
51
|
+
return S("nameValue", {
|
|
52
|
+
name: y,
|
|
53
|
+
value: l,
|
|
54
|
+
noValue: n(l)
|
|
55
|
+
});
|
|
56
|
+
} else {
|
|
57
|
+
var m = this.getGraph().getNodeByIndex(e), d = m.getLayout().value, v = this.getDataParams(e, a).data.name;
|
|
58
|
+
return S("nameValue", {
|
|
59
|
+
name: v != null ? v + "" : null,
|
|
60
|
+
value: d,
|
|
61
|
+
noValue: n(d)
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
}, t.prototype.optionUpdated = function() {
|
|
65
|
+
}, t.prototype.getDataParams = function(e, i) {
|
|
66
|
+
var a = u.prototype.getDataParams.call(this, e, i);
|
|
67
|
+
if (a.value == null && i === "node") {
|
|
68
|
+
var n = this.getGraph().getNodeByIndex(e), r = n.getLayout().value;
|
|
69
|
+
a.value = r;
|
|
70
|
+
}
|
|
71
|
+
return a;
|
|
72
|
+
}, t.type = "series.sankey", t.defaultOption = {
|
|
73
|
+
// zlevel: 0,
|
|
74
|
+
z: 2,
|
|
75
|
+
coordinateSystem: "view",
|
|
76
|
+
left: "5%",
|
|
77
|
+
top: "5%",
|
|
78
|
+
right: "20%",
|
|
79
|
+
bottom: "5%",
|
|
80
|
+
orient: "horizontal",
|
|
81
|
+
nodeWidth: 20,
|
|
82
|
+
nodeGap: 8,
|
|
83
|
+
draggable: !0,
|
|
84
|
+
layoutIterations: 32,
|
|
85
|
+
label: {
|
|
86
|
+
show: !0,
|
|
87
|
+
position: "right",
|
|
88
|
+
fontSize: 12
|
|
89
|
+
},
|
|
90
|
+
edgeLabel: {
|
|
91
|
+
show: !1,
|
|
92
|
+
fontSize: 12
|
|
93
|
+
},
|
|
94
|
+
levels: [],
|
|
95
|
+
nodeAlign: "justify",
|
|
96
|
+
lineStyle: {
|
|
97
|
+
color: "#314656",
|
|
98
|
+
opacity: 0.2,
|
|
99
|
+
curveness: 0.5
|
|
100
|
+
},
|
|
101
|
+
emphasis: {
|
|
102
|
+
label: {
|
|
103
|
+
show: !0
|
|
104
|
+
},
|
|
105
|
+
lineStyle: {
|
|
106
|
+
opacity: 0.5
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
select: {
|
|
110
|
+
itemStyle: {
|
|
111
|
+
borderColor: "#212121"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
animationEasing: "linear",
|
|
115
|
+
animationDuration: 1e3
|
|
116
|
+
}, t;
|
|
117
|
+
})(b)
|
|
118
|
+
);
|
|
119
|
+
export {
|
|
120
|
+
E as default
|
|
121
|
+
};
|