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,390 @@
|
|
|
1
|
+
import { each as d, isArray as G, isArrayLike as Q, isObject as X, keys as $, indexOf as M, extend as v } from "../../../zrender/lib/core/util.js";
|
|
2
|
+
import { getECData as S } from "./innerStore.js";
|
|
3
|
+
import { liftColor as x } from "../../../zrender/lib/tool/color.js";
|
|
4
|
+
import { makeInner as V, queryDataIndex as z } from "./model.js";
|
|
5
|
+
import ee from "../../../zrender/lib/graphic/Path.js";
|
|
6
|
+
var B = 1, b = {}, Y = V(), T = V(), O = 0, I = 1, C = 2, we = ["emphasis", "blur", "select"], He = ["normal", "emphasis", "blur", "select"], te = 10, ne = 9, re = "highlight", ae = "downplay", R = "select", ie = "unselect", N = "toggleSelect";
|
|
7
|
+
function g(e) {
|
|
8
|
+
return e != null && e !== "none";
|
|
9
|
+
}
|
|
10
|
+
function y(e, t, n) {
|
|
11
|
+
e.onHoverStateChange && (e.hoverState || 0) !== n && e.onHoverStateChange(t), e.hoverState = n;
|
|
12
|
+
}
|
|
13
|
+
function U(e) {
|
|
14
|
+
y(e, "emphasis", C);
|
|
15
|
+
}
|
|
16
|
+
function W(e) {
|
|
17
|
+
e.hoverState === C && y(e, "normal", O);
|
|
18
|
+
}
|
|
19
|
+
function w(e) {
|
|
20
|
+
y(e, "blur", I);
|
|
21
|
+
}
|
|
22
|
+
function Z(e) {
|
|
23
|
+
e.hoverState === I && y(e, "normal", O);
|
|
24
|
+
}
|
|
25
|
+
function oe(e) {
|
|
26
|
+
e.selected = !0;
|
|
27
|
+
}
|
|
28
|
+
function le(e) {
|
|
29
|
+
e.selected = !1;
|
|
30
|
+
}
|
|
31
|
+
function A(e, t, n) {
|
|
32
|
+
t(e, n);
|
|
33
|
+
}
|
|
34
|
+
function h(e, t, n) {
|
|
35
|
+
A(e, t, n), e.isGroup && e.traverse(function(r) {
|
|
36
|
+
A(r, t, n);
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
function xe(e, t) {
|
|
40
|
+
switch (t) {
|
|
41
|
+
case "emphasis":
|
|
42
|
+
e.hoverState = C;
|
|
43
|
+
break;
|
|
44
|
+
case "normal":
|
|
45
|
+
e.hoverState = O;
|
|
46
|
+
break;
|
|
47
|
+
case "blur":
|
|
48
|
+
e.hoverState = I;
|
|
49
|
+
break;
|
|
50
|
+
case "select":
|
|
51
|
+
e.selected = !0;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
function ue(e, t, n, r) {
|
|
55
|
+
for (var a = e.style, i = {}, o = 0; o < t.length; o++) {
|
|
56
|
+
var u = t[o], f = a[u];
|
|
57
|
+
i[u] = f ?? (r && r[u]);
|
|
58
|
+
}
|
|
59
|
+
for (var o = 0; o < e.animators.length; o++) {
|
|
60
|
+
var l = e.animators[o];
|
|
61
|
+
l.__fromStateTransition && l.__fromStateTransition.indexOf(n) < 0 && l.targetName === "style" && l.saveTo(i, t);
|
|
62
|
+
}
|
|
63
|
+
return i;
|
|
64
|
+
}
|
|
65
|
+
function fe(e, t, n, r) {
|
|
66
|
+
var a = n && M(n, "select") >= 0, i = !1;
|
|
67
|
+
if (e instanceof ee) {
|
|
68
|
+
var o = Y(e), u = a && o.selectFill || o.normalFill, f = a && o.selectStroke || o.normalStroke;
|
|
69
|
+
if (g(u) || g(f)) {
|
|
70
|
+
r = r || {};
|
|
71
|
+
var l = r.style || {};
|
|
72
|
+
l.fill === "inherit" ? (i = !0, r = v({}, r), l = v({}, l), l.fill = u) : !g(l.fill) && g(u) ? (i = !0, r = v({}, r), l = v({}, l), l.fill = x(u)) : !g(l.stroke) && g(f) && (i || (r = v({}, r), l = v({}, l)), l.stroke = x(f)), r.style = l;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
if (r && r.z2 == null) {
|
|
76
|
+
i || (r = v({}, r));
|
|
77
|
+
var s = e.z2EmphasisLift;
|
|
78
|
+
r.z2 = e.z2 + (s ?? te);
|
|
79
|
+
}
|
|
80
|
+
return r;
|
|
81
|
+
}
|
|
82
|
+
function ce(e, t, n) {
|
|
83
|
+
if (n && n.z2 == null) {
|
|
84
|
+
n = v({}, n);
|
|
85
|
+
var r = e.z2SelectLift;
|
|
86
|
+
n.z2 = e.z2 + (r ?? ne);
|
|
87
|
+
}
|
|
88
|
+
return n;
|
|
89
|
+
}
|
|
90
|
+
function se(e, t, n) {
|
|
91
|
+
var r = M(e.currentStates, t) >= 0, a = e.style.opacity, i = r ? null : ue(e, ["opacity"], t, {
|
|
92
|
+
opacity: 1
|
|
93
|
+
});
|
|
94
|
+
n = n || {};
|
|
95
|
+
var o = n.style || {};
|
|
96
|
+
return o.opacity == null && (n = v({}, n), o = v({
|
|
97
|
+
// Already being applied 'emphasis'. DON'T mul opacity multiple times.
|
|
98
|
+
opacity: r ? a : i.opacity * 0.1
|
|
99
|
+
}, o), n.style = o), n;
|
|
100
|
+
}
|
|
101
|
+
function D(e, t) {
|
|
102
|
+
var n = this.states[e];
|
|
103
|
+
if (this.style) {
|
|
104
|
+
if (e === "emphasis")
|
|
105
|
+
return fe(this, e, t, n);
|
|
106
|
+
if (e === "blur")
|
|
107
|
+
return se(this, e, n);
|
|
108
|
+
if (e === "select")
|
|
109
|
+
return ce(this, e, n);
|
|
110
|
+
}
|
|
111
|
+
return n;
|
|
112
|
+
}
|
|
113
|
+
function ve(e) {
|
|
114
|
+
e.stateProxy = D;
|
|
115
|
+
var t = e.getTextContent(), n = e.getTextGuideLine();
|
|
116
|
+
t && (t.stateProxy = D), n && (n.stateProxy = D);
|
|
117
|
+
}
|
|
118
|
+
function L(e, t) {
|
|
119
|
+
!j(e, t) && !e.__highByOuter && h(e, U);
|
|
120
|
+
}
|
|
121
|
+
function P(e, t) {
|
|
122
|
+
!j(e, t) && !e.__highByOuter && h(e, W);
|
|
123
|
+
}
|
|
124
|
+
function Be(e, t) {
|
|
125
|
+
e.__highByOuter |= 1 << (t || 0), h(e, U);
|
|
126
|
+
}
|
|
127
|
+
function be(e, t) {
|
|
128
|
+
!(e.__highByOuter &= ~(1 << (t || 0))) && h(e, W);
|
|
129
|
+
}
|
|
130
|
+
function Ae(e) {
|
|
131
|
+
h(e, w);
|
|
132
|
+
}
|
|
133
|
+
function he(e) {
|
|
134
|
+
h(e, Z);
|
|
135
|
+
}
|
|
136
|
+
function ge(e) {
|
|
137
|
+
h(e, oe);
|
|
138
|
+
}
|
|
139
|
+
function Se(e) {
|
|
140
|
+
h(e, le);
|
|
141
|
+
}
|
|
142
|
+
function j(e, t) {
|
|
143
|
+
return e.__highDownSilentOnTouch && t.zrByTouch;
|
|
144
|
+
}
|
|
145
|
+
function de(e) {
|
|
146
|
+
var t = e.getModel(), n = [], r = [];
|
|
147
|
+
t.eachComponent(function(a, i) {
|
|
148
|
+
var o = T(i), u = a === "series", f = u ? e.getViewOfSeriesModel(i) : e.getViewOfComponentModel(i);
|
|
149
|
+
!u && r.push(f), o.isBlured && (f.group.traverse(function(l) {
|
|
150
|
+
Z(l);
|
|
151
|
+
}), u && n.push(i)), o.isBlured = !1;
|
|
152
|
+
}), d(r, function(a) {
|
|
153
|
+
a && a.toggleBlurSeries && a.toggleBlurSeries(n, !1, t);
|
|
154
|
+
});
|
|
155
|
+
}
|
|
156
|
+
function E(e, t, n, r) {
|
|
157
|
+
var a = r.getModel();
|
|
158
|
+
n = n || "coordinateSystem";
|
|
159
|
+
function i(l, s) {
|
|
160
|
+
for (var c = 0; c < s.length; c++) {
|
|
161
|
+
var p = l.getItemGraphicEl(s[c]);
|
|
162
|
+
p && he(p);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
if (e != null && !(!t || t === "none")) {
|
|
166
|
+
var o = a.getSeriesByIndex(e), u = o.coordinateSystem;
|
|
167
|
+
u && u.master && (u = u.master);
|
|
168
|
+
var f = [];
|
|
169
|
+
a.eachSeries(function(l) {
|
|
170
|
+
var s = o === l, c = l.coordinateSystem;
|
|
171
|
+
c && c.master && (c = c.master);
|
|
172
|
+
var p = c && u ? c === u : s;
|
|
173
|
+
if (!// Not blur other series if blurScope series
|
|
174
|
+
(n === "series" && !s || n === "coordinateSystem" && !p || t === "series" && s)) {
|
|
175
|
+
var K = r.getViewOfSeriesModel(l);
|
|
176
|
+
if (K.group.traverse(function(H) {
|
|
177
|
+
H.__highByOuter && s && t === "self" || w(H);
|
|
178
|
+
}), Q(t))
|
|
179
|
+
i(l.getData(), t);
|
|
180
|
+
else if (X(t))
|
|
181
|
+
for (var _ = $(t), m = 0; m < _.length; m++)
|
|
182
|
+
i(l.getData(_[m]), t[_[m]]);
|
|
183
|
+
f.push(l), T(l).isBlured = !0;
|
|
184
|
+
}
|
|
185
|
+
}), a.eachComponent(function(l, s) {
|
|
186
|
+
if (l !== "series") {
|
|
187
|
+
var c = r.getViewOfComponentModel(s);
|
|
188
|
+
c && c.toggleBlurSeries && c.toggleBlurSeries(f, !0, a);
|
|
189
|
+
}
|
|
190
|
+
});
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
function k(e, t, n) {
|
|
194
|
+
if (!(e == null || t == null)) {
|
|
195
|
+
var r = n.getModel().getComponent(e, t);
|
|
196
|
+
if (r) {
|
|
197
|
+
T(r).isBlured = !0;
|
|
198
|
+
var a = n.getViewOfComponentModel(r);
|
|
199
|
+
!a || !a.focusBlurEnabled || a.group.traverse(function(i) {
|
|
200
|
+
w(i);
|
|
201
|
+
});
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
function Le(e, t, n) {
|
|
206
|
+
var r = e.seriesIndex, a = e.getData(t.dataType);
|
|
207
|
+
if (a) {
|
|
208
|
+
var i = z(a, t);
|
|
209
|
+
i = (G(i) ? i[0] : i) || 0;
|
|
210
|
+
var o = a.getItemGraphicEl(i);
|
|
211
|
+
if (!o)
|
|
212
|
+
for (var u = a.count(), f = 0; !o && f < u; )
|
|
213
|
+
o = a.getItemGraphicEl(f++);
|
|
214
|
+
if (o) {
|
|
215
|
+
var l = S(o);
|
|
216
|
+
E(r, l.focus, l.blurScope, n);
|
|
217
|
+
} else {
|
|
218
|
+
var s = e.get(["emphasis", "focus"]), c = e.get(["emphasis", "blurScope"]);
|
|
219
|
+
s != null && E(r, s, c, n);
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
function q(e, t, n, r) {
|
|
224
|
+
var a = {
|
|
225
|
+
focusSelf: !1,
|
|
226
|
+
dispatchers: null
|
|
227
|
+
};
|
|
228
|
+
if (e == null || e === "series" || t == null || n == null)
|
|
229
|
+
return a;
|
|
230
|
+
var i = r.getModel().getComponent(e, t);
|
|
231
|
+
if (!i)
|
|
232
|
+
return a;
|
|
233
|
+
var o = r.getViewOfComponentModel(i);
|
|
234
|
+
if (!o || !o.findHighDownDispatchers)
|
|
235
|
+
return a;
|
|
236
|
+
for (var u = o.findHighDownDispatchers(n), f, l = 0; l < u.length; l++)
|
|
237
|
+
if (S(u[l]).focus === "self") {
|
|
238
|
+
f = !0;
|
|
239
|
+
break;
|
|
240
|
+
}
|
|
241
|
+
return {
|
|
242
|
+
focusSelf: f,
|
|
243
|
+
dispatchers: u
|
|
244
|
+
};
|
|
245
|
+
}
|
|
246
|
+
function Pe(e, t, n) {
|
|
247
|
+
var r = S(e), a = q(r.componentMainType, r.componentIndex, r.componentHighDownName, n), i = a.dispatchers, o = a.focusSelf;
|
|
248
|
+
i ? (o && k(r.componentMainType, r.componentIndex, n), d(i, function(u) {
|
|
249
|
+
return L(u, t);
|
|
250
|
+
})) : (E(r.seriesIndex, r.focus, r.blurScope, n), r.focus === "self" && k(r.componentMainType, r.componentIndex, n), L(e, t));
|
|
251
|
+
}
|
|
252
|
+
function ke(e, t, n) {
|
|
253
|
+
de(n);
|
|
254
|
+
var r = S(e), a = q(r.componentMainType, r.componentIndex, r.componentHighDownName, n).dispatchers;
|
|
255
|
+
a ? d(a, function(i) {
|
|
256
|
+
return P(i, t);
|
|
257
|
+
}) : P(e, t);
|
|
258
|
+
}
|
|
259
|
+
function Fe(e, t, n) {
|
|
260
|
+
if (De(t)) {
|
|
261
|
+
var r = t.dataType, a = e.getData(r), i = z(a, t);
|
|
262
|
+
G(i) || (i = [i]), e[t.type === N ? "toggleSelect" : t.type === R ? "select" : "unselect"](i, r);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
function Ge(e) {
|
|
266
|
+
var t = e.getAllData();
|
|
267
|
+
d(t, function(n) {
|
|
268
|
+
var r = n.data, a = n.type;
|
|
269
|
+
r.eachItemGraphicEl(function(i, o) {
|
|
270
|
+
e.isSelected(o, a) ? ge(i) : Se(i);
|
|
271
|
+
});
|
|
272
|
+
});
|
|
273
|
+
}
|
|
274
|
+
function Me(e) {
|
|
275
|
+
var t = [];
|
|
276
|
+
return e.eachSeries(function(n) {
|
|
277
|
+
var r = n.getAllData();
|
|
278
|
+
d(r, function(a) {
|
|
279
|
+
a.data;
|
|
280
|
+
var i = a.type, o = n.getSelectedDataIndices();
|
|
281
|
+
if (o.length > 0) {
|
|
282
|
+
var u = {
|
|
283
|
+
dataIndex: o,
|
|
284
|
+
seriesIndex: n.seriesIndex
|
|
285
|
+
};
|
|
286
|
+
i != null && (u.dataType = i), t.push(u);
|
|
287
|
+
}
|
|
288
|
+
});
|
|
289
|
+
}), t;
|
|
290
|
+
}
|
|
291
|
+
function pe(e, t, n) {
|
|
292
|
+
J(e, !0), h(e, ve), ye(e, t, n);
|
|
293
|
+
}
|
|
294
|
+
function me(e) {
|
|
295
|
+
J(e, !1);
|
|
296
|
+
}
|
|
297
|
+
function Ve(e, t, n, r) {
|
|
298
|
+
r ? me(e) : pe(e, t, n);
|
|
299
|
+
}
|
|
300
|
+
function ye(e, t, n) {
|
|
301
|
+
var r = S(e);
|
|
302
|
+
t != null ? (r.focus = t, r.blurScope = n) : r.focus && (r.focus = null);
|
|
303
|
+
}
|
|
304
|
+
var F = ["emphasis", "blur", "select"], _e = {
|
|
305
|
+
itemStyle: "getItemStyle",
|
|
306
|
+
lineStyle: "getLineStyle",
|
|
307
|
+
areaStyle: "getAreaStyle"
|
|
308
|
+
};
|
|
309
|
+
function ze(e, t, n, r) {
|
|
310
|
+
n = n || "itemStyle";
|
|
311
|
+
for (var a = 0; a < F.length; a++) {
|
|
312
|
+
var i = F[a], o = t.getModel([i, n]), u = e.ensureState(i);
|
|
313
|
+
u.style = r ? r(o) : o[_e[n]]();
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
function J(e, t) {
|
|
317
|
+
var n = t === !1, r = e;
|
|
318
|
+
e.highDownSilentOnTouch && (r.__highDownSilentOnTouch = e.highDownSilentOnTouch), (!n || r.__highDownDispatcher) && (r.__highByOuter = r.__highByOuter || 0, r.__highDownDispatcher = !n);
|
|
319
|
+
}
|
|
320
|
+
function Ye(e) {
|
|
321
|
+
return !!(e && e.__highDownDispatcher);
|
|
322
|
+
}
|
|
323
|
+
function Re(e, t, n) {
|
|
324
|
+
var r = S(e);
|
|
325
|
+
r.componentMainType = t.mainType, r.componentIndex = t.componentIndex, r.componentHighDownName = n;
|
|
326
|
+
}
|
|
327
|
+
function Ne(e) {
|
|
328
|
+
var t = b[e];
|
|
329
|
+
return t == null && B <= 32 && (t = b[e] = B++), t;
|
|
330
|
+
}
|
|
331
|
+
function De(e) {
|
|
332
|
+
var t = e.type;
|
|
333
|
+
return t === R || t === ie || t === N;
|
|
334
|
+
}
|
|
335
|
+
function Ue(e) {
|
|
336
|
+
var t = e.type;
|
|
337
|
+
return t === re || t === ae;
|
|
338
|
+
}
|
|
339
|
+
function We(e) {
|
|
340
|
+
var t = Y(e);
|
|
341
|
+
t.normalFill = e.style.fill, t.normalStroke = e.style.stroke;
|
|
342
|
+
var n = e.states.select || {};
|
|
343
|
+
t.selectFill = n.style && n.style.fill || null, t.selectStroke = n.style && n.style.stroke || null;
|
|
344
|
+
}
|
|
345
|
+
export {
|
|
346
|
+
He as DISPLAY_STATES,
|
|
347
|
+
ae as DOWNPLAY_ACTION_TYPE,
|
|
348
|
+
re as HIGHLIGHT_ACTION_TYPE,
|
|
349
|
+
I as HOVER_STATE_BLUR,
|
|
350
|
+
C as HOVER_STATE_EMPHASIS,
|
|
351
|
+
O as HOVER_STATE_NORMAL,
|
|
352
|
+
R as SELECT_ACTION_TYPE,
|
|
353
|
+
we as SPECIAL_STATES,
|
|
354
|
+
N as TOGGLE_SELECT_ACTION_TYPE,
|
|
355
|
+
ie as UNSELECT_ACTION_TYPE,
|
|
356
|
+
te as Z2_EMPHASIS_LIFT,
|
|
357
|
+
ne as Z2_SELECT_LIFT,
|
|
358
|
+
de as allLeaveBlur,
|
|
359
|
+
k as blurComponent,
|
|
360
|
+
E as blurSeries,
|
|
361
|
+
Le as blurSeriesFromHighlightPayload,
|
|
362
|
+
me as disableHoverEmphasis,
|
|
363
|
+
Re as enableComponentHighDownFeatures,
|
|
364
|
+
pe as enableHoverEmphasis,
|
|
365
|
+
ye as enableHoverFocus,
|
|
366
|
+
Ae as enterBlur,
|
|
367
|
+
Be as enterEmphasis,
|
|
368
|
+
L as enterEmphasisWhenMouseOver,
|
|
369
|
+
ge as enterSelect,
|
|
370
|
+
q as findComponentHighDownDispatchers,
|
|
371
|
+
Me as getAllSelectedIndices,
|
|
372
|
+
Ne as getHighlightDigit,
|
|
373
|
+
ke as handleGlobalMouseOutForHighDown,
|
|
374
|
+
Pe as handleGlobalMouseOverForHighDown,
|
|
375
|
+
Ye as isHighDownDispatcher,
|
|
376
|
+
Ue as isHighDownPayload,
|
|
377
|
+
De as isSelectChangePayload,
|
|
378
|
+
he as leaveBlur,
|
|
379
|
+
be as leaveEmphasis,
|
|
380
|
+
P as leaveEmphasisWhenMouseOut,
|
|
381
|
+
Se as leaveSelect,
|
|
382
|
+
We as savePathStates,
|
|
383
|
+
J as setAsHighDownDispatcher,
|
|
384
|
+
ve as setDefaultStateProxy,
|
|
385
|
+
xe as setStatesFlag,
|
|
386
|
+
ze as setStatesStylesFromModel,
|
|
387
|
+
Ve as toggleHoverEmphasis,
|
|
388
|
+
Fe as toggleSelectionFromPayload,
|
|
389
|
+
Ge as updateSeriesElementSelection
|
|
390
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { hasOwn as o, each as r } from "../../../zrender/lib/core/util.js";
|
|
2
|
+
function g(e, t, l, n) {
|
|
3
|
+
return e && (e.legacy || e.legacy !== !1 && !l && !n && t !== "tspan" && (t === "text" || o(e, "text")));
|
|
4
|
+
}
|
|
5
|
+
function B(e, t, l) {
|
|
6
|
+
var n = e, x, a, d;
|
|
7
|
+
if (t === "text")
|
|
8
|
+
d = n;
|
|
9
|
+
else {
|
|
10
|
+
d = {}, o(n, "text") && (d.text = n.text), o(n, "rich") && (d.rich = n.rich), o(n, "textFill") && (d.fill = n.textFill), o(n, "textStroke") && (d.stroke = n.textStroke), o(n, "fontFamily") && (d.fontFamily = n.fontFamily), o(n, "fontSize") && (d.fontSize = n.fontSize), o(n, "fontStyle") && (d.fontStyle = n.fontStyle), o(n, "fontWeight") && (d.fontWeight = n.fontWeight), a = {
|
|
11
|
+
type: "text",
|
|
12
|
+
style: d,
|
|
13
|
+
// ec4 does not support rectText trigger.
|
|
14
|
+
// And when text position is different in normal and emphasis
|
|
15
|
+
// => hover text trigger emphasis;
|
|
16
|
+
// => text position changed, leave mouse pointer immediately;
|
|
17
|
+
// That might cause incorrect state.
|
|
18
|
+
silent: !0
|
|
19
|
+
}, x = {};
|
|
20
|
+
var i = o(n, "textPosition");
|
|
21
|
+
l ? x.position = i ? n.textPosition : "inside" : i && (x.position = n.textPosition), o(n, "textPosition") && (x.position = n.textPosition), o(n, "textOffset") && (x.offset = n.textOffset), o(n, "textRotation") && (x.rotation = n.textRotation), o(n, "textDistance") && (x.distance = n.textDistance);
|
|
22
|
+
}
|
|
23
|
+
return s(d, e), r(d.rich, function(f) {
|
|
24
|
+
s(f, f);
|
|
25
|
+
}), {
|
|
26
|
+
textConfig: x,
|
|
27
|
+
textContent: a
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
function s(e, t) {
|
|
31
|
+
t && (t.font = t.textFont || t.font, o(t, "textStrokeWidth") && (e.lineWidth = t.textStrokeWidth), o(t, "textAlign") && (e.align = t.textAlign), o(t, "textVerticalAlign") && (e.verticalAlign = t.textVerticalAlign), o(t, "textLineHeight") && (e.lineHeight = t.textLineHeight), o(t, "textWidth") && (e.width = t.textWidth), o(t, "textHeight") && (e.height = t.textHeight), o(t, "textBackgroundColor") && (e.backgroundColor = t.textBackgroundColor), o(t, "textPadding") && (e.padding = t.textPadding), o(t, "textBorderColor") && (e.borderColor = t.textBorderColor), o(t, "textBorderWidth") && (e.borderWidth = t.textBorderWidth), o(t, "textBorderRadius") && (e.borderRadius = t.textBorderRadius), o(t, "textBoxShadowColor") && (e.shadowColor = t.textBoxShadowColor), o(t, "textBoxShadowBlur") && (e.shadowBlur = t.textBoxShadowBlur), o(t, "textBoxShadowOffsetX") && (e.shadowOffsetX = t.textBoxShadowOffsetX), o(t, "textBoxShadowOffsetY") && (e.shadowOffsetY = t.textBoxShadowOffsetY));
|
|
32
|
+
}
|
|
33
|
+
function k(e, t, l) {
|
|
34
|
+
var n = e;
|
|
35
|
+
n.textPosition = n.textPosition || l.position || "inside", l.offset != null && (n.textOffset = l.offset), l.rotation != null && (n.textRotation = l.rotation), l.distance != null && (n.textDistance = l.distance);
|
|
36
|
+
var x = n.textPosition.indexOf("inside") >= 0, a = e.fill || "#000";
|
|
37
|
+
S(n, t);
|
|
38
|
+
var d = n.textFill == null;
|
|
39
|
+
return x ? d && (n.textFill = l.insideFill || "#fff", !n.textStroke && l.insideStroke && (n.textStroke = l.insideStroke), !n.textStroke && (n.textStroke = a), n.textStrokeWidth == null && (n.textStrokeWidth = 2)) : (d && (n.textFill = e.fill || l.outsideFill || "#000"), !n.textStroke && l.outsideStroke && (n.textStroke = l.outsideStroke)), n.text = t.text, n.rich = t.rich, r(t.rich, function(i) {
|
|
40
|
+
S(i, i);
|
|
41
|
+
}), n;
|
|
42
|
+
}
|
|
43
|
+
function S(e, t) {
|
|
44
|
+
t && (o(t, "fill") && (e.textFill = t.fill), o(t, "stroke") && (e.textStroke = t.fill), o(t, "lineWidth") && (e.textStrokeWidth = t.lineWidth), o(t, "font") && (e.font = t.font), o(t, "fontStyle") && (e.fontStyle = t.fontStyle), o(t, "fontWeight") && (e.fontWeight = t.fontWeight), o(t, "fontSize") && (e.fontSize = t.fontSize), o(t, "fontFamily") && (e.fontFamily = t.fontFamily), o(t, "align") && (e.textAlign = t.align), o(t, "verticalAlign") && (e.textVerticalAlign = t.verticalAlign), o(t, "lineHeight") && (e.textLineHeight = t.lineHeight), o(t, "width") && (e.textWidth = t.width), o(t, "height") && (e.textHeight = t.height), o(t, "backgroundColor") && (e.textBackgroundColor = t.backgroundColor), o(t, "padding") && (e.textPadding = t.padding), o(t, "borderColor") && (e.textBorderColor = t.borderColor), o(t, "borderWidth") && (e.textBorderWidth = t.borderWidth), o(t, "borderRadius") && (e.textBorderRadius = t.borderRadius), o(t, "shadowColor") && (e.textBoxShadowColor = t.shadowColor), o(t, "shadowBlur") && (e.textBoxShadowBlur = t.shadowBlur), o(t, "shadowOffsetX") && (e.textBoxShadowOffsetX = t.shadowOffsetX), o(t, "shadowOffsetY") && (e.textBoxShadowOffsetY = t.shadowOffsetY), o(t, "textShadowColor") && (e.textShadowColor = t.textShadowColor), o(t, "textShadowBlur") && (e.textShadowBlur = t.textShadowBlur), o(t, "textShadowOffsetX") && (e.textShadowOffsetX = t.textShadowOffsetX), o(t, "textShadowOffsetY") && (e.textShadowOffsetY = t.textShadowOffsetY));
|
|
45
|
+
}
|
|
46
|
+
export {
|
|
47
|
+
B as convertFromEC4CompatibleStyle,
|
|
48
|
+
k as convertToEC4StyleForCustomSerise,
|
|
49
|
+
g as isEC4CompatibleStyle
|
|
50
|
+
};
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
import { isArray as y, retrieve2 as M, each as C } from "../../../zrender/lib/core/util.js";
|
|
2
|
+
import { makeImage as k, makePath as R } from "./graphic.js";
|
|
3
|
+
import P from "../../../zrender/lib/core/BoundingRect.js";
|
|
4
|
+
import { calculateTextPosition as B } from "../../../zrender/lib/contain/text.js";
|
|
5
|
+
import { parsePercent as T } from "./number.js";
|
|
6
|
+
import h from "../../../zrender/lib/graphic/Path.js";
|
|
7
|
+
import L from "../../../zrender/lib/graphic/shape/Circle.js";
|
|
8
|
+
import l from "../../../zrender/lib/graphic/shape/Rect.js";
|
|
9
|
+
import _ from "../../../zrender/lib/graphic/shape/Line.js";
|
|
10
|
+
var E = h.extend({
|
|
11
|
+
type: "triangle",
|
|
12
|
+
shape: {
|
|
13
|
+
cx: 0,
|
|
14
|
+
cy: 0,
|
|
15
|
+
width: 0,
|
|
16
|
+
height: 0
|
|
17
|
+
},
|
|
18
|
+
buildPath: function(i, n) {
|
|
19
|
+
var r = n.cx, e = n.cy, t = n.width / 2, o = n.height / 2;
|
|
20
|
+
i.moveTo(r, e - o), i.lineTo(r + t, e + o), i.lineTo(r - t, e + o), i.closePath();
|
|
21
|
+
}
|
|
22
|
+
}), I = h.extend({
|
|
23
|
+
type: "diamond",
|
|
24
|
+
shape: {
|
|
25
|
+
cx: 0,
|
|
26
|
+
cy: 0,
|
|
27
|
+
width: 0,
|
|
28
|
+
height: 0
|
|
29
|
+
},
|
|
30
|
+
buildPath: function(i, n) {
|
|
31
|
+
var r = n.cx, e = n.cy, t = n.width / 2, o = n.height / 2;
|
|
32
|
+
i.moveTo(r, e - o), i.lineTo(r + t, e), i.lineTo(r, e + o), i.lineTo(r - t, e), i.closePath();
|
|
33
|
+
}
|
|
34
|
+
}), q = h.extend({
|
|
35
|
+
type: "pin",
|
|
36
|
+
shape: {
|
|
37
|
+
// x, y on the cusp
|
|
38
|
+
x: 0,
|
|
39
|
+
y: 0,
|
|
40
|
+
width: 0,
|
|
41
|
+
height: 0
|
|
42
|
+
},
|
|
43
|
+
buildPath: function(i, n) {
|
|
44
|
+
var r = n.x, e = n.y, t = n.width / 5 * 3, o = Math.max(t, n.height), a = t / 2, d = a * a / (o - a), c = e - o + a + d, v = Math.asin(d / a), u = Math.cos(v) * a, m = Math.sin(v), x = Math.cos(v), f = a * 0.6, w = a * 0.7;
|
|
45
|
+
i.moveTo(r - u, c + d), i.arc(r, c, a, Math.PI - v, Math.PI * 2 + v), i.bezierCurveTo(r + u - m * f, c + d + x * f, r, e - w, r, e), i.bezierCurveTo(r, e - w, r - u + m * f, c + d + x * f, r - u, c + d), i.closePath();
|
|
46
|
+
}
|
|
47
|
+
}), z = h.extend({
|
|
48
|
+
type: "arrow",
|
|
49
|
+
shape: {
|
|
50
|
+
x: 0,
|
|
51
|
+
y: 0,
|
|
52
|
+
width: 0,
|
|
53
|
+
height: 0
|
|
54
|
+
},
|
|
55
|
+
buildPath: function(i, n) {
|
|
56
|
+
var r = n.height, e = n.width, t = n.x, o = n.y, a = e / 3 * 2;
|
|
57
|
+
i.moveTo(t, o), i.lineTo(t + a, o + r), i.lineTo(t, o + r / 4 * 3), i.lineTo(t - a, o + r), i.lineTo(t, o), i.closePath();
|
|
58
|
+
}
|
|
59
|
+
}), A = {
|
|
60
|
+
line: _,
|
|
61
|
+
rect: l,
|
|
62
|
+
roundRect: l,
|
|
63
|
+
square: l,
|
|
64
|
+
circle: L,
|
|
65
|
+
diamond: I,
|
|
66
|
+
pin: q,
|
|
67
|
+
arrow: z,
|
|
68
|
+
triangle: E
|
|
69
|
+
}, D = {
|
|
70
|
+
line: function(i, n, r, e, t) {
|
|
71
|
+
t.x1 = i, t.y1 = n + e / 2, t.x2 = i + r, t.y2 = n + e / 2;
|
|
72
|
+
},
|
|
73
|
+
rect: function(i, n, r, e, t) {
|
|
74
|
+
t.x = i, t.y = n, t.width = r, t.height = e;
|
|
75
|
+
},
|
|
76
|
+
roundRect: function(i, n, r, e, t) {
|
|
77
|
+
t.x = i, t.y = n, t.width = r, t.height = e, t.r = Math.min(r, e) / 4;
|
|
78
|
+
},
|
|
79
|
+
square: function(i, n, r, e, t) {
|
|
80
|
+
var o = Math.min(r, e);
|
|
81
|
+
t.x = i, t.y = n, t.width = o, t.height = o;
|
|
82
|
+
},
|
|
83
|
+
circle: function(i, n, r, e, t) {
|
|
84
|
+
t.cx = i + r / 2, t.cy = n + e / 2, t.r = Math.min(r, e) / 2;
|
|
85
|
+
},
|
|
86
|
+
diamond: function(i, n, r, e, t) {
|
|
87
|
+
t.cx = i + r / 2, t.cy = n + e / 2, t.width = r, t.height = e;
|
|
88
|
+
},
|
|
89
|
+
pin: function(i, n, r, e, t) {
|
|
90
|
+
t.x = i + r / 2, t.y = n + e / 2, t.width = r, t.height = e;
|
|
91
|
+
},
|
|
92
|
+
arrow: function(i, n, r, e, t) {
|
|
93
|
+
t.x = i + r / 2, t.y = n + e / 2, t.width = r, t.height = e;
|
|
94
|
+
},
|
|
95
|
+
triangle: function(i, n, r, e, t) {
|
|
96
|
+
t.cx = i + r / 2, t.cy = n + e / 2, t.width = r, t.height = e;
|
|
97
|
+
}
|
|
98
|
+
}, g = {};
|
|
99
|
+
C(A, function(i, n) {
|
|
100
|
+
g[n] = new i();
|
|
101
|
+
});
|
|
102
|
+
var W = h.extend({
|
|
103
|
+
type: "symbol",
|
|
104
|
+
shape: {
|
|
105
|
+
symbolType: "",
|
|
106
|
+
x: 0,
|
|
107
|
+
y: 0,
|
|
108
|
+
width: 0,
|
|
109
|
+
height: 0
|
|
110
|
+
},
|
|
111
|
+
calculateTextPosition: function(i, n, r) {
|
|
112
|
+
var e = B(i, n, r), t = this.shape;
|
|
113
|
+
return t && t.symbolType === "pin" && n.position === "inside" && (e.y = r.y + r.height * 0.4), e;
|
|
114
|
+
},
|
|
115
|
+
buildPath: function(i, n, r) {
|
|
116
|
+
var e = n.symbolType;
|
|
117
|
+
if (e !== "none") {
|
|
118
|
+
var t = g[e];
|
|
119
|
+
t || (e = "rect", t = g[e]), D[e](n.x, n.y, n.width, n.height, t.shape), t.buildPath(i, t.shape, r);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
});
|
|
123
|
+
function X(i, n) {
|
|
124
|
+
if (this.type !== "image") {
|
|
125
|
+
var r = this.style;
|
|
126
|
+
this.__isEmptyBrush ? (r.stroke = i, r.fill = n || "#fff", r.lineWidth = 2) : this.shape.symbolType === "line" ? r.stroke = i : r.fill = i, this.markRedraw();
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
function U(i, n, r, e, t, o, a) {
|
|
130
|
+
var d = i.indexOf("empty") === 0;
|
|
131
|
+
d && (i = i.substr(5, 1).toLowerCase() + i.substr(6));
|
|
132
|
+
var c;
|
|
133
|
+
return i.indexOf("image://") === 0 ? c = k(i.slice(8), new P(n, r, e, t), a ? "center" : "cover") : i.indexOf("path://") === 0 ? c = R(i.slice(7), {}, new P(n, r, e, t), a ? "center" : "cover") : c = new W({
|
|
134
|
+
shape: {
|
|
135
|
+
symbolType: i,
|
|
136
|
+
x: n,
|
|
137
|
+
y: r,
|
|
138
|
+
width: e,
|
|
139
|
+
height: t
|
|
140
|
+
}
|
|
141
|
+
}), c.__isEmptyBrush = d, c.setColor = X, o && c.setColor(o), c;
|
|
142
|
+
}
|
|
143
|
+
function V(i) {
|
|
144
|
+
return y(i) || (i = [+i, +i]), [i[0] || 0, i[1] || 0];
|
|
145
|
+
}
|
|
146
|
+
function Z(i, n) {
|
|
147
|
+
if (i != null)
|
|
148
|
+
return y(i) || (i = [i, i]), [T(i[0], n[0]) || 0, T(M(i[1], i[0]), n[1]) || 0];
|
|
149
|
+
}
|
|
150
|
+
export {
|
|
151
|
+
U as createSymbol,
|
|
152
|
+
Z as normalizeSymbolOffset,
|
|
153
|
+
V as normalizeSymbolSize,
|
|
154
|
+
g as symbolBuildProxies
|
|
155
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
var f = "\0__throttleOriginMethod", D = "\0__throttleRate", E = "\0__throttleType";
|
|
2
|
+
function O(n, a, r) {
|
|
3
|
+
var l, e = 0, u = 0, t = null, i, g, m, c;
|
|
4
|
+
a = a || 0;
|
|
5
|
+
function s() {
|
|
6
|
+
u = (/* @__PURE__ */ new Date()).getTime(), t = null, n.apply(g, m || []);
|
|
7
|
+
}
|
|
8
|
+
var T = function() {
|
|
9
|
+
for (var v = [], o = 0; o < arguments.length; o++)
|
|
10
|
+
v[o] = arguments[o];
|
|
11
|
+
l = (/* @__PURE__ */ new Date()).getTime(), g = this, m = v;
|
|
12
|
+
var h = c || a, x = c || r;
|
|
13
|
+
c = null, i = l - (x ? e : u) - h, clearTimeout(t), x ? t = setTimeout(s, h) : i >= 0 ? s() : t = setTimeout(s, -i), e = l;
|
|
14
|
+
};
|
|
15
|
+
return T.clear = function() {
|
|
16
|
+
t && (clearTimeout(t), t = null);
|
|
17
|
+
}, T.debounceNextCall = function(v) {
|
|
18
|
+
c = v;
|
|
19
|
+
}, T;
|
|
20
|
+
}
|
|
21
|
+
function R(n, a, r, l) {
|
|
22
|
+
var e = n[a];
|
|
23
|
+
if (e) {
|
|
24
|
+
var u = e[f] || e, t = e[E], i = e[D];
|
|
25
|
+
if (i !== r || t !== l) {
|
|
26
|
+
if (r == null || !l)
|
|
27
|
+
return n[a] = u;
|
|
28
|
+
e = n[a] = O(u, r, l === "debounce"), e[f] = u, e[E] = l, e[D] = r;
|
|
29
|
+
}
|
|
30
|
+
return e;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
function _(n, a) {
|
|
34
|
+
var r = n[a];
|
|
35
|
+
r && r[f] && (r.clear && r.clear(), n[a] = r[f]);
|
|
36
|
+
}
|
|
37
|
+
export {
|
|
38
|
+
_ as clear,
|
|
39
|
+
R as createOrUpdate,
|
|
40
|
+
O as throttle
|
|
41
|
+
};
|