web-core-tcm 0.0.61 → 0.0.63

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.
Files changed (426) hide show
  1. package/dist/node_modules/@alova/shared/dist/alova-shared.esm.js +229 -92
  2. package/dist/node_modules/@bufbuild/protobuf/dist/esm/clone.js +35 -0
  3. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/embed.js +109 -0
  4. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/enum.js +16 -0
  5. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/extension.js +9 -0
  6. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/file.js +9 -10
  7. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/index.js +28 -0
  8. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/scalar.js +48 -0
  9. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/service.js +8 -0
  10. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/symbols.js +49 -0
  11. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/types.js +1 -0
  12. package/dist/node_modules/@bufbuild/protobuf/dist/esm/create.js +1 -1
  13. package/dist/node_modules/@bufbuild/protobuf/dist/esm/equals.js +127 -0
  14. package/dist/node_modules/@bufbuild/protobuf/dist/esm/extensions.js +86 -0
  15. package/dist/node_modules/@bufbuild/protobuf/dist/esm/fields.js +11 -0
  16. package/dist/node_modules/@bufbuild/protobuf/dist/esm/from-binary.js +60 -56
  17. package/dist/node_modules/@bufbuild/protobuf/dist/esm/from-json.js +434 -0
  18. package/dist/node_modules/@bufbuild/protobuf/dist/esm/index.js +49 -0
  19. package/dist/node_modules/@bufbuild/protobuf/dist/esm/merge.js +33 -0
  20. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.js +12 -3
  21. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js +14 -10
  22. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.js +32 -12
  23. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/nested-types.js +42 -6
  24. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.js +58 -50
  25. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js +26 -4
  26. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js +1 -1
  27. package/dist/node_modules/@bufbuild/protobuf/dist/esm/registry.js +130 -99
  28. package/dist/node_modules/@bufbuild/protobuf/dist/esm/to-json.js +279 -0
  29. package/dist/node_modules/@bufbuild/protobuf/dist/esm/types.js +1 -0
  30. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/base64-encoding.js +48 -27
  31. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/index.js +24 -0
  32. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/size-delimited.js +123 -0
  33. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.js +10 -6
  34. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/any.js +40 -0
  35. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/duration.js +18 -0
  36. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/any_pb.js +7 -0
  37. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/api_pb.js +11 -0
  38. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/compiler/plugin_pb.js +19 -0
  39. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/cpp_features_pb.js +18 -0
  40. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/descriptor_pb.js +137 -63
  41. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/duration_pb.js +7 -0
  42. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/empty_pb.js +7 -0
  43. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/field_mask_pb.js +7 -0
  44. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/go_features_pb.js +25 -0
  45. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/java_features_pb.js +26 -0
  46. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/source_context_pb.js +7 -0
  47. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/struct_pb.js +17 -0
  48. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/timestamp_pb.js +7 -0
  49. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/type_pb.js +35 -0
  50. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/wrappers_pb.js +15 -0
  51. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/index.js +180 -0
  52. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/timestamp.js +29 -0
  53. package/dist/node_modules/@vue/devtools-api/lib/esm/api/api.js +1 -0
  54. package/dist/node_modules/@vue/devtools-api/lib/esm/api/app.js +1 -0
  55. package/dist/node_modules/@vue/devtools-api/lib/esm/api/component.js +1 -0
  56. package/dist/node_modules/@vue/devtools-api/lib/esm/api/context.js +1 -0
  57. package/dist/node_modules/@vue/devtools-api/lib/esm/api/hooks.js +1 -0
  58. package/dist/node_modules/@vue/devtools-api/lib/esm/api/index.js +6 -0
  59. package/dist/node_modules/@vue/devtools-api/lib/esm/api/util.js +1 -0
  60. package/dist/node_modules/@vue/devtools-api/lib/esm/const.js +5 -0
  61. package/dist/node_modules/@vue/devtools-api/lib/esm/env.js +12 -0
  62. package/dist/node_modules/@vue/devtools-api/lib/esm/index.js +24 -0
  63. package/dist/node_modules/@vue/devtools-api/lib/esm/plugin.js +1 -0
  64. package/dist/node_modules/@vue/devtools-api/lib/esm/proxy.js +67 -0
  65. package/dist/node_modules/@vue/devtools-api/lib/esm/time.js +12 -0
  66. package/dist/node_modules/@vueuse/core/index.js +5189 -199
  67. package/dist/node_modules/@vueuse/core/node_modules/vue-demi/lib/index.js +24 -0
  68. package/dist/node_modules/@vueuse/shared/index.js +1172 -23
  69. package/dist/node_modules/@vueuse/shared/node_modules/vue-demi/lib/index.js +24 -0
  70. package/dist/node_modules/alova/dist/adapter/fetch.esm.js +30 -34
  71. package/dist/node_modules/alova/dist/alova.esm.js +266 -220
  72. package/dist/node_modules/alova/dist/clienthook/index.esm.js +2110 -70
  73. package/dist/node_modules/builder-pattern/dist/index.js +25 -13
  74. package/dist/node_modules/echarts/index.js +5 -0
  75. package/dist/node_modules/echarts/lib/animation/basicTransition.js +1 -1
  76. package/dist/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js +40 -39
  77. package/dist/node_modules/echarts/lib/animation/customGraphicTransition.js +146 -148
  78. package/dist/node_modules/echarts/lib/animation/universalTransition.js +208 -203
  79. package/dist/node_modules/echarts/lib/chart/bar/BarView.js +77 -76
  80. package/dist/node_modules/echarts/lib/chart/bar/PictorialBarView.js +6 -6
  81. package/dist/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js +8 -8
  82. package/dist/node_modules/echarts/lib/chart/candlestick/CandlestickView.js +8 -8
  83. package/dist/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js +34 -34
  84. package/dist/node_modules/echarts/lib/chart/custom/CustomView.js +157 -157
  85. package/dist/node_modules/echarts/lib/chart/funnel/FunnelView.js +7 -6
  86. package/dist/node_modules/echarts/lib/chart/funnel/funnelLayout.js +52 -52
  87. package/dist/node_modules/echarts/lib/chart/gauge/GaugeView.js +45 -44
  88. package/dist/node_modules/echarts/lib/chart/graph/GraphView.js +4 -2
  89. package/dist/node_modules/echarts/lib/chart/graph/adjustEdge.js +5 -5
  90. package/dist/node_modules/echarts/lib/chart/graph/forceHelper.js +4 -4
  91. package/dist/node_modules/echarts/lib/chart/heatmap/HeatmapView.js +54 -54
  92. package/dist/node_modules/echarts/lib/chart/helper/EffectLine.js +26 -25
  93. package/dist/node_modules/echarts/lib/chart/helper/LargeLineDraw.js +42 -41
  94. package/dist/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js +9 -8
  95. package/dist/node_modules/echarts/lib/chart/helper/Line.js +8 -7
  96. package/dist/node_modules/echarts/lib/chart/helper/LinePath.js +18 -15
  97. package/dist/node_modules/echarts/lib/chart/helper/Polyline.js +13 -12
  98. package/dist/node_modules/echarts/lib/chart/helper/Symbol.js +3 -2
  99. package/dist/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js +4 -3
  100. package/dist/node_modules/echarts/lib/chart/helper/createSeriesData.js +4 -4
  101. package/dist/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js +1 -1
  102. package/dist/node_modules/echarts/lib/chart/line/LineSeries.js +17 -15
  103. package/dist/node_modules/echarts/lib/chart/line/LineView.js +201 -200
  104. package/dist/node_modules/echarts/lib/chart/lines/LinesSeries.js +64 -61
  105. package/dist/node_modules/echarts/lib/chart/lines/LinesView.js +36 -36
  106. package/dist/node_modules/echarts/lib/chart/lines/linesLayout.js +21 -20
  107. package/dist/node_modules/echarts/lib/chart/map/MapView.js +13 -12
  108. package/dist/node_modules/echarts/lib/chart/parallel/ParallelView.js +7 -6
  109. package/dist/node_modules/echarts/lib/chart/pie/PieView.js +19 -18
  110. package/dist/node_modules/echarts/lib/chart/pie/pieLayout.js +1 -1
  111. package/dist/node_modules/echarts/lib/chart/radar/RadarView.js +5 -5
  112. package/dist/node_modules/echarts/lib/chart/sankey/SankeySeries.js +27 -27
  113. package/dist/node_modules/echarts/lib/chart/sankey/SankeyView.js +6 -5
  114. package/dist/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js +3 -2
  115. package/dist/node_modules/echarts/lib/chart/sunburst/sunburstAction.js +22 -21
  116. package/dist/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js +3 -3
  117. package/dist/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js +3 -2
  118. package/dist/node_modules/echarts/lib/chart/tree/TreeView.js +13 -12
  119. package/dist/node_modules/echarts/lib/chart/tree/treeLayout.js +1 -1
  120. package/dist/node_modules/echarts/lib/chart/treemap/Breadcrumb.js +3 -2
  121. package/dist/node_modules/echarts/lib/chart/treemap/TreemapView.js +131 -130
  122. package/dist/node_modules/echarts/lib/component/axis/AxisBuilder.js +4 -4
  123. package/dist/node_modules/echarts/lib/component/axis/AxisView.js +3 -3
  124. package/dist/node_modules/echarts/lib/component/axis/axisSplitHelper.js +11 -10
  125. package/dist/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js +3 -3
  126. package/dist/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js +3 -3
  127. package/dist/node_modules/echarts/lib/component/axisPointer/globalListener.js +1 -1
  128. package/dist/node_modules/echarts/lib/component/axisPointer/viewHelper.js +3 -3
  129. package/dist/node_modules/echarts/lib/component/brush/BrushModel.js +29 -29
  130. package/dist/node_modules/echarts/lib/component/calendar/CalendarView.js +3 -2
  131. package/dist/node_modules/echarts/lib/component/dataZoom/AxisProxy.js +4 -4
  132. package/dist/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js +12 -12
  133. package/dist/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js +22 -21
  134. package/dist/node_modules/echarts/lib/component/dataZoom/helper.js +49 -41
  135. package/dist/node_modules/echarts/lib/component/dataZoom/roams.js +5 -5
  136. package/dist/node_modules/echarts/lib/component/graphic/GraphicModel.js +66 -59
  137. package/dist/node_modules/echarts/lib/component/graphic/GraphicView.js +93 -93
  138. package/dist/node_modules/echarts/lib/component/helper/BrushController.js +168 -168
  139. package/dist/node_modules/echarts/lib/component/helper/BrushTargetManager.js +95 -95
  140. package/dist/node_modules/echarts/lib/component/helper/MapDraw.js +8 -8
  141. package/dist/node_modules/echarts/lib/component/helper/listComponent.js +3 -2
  142. package/dist/node_modules/echarts/lib/component/legend/LegendModel.js +1 -1
  143. package/dist/node_modules/echarts/lib/component/legend/LegendView.js +46 -45
  144. package/dist/node_modules/echarts/lib/component/legend/legendAction.js +1 -1
  145. package/dist/node_modules/echarts/lib/component/marker/MarkAreaView.js +84 -83
  146. package/dist/node_modules/echarts/lib/component/marker/MarkLineView.js +47 -47
  147. package/dist/node_modules/echarts/lib/component/marker/MarkerModel.js +32 -32
  148. package/dist/node_modules/echarts/lib/component/marker/markerHelper.js +1 -1
  149. package/dist/node_modules/echarts/lib/component/radar/RadarView.js +24 -24
  150. package/dist/node_modules/echarts/lib/component/timeline/SliderTimelineView.js +1 -1
  151. package/dist/node_modules/echarts/lib/component/title/install.js +8 -7
  152. package/dist/node_modules/echarts/lib/component/toolbox/feature/DataView.js +80 -79
  153. package/dist/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js +10 -9
  154. package/dist/node_modules/echarts/lib/component/toolbox/feature/MagicType.js +24 -23
  155. package/dist/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js +10 -10
  156. package/dist/node_modules/echarts/lib/component/tooltip/TooltipView.js +7 -7
  157. package/dist/node_modules/echarts/lib/component/tooltip/helper.js +1 -1
  158. package/dist/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js +13 -13
  159. package/dist/node_modules/echarts/lib/component/transform/filterTransform.js +17 -17
  160. package/dist/node_modules/echarts/lib/component/transform/sortTransform.js +34 -34
  161. package/dist/node_modules/echarts/lib/component/visualMap/ContinuousView.js +3 -3
  162. package/dist/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js +4 -4
  163. package/dist/node_modules/echarts/lib/component/visualMap/PiecewiseView.js +7 -6
  164. package/dist/node_modules/echarts/lib/component/visualMap/VisualMapModel.js +4 -4
  165. package/dist/node_modules/echarts/lib/component/visualMap/preprocessor.js +1 -1
  166. package/dist/node_modules/echarts/lib/coord/axisAlignTicks.js +29 -27
  167. package/dist/node_modules/echarts/lib/coord/axisDefault.js +1 -1
  168. package/dist/node_modules/echarts/lib/coord/axisHelper.js +4 -4
  169. package/dist/node_modules/echarts/lib/coord/axisTickLabelBuilder.js +1 -1
  170. package/dist/node_modules/echarts/lib/coord/calendar/Calendar.js +7 -7
  171. package/dist/node_modules/echarts/lib/coord/cartesian/Grid.js +91 -91
  172. package/dist/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js +21 -21
  173. package/dist/node_modules/echarts/lib/coord/cartesian/prepareCustom.js +3 -3
  174. package/dist/node_modules/echarts/lib/coord/geo/Geo.js +22 -23
  175. package/dist/node_modules/echarts/lib/coord/geo/GeoJSONResource.js +3 -3
  176. package/dist/node_modules/echarts/lib/coord/geo/geoCreator.js +38 -38
  177. package/dist/node_modules/echarts/lib/coord/geo/geoSourceManager.js +2 -2
  178. package/dist/node_modules/echarts/lib/coord/geo/parseGeoJson.js +1 -1
  179. package/dist/node_modules/echarts/lib/coord/geo/prepareCustom.js +3 -3
  180. package/dist/node_modules/echarts/lib/coord/parallel/Parallel.js +4 -4
  181. package/dist/node_modules/echarts/lib/coord/polar/polarCreator.js +11 -11
  182. package/dist/node_modules/echarts/lib/coord/polar/prepareCustom.js +3 -3
  183. package/dist/node_modules/echarts/lib/coord/radar/Radar.js +1 -1
  184. package/dist/node_modules/echarts/lib/coord/radar/RadarModel.js +1 -1
  185. package/dist/node_modules/echarts/lib/coord/scaleRawExtentInfo.js +37 -37
  186. package/dist/node_modules/echarts/lib/core/Scheduler.js +22 -22
  187. package/dist/node_modules/echarts/lib/core/echarts.js +615 -559
  188. package/dist/node_modules/echarts/lib/core/impl.js +8 -7
  189. package/dist/node_modules/echarts/lib/core/task.js +19 -19
  190. package/dist/node_modules/echarts/lib/data/DataStore.js +193 -191
  191. package/dist/node_modules/echarts/lib/data/Graph.js +69 -69
  192. package/dist/node_modules/echarts/lib/data/SeriesData.js +73 -68
  193. package/dist/node_modules/echarts/lib/data/Source.js +58 -58
  194. package/dist/node_modules/echarts/lib/data/Tree.js +3 -3
  195. package/dist/node_modules/echarts/lib/data/helper/SeriesDataSchema.js +4 -4
  196. package/dist/node_modules/echarts/lib/data/helper/createDimensions.js +40 -36
  197. package/dist/node_modules/echarts/lib/data/helper/dataProvider.js +103 -92
  198. package/dist/node_modules/echarts/lib/data/helper/dataValueHelper.js +17 -17
  199. package/dist/node_modules/echarts/lib/data/helper/dimensionHelper.js +15 -15
  200. package/dist/node_modules/echarts/lib/data/helper/sourceHelper.js +3 -3
  201. package/dist/node_modules/echarts/lib/data/helper/sourceManager.js +58 -58
  202. package/dist/node_modules/echarts/lib/data/helper/transform.js +97 -95
  203. package/dist/node_modules/echarts/lib/export/api/format.js +16 -0
  204. package/dist/node_modules/echarts/lib/export/api/graphic.js +54 -0
  205. package/dist/node_modules/echarts/lib/export/api/helper.js +44 -0
  206. package/dist/node_modules/echarts/lib/export/api/number.js +21 -0
  207. package/dist/node_modules/echarts/lib/export/api/time.js +6 -0
  208. package/dist/node_modules/echarts/lib/export/api/util.js +19 -0
  209. package/dist/node_modules/echarts/lib/export/api.js +71 -0
  210. package/dist/node_modules/echarts/lib/export/charts.js +46 -0
  211. package/dist/node_modules/echarts/lib/export/components.js +62 -0
  212. package/dist/node_modules/echarts/lib/export/core.js +39 -0
  213. package/dist/node_modules/echarts/lib/export/features.js +6 -0
  214. package/dist/node_modules/echarts/lib/export/renderers.js +6 -0
  215. package/dist/node_modules/echarts/lib/label/LabelManager.js +1 -1
  216. package/dist/node_modules/echarts/lib/label/labelGuideHelper.js +4 -4
  217. package/dist/node_modules/echarts/lib/label/labelLayoutHelper.js +87 -84
  218. package/dist/node_modules/echarts/lib/label/labelStyle.js +116 -115
  219. package/dist/node_modules/echarts/lib/layout/barGrid.js +84 -84
  220. package/dist/node_modules/echarts/lib/legacy/dataSelectAction.js +27 -26
  221. package/dist/node_modules/echarts/lib/legacy/getTextRect.js +20 -0
  222. package/dist/node_modules/echarts/lib/loading/default.js +3 -2
  223. package/dist/node_modules/echarts/lib/model/Global.js +162 -157
  224. package/dist/node_modules/echarts/lib/model/Model.js +14 -12
  225. package/dist/node_modules/echarts/lib/model/OptionManager.js +36 -35
  226. package/dist/node_modules/echarts/lib/model/Series.js +52 -52
  227. package/dist/node_modules/echarts/lib/model/internalComponentCreator.js +17 -11
  228. package/dist/node_modules/echarts/lib/model/mixin/dataFormat.js +38 -37
  229. package/dist/node_modules/echarts/lib/model/referHelper.js +13 -13
  230. package/dist/node_modules/echarts/lib/preprocessor/backwardCompat.js +60 -59
  231. package/dist/node_modules/echarts/lib/preprocessor/helper/compatStyle.js +82 -81
  232. package/dist/node_modules/echarts/lib/scale/Time.js +35 -34
  233. package/dist/node_modules/echarts/lib/scale/helper.js +25 -20
  234. package/dist/node_modules/echarts/lib/util/clazz.js +62 -62
  235. package/dist/node_modules/echarts/lib/util/component.js +40 -39
  236. package/dist/node_modules/echarts/lib/util/conditionalExpression.js +73 -73
  237. package/dist/node_modules/echarts/lib/util/decal.js +54 -52
  238. package/dist/node_modules/echarts/lib/util/format.js +81 -65
  239. package/dist/node_modules/echarts/lib/util/graphic.js +22 -22
  240. package/dist/node_modules/echarts/lib/util/layout.js +29 -29
  241. package/dist/node_modules/echarts/lib/util/log.js +41 -2
  242. package/dist/node_modules/echarts/lib/util/model.js +171 -170
  243. package/dist/node_modules/echarts/lib/util/number.js +97 -90
  244. package/dist/node_modules/echarts/lib/util/states.js +170 -164
  245. package/dist/node_modules/echarts/lib/util/styleCompat.js +27 -22
  246. package/dist/node_modules/echarts/lib/util/symbol.js +3 -3
  247. package/dist/node_modules/echarts/lib/util/time.js +2 -2
  248. package/dist/node_modules/echarts/lib/view/Chart.js +22 -21
  249. package/dist/node_modules/echarts/lib/visual/VisualMapping.js +45 -44
  250. package/dist/node_modules/echarts/lib/visual/helper.js +20 -17
  251. package/dist/node_modules/echarts/lib/visual/symbol.js +4 -4
  252. package/dist/node_modules/echarts/lib/visual/visualSolution.js +64 -64
  253. package/dist/node_modules/pinyin/lib/esm/pinyin.js +2 -2
  254. package/dist/node_modules/punycode/punycode.es6.js +17 -17
  255. package/dist/node_modules/quasar/src/components/btn-toggle/QBtnToggle.js +3 -3
  256. package/dist/node_modules/quasar/src/components/chip/QChip.js +3 -3
  257. package/dist/node_modules/quasar/src/components/dialog/QDialog.js +71 -73
  258. package/dist/node_modules/quasar/src/components/field/QField.js +4 -4
  259. package/dist/node_modules/quasar/src/components/infinite-scroll/QInfiniteScroll.js +8 -8
  260. package/dist/node_modules/quasar/src/components/input/QInput.js +28 -26
  261. package/dist/node_modules/quasar/src/components/menu/QMenu.js +13 -13
  262. package/dist/node_modules/quasar/src/components/radio/QRadio.js +4 -4
  263. package/dist/node_modules/quasar/src/components/resize-observer/QResizeObserver.js +14 -14
  264. package/dist/node_modules/quasar/src/components/scroll-area/QScrollArea.js +1 -1
  265. package/dist/node_modules/quasar/src/components/scroll-observer/QScrollObserver.js +4 -4
  266. package/dist/node_modules/quasar/src/components/select/QSelect.js +22 -22
  267. package/dist/node_modules/quasar/src/components/virtual-scroll/use-virtual-scroll.js +73 -72
  268. package/dist/node_modules/quasar/src/composables/private.use-anchor/use-anchor.js +10 -10
  269. package/dist/node_modules/quasar/src/composables/private.use-field/use-field.js +6 -6
  270. package/dist/node_modules/quasar/src/composables/private.use-file/use-file-dom-props.js +6 -6
  271. package/dist/node_modules/quasar/src/composables/private.use-history/use-history.js +13 -8
  272. package/dist/node_modules/quasar/src/composables/private.use-model-toggle/use-model-toggle.js +16 -16
  273. package/dist/node_modules/quasar/src/composables/private.use-portal/use-portal.js +28 -28
  274. package/dist/node_modules/quasar/src/composables/use-form/private.use-form.js +20 -12
  275. package/dist/node_modules/quasar/src/composables/use-render-cache/use-render-cache.js +8 -8
  276. package/dist/node_modules/quasar/src/directives/close-popup/ClosePopup.js +6 -5
  277. package/dist/node_modules/quasar/src/directives/ripple/Ripple.js +17 -16
  278. package/dist/node_modules/quasar/src/directives/touch-pan/TouchPan.js +23 -22
  279. package/dist/node_modules/quasar/src/plugins/lang/Lang.js +14 -16
  280. package/dist/node_modules/quasar/src/plugins/platform/Platform.js +6 -6
  281. package/dist/node_modules/quasar/src/plugins/private.history/History.js +55 -0
  282. package/dist/node_modules/quasar/src/utils/date/date.js +70 -69
  283. package/dist/node_modules/quasar/src/utils/date/private.persian.js +107 -0
  284. package/dist/node_modules/quasar/src/utils/debounce/debounce.js +8 -8
  285. package/dist/node_modules/quasar/src/utils/dom/dom.js +50 -13
  286. package/dist/node_modules/quasar/src/utils/event/event.js +83 -51
  287. package/dist/node_modules/quasar/src/utils/format/format.js +22 -6
  288. package/dist/node_modules/quasar/src/utils/is/is.js +17 -1
  289. package/dist/node_modules/quasar/src/utils/patterns/patterns.js +8 -5
  290. package/dist/node_modules/quasar/src/utils/private.click-outside/click-outside.js +11 -9
  291. package/dist/node_modules/quasar/src/utils/private.config/instance-config.js +8 -2
  292. package/dist/node_modules/quasar/src/utils/private.config/nodes.js +26 -9
  293. package/dist/node_modules/quasar/src/utils/private.create/create.js +18 -18
  294. package/dist/node_modules/quasar/src/utils/private.inject-obj-prop/inject-obj-prop.js +10 -4
  295. package/dist/node_modules/quasar/src/utils/private.keyboard/key-composition.js +11 -6
  296. package/dist/node_modules/quasar/src/utils/private.noop-ssr-directive-transform/noop-ssr-directive-transform.js +4 -0
  297. package/dist/node_modules/quasar/src/utils/private.symbols/symbols.js +13 -3
  298. package/dist/node_modules/quasar/src/utils/private.vm/vm.js +23 -11
  299. package/dist/node_modules/quasar/src/utils/scroll/prevent-scroll.js +4 -4
  300. package/dist/node_modules/quasar/src/utils/scroll/scroll.js +52 -34
  301. package/dist/node_modules/tslib/tslib.es6.js +305 -14
  302. package/dist/node_modules/vue-router/dist/devtools-BLCumUwL.js +659 -0
  303. package/dist/node_modules/vue-router/dist/vue-router.js +919 -9
  304. package/dist/node_modules/zrender/lib/Element.js +126 -122
  305. package/dist/node_modules/zrender/lib/animation/Animator.js +7 -7
  306. package/dist/node_modules/zrender/lib/animation/requestAnimationFrame.js +6 -5
  307. package/dist/node_modules/zrender/lib/canvas/Layer.js +4 -4
  308. package/dist/node_modules/zrender/lib/canvas/Painter.js +19 -19
  309. package/dist/node_modules/zrender/lib/canvas/dashStyle.js +3 -3
  310. package/dist/node_modules/zrender/lib/canvas/graphic.js +4 -4
  311. package/dist/node_modules/zrender/lib/config.js +7 -6
  312. package/dist/node_modules/zrender/lib/contain/path.js +8 -8
  313. package/dist/node_modules/zrender/lib/contain/text.js +50 -46
  314. package/dist/node_modules/zrender/lib/core/BoundingRect.js +3 -3
  315. package/dist/node_modules/zrender/lib/core/PathProxy.js +1 -1
  316. package/dist/node_modules/zrender/lib/core/bbox.js +4 -4
  317. package/dist/node_modules/zrender/lib/core/curve.js +1 -1
  318. package/dist/node_modules/zrender/lib/core/event.js +12 -10
  319. package/dist/node_modules/zrender/lib/core/platform.js +29 -24
  320. package/dist/node_modules/zrender/lib/core/util.js +94 -91
  321. package/dist/node_modules/zrender/lib/core/vector.js +54 -34
  322. package/dist/node_modules/zrender/lib/dom/HandlerProxy.js +4 -4
  323. package/dist/node_modules/zrender/lib/graphic/Group.js +4 -4
  324. package/dist/node_modules/zrender/lib/graphic/Image.js +4 -4
  325. package/dist/node_modules/zrender/lib/graphic/Path.js +4 -4
  326. package/dist/node_modules/zrender/lib/graphic/TSpan.js +3 -3
  327. package/dist/node_modules/zrender/lib/graphic/Text.js +5 -5
  328. package/dist/node_modules/zrender/lib/graphic/helper/parseText.js +92 -87
  329. package/dist/node_modules/zrender/lib/graphic/shape/BezierCurve.js +6 -6
  330. package/dist/node_modules/zrender/lib/svg/Painter.js +43 -43
  331. package/dist/node_modules/zrender/lib/svg/cssAnimation.js +12 -12
  332. package/dist/node_modules/zrender/lib/svg/cssEmphasis.js +16 -16
  333. package/dist/node_modules/zrender/lib/svg/domapi.js +34 -10
  334. package/dist/node_modules/zrender/lib/svg/graphic.js +67 -67
  335. package/dist/node_modules/zrender/lib/svg/helper.js +57 -43
  336. package/dist/node_modules/zrender/lib/svg/mapStyleToAttrs.js +39 -39
  337. package/dist/node_modules/zrender/lib/svg/patch.js +26 -26
  338. package/dist/node_modules/zrender/lib/tool/color.js +87 -69
  339. package/dist/node_modules/zrender/lib/tool/morphPath.js +136 -129
  340. package/dist/node_modules/zrender/lib/tool/parseSVG.js +12 -12
  341. package/dist/node_modules/zrender/lib/zrender.js +106 -90
  342. package/dist/src/api/algorithm/alova/implement/comprehensiveAlgorithm.js +12 -16
  343. package/dist/src/api/algorithm/alova/implement/index.js +13 -0
  344. package/dist/src/api/algorithm/alova/implement/inquiriesAlgorithm.js +4 -7
  345. package/dist/src/api/algorithm/alova/implement/inspectionsAlgorithm.js +7 -10
  346. package/dist/src/api/algorithm/alova/implement/lisemsAlgorithm.js +6 -9
  347. package/dist/src/api/algorithm/alova/implement/pulsationsAlgorithm.js +7 -10
  348. package/dist/src/api/algorithm/alova/index.js +14 -21
  349. package/dist/src/api/algorithm/comprehensiveAlgorithm.js +5 -6
  350. package/dist/src/api/authorization/alova/globals.js +1 -0
  351. package/dist/src/api/authorization/alova/implement/index.js +4 -0
  352. package/dist/src/api/authorization/alova/index.js +10 -8
  353. package/dist/src/api/check/alova/globals.js +1 -0
  354. package/dist/src/api/check/alova/implement/index.js +5 -0
  355. package/dist/src/api/check/alova/index.js +5 -6
  356. package/dist/src/api/check/check.js +2 -2
  357. package/dist/src/api/doctor/alova/globals.js +1 -0
  358. package/dist/src/api/doctor/alova/implement/index.js +4 -0
  359. package/dist/src/api/doctor/alova/index.js +10 -9
  360. package/dist/src/api/index.js +28 -0
  361. package/dist/src/api/metric/alova/implement/index.js +4 -0
  362. package/dist/src/api/metric/alova/index.js +1 -0
  363. package/dist/src/api/metric/index.js +5 -4
  364. package/dist/src/api/oauth/alova/globals.js +1 -0
  365. package/dist/src/api/oauth/alova/implement/index.js +4 -0
  366. package/dist/src/api/oauth/alova/index.js +13 -11
  367. package/dist/src/api/outpatient/alova/globals.js +1 -0
  368. package/dist/src/api/outpatient/alova/implement/index.js +4 -0
  369. package/dist/src/api/outpatient/alova/index.js +5 -5
  370. package/dist/src/api/patient/alova/globals.js +1 -0
  371. package/dist/src/api/patient/alova/implement/index.js +16 -0
  372. package/dist/src/api/patient/alova/implement/meta.js +44 -44
  373. package/dist/src/api/patient/alova/index.js +9 -12
  374. package/dist/src/api/patient/index.js +23 -22
  375. package/dist/src/api/patient/meta.d.ts +12 -0
  376. package/dist/src/api/patient/meta.js +100 -98
  377. package/dist/src/api/prescription/alova/globals.js +1 -0
  378. package/dist/src/api/prescription/alova/implement/index.js +6 -0
  379. package/dist/src/api/prescription/alova/index.js +8 -7
  380. package/dist/src/api/scientist/alova/globals.js +1 -0
  381. package/dist/src/api/scientist/alova/implement/index.js +4 -0
  382. package/dist/src/api/scientist/alova/index.js +5 -5
  383. package/dist/src/components/core/TakeImageCollected.vue.js +2 -2
  384. package/dist/src/components/core/TakeImageCollected.vue2.js +82 -74
  385. package/dist/src/components/tcm/index.d.ts +1 -0
  386. package/dist/src/components/tcm/index.js +28 -0
  387. package/dist/src/components/tcm/inquirise/ComplaintViewCollected.vue.js +1 -1
  388. package/dist/src/components/tcm/inquirise/ComplaintViewCollected.vue2.js +42 -46
  389. package/dist/src/components/tcm/inquirise/ComplaintsRecognitionCollected.vue.js +1 -1
  390. package/dist/src/components/tcm/inquirise/ComplaintsRecognitionCollected.vue2.js +19 -23
  391. package/dist/src/components/tcm/inquirise/symptoms.js +33 -9
  392. package/dist/src/components/tcm/inspections/AppendixMetaCollected.vue.d.ts +7 -0
  393. package/dist/src/components/tcm/inspections/AppendixMetaCollected.vue.js +7 -0
  394. package/dist/src/components/tcm/inspections/AppendixMetaCollected.vue2.js +26 -0
  395. package/dist/src/components/tcm/inspections/CheckSceneMetaCollected.vue.js +2 -2
  396. package/dist/src/components/tcm/inspections/CheckSceneMetaCollected.vue2.js +13 -11
  397. package/dist/src/components/tcm/inspections/FaceMetaCollected.vue.js +2 -2
  398. package/dist/src/components/tcm/inspections/FaceMetaCollected.vue2.js +14 -16
  399. package/dist/src/components/tcm/inspections/InspectionDeviceTakeImageCollected.vue.js +1 -1
  400. package/dist/src/components/tcm/inspections/InspectionDeviceTakeImageCollected.vue2.js +141 -95
  401. package/dist/src/components/tcm/inspections/SceneMetaCollected.vue.js +4 -4
  402. package/dist/src/components/tcm/inspections/SceneMetaCollected.vue2.js +19 -19
  403. package/dist/src/components/tcm/inspections/TongueMetaCollected.vue.d.ts +3 -3
  404. package/dist/src/components/tcm/inspections/TongueMetaCollected.vue.js +2 -2
  405. package/dist/src/components/tcm/inspections/TongueMetaCollected.vue2.js +30 -13
  406. package/dist/src/components/tcm/inspections/index.d.ts +1 -0
  407. package/dist/src/components/tcm/lisems/EPPCollected.vue.js +1 -1
  408. package/dist/src/components/tcm/lisems/EPPCollected.vue2.js +3 -2
  409. package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue.d.ts +1 -1
  410. package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue.js +5 -833
  411. package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue2.js +816 -2
  412. package/dist/src/components/tcm/palpations/OnePulsationCollect.vue.d.ts +1 -1
  413. package/dist/src/components/tcm/palpations/OnePulsationCollect.vue.js +5 -148
  414. package/dist/src/components/tcm/palpations/OnePulsationCollect.vue2.js +147 -2
  415. package/dist/src/components/tcm/palpations/PulsationCollect.vue.js +2 -2
  416. package/dist/src/components/tcm/palpations/PulsationCollect.vue2.js +30 -32
  417. package/dist/src/index.js +63 -58
  418. package/dist/src/proto/index.js +10 -0
  419. package/dist/src/proto/types/Images_pb.js +7 -6
  420. package/dist/src/proto/types/WaveMap_pb.js +4 -3
  421. package/dist/src/util/helper.js +38 -2
  422. package/dist/src/util/number.js +64 -25
  423. package/dist/src/util/string.js +51 -5
  424. package/dist/web-core-tcm.css +1 -1
  425. package/package.json +5 -3
  426. package/dist/node_modules/vue-router/dist/devtools-EWN81iOl.js +0 -19
