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,433 @@
|
|
|
1
|
+
import N, { TRANSFORMABLE_PROPS as E } from "./core/Transformable.js";
|
|
2
|
+
import U, { cloneValue as $ } from "./animation/Animator.js";
|
|
3
|
+
import b from "./core/BoundingRect.js";
|
|
4
|
+
import j from "./core/Eventful.js";
|
|
5
|
+
import { calculateTextPosition as K, parsePercent as D } from "./contain/text.js";
|
|
6
|
+
import { extend as x, isObject as F, keys as W, indexOf as P, logError as O, reduce as k, guid as tt, isArrayLike as w, isGradientObject as it, filter as M, isTypedArray as rt, mixin as Y } from "./core/util.js";
|
|
7
|
+
import { LIGHT_LABEL_COLOR as et, DARK_LABEL_COLOR as ot } from "./config.js";
|
|
8
|
+
import { parse as nt, stringify as st } from "./tool/color.js";
|
|
9
|
+
import { REDRAW_BIT as R } from "./graphic/constants.js";
|
|
10
|
+
var z = "__zr_normal__", H = E.concat(["ignore"]), at = k(E, function(e, t) {
|
|
11
|
+
return e[t] = !0, e;
|
|
12
|
+
}, { ignore: !1 }), C = {}, ht = new b(0, 0, 0, 0), X = (function() {
|
|
13
|
+
function e(t) {
|
|
14
|
+
this.id = tt(), this.animators = [], this.currentStates = [], this.states = {}, this._init(t);
|
|
15
|
+
}
|
|
16
|
+
return e.prototype._init = function(t) {
|
|
17
|
+
this.attr(t);
|
|
18
|
+
}, e.prototype.drift = function(t, i, r) {
|
|
19
|
+
switch (this.draggable) {
|
|
20
|
+
case "horizontal":
|
|
21
|
+
i = 0;
|
|
22
|
+
break;
|
|
23
|
+
case "vertical":
|
|
24
|
+
t = 0;
|
|
25
|
+
break;
|
|
26
|
+
}
|
|
27
|
+
var n = this.transform;
|
|
28
|
+
n || (n = this.transform = [1, 0, 0, 1, 0, 0]), n[4] += t, n[5] += i, this.decomposeTransform(), this.markRedraw();
|
|
29
|
+
}, e.prototype.beforeUpdate = function() {
|
|
30
|
+
}, e.prototype.afterUpdate = function() {
|
|
31
|
+
}, e.prototype.update = function() {
|
|
32
|
+
this.updateTransform(), this.__dirty && this.updateInnerText();
|
|
33
|
+
}, e.prototype.updateInnerText = function(t) {
|
|
34
|
+
var i = this._textContent;
|
|
35
|
+
if (i && (!i.ignore || t)) {
|
|
36
|
+
this.textConfig || (this.textConfig = {});
|
|
37
|
+
var r = this.textConfig, n = r.local, o = i.innerTransformable, s = void 0, u = void 0, a = !1;
|
|
38
|
+
o.parent = n ? this : null;
|
|
39
|
+
var p = !1;
|
|
40
|
+
if (o.copyTransform(i), r.position != null) {
|
|
41
|
+
var h = ht;
|
|
42
|
+
r.layoutRect ? h.copy(r.layoutRect) : h.copy(this.getBoundingRect()), n || h.applyTransform(this.transform), this.calculateTextPosition ? this.calculateTextPosition(C, r, h) : K(C, r, h), o.x = C.x, o.y = C.y, s = C.align, u = C.verticalAlign;
|
|
43
|
+
var v = r.origin;
|
|
44
|
+
if (v && r.rotation != null) {
|
|
45
|
+
var l = void 0, m = void 0;
|
|
46
|
+
v === "center" ? (l = h.width * 0.5, m = h.height * 0.5) : (l = D(v[0], h.width), m = D(v[1], h.height)), p = !0, o.originX = -o.x + l + (n ? 0 : h.x), o.originY = -o.y + m + (n ? 0 : h.y);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
r.rotation != null && (o.rotation = r.rotation);
|
|
50
|
+
var _ = r.offset;
|
|
51
|
+
_ && (o.x += _[0], o.y += _[1], p || (o.originX = -_[0], o.originY = -_[1]));
|
|
52
|
+
var d = r.inside == null ? typeof r.position == "string" && r.position.indexOf("inside") >= 0 : r.inside, c = this._innerTextDefaultStyle || (this._innerTextDefaultStyle = {}), f = void 0, g = void 0, y = void 0;
|
|
53
|
+
d && this.canBeInsideText() ? (f = r.insideFill, g = r.insideStroke, (f == null || f === "auto") && (f = this.getInsideTextFill()), (g == null || g === "auto") && (g = this.getInsideTextStroke(f), y = !0)) : (f = r.outsideFill, g = r.outsideStroke, (f == null || f === "auto") && (f = this.getOutsideFill()), (g == null || g === "auto") && (g = this.getOutsideStroke(f), y = !0)), f = f || "#000", (f !== c.fill || g !== c.stroke || y !== c.autoStroke || s !== c.align || u !== c.verticalAlign) && (a = !0, c.fill = f, c.stroke = g, c.autoStroke = y, c.align = s, c.verticalAlign = u, i.setDefaultTextStyle(c)), i.__dirty |= R, a && i.dirtyStyle(!0);
|
|
54
|
+
}
|
|
55
|
+
}, e.prototype.canBeInsideText = function() {
|
|
56
|
+
return !0;
|
|
57
|
+
}, e.prototype.getInsideTextFill = function() {
|
|
58
|
+
return "#fff";
|
|
59
|
+
}, e.prototype.getInsideTextStroke = function(t) {
|
|
60
|
+
return "#000";
|
|
61
|
+
}, e.prototype.getOutsideFill = function() {
|
|
62
|
+
return this.__zr && this.__zr.isDarkMode() ? et : ot;
|
|
63
|
+
}, e.prototype.getOutsideStroke = function(t) {
|
|
64
|
+
var i = this.__zr && this.__zr.getBackgroundColor(), r = typeof i == "string" && nt(i);
|
|
65
|
+
r || (r = [255, 255, 255, 1]);
|
|
66
|
+
for (var n = r[3], o = this.__zr.isDarkMode(), s = 0; s < 3; s++)
|
|
67
|
+
r[s] = r[s] * n + (o ? 0 : 255) * (1 - n);
|
|
68
|
+
return r[3] = 1, st(r, "rgba");
|
|
69
|
+
}, e.prototype.traverse = function(t, i) {
|
|
70
|
+
}, e.prototype.attrKV = function(t, i) {
|
|
71
|
+
t === "textConfig" ? this.setTextConfig(i) : t === "textContent" ? this.setTextContent(i) : t === "clipPath" ? this.setClipPath(i) : t === "extra" ? (this.extra = this.extra || {}, x(this.extra, i)) : this[t] = i;
|
|
72
|
+
}, e.prototype.hide = function() {
|
|
73
|
+
this.ignore = !0, this.markRedraw();
|
|
74
|
+
}, e.prototype.show = function() {
|
|
75
|
+
this.ignore = !1, this.markRedraw();
|
|
76
|
+
}, e.prototype.attr = function(t, i) {
|
|
77
|
+
if (typeof t == "string")
|
|
78
|
+
this.attrKV(t, i);
|
|
79
|
+
else if (F(t))
|
|
80
|
+
for (var r = t, n = W(r), o = 0; o < n.length; o++) {
|
|
81
|
+
var s = n[o];
|
|
82
|
+
this.attrKV(s, t[s]);
|
|
83
|
+
}
|
|
84
|
+
return this.markRedraw(), this;
|
|
85
|
+
}, e.prototype.saveCurrentToNormalState = function(t) {
|
|
86
|
+
this._innerSaveToNormal(t);
|
|
87
|
+
for (var i = this._normalState, r = 0; r < this.animators.length; r++) {
|
|
88
|
+
var n = this.animators[r], o = n.__fromStateTransition;
|
|
89
|
+
if (!(n.getLoop() || o && o !== z)) {
|
|
90
|
+
var s = n.targetName, u = s ? i[s] : i;
|
|
91
|
+
n.saveTo(u);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}, e.prototype._innerSaveToNormal = function(t) {
|
|
95
|
+
var i = this._normalState;
|
|
96
|
+
i || (i = this._normalState = {}), t.textConfig && !i.textConfig && (i.textConfig = this.textConfig), this._savePrimaryToNormal(t, i, H);
|
|
97
|
+
}, e.prototype._savePrimaryToNormal = function(t, i, r) {
|
|
98
|
+
for (var n = 0; n < r.length; n++) {
|
|
99
|
+
var o = r[n];
|
|
100
|
+
t[o] != null && !(o in i) && (i[o] = this[o]);
|
|
101
|
+
}
|
|
102
|
+
}, e.prototype.hasState = function() {
|
|
103
|
+
return this.currentStates.length > 0;
|
|
104
|
+
}, e.prototype.getState = function(t) {
|
|
105
|
+
return this.states[t];
|
|
106
|
+
}, e.prototype.ensureState = function(t) {
|
|
107
|
+
var i = this.states;
|
|
108
|
+
return i[t] || (i[t] = {}), i[t];
|
|
109
|
+
}, e.prototype.clearStates = function(t) {
|
|
110
|
+
this.useState(z, !1, t);
|
|
111
|
+
}, e.prototype.useState = function(t, i, r, n) {
|
|
112
|
+
var o = t === z, s = this.hasState();
|
|
113
|
+
if (!(!s && o)) {
|
|
114
|
+
var u = this.currentStates, a = this.stateTransition;
|
|
115
|
+
if (!(P(u, t) >= 0 && (i || u.length === 1))) {
|
|
116
|
+
var p;
|
|
117
|
+
if (this.stateProxy && !o && (p = this.stateProxy(t)), p || (p = this.states && this.states[t]), !p && !o) {
|
|
118
|
+
O("State " + t + " not exists.");
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
o || this.saveCurrentToNormalState(p);
|
|
122
|
+
var h = !!(p && p.hoverLayer || n);
|
|
123
|
+
h && this._toggleHoverLayerFlag(!0), this._applyStateObj(t, p, this._normalState, i, !r && !this.__inHover && a && a.duration > 0, a);
|
|
124
|
+
var v = this._textContent, l = this._textGuide;
|
|
125
|
+
return v && v.useState(t, i, r, h), l && l.useState(t, i, r, h), o ? (this.currentStates = [], this._normalState = {}) : i ? this.currentStates.push(t) : this.currentStates = [t], this._updateAnimationTargets(), this.markRedraw(), !h && this.__inHover && (this._toggleHoverLayerFlag(!1), this.__dirty &= ~R), p;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}, e.prototype.useStates = function(t, i, r) {
|
|
129
|
+
if (!t.length)
|
|
130
|
+
this.clearStates();
|
|
131
|
+
else {
|
|
132
|
+
var n = [], o = this.currentStates, s = t.length, u = s === o.length;
|
|
133
|
+
if (u) {
|
|
134
|
+
for (var a = 0; a < s; a++)
|
|
135
|
+
if (t[a] !== o[a]) {
|
|
136
|
+
u = !1;
|
|
137
|
+
break;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
if (u)
|
|
141
|
+
return;
|
|
142
|
+
for (var a = 0; a < s; a++) {
|
|
143
|
+
var p = t[a], h = void 0;
|
|
144
|
+
this.stateProxy && (h = this.stateProxy(p, t)), h || (h = this.states[p]), h && n.push(h);
|
|
145
|
+
}
|
|
146
|
+
var v = n[s - 1], l = !!(v && v.hoverLayer || r);
|
|
147
|
+
l && this._toggleHoverLayerFlag(!0);
|
|
148
|
+
var m = this._mergeStates(n), _ = this.stateTransition;
|
|
149
|
+
this.saveCurrentToNormalState(m), this._applyStateObj(t.join(","), m, this._normalState, !1, !i && !this.__inHover && _ && _.duration > 0, _);
|
|
150
|
+
var d = this._textContent, c = this._textGuide;
|
|
151
|
+
d && d.useStates(t, i, l), c && c.useStates(t, i, l), this._updateAnimationTargets(), this.currentStates = t.slice(), this.markRedraw(), !l && this.__inHover && (this._toggleHoverLayerFlag(!1), this.__dirty &= ~R);
|
|
152
|
+
}
|
|
153
|
+
}, e.prototype.isSilent = function() {
|
|
154
|
+
for (var t = this.silent, i = this.parent; !t && i; ) {
|
|
155
|
+
if (i.silent) {
|
|
156
|
+
t = !0;
|
|
157
|
+
break;
|
|
158
|
+
}
|
|
159
|
+
i = i.parent;
|
|
160
|
+
}
|
|
161
|
+
return t;
|
|
162
|
+
}, e.prototype._updateAnimationTargets = function() {
|
|
163
|
+
for (var t = 0; t < this.animators.length; t++) {
|
|
164
|
+
var i = this.animators[t];
|
|
165
|
+
i.targetName && i.changeTarget(this[i.targetName]);
|
|
166
|
+
}
|
|
167
|
+
}, e.prototype.removeState = function(t) {
|
|
168
|
+
var i = P(this.currentStates, t);
|
|
169
|
+
if (i >= 0) {
|
|
170
|
+
var r = this.currentStates.slice();
|
|
171
|
+
r.splice(i, 1), this.useStates(r);
|
|
172
|
+
}
|
|
173
|
+
}, e.prototype.replaceState = function(t, i, r) {
|
|
174
|
+
var n = this.currentStates.slice(), o = P(n, t), s = P(n, i) >= 0;
|
|
175
|
+
o >= 0 ? s ? n.splice(o, 1) : n[o] = i : r && !s && n.push(i), this.useStates(n);
|
|
176
|
+
}, e.prototype.toggleState = function(t, i) {
|
|
177
|
+
i ? this.useState(t, !0) : this.removeState(t);
|
|
178
|
+
}, e.prototype._mergeStates = function(t) {
|
|
179
|
+
for (var i = {}, r, n = 0; n < t.length; n++) {
|
|
180
|
+
var o = t[n];
|
|
181
|
+
x(i, o), o.textConfig && (r = r || {}, x(r, o.textConfig));
|
|
182
|
+
}
|
|
183
|
+
return r && (i.textConfig = r), i;
|
|
184
|
+
}, e.prototype._applyStateObj = function(t, i, r, n, o, s) {
|
|
185
|
+
var u = !(i && n);
|
|
186
|
+
i && i.textConfig ? (this.textConfig = x({}, n ? this.textConfig : r.textConfig), x(this.textConfig, i.textConfig)) : u && r.textConfig && (this.textConfig = r.textConfig);
|
|
187
|
+
for (var a = {}, p = !1, h = 0; h < H.length; h++) {
|
|
188
|
+
var v = H[h], l = o && at[v];
|
|
189
|
+
i && i[v] != null ? l ? (p = !0, a[v] = i[v]) : this[v] = i[v] : u && r[v] != null && (l ? (p = !0, a[v] = r[v]) : this[v] = r[v]);
|
|
190
|
+
}
|
|
191
|
+
if (!o)
|
|
192
|
+
for (var h = 0; h < this.animators.length; h++) {
|
|
193
|
+
var m = this.animators[h], _ = m.targetName;
|
|
194
|
+
m.getLoop() || m.__changeFinalValue(_ ? (i || r)[_] : i || r);
|
|
195
|
+
}
|
|
196
|
+
p && this._transitionState(t, a, s);
|
|
197
|
+
}, e.prototype._attachComponent = function(t) {
|
|
198
|
+
if (!(t.__zr && !t.__hostTarget) && t !== this) {
|
|
199
|
+
var i = this.__zr;
|
|
200
|
+
i && t.addSelfToZr(i), t.__zr = i, t.__hostTarget = this;
|
|
201
|
+
}
|
|
202
|
+
}, e.prototype._detachComponent = function(t) {
|
|
203
|
+
t.__zr && t.removeSelfFromZr(t.__zr), t.__zr = null, t.__hostTarget = null;
|
|
204
|
+
}, e.prototype.getClipPath = function() {
|
|
205
|
+
return this._clipPath;
|
|
206
|
+
}, e.prototype.setClipPath = function(t) {
|
|
207
|
+
this._clipPath && this._clipPath !== t && this.removeClipPath(), this._attachComponent(t), this._clipPath = t, this.markRedraw();
|
|
208
|
+
}, e.prototype.removeClipPath = function() {
|
|
209
|
+
var t = this._clipPath;
|
|
210
|
+
t && (this._detachComponent(t), this._clipPath = null, this.markRedraw());
|
|
211
|
+
}, e.prototype.getTextContent = function() {
|
|
212
|
+
return this._textContent;
|
|
213
|
+
}, e.prototype.setTextContent = function(t) {
|
|
214
|
+
var i = this._textContent;
|
|
215
|
+
i !== t && (i && i !== t && this.removeTextContent(), t.innerTransformable = new N(), this._attachComponent(t), this._textContent = t, this.markRedraw());
|
|
216
|
+
}, e.prototype.setTextConfig = function(t) {
|
|
217
|
+
this.textConfig || (this.textConfig = {}), x(this.textConfig, t), this.markRedraw();
|
|
218
|
+
}, e.prototype.removeTextConfig = function() {
|
|
219
|
+
this.textConfig = null, this.markRedraw();
|
|
220
|
+
}, e.prototype.removeTextContent = function() {
|
|
221
|
+
var t = this._textContent;
|
|
222
|
+
t && (t.innerTransformable = null, this._detachComponent(t), this._textContent = null, this._innerTextDefaultStyle = null, this.markRedraw());
|
|
223
|
+
}, e.prototype.getTextGuideLine = function() {
|
|
224
|
+
return this._textGuide;
|
|
225
|
+
}, e.prototype.setTextGuideLine = function(t) {
|
|
226
|
+
this._textGuide && this._textGuide !== t && this.removeTextGuideLine(), this._attachComponent(t), this._textGuide = t, this.markRedraw();
|
|
227
|
+
}, e.prototype.removeTextGuideLine = function() {
|
|
228
|
+
var t = this._textGuide;
|
|
229
|
+
t && (this._detachComponent(t), this._textGuide = null, this.markRedraw());
|
|
230
|
+
}, e.prototype.markRedraw = function() {
|
|
231
|
+
this.__dirty |= R;
|
|
232
|
+
var t = this.__zr;
|
|
233
|
+
t && (this.__inHover ? t.refreshHover() : t.refresh()), this.__hostTarget && this.__hostTarget.markRedraw();
|
|
234
|
+
}, e.prototype.dirty = function() {
|
|
235
|
+
this.markRedraw();
|
|
236
|
+
}, e.prototype._toggleHoverLayerFlag = function(t) {
|
|
237
|
+
this.__inHover = t;
|
|
238
|
+
var i = this._textContent, r = this._textGuide;
|
|
239
|
+
i && (i.__inHover = t), r && (r.__inHover = t);
|
|
240
|
+
}, e.prototype.addSelfToZr = function(t) {
|
|
241
|
+
if (this.__zr !== t) {
|
|
242
|
+
this.__zr = t;
|
|
243
|
+
var i = this.animators;
|
|
244
|
+
if (i)
|
|
245
|
+
for (var r = 0; r < i.length; r++)
|
|
246
|
+
t.animation.addAnimator(i[r]);
|
|
247
|
+
this._clipPath && this._clipPath.addSelfToZr(t), this._textContent && this._textContent.addSelfToZr(t), this._textGuide && this._textGuide.addSelfToZr(t);
|
|
248
|
+
}
|
|
249
|
+
}, e.prototype.removeSelfFromZr = function(t) {
|
|
250
|
+
if (this.__zr) {
|
|
251
|
+
this.__zr = null;
|
|
252
|
+
var i = this.animators;
|
|
253
|
+
if (i)
|
|
254
|
+
for (var r = 0; r < i.length; r++)
|
|
255
|
+
t.animation.removeAnimator(i[r]);
|
|
256
|
+
this._clipPath && this._clipPath.removeSelfFromZr(t), this._textContent && this._textContent.removeSelfFromZr(t), this._textGuide && this._textGuide.removeSelfFromZr(t);
|
|
257
|
+
}
|
|
258
|
+
}, e.prototype.animate = function(t, i, r) {
|
|
259
|
+
var n = t ? this[t] : this, o = new U(n, i, r);
|
|
260
|
+
return t && (o.targetName = t), this.addAnimator(o, t), o;
|
|
261
|
+
}, e.prototype.addAnimator = function(t, i) {
|
|
262
|
+
var r = this.__zr, n = this;
|
|
263
|
+
t.during(function() {
|
|
264
|
+
n.updateDuringAnimation(i);
|
|
265
|
+
}).done(function() {
|
|
266
|
+
var o = n.animators, s = P(o, t);
|
|
267
|
+
s >= 0 && o.splice(s, 1);
|
|
268
|
+
}), this.animators.push(t), r && r.animation.addAnimator(t), r && r.wakeUp();
|
|
269
|
+
}, e.prototype.updateDuringAnimation = function(t) {
|
|
270
|
+
this.markRedraw();
|
|
271
|
+
}, e.prototype.stopAnimation = function(t, i) {
|
|
272
|
+
for (var r = this.animators, n = r.length, o = [], s = 0; s < n; s++) {
|
|
273
|
+
var u = r[s];
|
|
274
|
+
!t || t === u.scope ? u.stop(i) : o.push(u);
|
|
275
|
+
}
|
|
276
|
+
return this.animators = o, this;
|
|
277
|
+
}, e.prototype.animateTo = function(t, i, r) {
|
|
278
|
+
B(this, t, i, r);
|
|
279
|
+
}, e.prototype.animateFrom = function(t, i, r) {
|
|
280
|
+
B(this, t, i, r, !0);
|
|
281
|
+
}, e.prototype._transitionState = function(t, i, r, n) {
|
|
282
|
+
for (var o = B(this, i, r, n), s = 0; s < o.length; s++)
|
|
283
|
+
o[s].__fromStateTransition = t;
|
|
284
|
+
}, e.prototype.getBoundingRect = function() {
|
|
285
|
+
return null;
|
|
286
|
+
}, e.prototype.getPaintRect = function() {
|
|
287
|
+
return null;
|
|
288
|
+
}, e.initDefaultProps = (function() {
|
|
289
|
+
var t = e.prototype;
|
|
290
|
+
t.type = "element", t.name = "", t.ignore = t.silent = t.isGroup = t.draggable = t.dragging = t.ignoreClip = t.__inHover = !1, t.__dirty = R;
|
|
291
|
+
function i(r, n, o, s) {
|
|
292
|
+
Object.defineProperty(t, r, {
|
|
293
|
+
get: function() {
|
|
294
|
+
if (!this[n]) {
|
|
295
|
+
var a = this[n] = [];
|
|
296
|
+
u(this, a);
|
|
297
|
+
}
|
|
298
|
+
return this[n];
|
|
299
|
+
},
|
|
300
|
+
set: function(a) {
|
|
301
|
+
this[o] = a[0], this[s] = a[1], this[n] = a, u(this, a);
|
|
302
|
+
}
|
|
303
|
+
});
|
|
304
|
+
function u(a, p) {
|
|
305
|
+
Object.defineProperty(p, 0, {
|
|
306
|
+
get: function() {
|
|
307
|
+
return a[o];
|
|
308
|
+
},
|
|
309
|
+
set: function(h) {
|
|
310
|
+
a[o] = h;
|
|
311
|
+
}
|
|
312
|
+
}), Object.defineProperty(p, 1, {
|
|
313
|
+
get: function() {
|
|
314
|
+
return a[s];
|
|
315
|
+
},
|
|
316
|
+
set: function(h) {
|
|
317
|
+
a[s] = h;
|
|
318
|
+
}
|
|
319
|
+
});
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
Object.defineProperty && (i("position", "_legacyPos", "x", "y"), i("scale", "_legacyScale", "scaleX", "scaleY"), i("origin", "_legacyOrigin", "originX", "originY"));
|
|
323
|
+
})(), e;
|
|
324
|
+
})();
|
|
325
|
+
Y(X, j);
|
|
326
|
+
Y(X, N);
|
|
327
|
+
function B(e, t, i, r, n) {
|
|
328
|
+
i = i || {};
|
|
329
|
+
var o = [];
|
|
330
|
+
q(e, "", e, t, i, r, o, n);
|
|
331
|
+
var s = o.length, u = !1, a = i.done, p = i.aborted, h = function() {
|
|
332
|
+
u = !0, s--, s <= 0 && (u ? a && a() : p && p());
|
|
333
|
+
}, v = function() {
|
|
334
|
+
s--, s <= 0 && (u ? a && a() : p && p());
|
|
335
|
+
};
|
|
336
|
+
s || a && a(), o.length > 0 && i.during && o[0].during(function(_, d) {
|
|
337
|
+
i.during(d);
|
|
338
|
+
});
|
|
339
|
+
for (var l = 0; l < o.length; l++) {
|
|
340
|
+
var m = o[l];
|
|
341
|
+
h && m.done(h), v && m.aborted(v), i.force && m.duration(i.duration), m.start(i.easing);
|
|
342
|
+
}
|
|
343
|
+
return o;
|
|
344
|
+
}
|
|
345
|
+
function I(e, t, i) {
|
|
346
|
+
for (var r = 0; r < i; r++)
|
|
347
|
+
e[r] = t[r];
|
|
348
|
+
}
|
|
349
|
+
function ft(e) {
|
|
350
|
+
return w(e[0]);
|
|
351
|
+
}
|
|
352
|
+
function ut(e, t, i) {
|
|
353
|
+
if (w(t[i]))
|
|
354
|
+
if (w(e[i]) || (e[i] = []), rt(t[i])) {
|
|
355
|
+
var r = t[i].length;
|
|
356
|
+
e[i].length !== r && (e[i] = new t[i].constructor(r), I(e[i], t[i], r));
|
|
357
|
+
} else {
|
|
358
|
+
var n = t[i], o = e[i], s = n.length;
|
|
359
|
+
if (ft(n))
|
|
360
|
+
for (var u = n[0].length, a = 0; a < s; a++)
|
|
361
|
+
o[a] ? I(o[a], n[a], u) : o[a] = Array.prototype.slice.call(n[a]);
|
|
362
|
+
else
|
|
363
|
+
I(o, n, s);
|
|
364
|
+
o.length = n.length;
|
|
365
|
+
}
|
|
366
|
+
else
|
|
367
|
+
e[i] = t[i];
|
|
368
|
+
}
|
|
369
|
+
function pt(e, t) {
|
|
370
|
+
return e === t || w(e) && w(t) && vt(e, t);
|
|
371
|
+
}
|
|
372
|
+
function vt(e, t) {
|
|
373
|
+
var i = e.length;
|
|
374
|
+
if (i !== t.length)
|
|
375
|
+
return !1;
|
|
376
|
+
for (var r = 0; r < i; r++)
|
|
377
|
+
if (e[r] !== t[r])
|
|
378
|
+
return !1;
|
|
379
|
+
return !0;
|
|
380
|
+
}
|
|
381
|
+
function q(e, t, i, r, n, o, s, u) {
|
|
382
|
+
for (var a = W(r), p = n.duration, h = n.delay, v = n.additive, l = n.setToFinal, m = !F(o), _ = e.animators, d = [], c = 0; c < a.length; c++) {
|
|
383
|
+
var f = a[c], g = r[f];
|
|
384
|
+
if (g != null && i[f] != null && (m || o[f]))
|
|
385
|
+
if (F(g) && !w(g) && !it(g)) {
|
|
386
|
+
if (t) {
|
|
387
|
+
u || (i[f] = g, e.updateDuringAnimation(t));
|
|
388
|
+
continue;
|
|
389
|
+
}
|
|
390
|
+
q(e, f, i[f], g, n, o && o[f], s, u);
|
|
391
|
+
} else
|
|
392
|
+
d.push(f);
|
|
393
|
+
else u || (i[f] = g, e.updateDuringAnimation(t), d.push(f));
|
|
394
|
+
}
|
|
395
|
+
var y = d.length;
|
|
396
|
+
if (!v && y)
|
|
397
|
+
for (var T = 0; T < _.length; T++) {
|
|
398
|
+
var S = _[T];
|
|
399
|
+
if (S.targetName === t) {
|
|
400
|
+
var J = S.stopTracks(d);
|
|
401
|
+
if (J) {
|
|
402
|
+
var Q = P(_, S);
|
|
403
|
+
_.splice(Q, 1);
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
if (n.force || (d = M(d, function(Z) {
|
|
408
|
+
return !pt(r[Z], i[Z]);
|
|
409
|
+
}), y = d.length), y > 0 || n.force && !s.length) {
|
|
410
|
+
var A = void 0, L = void 0, G = void 0;
|
|
411
|
+
if (u) {
|
|
412
|
+
L = {}, l && (A = {});
|
|
413
|
+
for (var T = 0; T < y; T++) {
|
|
414
|
+
var f = d[T];
|
|
415
|
+
L[f] = i[f], l ? A[f] = r[f] : i[f] = r[f];
|
|
416
|
+
}
|
|
417
|
+
} else if (l) {
|
|
418
|
+
G = {};
|
|
419
|
+
for (var T = 0; T < y; T++) {
|
|
420
|
+
var f = d[T];
|
|
421
|
+
G[f] = $(i[f]), ut(i, r, f);
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
var S = new U(i, !1, !1, v ? M(_, function(V) {
|
|
425
|
+
return V.targetName === t;
|
|
426
|
+
}) : null);
|
|
427
|
+
S.targetName = t, n.scope && (S.scope = n.scope), l && A && S.whenWithKeys(0, A, d), G && S.whenWithKeys(0, G, d), S.whenWithKeys(p ?? 500, u ? L : r, d).delay(h || 0), e.addAnimator(S, t), s.push(S);
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
export {
|
|
431
|
+
z as PRESERVED_NORMAL_STATE,
|
|
432
|
+
X as default
|
|
433
|
+
};
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import { __extends as y } from "../../tslib/tslib.es6.js";
|
|
2
|
+
import { each as _ } from "./core/util.js";
|
|
3
|
+
import { dist as M } from "./core/vector.js";
|
|
4
|
+
import k from "./mixin/Draggable.js";
|
|
5
|
+
import w from "./core/Eventful.js";
|
|
6
|
+
import { stop as B } from "./core/event.js";
|
|
7
|
+
import { GestureMgr as X } from "./core/GestureMgr.js";
|
|
8
|
+
import T from "./core/BoundingRect.js";
|
|
9
|
+
var E = "silent";
|
|
10
|
+
function Y(a, o, t) {
|
|
11
|
+
return {
|
|
12
|
+
type: a,
|
|
13
|
+
event: t,
|
|
14
|
+
target: o.target,
|
|
15
|
+
topTarget: o.topTarget,
|
|
16
|
+
cancelBubble: !1,
|
|
17
|
+
offsetX: t.zrX,
|
|
18
|
+
offsetY: t.zrY,
|
|
19
|
+
gestureEvent: t.gestureEvent,
|
|
20
|
+
pinchX: t.pinchX,
|
|
21
|
+
pinchY: t.pinchY,
|
|
22
|
+
pinchScale: t.pinchScale,
|
|
23
|
+
wheelDelta: t.zrDelta,
|
|
24
|
+
zrByTouch: t.zrByTouch,
|
|
25
|
+
which: t.which,
|
|
26
|
+
stop: O
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function O() {
|
|
30
|
+
B(this.event);
|
|
31
|
+
}
|
|
32
|
+
var R = (function(a) {
|
|
33
|
+
y(o, a);
|
|
34
|
+
function o() {
|
|
35
|
+
var t = a !== null && a.apply(this, arguments) || this;
|
|
36
|
+
return t.handler = null, t;
|
|
37
|
+
}
|
|
38
|
+
return o.prototype.dispose = function() {
|
|
39
|
+
}, o.prototype.setCursor = function() {
|
|
40
|
+
}, o;
|
|
41
|
+
})(w), f = /* @__PURE__ */ (function() {
|
|
42
|
+
function a(o, t) {
|
|
43
|
+
this.x = o, this.y = t;
|
|
44
|
+
}
|
|
45
|
+
return a;
|
|
46
|
+
})(), D = [
|
|
47
|
+
"click",
|
|
48
|
+
"dblclick",
|
|
49
|
+
"mousewheel",
|
|
50
|
+
"mouseout",
|
|
51
|
+
"mouseup",
|
|
52
|
+
"mousedown",
|
|
53
|
+
"mousemove",
|
|
54
|
+
"contextmenu"
|
|
55
|
+
], d = new T(0, 0, 0, 0), L = (function(a) {
|
|
56
|
+
y(o, a);
|
|
57
|
+
function o(t, r, s, n, e) {
|
|
58
|
+
var i = a.call(this) || this;
|
|
59
|
+
return i._hovered = new f(0, 0), i.storage = t, i.painter = r, i.painterRoot = n, i._pointerSize = e, s = s || new R(), i.proxy = null, i.setHandlerProxy(s), i._draggingMgr = new k(i), i;
|
|
60
|
+
}
|
|
61
|
+
return o.prototype.setHandlerProxy = function(t) {
|
|
62
|
+
this.proxy && this.proxy.dispose(), t && (_(D, function(r) {
|
|
63
|
+
t.on && t.on(r, this[r], this);
|
|
64
|
+
}, this), t.handler = this), this.proxy = t;
|
|
65
|
+
}, o.prototype.mousemove = function(t) {
|
|
66
|
+
var r = t.zrX, s = t.zrY, n = z(this, r, s), e = this._hovered, i = e.target;
|
|
67
|
+
i && !i.__zr && (e = this.findHover(e.x, e.y), i = e.target);
|
|
68
|
+
var u = this._hovered = n ? new f(r, s) : this.findHover(r, s), h = u.target, c = this.proxy;
|
|
69
|
+
c.setCursor && c.setCursor(h ? h.cursor : "default"), i && h !== i && this.dispatchToElement(e, "mouseout", t), this.dispatchToElement(u, "mousemove", t), h && h !== i && this.dispatchToElement(u, "mouseover", t);
|
|
70
|
+
}, o.prototype.mouseout = function(t) {
|
|
71
|
+
var r = t.zrEventControl;
|
|
72
|
+
r !== "only_globalout" && this.dispatchToElement(this._hovered, "mouseout", t), r !== "no_globalout" && this.trigger("globalout", { type: "globalout", event: t });
|
|
73
|
+
}, o.prototype.resize = function() {
|
|
74
|
+
this._hovered = new f(0, 0);
|
|
75
|
+
}, o.prototype.dispatch = function(t, r) {
|
|
76
|
+
var s = this[t];
|
|
77
|
+
s && s.call(this, r);
|
|
78
|
+
}, o.prototype.dispose = function() {
|
|
79
|
+
this.proxy.dispose(), this.storage = null, this.proxy = null, this.painter = null;
|
|
80
|
+
}, o.prototype.setCursorStyle = function(t) {
|
|
81
|
+
var r = this.proxy;
|
|
82
|
+
r.setCursor && r.setCursor(t);
|
|
83
|
+
}, o.prototype.dispatchToElement = function(t, r, s) {
|
|
84
|
+
t = t || {};
|
|
85
|
+
var n = t.target;
|
|
86
|
+
if (!(n && n.silent)) {
|
|
87
|
+
for (var e = "on" + r, i = Y(r, t, s); n && (n[e] && (i.cancelBubble = !!n[e].call(n, i)), n.trigger(r, i), n = n.__hostTarget ? n.__hostTarget : n.parent, !i.cancelBubble); )
|
|
88
|
+
;
|
|
89
|
+
i.cancelBubble || (this.trigger(r, i), this.painter && this.painter.eachOtherLayer && this.painter.eachOtherLayer(function(u) {
|
|
90
|
+
typeof u[e] == "function" && u[e].call(u, i), u.trigger && u.trigger(r, i);
|
|
91
|
+
}));
|
|
92
|
+
}
|
|
93
|
+
}, o.prototype.findHover = function(t, r, s) {
|
|
94
|
+
var n = this.storage.getDisplayList(), e = new f(t, r);
|
|
95
|
+
if (m(n, e, t, r, s), this._pointerSize && !e.target) {
|
|
96
|
+
for (var i = [], u = this._pointerSize, h = u / 2, c = new T(t - h, r - h, u, u), v = n.length - 1; v >= 0; v--) {
|
|
97
|
+
var p = n[v];
|
|
98
|
+
p !== s && !p.ignore && !p.ignoreCoarsePointer && (!p.parent || !p.parent.ignoreCoarsePointer) && (d.copy(p.getBoundingRect()), p.transform && d.applyTransform(p.transform), d.intersect(c) && i.push(p));
|
|
99
|
+
}
|
|
100
|
+
if (i.length)
|
|
101
|
+
for (var b = 4, H = Math.PI / 12, P = Math.PI * 2, l = 0; l < h; l += b)
|
|
102
|
+
for (var g = 0; g < P; g += H) {
|
|
103
|
+
var C = t + l * Math.cos(g), x = r + l * Math.sin(g);
|
|
104
|
+
if (m(i, e, C, x, s), e.target)
|
|
105
|
+
return e;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
return e;
|
|
109
|
+
}, o.prototype.processGesture = function(t, r) {
|
|
110
|
+
this._gestureMgr || (this._gestureMgr = new X());
|
|
111
|
+
var s = this._gestureMgr;
|
|
112
|
+
r === "start" && s.clear();
|
|
113
|
+
var n = s.recognize(t, this.findHover(t.zrX, t.zrY, null).target, this.proxy.dom);
|
|
114
|
+
if (r === "end" && s.clear(), n) {
|
|
115
|
+
var e = n.type;
|
|
116
|
+
t.gestureEvent = e;
|
|
117
|
+
var i = new f();
|
|
118
|
+
i.target = n.target, this.dispatchToElement(i, e, n.event);
|
|
119
|
+
}
|
|
120
|
+
}, o;
|
|
121
|
+
})(w);
|
|
122
|
+
_(["click", "mousedown", "mouseup", "mousewheel", "dblclick", "contextmenu"], function(a) {
|
|
123
|
+
L.prototype[a] = function(o) {
|
|
124
|
+
var t = o.zrX, r = o.zrY, s = z(this, t, r), n, e;
|
|
125
|
+
if ((a !== "mouseup" || !s) && (n = this.findHover(t, r), e = n.target), a === "mousedown")
|
|
126
|
+
this._downEl = e, this._downPoint = [o.zrX, o.zrY], this._upEl = e;
|
|
127
|
+
else if (a === "mouseup")
|
|
128
|
+
this._upEl = e;
|
|
129
|
+
else if (a === "click") {
|
|
130
|
+
if (this._downEl !== this._upEl || !this._downPoint || M(this._downPoint, [o.zrX, o.zrY]) > 4)
|
|
131
|
+
return;
|
|
132
|
+
this._downPoint = null;
|
|
133
|
+
}
|
|
134
|
+
this.dispatchToElement(n, a, o);
|
|
135
|
+
};
|
|
136
|
+
});
|
|
137
|
+
function G(a, o, t) {
|
|
138
|
+
if (a[a.rectHover ? "rectContain" : "contain"](o, t)) {
|
|
139
|
+
for (var r = a, s = void 0, n = !1; r; ) {
|
|
140
|
+
if (r.ignoreClip && (n = !0), !n) {
|
|
141
|
+
var e = r.getClipPath();
|
|
142
|
+
if (e && !e.contain(o, t))
|
|
143
|
+
return !1;
|
|
144
|
+
}
|
|
145
|
+
r.silent && (s = !0);
|
|
146
|
+
var i = r.__hostTarget;
|
|
147
|
+
r = i || r.parent;
|
|
148
|
+
}
|
|
149
|
+
return s ? E : !0;
|
|
150
|
+
}
|
|
151
|
+
return !1;
|
|
152
|
+
}
|
|
153
|
+
function m(a, o, t, r, s) {
|
|
154
|
+
for (var n = a.length - 1; n >= 0; n--) {
|
|
155
|
+
var e = a[n], i = void 0;
|
|
156
|
+
if (e !== s && !e.ignore && (i = G(e, t, r)) && (!o.topTarget && (o.topTarget = e), i !== E)) {
|
|
157
|
+
o.target = e;
|
|
158
|
+
break;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
function z(a, o, t) {
|
|
163
|
+
var r = a.painter;
|
|
164
|
+
return o < 0 || o > r.getWidth() || t < 0 || t > r.getHeight();
|
|
165
|
+
}
|
|
166
|
+
export {
|
|
167
|
+
L as default
|
|
168
|
+
};
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { indexOf as L } from "./core/util.js";
|
|
2
|
+
import z from "./core/timsort.js";
|
|
3
|
+
import { REDRAW_BIT as g } from "./graphic/constants.js";
|
|
4
|
+
var h = !1;
|
|
5
|
+
function f() {
|
|
6
|
+
h || (h = !0, console.warn("z / z2 / zlevel of displayable is invalid, which may cause unexpected errors"));
|
|
7
|
+
}
|
|
8
|
+
function v(s, t) {
|
|
9
|
+
return s.zlevel === t.zlevel ? s.z === t.z ? s.z2 - t.z2 : s.z - t.z : s.zlevel - t.zlevel;
|
|
10
|
+
}
|
|
11
|
+
var R = (function() {
|
|
12
|
+
function s() {
|
|
13
|
+
this._roots = [], this._displayList = [], this._displayListLen = 0, this.displayableSortFunc = v;
|
|
14
|
+
}
|
|
15
|
+
return s.prototype.traverse = function(t, e) {
|
|
16
|
+
for (var i = 0; i < this._roots.length; i++)
|
|
17
|
+
this._roots[i].traverse(t, e);
|
|
18
|
+
}, s.prototype.getDisplayList = function(t, e) {
|
|
19
|
+
e = e || !1;
|
|
20
|
+
var i = this._displayList;
|
|
21
|
+
return (t || !i.length) && this.updateDisplayList(e), i;
|
|
22
|
+
}, s.prototype.updateDisplayList = function(t) {
|
|
23
|
+
this._displayListLen = 0;
|
|
24
|
+
for (var e = this._roots, i = this._displayList, o = 0, a = e.length; o < a; o++)
|
|
25
|
+
this._updateAndAddDisplayable(e[o], null, t);
|
|
26
|
+
i.length = this._displayListLen, z(i, v);
|
|
27
|
+
}, s.prototype._updateAndAddDisplayable = function(t, e, i) {
|
|
28
|
+
if (!(t.ignore && !i)) {
|
|
29
|
+
t.beforeUpdate(), t.update(), t.afterUpdate();
|
|
30
|
+
var o = t.getClipPath();
|
|
31
|
+
if (t.ignoreClip)
|
|
32
|
+
e = null;
|
|
33
|
+
else if (o) {
|
|
34
|
+
e ? e = e.slice() : e = [];
|
|
35
|
+
for (var a = o, l = t; a; )
|
|
36
|
+
a.parent = l, a.updateTransform(), e.push(a), l = a, a = a.getClipPath();
|
|
37
|
+
}
|
|
38
|
+
if (t.childrenRef) {
|
|
39
|
+
for (var d = t.childrenRef(), n = 0; n < d.length; n++) {
|
|
40
|
+
var _ = d[n];
|
|
41
|
+
t.__dirty && (_.__dirty |= g), this._updateAndAddDisplayable(_, e, i);
|
|
42
|
+
}
|
|
43
|
+
t.__dirty = 0;
|
|
44
|
+
} else {
|
|
45
|
+
var r = t;
|
|
46
|
+
e && e.length ? r.__clipPaths = e : r.__clipPaths && r.__clipPaths.length > 0 && (r.__clipPaths = []), isNaN(r.z) && (f(), r.z = 0), isNaN(r.z2) && (f(), r.z2 = 0), isNaN(r.zlevel) && (f(), r.zlevel = 0), this._displayList[this._displayListLen++] = r;
|
|
47
|
+
}
|
|
48
|
+
var p = t.getDecalElement && t.getDecalElement();
|
|
49
|
+
p && this._updateAndAddDisplayable(p, e, i);
|
|
50
|
+
var y = t.getTextGuideLine();
|
|
51
|
+
y && this._updateAndAddDisplayable(y, e, i);
|
|
52
|
+
var u = t.getTextContent();
|
|
53
|
+
u && this._updateAndAddDisplayable(u, e, i);
|
|
54
|
+
}
|
|
55
|
+
}, s.prototype.addRoot = function(t) {
|
|
56
|
+
t.__zr && t.__zr.storage === this || this._roots.push(t);
|
|
57
|
+
}, s.prototype.delRoot = function(t) {
|
|
58
|
+
if (t instanceof Array) {
|
|
59
|
+
for (var e = 0, i = t.length; e < i; e++)
|
|
60
|
+
this.delRoot(t[e]);
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
var o = L(this._roots, t);
|
|
64
|
+
o >= 0 && this._roots.splice(o, 1);
|
|
65
|
+
}, s.prototype.delAllRoots = function() {
|
|
66
|
+
this._roots = [], this._displayList = [], this._displayListLen = 0;
|
|
67
|
+
}, s.prototype.getRoots = function() {
|
|
68
|
+
return this._roots;
|
|
69
|
+
}, s.prototype.dispose = function() {
|
|
70
|
+
this._displayList = null, this._roots = null;
|
|
71
|
+
}, s;
|
|
72
|
+
})();
|
|
73
|
+
export {
|
|
74
|
+
R as default
|
|
75
|
+
};
|