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
|
@@ -1,34 +1,22 @@
|
|
|
1
|
-
function
|
|
2
|
-
let n, e
|
|
3
|
-
|
|
4
|
-
const
|
|
1
|
+
function f(r, o, l) {
|
|
2
|
+
let u, n, e;
|
|
3
|
+
r instanceof Function ? (u = r, n = o, e = l) : (n = r, e = o);
|
|
4
|
+
const t = n ? Object.assign({}, n) : {}, c = new Proxy(
|
|
5
5
|
{},
|
|
6
6
|
{
|
|
7
|
-
get(
|
|
8
|
-
if (
|
|
9
|
-
if (
|
|
10
|
-
const
|
|
11
|
-
return () => Object.assign(
|
|
7
|
+
get(b, s) {
|
|
8
|
+
if (s === "build")
|
|
9
|
+
if (e && Object.assign(t, e), u) {
|
|
10
|
+
const i = new u();
|
|
11
|
+
return () => Object.assign(i, { ...t });
|
|
12
12
|
} else
|
|
13
|
-
return () =>
|
|
14
|
-
return (...
|
|
13
|
+
return () => t;
|
|
14
|
+
return (...i) => i.length === 0 ? t[s.toString()] : (t[s.toString()] = i[0], c);
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
);
|
|
18
|
-
return
|
|
19
|
-
}
|
|
20
|
-
function f() {
|
|
21
|
-
const t = {}, i = new Proxy(
|
|
22
|
-
{},
|
|
23
|
-
{
|
|
24
|
-
get(o, n) {
|
|
25
|
-
return n === "build" ? () => t : (...e) => e.length === 0 ? t[n.toString()] : (t[n.toString()] = e[0], i);
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
);
|
|
29
|
-
return i;
|
|
18
|
+
return c;
|
|
30
19
|
}
|
|
31
20
|
export {
|
|
32
|
-
|
|
33
|
-
f as StrictBuilder
|
|
21
|
+
f as Builder
|
|
34
22
|
};
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { use as l } from "./lib/extension.js";
|
|
2
|
+
import { install as i } from "./lib/renderer/installCanvasRenderer.js";
|
|
3
|
+
import { install as t } from "./lib/renderer/installSVGRenderer.js";
|
|
4
|
+
import { install as a } from "./lib/chart/line/install.js";
|
|
5
|
+
import { install as s } from "./lib/chart/bar/install.js";
|
|
6
|
+
import { install as o } from "./lib/chart/pie/install.js";
|
|
7
|
+
import { install as r } from "./lib/chart/scatter/install.js";
|
|
8
|
+
import { install as m } from "./lib/chart/radar/install.js";
|
|
9
|
+
import { install as n } from "./lib/chart/map/install.js";
|
|
10
|
+
import { install as p } from "./lib/chart/tree/install.js";
|
|
11
|
+
import { install as f } from "./lib/chart/treemap/install.js";
|
|
12
|
+
import { install as $ } from "./lib/chart/graph/install.js";
|
|
13
|
+
import { install as e } from "./lib/chart/gauge/install.js";
|
|
14
|
+
import { install as u } from "./lib/chart/funnel/install.js";
|
|
15
|
+
import { install as L } from "./lib/chart/parallel/install.js";
|
|
16
|
+
import { install as b } from "./lib/chart/sankey/install.js";
|
|
17
|
+
import { install as v } from "./lib/chart/boxplot/install.js";
|
|
18
|
+
import { install as x } from "./lib/chart/candlestick/install.js";
|
|
19
|
+
import { install as y } from "./lib/chart/effectScatter/install.js";
|
|
20
|
+
import { install as c } from "./lib/chart/lines/install.js";
|
|
21
|
+
import { install as d } from "./lib/chart/heatmap/install.js";
|
|
22
|
+
import { install as g } from "./lib/chart/bar/installPictorialBar.js";
|
|
23
|
+
import { install as h } from "./lib/chart/themeRiver/install.js";
|
|
24
|
+
import { install as j } from "./lib/chart/sunburst/install.js";
|
|
25
|
+
import { install as k } from "./lib/chart/custom/install.js";
|
|
26
|
+
import { install as q } from "./lib/component/grid/install.js";
|
|
27
|
+
import { install as w } from "./lib/component/polar/install.js";
|
|
28
|
+
import { install as z } from "./lib/component/geo/install.js";
|
|
29
|
+
import { install as A } from "./lib/component/singleAxis/install.js";
|
|
30
|
+
import { install as B } from "./lib/component/parallel/install.js";
|
|
31
|
+
import { install as C } from "./lib/component/calendar/install.js";
|
|
32
|
+
import { install as D } from "./lib/component/graphic/install.js";
|
|
33
|
+
import { install as E } from "./lib/component/toolbox/install.js";
|
|
34
|
+
import { install as F } from "./lib/component/tooltip/install.js";
|
|
35
|
+
import { install as G } from "./lib/component/axisPointer/install.js";
|
|
36
|
+
import { install as H } from "./lib/component/brush/install.js";
|
|
37
|
+
import { install as I } from "./lib/component/title/install.js";
|
|
38
|
+
import { install as J } from "./lib/component/timeline/install.js";
|
|
39
|
+
import { install as K } from "./lib/component/marker/installMarkPoint.js";
|
|
40
|
+
import { install as M } from "./lib/component/marker/installMarkLine.js";
|
|
41
|
+
import { install as N } from "./lib/component/marker/installMarkArea.js";
|
|
42
|
+
import { install as T } from "./lib/component/legend/install.js";
|
|
43
|
+
import { install as U } from "./lib/component/dataZoom/install.js";
|
|
44
|
+
import { install as O } from "./lib/component/dataZoom/installDataZoomInside.js";
|
|
45
|
+
import { install as P } from "./lib/component/dataZoom/installDataZoomSlider.js";
|
|
46
|
+
import { install as Q } from "./lib/component/visualMap/install.js";
|
|
47
|
+
import { install as R } from "./lib/component/visualMap/installVisualMapContinuous.js";
|
|
48
|
+
import { install as S } from "./lib/component/visualMap/installVisualMapPiecewise.js";
|
|
49
|
+
import { install as V } from "./lib/component/aria/install.js";
|
|
50
|
+
import { install as W } from "./lib/component/transform/install.js";
|
|
51
|
+
import { install as X } from "./lib/component/dataset/install.js";
|
|
52
|
+
import { installUniversalTransition as Y } from "./lib/animation/universalTransition.js";
|
|
53
|
+
import { installLabelLayout as Z } from "./lib/label/installLabelLayout.js";
|
|
54
|
+
l([i]);
|
|
55
|
+
l([t]);
|
|
56
|
+
l([a, s, o, r, m, n, p, f, $, e, u, L, b, v, x, y, c, d, g, h, j, k]);
|
|
57
|
+
l(q);
|
|
58
|
+
l(w);
|
|
59
|
+
l(z);
|
|
60
|
+
l(A);
|
|
61
|
+
l(B);
|
|
62
|
+
l(C);
|
|
63
|
+
l(D);
|
|
64
|
+
l(E);
|
|
65
|
+
l(F);
|
|
66
|
+
l(G);
|
|
67
|
+
l(H);
|
|
68
|
+
l(I);
|
|
69
|
+
l(J);
|
|
70
|
+
l(K);
|
|
71
|
+
l(M);
|
|
72
|
+
l(N);
|
|
73
|
+
l(T);
|
|
74
|
+
l(U);
|
|
75
|
+
l(O);
|
|
76
|
+
l(P);
|
|
77
|
+
l(Q);
|
|
78
|
+
l(R);
|
|
79
|
+
l(S);
|
|
80
|
+
l(V);
|
|
81
|
+
l(W);
|
|
82
|
+
l(X);
|
|
83
|
+
l(Y);
|
|
84
|
+
l(Z);
|
|
85
|
+
export {
|
|
86
|
+
l as use
|
|
87
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
function a(t, n) {
|
|
2
|
+
return t.pointToProjected ? t.pointToProjected(n) : t.pointToData(n);
|
|
3
|
+
}
|
|
4
|
+
function x(t, n, e, u) {
|
|
5
|
+
var c = t.getZoom(), m = t.getCenter(), o = n.zoom, r = t.projectedToPoint ? t.projectedToPoint(m) : t.dataToPoint(m);
|
|
6
|
+
if (n.dx != null && n.dy != null && (r[0] -= n.dx, r[1] -= n.dy, t.setCenter(a(t, r), u)), o != null) {
|
|
7
|
+
if (e) {
|
|
8
|
+
var d = e.min || 0, f = e.max || 1 / 0;
|
|
9
|
+
o = Math.max(Math.min(c * o, f), d) / c;
|
|
10
|
+
}
|
|
11
|
+
t.scaleX *= o, t.scaleY *= o;
|
|
12
|
+
var g = (n.originX - t.x) * (o - 1), s = (n.originY - t.y) * (o - 1);
|
|
13
|
+
t.x -= g, t.y -= s, t.updateTransform(), t.setCenter(a(t, r), u), t.setZoom(o * c);
|
|
14
|
+
}
|
|
15
|
+
return {
|
|
16
|
+
center: t.getCenter(),
|
|
17
|
+
zoom: t.getZoom()
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
export {
|
|
21
|
+
x as updateCenterAndZoom
|
|
22
|
+
};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { isFunction as c, isObject as O, retrieve2 as y } from "../../../zrender/lib/core/util.js";
|
|
2
|
+
import { makeInner as A } from "../util/model.js";
|
|
3
|
+
var D = A();
|
|
4
|
+
function F(i, n, o, e, t) {
|
|
5
|
+
var r;
|
|
6
|
+
if (n && n.ecModel) {
|
|
7
|
+
var u = n.ecModel.getUpdatePayload();
|
|
8
|
+
r = u && u.animation;
|
|
9
|
+
}
|
|
10
|
+
var m = n && n.isAnimationEnabled(), s = i === "update";
|
|
11
|
+
if (m) {
|
|
12
|
+
var v = void 0, a = void 0, f = void 0;
|
|
13
|
+
e ? (v = y(e.duration, 200), a = y(e.easing, "cubicOut"), f = 0) : (v = n.getShallow(s ? "animationDurationUpdate" : "animationDuration"), a = n.getShallow(s ? "animationEasingUpdate" : "animationEasing"), f = n.getShallow(s ? "animationDelayUpdate" : "animationDelay")), r && (r.duration != null && (v = r.duration), r.easing != null && (a = r.easing), r.delay != null && (f = r.delay)), c(f) && (f = f(o, t)), c(v) && (v = v(o));
|
|
14
|
+
var l = {
|
|
15
|
+
duration: v || 0,
|
|
16
|
+
delay: f,
|
|
17
|
+
easing: a
|
|
18
|
+
};
|
|
19
|
+
return l;
|
|
20
|
+
} else
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
function p(i, n, o, e, t, r, u) {
|
|
24
|
+
var m = !1, s;
|
|
25
|
+
c(t) ? (u = r, r = t, t = null) : O(t) && (r = t.cb, u = t.during, m = t.isFrom, s = t.removeOpt, t = t.dataIndex);
|
|
26
|
+
var v = i === "leave";
|
|
27
|
+
v || n.stopAnimation("leave");
|
|
28
|
+
var a = F(i, e, t, v ? s || {} : null, e && e.getAnimationDelayParams ? e.getAnimationDelayParams(n, t) : null);
|
|
29
|
+
if (a && a.duration > 0) {
|
|
30
|
+
var f = a.duration, l = a.delay, E = a.easing, g = {
|
|
31
|
+
duration: f,
|
|
32
|
+
delay: l || 0,
|
|
33
|
+
easing: E,
|
|
34
|
+
done: r,
|
|
35
|
+
force: !!r || !!u,
|
|
36
|
+
// Set to final state in update/init animation.
|
|
37
|
+
// So the post processing based on the path shape can be done correctly.
|
|
38
|
+
setToFinal: !v,
|
|
39
|
+
scope: i,
|
|
40
|
+
during: u
|
|
41
|
+
};
|
|
42
|
+
m ? n.animateFrom(o, g) : n.animateTo(o, g);
|
|
43
|
+
} else
|
|
44
|
+
n.stopAnimation(), !m && n.attr(o), u && u(1), r && r();
|
|
45
|
+
}
|
|
46
|
+
function G(i, n, o, e, t, r) {
|
|
47
|
+
p("update", i, n, o, e, t, r);
|
|
48
|
+
}
|
|
49
|
+
function R(i, n, o, e, t, r) {
|
|
50
|
+
p("enter", i, n, o, e, t, r);
|
|
51
|
+
}
|
|
52
|
+
function P(i) {
|
|
53
|
+
if (!i.__zr)
|
|
54
|
+
return !0;
|
|
55
|
+
for (var n = 0; n < i.animators.length; n++) {
|
|
56
|
+
var o = i.animators[n];
|
|
57
|
+
if (o.scope === "leave")
|
|
58
|
+
return !0;
|
|
59
|
+
}
|
|
60
|
+
return !1;
|
|
61
|
+
}
|
|
62
|
+
function h(i, n, o, e, t, r) {
|
|
63
|
+
P(i) || p("leave", i, n, o, e, t, r);
|
|
64
|
+
}
|
|
65
|
+
function S(i, n, o, e) {
|
|
66
|
+
i.removeTextContent(), i.removeTextGuideLine(), h(i, {
|
|
67
|
+
style: {
|
|
68
|
+
opacity: 0
|
|
69
|
+
}
|
|
70
|
+
}, n, o, e);
|
|
71
|
+
}
|
|
72
|
+
function C(i, n, o) {
|
|
73
|
+
function e() {
|
|
74
|
+
i.parent && i.parent.remove(i);
|
|
75
|
+
}
|
|
76
|
+
i.isGroup ? i.traverse(function(t) {
|
|
77
|
+
t.isGroup || S(t, n, o, e);
|
|
78
|
+
}) : S(i, n, o, e);
|
|
79
|
+
}
|
|
80
|
+
function T(i) {
|
|
81
|
+
D(i).oldStyle = i.style;
|
|
82
|
+
}
|
|
83
|
+
function _(i) {
|
|
84
|
+
return D(i).oldStyle;
|
|
85
|
+
}
|
|
86
|
+
export {
|
|
87
|
+
F as getAnimationConfig,
|
|
88
|
+
_ as getOldStyle,
|
|
89
|
+
R as initProps,
|
|
90
|
+
P as isElementRemoved,
|
|
91
|
+
h as removeElement,
|
|
92
|
+
C as removeElementWithFadeOut,
|
|
93
|
+
T as saveOldStyle,
|
|
94
|
+
D as transitionStore,
|
|
95
|
+
G as updateProps
|
|
96
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { isArray as T, each as a, keys as R, filter as k, indexOf as m } from "../../../zrender/lib/core/util.js";
|
|
2
|
+
import { ELEMENT_ANIMATABLE_PROPS as _ } from "./customGraphicTransition.js";
|
|
3
|
+
import { getAnimationConfig as x } from "./basicTransition.js";
|
|
4
|
+
import { makeInner as L } from "../util/model.js";
|
|
5
|
+
var h = L(), S = ["percent", "easing", "shape", "style", "extra"];
|
|
6
|
+
function D(n) {
|
|
7
|
+
n.stopAnimation("keyframe"), n.attr(h(n));
|
|
8
|
+
}
|
|
9
|
+
function C(n, e, c) {
|
|
10
|
+
if (!(!c.isAnimationEnabled() || !e)) {
|
|
11
|
+
if (T(e)) {
|
|
12
|
+
a(e, function(r) {
|
|
13
|
+
C(n, r, c);
|
|
14
|
+
});
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
var A = e.keyframes, o = e.duration;
|
|
18
|
+
if (c && o == null) {
|
|
19
|
+
var d = x("enter", c, 0);
|
|
20
|
+
o = d && d.duration;
|
|
21
|
+
}
|
|
22
|
+
if (!(!A || !o)) {
|
|
23
|
+
var v = h(n);
|
|
24
|
+
a(_, function(r) {
|
|
25
|
+
if (!(r && !n[r])) {
|
|
26
|
+
var f;
|
|
27
|
+
A.sort(function(i, t) {
|
|
28
|
+
return i.percent - t.percent;
|
|
29
|
+
}), a(A, function(i) {
|
|
30
|
+
var t = n.animators, E = r ? i[r] : i;
|
|
31
|
+
if (E) {
|
|
32
|
+
var u = R(E);
|
|
33
|
+
if (r || (u = k(u, function(y) {
|
|
34
|
+
return m(S, y) < 0;
|
|
35
|
+
})), !!u.length) {
|
|
36
|
+
f || (f = n.animate(r, e.loop, !0), f.scope = "keyframe");
|
|
37
|
+
for (var s = 0; s < t.length; s++)
|
|
38
|
+
t[s] !== f && t[s].targetName === f.targetName && t[s].stopTracks(u);
|
|
39
|
+
r && (v[r] = v[r] || {});
|
|
40
|
+
var K = r ? v[r] : v;
|
|
41
|
+
a(u, function(y) {
|
|
42
|
+
K[y] = ((r ? n[r] : n) || {})[y];
|
|
43
|
+
}), f.whenWithKeys(o * i.percent, E, u, i.easing);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}), f && f.delay(e.delay || 0).duration(o).start(e.easing);
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
export {
|
|
53
|
+
C as applyKeyframeAnimation,
|
|
54
|
+
D as stopPreviousKeyframeAnimationAndRestore
|
|
55
|
+
};
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
import { makeInner as M, normalizeToArray as R } from "../util/model.js";
|
|
2
|
+
import { each as b, extend as x, bind as Y, keys as m, indexOf as C, hasOwn as A, isArrayLike as G, reduce as U } from "../../../zrender/lib/core/util.js";
|
|
3
|
+
import { cloneValue as _ } from "../../../zrender/lib/animation/Animator.js";
|
|
4
|
+
import w from "../../../zrender/lib/graphic/Displayable.js";
|
|
5
|
+
import { getAnimationConfig as X } from "./basicTransition.js";
|
|
6
|
+
import "../util/graphic.js";
|
|
7
|
+
import { TRANSFORMABLE_PROPS as T } from "../../../zrender/lib/core/Transformable.js";
|
|
8
|
+
import z from "../../../zrender/lib/graphic/Path.js";
|
|
9
|
+
var F = {
|
|
10
|
+
position: ["x", "y"],
|
|
11
|
+
scale: ["scaleX", "scaleY"],
|
|
12
|
+
origin: ["originX", "originY"]
|
|
13
|
+
}, P = m(F);
|
|
14
|
+
U(T, function(r, a) {
|
|
15
|
+
return r[a] = 1, r;
|
|
16
|
+
}, {});
|
|
17
|
+
T.join(", ");
|
|
18
|
+
var D = ["", "style", "shape", "extra"], d = M();
|
|
19
|
+
function I(r, a, n, t, v) {
|
|
20
|
+
var e = r + "Animation", i = X(r, t, v) || {}, f = d(a).userDuring;
|
|
21
|
+
return i.duration > 0 && (i.during = f ? Y(V, {
|
|
22
|
+
el: a,
|
|
23
|
+
userDuring: f
|
|
24
|
+
}) : null, i.setToFinal = !0, i.scope = r), x(i, n[e]), i;
|
|
25
|
+
}
|
|
26
|
+
function er(r, a, n, t) {
|
|
27
|
+
t = t || {};
|
|
28
|
+
var v = t.dataIndex, e = t.isInit, i = t.clearStyle, f = n.isAnimationEnabled(), l = d(r), o = a.style;
|
|
29
|
+
l.userDuring = a.during;
|
|
30
|
+
var s = {}, u = {};
|
|
31
|
+
if (Z(r, a, u), B("shape", a, u), B("extra", a, u), !e && f && (W(r, a, s), L("shape", r, a, s), L("extra", r, a, s), $(r, a, o, s)), u.style = o, q(r, u, i), J(r, a), f)
|
|
32
|
+
if (e) {
|
|
33
|
+
var c = {};
|
|
34
|
+
b(D, function(h) {
|
|
35
|
+
var E = h ? a[h] : a;
|
|
36
|
+
E && E.enterFrom && (h && (c[h] = c[h] || {}), x(h ? c[h] : c, E.enterFrom));
|
|
37
|
+
});
|
|
38
|
+
var S = I("enter", r, a, n, v);
|
|
39
|
+
S.duration > 0 && r.animateFrom(c, S);
|
|
40
|
+
} else
|
|
41
|
+
H(r, a, v || 0, n, s);
|
|
42
|
+
j(r, a), o ? r.dirty() : r.markRedraw();
|
|
43
|
+
}
|
|
44
|
+
function j(r, a) {
|
|
45
|
+
for (var n = d(r).leaveToProps, t = 0; t < D.length; t++) {
|
|
46
|
+
var v = D[t], e = v ? a[v] : a;
|
|
47
|
+
e && e.leaveTo && (n || (n = d(r).leaveToProps = {}), v && (n[v] = n[v] || {}), x(v ? n[v] : n, e.leaveTo));
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
function ir(r, a, n, t) {
|
|
51
|
+
if (r) {
|
|
52
|
+
var v = r.parent, e = d(r).leaveToProps;
|
|
53
|
+
if (e) {
|
|
54
|
+
var i = I("update", r, a, n, 0);
|
|
55
|
+
i.done = function() {
|
|
56
|
+
v.remove(r);
|
|
57
|
+
}, r.animateTo(e, i);
|
|
58
|
+
} else
|
|
59
|
+
v.remove(r);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
function y(r) {
|
|
63
|
+
return r === "all";
|
|
64
|
+
}
|
|
65
|
+
function q(r, a, n) {
|
|
66
|
+
var t = a.style;
|
|
67
|
+
if (!r.isGroup && t) {
|
|
68
|
+
if (n) {
|
|
69
|
+
r.useStyle({});
|
|
70
|
+
for (var v = r.animators, e = 0; e < v.length; e++) {
|
|
71
|
+
var i = v[e];
|
|
72
|
+
i.targetName === "style" && i.changeTarget(r.style);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
r.setStyle(t);
|
|
76
|
+
}
|
|
77
|
+
a && (a.style = null, a && r.attr(a), a.style = t);
|
|
78
|
+
}
|
|
79
|
+
function H(r, a, n, t, v) {
|
|
80
|
+
if (v) {
|
|
81
|
+
var e = I("update", r, a, t, n);
|
|
82
|
+
e.duration > 0 && r.animateFrom(v, e);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
function J(r, a) {
|
|
86
|
+
A(a, "silent") && (r.silent = a.silent), A(a, "ignore") && (r.ignore = a.ignore), r instanceof w && A(a, "invisible") && (r.invisible = a.invisible), r instanceof z && A(a, "autoBatch") && (r.autoBatch = a.autoBatch);
|
|
87
|
+
}
|
|
88
|
+
var g = {}, Q = {
|
|
89
|
+
// Usually other props do not need to be changed in animation during.
|
|
90
|
+
setTransform: function(r, a) {
|
|
91
|
+
return g.el[r] = a, this;
|
|
92
|
+
},
|
|
93
|
+
getTransform: function(r) {
|
|
94
|
+
return g.el[r];
|
|
95
|
+
},
|
|
96
|
+
setShape: function(r, a) {
|
|
97
|
+
var n = g.el, t = n.shape || (n.shape = {});
|
|
98
|
+
return t[r] = a, n.dirtyShape && n.dirtyShape(), this;
|
|
99
|
+
},
|
|
100
|
+
getShape: function(r) {
|
|
101
|
+
var a = g.el.shape;
|
|
102
|
+
if (a)
|
|
103
|
+
return a[r];
|
|
104
|
+
},
|
|
105
|
+
setStyle: function(r, a) {
|
|
106
|
+
var n = g.el, t = n.style;
|
|
107
|
+
return t && (t[r] = a, n.dirtyStyle && n.dirtyStyle()), this;
|
|
108
|
+
},
|
|
109
|
+
getStyle: function(r) {
|
|
110
|
+
var a = g.el.style;
|
|
111
|
+
if (a)
|
|
112
|
+
return a[r];
|
|
113
|
+
},
|
|
114
|
+
setExtra: function(r, a) {
|
|
115
|
+
var n = g.el.extra || (g.el.extra = {});
|
|
116
|
+
return n[r] = a, this;
|
|
117
|
+
},
|
|
118
|
+
getExtra: function(r) {
|
|
119
|
+
var a = g.el.extra;
|
|
120
|
+
if (a)
|
|
121
|
+
return a[r];
|
|
122
|
+
}
|
|
123
|
+
};
|
|
124
|
+
function V() {
|
|
125
|
+
var r = this, a = r.el;
|
|
126
|
+
if (a) {
|
|
127
|
+
var n = d(a).userDuring, t = r.userDuring;
|
|
128
|
+
if (n !== t) {
|
|
129
|
+
r.el = r.userDuring = null;
|
|
130
|
+
return;
|
|
131
|
+
}
|
|
132
|
+
g.el = a, t(Q);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
function L(r, a, n, t) {
|
|
136
|
+
var v = n[r];
|
|
137
|
+
if (v) {
|
|
138
|
+
var e = a[r], i;
|
|
139
|
+
if (e) {
|
|
140
|
+
var f = n.transition, l = v.transition;
|
|
141
|
+
if (l)
|
|
142
|
+
if (!i && (i = t[r] = {}), y(l))
|
|
143
|
+
x(i, e);
|
|
144
|
+
else
|
|
145
|
+
for (var o = R(l), s = 0; s < o.length; s++) {
|
|
146
|
+
var u = o[s], c = e[u];
|
|
147
|
+
i[u] = c;
|
|
148
|
+
}
|
|
149
|
+
else if (y(f) || C(f, r) >= 0) {
|
|
150
|
+
!i && (i = t[r] = {});
|
|
151
|
+
for (var S = m(e), s = 0; s < S.length; s++) {
|
|
152
|
+
var u = S[s], c = e[u];
|
|
153
|
+
p(v[u], c) && (i[u] = c);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
function B(r, a, n) {
|
|
160
|
+
var t = a[r];
|
|
161
|
+
if (t)
|
|
162
|
+
for (var v = n[r] = {}, e = m(t), i = 0; i < e.length; i++) {
|
|
163
|
+
var f = e[i];
|
|
164
|
+
v[f] = _(t[f]);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
function W(r, a, n) {
|
|
168
|
+
for (var t = a.transition, v = y(t) ? T : R(t || []), e = 0; e < v.length; e++) {
|
|
169
|
+
var i = v[e];
|
|
170
|
+
if (!(i === "style" || i === "shape" || i === "extra")) {
|
|
171
|
+
var f = r[i];
|
|
172
|
+
n[i] = f;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
function Z(r, a, n) {
|
|
177
|
+
for (var t = 0; t < P.length; t++) {
|
|
178
|
+
var v = P[t], e = F[v], i = a[v];
|
|
179
|
+
i && (n[e[0]] = i[0], n[e[1]] = i[1]);
|
|
180
|
+
}
|
|
181
|
+
for (var t = 0; t < T.length; t++) {
|
|
182
|
+
var f = T[t];
|
|
183
|
+
a[f] != null && (n[f] = a[f]);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
function $(r, a, n, t) {
|
|
187
|
+
if (n) {
|
|
188
|
+
var v = r.style, e;
|
|
189
|
+
if (v) {
|
|
190
|
+
var i = n.transition, f = a.transition;
|
|
191
|
+
if (i && !y(i)) {
|
|
192
|
+
var l = R(i);
|
|
193
|
+
!e && (e = t.style = {});
|
|
194
|
+
for (var o = 0; o < l.length; o++) {
|
|
195
|
+
var s = l[o], u = v[s];
|
|
196
|
+
e[s] = u;
|
|
197
|
+
}
|
|
198
|
+
} else if (r.getAnimationStyleProps && (y(f) || y(i) || C(f, "style") >= 0)) {
|
|
199
|
+
var c = r.getAnimationStyleProps(), S = c ? c.style : null;
|
|
200
|
+
if (S) {
|
|
201
|
+
!e && (e = t.style = {});
|
|
202
|
+
for (var h = m(n), o = 0; o < h.length; o++) {
|
|
203
|
+
var s = h[o];
|
|
204
|
+
if (S[s]) {
|
|
205
|
+
var u = v[s];
|
|
206
|
+
e[s] = u;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
function p(r, a) {
|
|
215
|
+
return G(r) ? r !== a : r != null && isFinite(r);
|
|
216
|
+
}
|
|
217
|
+
export {
|
|
218
|
+
D as ELEMENT_ANIMATABLE_PROPS,
|
|
219
|
+
ir as applyLeaveTransition,
|
|
220
|
+
er as applyUpdateTransition,
|
|
221
|
+
y as isTransitionAll,
|
|
222
|
+
j as updateLeaveTo
|
|
223
|
+
};
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { isCombineMorphing as Q, morphPath as R, combineMorph as U, separateMorph as V } from "../../../zrender/lib/tool/morphPath.js";
|
|
2
|
+
import "../util/graphic.js";
|
|
3
|
+
import { isArray as H, defaults as O } from "../../../zrender/lib/core/util.js";
|
|
4
|
+
import { getAnimationConfig as W } from "./basicTransition.js";
|
|
5
|
+
import { clonePath as X } from "../../../zrender/lib/tool/path.js";
|
|
6
|
+
import Y from "../../../zrender/lib/graphic/Path.js";
|
|
7
|
+
function E(r) {
|
|
8
|
+
return H(r[0]);
|
|
9
|
+
}
|
|
10
|
+
function G(r, a) {
|
|
11
|
+
for (var t = [], i = r.length, n = 0; n < i; n++)
|
|
12
|
+
t.push({
|
|
13
|
+
one: r[n],
|
|
14
|
+
many: []
|
|
15
|
+
});
|
|
16
|
+
for (var n = 0; n < a.length; n++) {
|
|
17
|
+
var u = a[n].length, h = void 0;
|
|
18
|
+
for (h = 0; h < u; h++)
|
|
19
|
+
t[h % i].many.push(a[n][h]);
|
|
20
|
+
}
|
|
21
|
+
for (var e = 0, n = i - 1; n >= 0; n--)
|
|
22
|
+
if (!t[n].many.length) {
|
|
23
|
+
var v = t[e].many;
|
|
24
|
+
if (v.length <= 1)
|
|
25
|
+
if (e)
|
|
26
|
+
e = 0;
|
|
27
|
+
else
|
|
28
|
+
return t;
|
|
29
|
+
var u = v.length, l = Math.ceil(u / 2);
|
|
30
|
+
t[n].many = v.slice(l, u), t[e].many = v.slice(0, l), e++;
|
|
31
|
+
}
|
|
32
|
+
return t;
|
|
33
|
+
}
|
|
34
|
+
var Z = {
|
|
35
|
+
clone: function(r) {
|
|
36
|
+
for (var a = [], t = 1 - Math.pow(1 - r.path.style.opacity, 1 / r.count), i = 0; i < r.count; i++) {
|
|
37
|
+
var n = X(r.path);
|
|
38
|
+
n.setStyle("opacity", t), a.push(n);
|
|
39
|
+
}
|
|
40
|
+
return a;
|
|
41
|
+
},
|
|
42
|
+
// Use the default divider
|
|
43
|
+
split: null
|
|
44
|
+
};
|
|
45
|
+
function ar(r, a, t, i, n, u) {
|
|
46
|
+
if (!r.length || !a.length)
|
|
47
|
+
return;
|
|
48
|
+
var h = W("update", i, n);
|
|
49
|
+
if (!(h && h.duration > 0))
|
|
50
|
+
return;
|
|
51
|
+
var e = i.getModel("universalTransition").get("delay"), v = Object.assign({
|
|
52
|
+
// Need to setToFinal so the further calculation based on the style can be correct.
|
|
53
|
+
// Like emphasis color.
|
|
54
|
+
setToFinal: !0
|
|
55
|
+
}, h), l, A;
|
|
56
|
+
E(r) && (l = r, A = a), E(a) && (l = a, A = r);
|
|
57
|
+
function j(c, s, C, D, J) {
|
|
58
|
+
var p = c.many, d = c.one;
|
|
59
|
+
if (p.length === 1 && !J) {
|
|
60
|
+
var y = s ? p[0] : d, M = s ? d : p[0];
|
|
61
|
+
if (Q(y))
|
|
62
|
+
j({
|
|
63
|
+
many: [y],
|
|
64
|
+
one: M
|
|
65
|
+
}, !0, C, D, !0);
|
|
66
|
+
else {
|
|
67
|
+
var P = e ? O({
|
|
68
|
+
delay: e(C, D)
|
|
69
|
+
}, v) : v;
|
|
70
|
+
R(y, M, P), u(y, M, y, M, P);
|
|
71
|
+
}
|
|
72
|
+
} else
|
|
73
|
+
for (var L = O({
|
|
74
|
+
dividePath: Z[t],
|
|
75
|
+
individualDelay: e && function(N, b, m, T) {
|
|
76
|
+
return e(N + C, D);
|
|
77
|
+
}
|
|
78
|
+
}, v), S = s ? U(p, d, L) : V(d, p, L), q = S.fromIndividuals, K = S.toIndividuals, z = q.length, f = 0; f < z; f++) {
|
|
79
|
+
var P = e ? O({
|
|
80
|
+
delay: e(f, z)
|
|
81
|
+
}, v) : v;
|
|
82
|
+
u(q[f], K[f], s ? p[f] : c.one, s ? c.one : p[f], P);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
for (var B = l ? l === r : r.length > a.length, g = l ? G(A, l) : G(B ? a : r, [B ? r : a]), w = 0, o = 0; o < g.length; o++)
|
|
86
|
+
w += g[o].many.length;
|
|
87
|
+
for (var x = 0, o = 0; o < g.length; o++)
|
|
88
|
+
j(g[o], B, x, w), x += g[o].many.length;
|
|
89
|
+
}
|
|
90
|
+
function $(r) {
|
|
91
|
+
if (!r)
|
|
92
|
+
return [];
|
|
93
|
+
if (H(r)) {
|
|
94
|
+
for (var a = [], t = 0; t < r.length; t++)
|
|
95
|
+
a.push($(r[t]));
|
|
96
|
+
return a;
|
|
97
|
+
}
|
|
98
|
+
var i = [];
|
|
99
|
+
return r.traverse(function(n) {
|
|
100
|
+
n instanceof Y && !n.disableMorphing && !n.invisible && !n.ignore && i.push(n);
|
|
101
|
+
}), i;
|
|
102
|
+
}
|
|
103
|
+
export {
|
|
104
|
+
ar as applyMorphAnimation,
|
|
105
|
+
$ as getPathList
|
|
106
|
+
};
|