@@ -1,90 +1,91 @@
1
1
  import { __extends as ut } from "../../../../tslib/tslib.es6.js";
2
- import { bind as ht, defaults as Z, isFunction as T, each as it, map as ft, isNumber as gt } from "../../../../zrender/lib/core/util.js";
3
- import pt from "../helper/SymbolDraw.js";
2
+ import { isNumber as ht, map as ft, each as it, bind as pt, defaults as Z, isFunction as T } from "../../../../zrender/lib/core/util.js";
3
+ import gt from "../helper/SymbolDraw.js";
4
4
  import ot from "../helper/Symbol.js";
5
5
  import mt from "./lineAnimationDiff.js";
6
+ import "../../util/graphic.js";
6
7
  import { queryDataIndex as q, interpolateRawValues as ct } from "../../util/model.js";
7
- import { ECPolyline as yt, ECPolygon as _t } from "./poly.js";
8
+ import { ECPolyline as yt, ECPolygon as dt } from "./poly.js";
8
9
  import F from "../../view/Chart.js";
9
- import { prepareDataCoordInfo as dt, getStackedOnPoint as bt } from "./helper.js";
10
+ import { getStackedOnPoint as _t, prepareDataCoordInfo as bt } from "./helper.js";
10
11
  import { createGridClipPath as St, createPolarClipPath as xt } from "../helper/createClipPathFromCoordSys.js";
11
- import { isCoordinateSystemType as It } from "../../coord/CoordinateSystem.js";
12
- import { setStatesStylesFromModel as $, toggleHoverEmphasis as j, setStatesFlag as K, SPECIAL_STATES as Q } from "../../util/states.js";
13
- import { setLabelStyle as wt, getLabelStatesModels as Pt, labelInner as Dt } from "../../label/labelStyle.js";
14
- import { getDefaultInterpolatedLabel as Lt, getDefaultLabel as At } from "../helper/labelHelper.js";
12
+ import { isCoordinateSystemType as wt } from "../../coord/CoordinateSystem.js";
13
+ import { SPECIAL_STATES as $, setStatesStylesFromModel as j, toggleHoverEmphasis as K, setStatesFlag as Q } from "../../util/states.js";
14
+ import { setLabelStyle as It, getLabelStatesModels as Lt, labelInner as Pt } from "../../label/labelStyle.js";
15
+ import { getDefaultInterpolatedLabel as Dt, getDefaultLabel as At } from "../helper/labelHelper.js";
15
16
  import { getECData as V } from "../../util/innerStore.js";
16
17
  import { createFloat32Array as Ct } from "../../util/vendor.js";
17
18
  import { convertToColorString as Y } from "../../util/format.js";
18
19
  import { lerp as Nt } from "../../../../zrender/lib/tool/color.js";
19
- import Et from "../../../../zrender/lib/graphic/Group.js";
20
- import kt from "../../../../zrender/lib/graphic/Text.js";
21
- import Gt from "../../../../zrender/lib/graphic/LinearGradient.js";
22
- import { initProps as Ot, updateProps as M } from "../../animation/basicTransition.js";
23
- function tt(v, l) {
24
- if (v.length === l.length) {
25
- for (var t = 0; t < v.length; t++)
26
- if (v[t] !== l[t])
20
+ import Et from "../../../../zrender/lib/graphic/LinearGradient.js";
21
+ import kt from "../../../../zrender/lib/graphic/Group.js";
22
+ import { initProps as Gt, updateProps as M } from "../../animation/basicTransition.js";
23
+ import Ot from "../../../../zrender/lib/graphic/Text.js";
24
+ function tt(s, l) {
25
+ if (s.length === l.length) {
26
+ for (var t = 0; t < s.length; t++)
27
+ if (s[t] !== l[t])
27
28
  return;
28
29
  return !0;
29
30
  }
30
31
  }
31
- function et(v) {
32
- for (var l = 1 / 0, t = 1 / 0, o = -1 / 0, n = -1 / 0, e = 0; e < v.length; ) {
33
- var a = v[e++], i = v[e++];
32
+ function et(s) {
33
+ for (var l = 1 / 0, t = 1 / 0, o = -1 / 0, n = -1 / 0, e = 0; e < s.length; ) {
34
+ var a = s[e++], i = s[e++];
34
35
  isNaN(a) || (l = Math.min(a, l), o = Math.max(a, o)), isNaN(i) || (t = Math.min(i, t), n = Math.max(i, n));
35
36
  }
36
37
  return [[l, t], [o, n]];
37
38
  }
38
- function at(v, l) {
39
- var t = et(v), o = t[0], n = t[1], e = et(l), a = e[0], i = e[1];
39
+ function at(s, l) {
40
+ var t = et(s), o = t[0], n = t[1], e = et(l), a = e[0], i = e[1];
40
41
  return Math.max(Math.abs(o[0] - a[0]), Math.abs(o[1] - a[1]), Math.abs(n[0] - i[0]), Math.abs(n[1] - i[1]));
41
42
  }
42
- function rt(v) {
43
- return gt(v) ? v : v ? 0.5 : 0;
43
+ function rt(s) {
44
+ return ht(s) ? s : s ? 0.5 : 0;
44
45
  }
45
- function Tt(v, l, t) {
46
+ function Tt(s, l, t) {
46
47
  if (!t.valueDim)
47
48
  return [];
48
49
  for (var o = l.count(), n = Ct(o * 2), e = 0; e < o; e++) {
49
- var a = bt(t, v, l, e);
50
+ var a = _t(t, s, l, e);
50
51
  n[e * 2] = a[0], n[e * 2 + 1] = a[1];
51
52
  }
52
53
  return n;
53
54
  }
54
- function N(v, l, t, o, n) {
55
- var e = t.getBaseAxis(), a = e.dim === "x" || e.dim === "radius" ? 0 : 1, i = [], u = 0, r = [], s = [], f = [], h = [];
55
+ function N(s, l, t, o, n) {
56
+ var e = t.getBaseAxis(), a = e.dim === "x" || e.dim === "radius" ? 0 : 1, i = [], u = 0, r = [], v = [], f = [], h = [];
56
57
  if (n) {
57
- for (u = 0; u < v.length; u += 2) {
58
- var p = l || v;
59
- !isNaN(p[u]) && !isNaN(p[u + 1]) && h.push(v[u], v[u + 1]);
58
+ for (u = 0; u < s.length; u += 2) {
59
+ var g = l || s;
60
+ !isNaN(g[u]) && !isNaN(g[u + 1]) && h.push(s[u], s[u + 1]);
60
61
  }
61
- v = h;
62
+ s = h;
62
63
  }
63
- for (u = 0; u < v.length - 2; u += 2)
64
- switch (f[0] = v[u + 2], f[1] = v[u + 3], s[0] = v[u], s[1] = v[u + 1], i.push(s[0], s[1]), o) {
64
+ for (u = 0; u < s.length - 2; u += 2)
65
+ switch (f[0] = s[u + 2], f[1] = s[u + 3], v[0] = s[u], v[1] = s[u + 1], i.push(v[0], v[1]), o) {
65
66
  case "end":
66
- r[a] = f[a], r[1 - a] = s[1 - a], i.push(r[0], r[1]);
67
+ r[a] = f[a], r[1 - a] = v[1 - a], i.push(r[0], r[1]);
67
68
  break;
68
69
  case "middle":
69
- var m = (s[a] + f[a]) / 2, g = [];
70
- r[a] = g[a] = m, r[1 - a] = s[1 - a], g[1 - a] = f[1 - a], i.push(r[0], r[1]), i.push(g[0], g[1]);
70
+ var m = (v[a] + f[a]) / 2, p = [];
71
+ r[a] = p[a] = m, r[1 - a] = v[1 - a], p[1 - a] = f[1 - a], i.push(r[0], r[1]), i.push(p[0], p[1]);
71
72
  break;
72
73
  default:
73
- r[a] = s[a], r[1 - a] = f[1 - a], i.push(r[0], r[1]);
74
+ r[a] = v[a], r[1 - a] = f[1 - a], i.push(r[0], r[1]);
74
75
  }
75
- return i.push(v[u++], v[u++]), i;
76
+ return i.push(s[u++], s[u++]), i;
76
77
  }
77
- function Ft(v, l) {
78
- var t = [], o = v.length, n, e;
79
- function a(s, f, h) {
80
- var p = s.coord, m = (h - p) / (f.coord - p), g = Nt(m, [s.color, f.color]);
78
+ function Ft(s, l) {
79
+ var t = [], o = s.length, n, e;
80
+ function a(v, f, h) {
81
+ var g = v.coord, m = (h - g) / (f.coord - g), p = Nt(m, [v.color, f.color]);
81
82
  return {
82
83
  coord: h,
83
- color: g
84
+ color: p
84
85
  };
85
86
  }
86
87
  for (var i = 0; i < o; i++) {
87
- var u = v[i], r = u.coord;
88
+ var u = s[i], r = u.coord;
88
89
  if (r < 0)
89
90
  n = u;
90
91
  else if (r > l) {
@@ -95,11 +96,11 @@ function Ft(v, l) {
95
96
  }
96
97
  return t;
97
98
  }
98
- function Vt(v, l, t) {
99
- var o = v.getVisual("visualMeta");
100
- if (!(!o || !o.length || !v.count()) && l.type === "cartesian2d") {
99
+ function Vt(s, l, t) {
100
+ var o = s.getVisual("visualMeta");
101
+ if (!(!o || !o.length || !s.count()) && l.type === "cartesian2d") {
101
102
  for (var n, e, a = o.length - 1; a >= 0; a--) {
102
- var i = v.getDimensionInfo(o[a].dimension);
103
+ var i = s.getDimensionInfo(o[a].dimension);
103
104
  if (n = i && i.coordDim, n === "x" || n === "y") {
104
105
  e = o[a];
105
106
  break;
@@ -111,31 +112,31 @@ function Vt(v, l, t) {
111
112
  coord: u.toGlobalCoord(u.dataToCoord(c.value)),
112
113
  color: c.color
113
114
  };
114
- }), s = r.length, f = e.outerColors.slice();
115
- s && r[0].coord > r[s - 1].coord && (r.reverse(), f.reverse());
116
- var h = Ft(r, n === "x" ? t.getWidth() : t.getHeight()), p = h.length;
117
- if (!p && s)
118
- return r[0].coord < 0 ? f[1] ? f[1] : r[s - 1].color : f[0] ? f[0] : r[0].color;
119
- var m = 10, g = h[0].coord - m, b = h[p - 1].coord + m, _ = b - g;
120
- if (_ < 1e-3)
115
+ }), v = r.length, f = e.outerColors.slice();
116
+ v && r[0].coord > r[v - 1].coord && (r.reverse(), f.reverse());
117
+ var h = Ft(r, n === "x" ? t.getWidth() : t.getHeight()), g = h.length;
118
+ if (!g && v)
119
+ return r[0].coord < 0 ? f[1] ? f[1] : r[v - 1].color : f[0] ? f[0] : r[0].color;
120
+ var m = 10, p = h[0].coord - m, b = h[g - 1].coord + m, d = b - p;
121
+ if (d < 1e-3)
121
122
  return "transparent";
122
123
  it(h, function(c) {
123
- c.offset = (c.coord - g) / _;
124
+ c.offset = (c.coord - p) / d;
124
125
  }), h.push({
125
126
  // NOTE: inRangeStopLen may still be 0 if stoplen is zero.
126
- offset: p ? h[p - 1].offset : 0.5,
127
+ offset: g ? h[g - 1].offset : 0.5,
127
128
  color: f[1] || "transparent"
128
129
  }), h.unshift({
129
- offset: p ? h[0].offset : 0.5,
130
+ offset: g ? h[0].offset : 0.5,
130
131
  color: f[0] || "transparent"
131
132
  });
132
- var y = new Gt(0, 0, 0, 0, h, !0);
133
- return y[n] = g, y[n + "2"] = b, y;
133
+ var y = new Et(0, 0, 0, 0, h, !0);
134
+ return y[n] = p, y[n + "2"] = b, y;
134
135
  }
135
136
  }
136
137
  }
137
- function Ht(v, l, t) {
138
- var o = v.get("showAllSymbol"), n = o === "auto";
138
+ function Ht(s, l, t) {
139
+ var o = s.get("showAllSymbol"), n = o === "auto";
139
140
  if (!(o && !n)) {
140
141
  var e = t.getAxesByScale("ordinal")[0];
141
142
  if (e && !(n && zt(e, l))) {
@@ -149,32 +150,32 @@ function Ht(v, l, t) {
149
150
  }
150
151
  }
151
152
  }
152
- function zt(v, l) {
153
- var t = v.getExtent(), o = Math.abs(t[1] - t[0]) / v.scale.count();
153
+ function zt(s, l) {
154
+ var t = s.getExtent(), o = Math.abs(t[1] - t[0]) / s.scale.count();
154
155
  isNaN(o) && (o = 0);
155
156
  for (var n = l.count(), e = Math.max(1, Math.round(n / 5)), a = 0; a < n; a += e)
156
157
  if (ot.getSymbolSize(
157
158
  l,
158
159
  a
159
160
  // Only for cartesian, where `isHorizontal` exists.
160
- )[v.isHorizontal() ? 1 : 0] * 1.5 > o)
161
+ )[s.isHorizontal() ? 1 : 0] * 1.5 > o)
161
162
  return !1;
162
163
  return !0;
163
164
  }
164
- function Bt(v, l) {
165
- return isNaN(v) || isNaN(l);
165
+ function Bt(s, l) {
166
+ return isNaN(s) || isNaN(l);
166
167
  }
167
- function Rt(v) {
168
- for (var l = v.length / 2; l > 0 && Bt(v[l * 2 - 2], v[l * 2 - 1]); l--)
168
+ function Rt(s) {
169
+ for (var l = s.length / 2; l > 0 && Bt(s[l * 2 - 2], s[l * 2 - 1]); l--)
169
170
  ;
170
171
  return l - 1;
171
172
  }
172
- function nt(v, l) {
173
- return [v[l * 2], v[l * 2 + 1]];
173
+ function nt(s, l) {
174
+ return [s[l * 2], s[l * 2 + 1]];
174
175
  }
175
- function Xt(v, l, t) {
176
- for (var o = v.length / 2, n = t === "x" ? 0 : 1, e, a, i = 0, u = -1, r = 0; r < o; r++)
177
- if (a = v[r * 2 + n], !(isNaN(a) || isNaN(v[r * 2 + 1 - n]))) {
176
+ function Xt(s, l, t) {
177
+ for (var o = s.length / 2, n = t === "x" ? 0 : 1, e, a, i = 0, u = -1, r = 0; r < o; r++)
178
+ if (a = s[r * 2 + n], !(isNaN(a) || isNaN(s[r * 2 + 1 - n]))) {
178
179
  if (r === 0) {
179
180
  e = a;
180
181
  continue;
@@ -190,93 +191,93 @@ function Xt(v, l, t) {
190
191
  t: (l - e) / (a - e)
191
192
  };
192
193
  }
193
- function lt(v) {
194
- if (v.get(["endLabel", "show"]))
194
+ function lt(s) {
195
+ if (s.get(["endLabel", "show"]))
195
196
  return !0;
196
- for (var l = 0; l < Q.length; l++)
197
- if (v.get([Q[l], "endLabel", "show"]))
197
+ for (var l = 0; l < $.length; l++)
198
+ if (s.get([$[l], "endLabel", "show"]))
198
199
  return !0;
199
200
  return !1;
200
201
  }
201
- function H(v, l, t, o) {
202
- if (It(l, "cartesian2d")) {
202
+ function H(s, l, t, o) {
203
+ if (wt(l, "cartesian2d")) {
203
204
  var n = o.getModel("endLabel"), e = n.get("valueAnimation"), a = o.getData(), i = {
204
205
  lastFrameIndex: 0
205
- }, u = lt(o) ? function(p, m) {
206
- v._endLabelOnDuring(p, m, a, i, e, n, l);
207
- } : null, r = l.getBaseAxis().isHorizontal(), s = St(l, t, o, function() {
208
- var p = v._endLabel;
209
- p && t && i.originalX != null && p.attr({
206
+ }, u = lt(o) ? function(g, m) {
207
+ s._endLabelOnDuring(g, m, a, i, e, n, l);
208
+ } : null, r = l.getBaseAxis().isHorizontal(), v = St(l, t, o, function() {
209
+ var g = s._endLabel;
210
+ g && t && i.originalX != null && g.attr({
210
211
  x: i.originalX,
211
212
  y: i.originalY
212
213
  });
213
214
  }, u);
214
215
  if (!o.get("clip", !0)) {
215
- var f = s.shape, h = Math.max(f.width, f.height);
216
+ var f = v.shape, h = Math.max(f.width, f.height);
216
217
  r ? (f.y -= h, f.height += h * 2) : (f.x -= h, f.width += h * 2);
217
218
  }
218
- return u && u(1, s), s;
219
+ return u && u(1, v), v;
219
220
  } else
220
221
  return xt(l, t, o);
221
222
  }
222
- function Ut(v, l) {
223
+ function Ut(s, l) {
223
224
  var t = l.getBaseAxis(), o = t.isHorizontal(), n = t.inverse, e = o ? n ? "right" : "left" : "center", a = o ? "middle" : n ? "top" : "bottom";
224
225
  return {
225
226
  normal: {
226
- align: v.get("align") || e,
227
- verticalAlign: v.get("verticalAlign") || a
227
+ align: s.get("align") || e,
228
+ verticalAlign: s.get("verticalAlign") || a
228
229
  }
229
230
  };
230
231
  }
231
- var fe = (
232
+ var pe = (
232
233
  /** @class */
233
- (function(v) {
234
- ut(l, v);
234
+ (function(s) {
235
+ ut(l, s);
235
236
  function l() {
236
- return v !== null && v.apply(this, arguments) || this;
237
+ return s !== null && s.apply(this, arguments) || this;
237
238
  }
238
239
  return l.prototype.init = function() {
239
- var t = new Et(), o = new pt();
240
- this.group.add(o.group), this._symbolDraw = o, this._lineGroup = t, this._changePolyState = ht(this._changePolyState, this);
240
+ var t = new kt(), o = new gt();
241
+ this.group.add(o.group), this._symbolDraw = o, this._lineGroup = t, this._changePolyState = pt(this._changePolyState, this);
241
242
  }, l.prototype.render = function(t, o, n) {
242
- var e = t.coordinateSystem, a = this.group, i = t.getData(), u = t.getModel("lineStyle"), r = t.getModel("areaStyle"), s = i.getLayout("points") || [], f = e.type === "polar", h = this._coordSys, p = this._symbolDraw, m = this._polyline, g = this._polygon, b = this._lineGroup, _ = !o.ssr && t.get("animation"), y = !r.isEmpty(), c = r.get("origin"), D = dt(e, i, c), d = y && Tt(e, i, D), x = t.get("showSymbol"), P = t.get("connectNulls"), A = x && !f && Ht(t, i, e), S = this._data;
243
- S && S.eachItemGraphicEl(function(C, st) {
244
- C.__temp && (a.remove(C), S.setItemGraphicEl(st, null));
245
- }), x || p.remove(), a.add(b);
246
- var I = f ? !1 : t.get("step"), w;
247
- e && e.getArea && t.get("clip", !0) && (w = e.getArea(), w.width != null ? (w.x -= 0.1, w.y -= 0.1, w.width += 0.2, w.height += 0.2) : w.r0 && (w.r0 -= 0.5, w.r += 0.5)), this._clipShapeForSymbol = w;
248
- var L = Vt(i, e, n) || i.getVisual("style")[i.getVisual("drawType")];
249
- if (!(m && h.type === e.type && I === this._step))
250
- x && p.updateData(i, {
243
+ var e = t.coordinateSystem, a = this.group, i = t.getData(), u = t.getModel("lineStyle"), r = t.getModel("areaStyle"), v = i.getLayout("points") || [], f = e.type === "polar", h = this._coordSys, g = this._symbolDraw, m = this._polyline, p = this._polygon, b = this._lineGroup, d = !o.ssr && t.get("animation"), y = !r.isEmpty(), c = r.get("origin"), P = bt(e, i, c), _ = y && Tt(e, i, P), x = t.get("showSymbol"), L = t.get("connectNulls"), A = x && !f && Ht(t, i, e), S = this._data;
244
+ S && S.eachItemGraphicEl(function(C, vt) {
245
+ C.__temp && (a.remove(C), S.setItemGraphicEl(vt, null));
246
+ }), x || g.remove(), a.add(b);
247
+ var w = f ? !1 : t.get("step"), I;
248
+ e && e.getArea && t.get("clip", !0) && (I = e.getArea(), I.width != null ? (I.x -= 0.1, I.y -= 0.1, I.width += 0.2, I.height += 0.2) : I.r0 && (I.r0 -= 0.5, I.r += 0.5)), this._clipShapeForSymbol = I;
249
+ var D = Vt(i, e, n) || i.getVisual("style")[i.getVisual("drawType")];
250
+ if (!(m && h.type === e.type && w === this._step))
251
+ x && g.updateData(i, {
251
252
  isIgnore: A,
252
- clipShape: w,
253
+ clipShape: I,
253
254
  disableAnimation: !0,
254
255
  getSymbolPoint: function(C) {
255
- return [s[C * 2], s[C * 2 + 1]];
256
+ return [v[C * 2], v[C * 2 + 1]];
256
257
  }
257
- }), _ && this._initSymbolLabelAnimation(i, e, w), I && (d && (d = N(d, s, e, I, P)), s = N(s, null, e, I, P)), m = this._newPolyline(s), y ? g = this._newPolygon(s, d) : g && (b.remove(g), g = this._polygon = null), f || this._initOrUpdateEndLabel(t, e, Y(L)), b.setClipPath(H(this, e, !0, t));
258
+ }), d && this._initSymbolLabelAnimation(i, e, I), w && (_ && (_ = N(_, v, e, w, L)), v = N(v, null, e, w, L)), m = this._newPolyline(v), y ? p = this._newPolygon(v, _) : p && (b.remove(p), p = this._polygon = null), f || this._initOrUpdateEndLabel(t, e, Y(D)), b.setClipPath(H(this, e, !0, t));
258
259
  else {
259
- y && !g ? g = this._newPolygon(s, d) : g && !y && (b.remove(g), g = this._polygon = null), f || this._initOrUpdateEndLabel(t, e, Y(L));
260
+ y && !p ? p = this._newPolygon(v, _) : p && !y && (b.remove(p), p = this._polygon = null), f || this._initOrUpdateEndLabel(t, e, Y(D));
260
261
  var G = b.getClipPath();
261
262
  if (G) {
262
263
  var O = H(this, e, !1, t);
263
- Ot(G, {
264
+ Gt(G, {
264
265
  shape: O.shape
265
266
  }, t);
266
267
  } else
267
268
  b.setClipPath(H(this, e, !0, t));
268
- x && p.updateData(i, {
269
+ x && g.updateData(i, {
269
270
  isIgnore: A,
270
- clipShape: w,
271
+ clipShape: I,
271
272
  disableAnimation: !0,
272
273
  getSymbolPoint: function(C) {
273
- return [s[C * 2], s[C * 2 + 1]];
274
+ return [v[C * 2], v[C * 2 + 1]];
274
275
  }
275
- }), (!tt(this._stackedOnPoints, d) || !tt(this._points, s)) && (_ ? this._doUpdateAnimation(i, d, e, n, I, c, P) : (I && (d && (d = N(d, s, e, I, P)), s = N(s, null, e, I, P)), m.setShape({
276
- points: s
277
- }), g && g.setShape({
278
- points: s,
279
- stackedOnPoints: d
276
+ }), (!tt(this._stackedOnPoints, _) || !tt(this._points, v)) && (d ? this._doUpdateAnimation(i, _, e, n, w, c, L) : (w && (_ && (_ = N(_, v, e, w, L)), v = N(v, null, e, w, L)), m.setShape({
277
+ points: v
278
+ }), p && p.setShape({
279
+ points: v,
280
+ stackedOnPoints: _
280
281
  })));
281
282
  }
282
283
  var E = t.getModel("emphasis"), k = E.get("focus"), z = E.get("blurScope"), B = E.get("disabled");
@@ -285,37 +286,37 @@ var fe = (
285
286
  u.getLineStyle(),
286
287
  {
287
288
  fill: "none",
288
- stroke: L,
289
+ stroke: D,
289
290
  lineJoin: "bevel"
290
291
  }
291
- )), $(m, t, "lineStyle"), m.style.lineWidth > 0 && t.get(["emphasis", "lineStyle", "width"]) === "bolder") {
292
- var vt = m.getState("emphasis").style;
293
- vt.lineWidth = +m.style.lineWidth + 1;
292
+ )), j(m, t, "lineStyle"), m.style.lineWidth > 0 && t.get(["emphasis", "lineStyle", "width"]) === "bolder") {
293
+ var st = m.getState("emphasis").style;
294
+ st.lineWidth = +m.style.lineWidth + 1;
294
295
  }
295
- V(m).seriesIndex = t.seriesIndex, j(m, k, z, B);
296
+ V(m).seriesIndex = t.seriesIndex, K(m, k, z, B);
296
297
  var R = rt(t.get("smooth")), X = t.get("smoothMonotone");
297
298
  if (m.setShape({
298
299
  smooth: R,
299
300
  smoothMonotone: X,
300
- connectNulls: P
301
- }), g) {
301
+ connectNulls: L
302
+ }), p) {
302
303
  var U = i.getCalculationInfo("stackedOnSeries"), W = 0;
303
- g.useStyle(Z(r.getAreaStyle(), {
304
- fill: L,
304
+ p.useStyle(Z(r.getAreaStyle(), {
305
+ fill: D,
305
306
  opacity: 0.7,
306
307
  lineJoin: "bevel",
307
308
  decal: i.getVisual("style").decal
308
- })), U && (W = rt(U.get("smooth"))), g.setShape({
309
+ })), U && (W = rt(U.get("smooth"))), p.setShape({
309
310
  smooth: R,
310
311
  stackedOnSmooth: W,
311
312
  smoothMonotone: X,
312
- connectNulls: P
313
- }), $(g, t, "areaStyle"), V(g).seriesIndex = t.seriesIndex, j(g, k, z, B);
313
+ connectNulls: L
314
+ }), j(p, t, "areaStyle"), V(p).seriesIndex = t.seriesIndex, K(p, k, z, B);
314
315
  }
315
316
  var J = this._changePolyState;
316
317
  i.eachItemGraphicEl(function(C) {
317
318
  C && (C.onHoverStateChange = J);
318
- }), this._polyline.onHoverStateChange = J, this._data = i, this._coordSys = e, this._stackedOnPoints = d, this._points = s, this._step = I, this._valueOrigin = c, t.get("triggerLineEvent") && (this.packEventData(t, m), g && this.packEventData(t, g));
319
+ }), this._polyline.onHoverStateChange = J, this._data = i, this._coordSys = e, this._stackedOnPoints = _, this._points = v, this._step = w, this._valueOrigin = c, t.get("triggerLineEvent") && (this.packEventData(t, m), p && this.packEventData(t, p));
319
320
  }, l.prototype.packEventData = function(t, o) {
320
321
  V(o).eventData = {
321
322
  componentType: "series",
@@ -330,13 +331,13 @@ var fe = (
330
331
  if (this._changePolyState("emphasis"), !(i instanceof Array) && i != null && i >= 0) {
331
332
  var u = a.getLayout("points"), r = a.getItemGraphicEl(i);
332
333
  if (!r) {
333
- var s = u[i * 2], f = u[i * 2 + 1];
334
- if (isNaN(s) || isNaN(f) || this._clipShapeForSymbol && !this._clipShapeForSymbol.contain(s, f))
334
+ var v = u[i * 2], f = u[i * 2 + 1];
335
+ if (isNaN(v) || isNaN(f) || this._clipShapeForSymbol && !this._clipShapeForSymbol.contain(v, f))
335
336
  return;
336
- var h = t.get("zlevel") || 0, p = t.get("z") || 0;
337
- r = new ot(a, i), r.x = s, r.y = f, r.setZ(h, p);
337
+ var h = t.get("zlevel") || 0, g = t.get("z") || 0;
338
+ r = new ot(a, i), r.x = v, r.y = f, r.setZ(h, g);
338
339
  var m = r.getSymbolPath().getTextContent();
339
- m && (m.zlevel = h, m.z = p, m.z2 = this._polyline.z2 + 1), r.__temp = !0, a.setItemGraphicEl(i, r), r.stopSymbolAnimation(!0), this.group.add(r);
340
+ m && (m.zlevel = h, m.z = g, m.z2 = this._polyline.z2 + 1), r.__temp = !0, a.setItemGraphicEl(i, r), r.stopSymbolAnimation(!0), this.group.add(r);
340
341
  }
341
342
  r.highlight();
342
343
  } else
@@ -350,7 +351,7 @@ var fe = (
350
351
  F.prototype.downplay.call(this, t, o, n, e);
351
352
  }, l.prototype._changePolyState = function(t) {
352
353
  var o = this._polygon;
353
- K(this._polyline, t), o && K(o, t);
354
+ Q(this._polyline, t), o && Q(o, t);
354
355
  }, l.prototype._newPolyline = function(t) {
355
356
  var o = this._polyline;
356
357
  return o && this._lineGroup.remove(o), o = new yt({
@@ -362,7 +363,7 @@ var fe = (
362
363
  }), this._lineGroup.add(o), this._polyline = o, o;
363
364
  }, l.prototype._newPolygon = function(t, o) {
364
365
  var n = this._polygon;
365
- return n && this._lineGroup.remove(n), n = new _t({
366
+ return n && this._lineGroup.remove(n), n = new dt({
366
367
  shape: {
367
368
  points: t,
368
369
  stackedOnPoints: o
@@ -372,35 +373,35 @@ var fe = (
372
373
  }, l.prototype._initSymbolLabelAnimation = function(t, o, n) {
373
374
  var e, a, i = o.getBaseAxis(), u = i.inverse;
374
375
  o.type === "cartesian2d" ? (e = i.isHorizontal(), a = !1) : o.type === "polar" && (e = i.dim === "angle", a = !0);
375
- var r = t.hostModel, s = r.get("animationDuration");
376
- T(s) && (s = s(null));
376
+ var r = t.hostModel, v = r.get("animationDuration");
377
+ T(v) && (v = v(null));
377
378
  var f = r.get("animationDelay") || 0, h = T(f) ? f(null) : f;
378
- t.eachItemGraphicEl(function(p, m) {
379
- var g = p;
380
- if (g) {
381
- var b = [p.x, p.y], _ = void 0, y = void 0, c = void 0;
379
+ t.eachItemGraphicEl(function(g, m) {
380
+ var p = g;
381
+ if (p) {
382
+ var b = [g.x, g.y], d = void 0, y = void 0, c = void 0;
382
383
  if (n)
383
384
  if (a) {
384
- var D = n, d = o.pointToCoord(b);
385
- e ? (_ = D.startAngle, y = D.endAngle, c = -d[1] / 180 * Math.PI) : (_ = D.r0, y = D.r, c = d[0]);
385
+ var P = n, _ = o.pointToCoord(b);
386
+ e ? (d = P.startAngle, y = P.endAngle, c = -_[1] / 180 * Math.PI) : (d = P.r0, y = P.r, c = _[0]);
386
387
  } else {
387
388
  var x = n;
388
- e ? (_ = x.x, y = x.x + x.width, c = p.x) : (_ = x.y + x.height, y = x.y, c = p.y);
389
+ e ? (d = x.x, y = x.x + x.width, c = g.x) : (d = x.y + x.height, y = x.y, c = g.y);
389
390
  }
390
- var P = y === _ ? 0 : (c - _) / (y - _);
391
- u && (P = 1 - P);
392
- var A = T(f) ? f(m) : s * P + h, S = g.getSymbolPath(), I = S.getTextContent();
393
- g.attr({
391
+ var L = y === d ? 0 : (c - d) / (y - d);
392
+ u && (L = 1 - L);
393
+ var A = T(f) ? f(m) : v * L + h, S = p.getSymbolPath(), w = S.getTextContent();
394
+ p.attr({
394
395
  scaleX: 0,
395
396
  scaleY: 0
396
- }), g.animateTo({
397
+ }), p.animateTo({
397
398
  scaleX: 1,
398
399
  scaleY: 1
399
400
  }, {
400
401
  duration: 200,
401
402
  setToFinal: !0,
402
403
  delay: A
403
- }), I && I.animateFrom({
404
+ }), w && w.animateFrom({
404
405
  style: {
405
406
  opacity: 0
406
407
  }
@@ -419,97 +420,97 @@ var fe = (
419
420
  return;
420
421
  }
421
422
  var r = this._endLabel;
422
- r || (r = this._endLabel = new kt({
423
+ r || (r = this._endLabel = new Ot({
423
424
  z2: 200
424
425
  // should be higher than item symbol
425
426
  }), r.ignoreClip = !0, i.setTextContent(this._endLabel), i.disableLabelAnimation = !0);
426
- var s = Rt(u);
427
- s >= 0 && (wt(i, Pt(t, "endLabel"), {
427
+ var v = Rt(u);
428
+ v >= 0 && (It(i, Lt(t, "endLabel"), {
428
429
  inheritColor: n,
429
430
  labelFetcher: t,
430
- labelDataIndex: s,
431
- defaultText: function(f, h, p) {
432
- return p != null ? Lt(a, p) : At(a, f);
431
+ labelDataIndex: v,
432
+ defaultText: function(f, h, g) {
433
+ return g != null ? Dt(a, g) : At(a, f);
433
434
  },
434
435
  enableTextSetter: !0
435
436
  }, Ut(e, o)), i.textConfig.position = null);
436
437
  } else this._endLabel && (this._polyline.removeTextContent(), this._endLabel = null);
437
438
  }, l.prototype._endLabelOnDuring = function(t, o, n, e, a, i, u) {
438
- var r = this._endLabel, s = this._polyline;
439
+ var r = this._endLabel, v = this._polyline;
439
440
  if (r) {
440
441
  t < 1 && e.originalX == null && (e.originalX = r.x, e.originalY = r.y);
441
- var f = n.getLayout("points"), h = n.hostModel, p = h.get("connectNulls"), m = i.get("precision"), g = i.get("distance") || 0, b = u.getBaseAxis(), _ = b.isHorizontal(), y = b.inverse, c = o.shape, D = y ? _ ? c.x : c.y + c.height : _ ? c.x + c.width : c.y, d = (_ ? g : 0) * (y ? -1 : 1), x = (_ ? 0 : -g) * (y ? -1 : 1), P = _ ? "x" : "y", A = Xt(f, D, P), S = A.range, I = S[1] - S[0], w = void 0;
442
- if (I >= 1) {
443
- if (I > 1 && !p) {
444
- var L = nt(f, S[0]);
442
+ var f = n.getLayout("points"), h = n.hostModel, g = h.get("connectNulls"), m = i.get("precision"), p = i.get("distance") || 0, b = u.getBaseAxis(), d = b.isHorizontal(), y = b.inverse, c = o.shape, P = y ? d ? c.x : c.y + c.height : d ? c.x + c.width : c.y, _ = (d ? p : 0) * (y ? -1 : 1), x = (d ? 0 : -p) * (y ? -1 : 1), L = d ? "x" : "y", A = Xt(f, P, L), S = A.range, w = S[1] - S[0], I = void 0;
443
+ if (w >= 1) {
444
+ if (w > 1 && !g) {
445
+ var D = nt(f, S[0]);
445
446
  r.attr({
446
- x: L[0] + d,
447
- y: L[1] + x
448
- }), a && (w = h.getRawValue(S[0]));
447
+ x: D[0] + _,
448
+ y: D[1] + x
449
+ }), a && (I = h.getRawValue(S[0]));
449
450
  } else {
450
- var L = s.getPointOn(D, P);
451
- L && r.attr({
452
- x: L[0] + d,
453
- y: L[1] + x
451
+ var D = v.getPointOn(P, L);
452
+ D && r.attr({
453
+ x: D[0] + _,
454
+ y: D[1] + x
454
455
  });
455
456
  var G = h.getRawValue(S[0]), O = h.getRawValue(S[1]);
456
- a && (w = ct(n, m, G, O, A.t));
457
+ a && (I = ct(n, m, G, O, A.t));
457
458
  }
458
459
  e.lastFrameIndex = S[0];
459
460
  } else {
460
- var E = t === 1 || e.lastFrameIndex > 0 ? S[0] : 0, L = nt(f, E);
461
- a && (w = h.getRawValue(E)), r.attr({
462
- x: L[0] + d,
463
- y: L[1] + x
461
+ var E = t === 1 || e.lastFrameIndex > 0 ? S[0] : 0, D = nt(f, E);
462
+ a && (I = h.getRawValue(E)), r.attr({
463
+ x: D[0] + _,
464
+ y: D[1] + x
464
465
  });
465
466
  }
466
467
  if (a) {
467
- var k = Dt(r);
468
- typeof k.setLabelText == "function" && k.setLabelText(w);
468
+ var k = Pt(r);
469
+ typeof k.setLabelText == "function" && k.setLabelText(I);
469
470
  }
470
471
  }
471
472
  }, l.prototype._doUpdateAnimation = function(t, o, n, e, a, i, u) {
472
- var r = this._polyline, s = this._polygon, f = t.hostModel, h = mt(this._data, t, this._stackedOnPoints, o, this._coordSys, n, this._valueOrigin), p = h.current, m = h.stackedOnCurrent, g = h.next, b = h.stackedOnNext;
473
- if (a && (m = N(h.stackedOnCurrent, h.current, n, a, u), p = N(h.current, null, n, a, u), b = N(h.stackedOnNext, h.next, n, a, u), g = N(h.next, null, n, a, u)), at(p, g) > 3e3 || s && at(m, b) > 3e3) {
473
+ var r = this._polyline, v = this._polygon, f = t.hostModel, h = mt(this._data, t, this._stackedOnPoints, o, this._coordSys, n, this._valueOrigin, i), g = h.current, m = h.stackedOnCurrent, p = h.next, b = h.stackedOnNext;
474
+ if (a && (m = N(h.stackedOnCurrent, h.current, n, a, u), g = N(h.current, null, n, a, u), b = N(h.stackedOnNext, h.next, n, a, u), p = N(h.next, null, n, a, u)), at(g, p) > 3e3 || v && at(m, b) > 3e3) {
474
475
  r.stopAnimation(), r.setShape({
475
- points: g
476
- }), s && (s.stopAnimation(), s.setShape({
477
- points: g,
476
+ points: p
477
+ }), v && (v.stopAnimation(), v.setShape({
478
+ points: p,
478
479
  stackedOnPoints: b
479
480
  }));
480
481
  return;
481
482
  }
482
- r.shape.__points = h.current, r.shape.points = p;
483
- var _ = {
483
+ r.shape.__points = h.current, r.shape.points = g;
484
+ var d = {
484
485
  shape: {
485
- points: g
486
+ points: p
486
487
  }
487
488
  };
488
- h.current !== p && (_.shape.__points = h.next), r.stopAnimation(), M(r, _, f), s && (s.setShape({
489
+ h.current !== g && (d.shape.__points = h.next), r.stopAnimation(), M(r, d, f), v && (v.setShape({
489
490
  // Reuse the points with polyline.
490
- points: p,
491
+ points: g,
491
492
  stackedOnPoints: m
492
- }), s.stopAnimation(), M(s, {
493
+ }), v.stopAnimation(), M(v, {
493
494
  shape: {
494
495
  stackedOnPoints: b
495
496
  }
496
- }, f), r.shape.points !== s.shape.points && (s.shape.points = r.shape.points));
497
- for (var y = [], c = h.status, D = 0; D < c.length; D++) {
498
- var d = c[D].cmd;
499
- if (d === "=") {
500
- var x = t.getItemGraphicEl(c[D].idx1);
497
+ }, f), r.shape.points !== v.shape.points && (v.shape.points = r.shape.points));
498
+ for (var y = [], c = h.status, P = 0; P < c.length; P++) {
499
+ var _ = c[P].cmd;
500
+ if (_ === "=") {
501
+ var x = t.getItemGraphicEl(c[P].idx1);
501
502
  x && y.push({
502
503
  el: x,
503
- ptIdx: D
504
+ ptIdx: P
504
505
  // Index of points
505
506
  });
506
507
  }
507
508
  }
508
509
  r.animators && r.animators.length && r.animators[0].during(function() {
509
- s && s.dirtyShape();
510
- for (var P = r.shape.__points, A = 0; A < y.length; A++) {
511
- var S = y[A].el, I = y[A].ptIdx * 2;
512
- S.x = P[I], S.y = P[I + 1], S.markRedraw();
510
+ v && v.dirtyShape();
511
+ for (var L = r.shape.__points, A = 0; A < y.length; A++) {
512
+ var S = y[A].el, w = y[A].ptIdx * 2;
513
+ S.x = L[w], S.y = L[w + 1], S.markRedraw();
513
514
  }
514
515
  });
515
516
  }, l.prototype.remove = function(t) {
@@ -521,5 +522,5 @@ var fe = (
521
522
  })(F)
522
523
  );
523
524
  export {
524
- fe as default
525
+ pe as default
525
526
  };