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
@@ -2,23 +2,24 @@ import { __extends as H } from "../../../../tslib/tslib.es6.js";
2
2
  import he from "../../../../zrender/lib/graphic/Path.js";
3
3
  import pe from "../../../../zrender/lib/graphic/Group.js";
4
4
  import { map as ue, extend as ee, each as ge } from "../../../../zrender/lib/core/util.js";
5
- import { traverseElements as de } from "../../util/graphic.js";
5
+ import { traverseElements as fe } from "../../util/graphic.js";
6
6
  import { getECData as W } from "../../util/innerStore.js";
7
- import { toggleHoverEmphasis as fe, setStatesStylesFromModel as ve } from "../../util/states.js";
8
- import { labelInner as ce, getLabelStatesModels as le, setLabelStyle as me, setLabelValueAnimation as _e } from "../../label/labelStyle.js";
7
+ import { toggleHoverEmphasis as de, setStatesStylesFromModel as le } from "../../util/states.js";
8
+ import { labelInner as ce, getLabelStatesModels as ve, setLabelStyle as me, setLabelValueAnimation as _e } from "../../label/labelStyle.js";
9
9
  import { throttle as be } from "../../util/throttle.js";
10
- import { createClipPath as Ae } from "../helper/createClipPathFromCoordSys.js";
10
+ import { createClipPath as ye } from "../helper/createClipPathFromCoordSys.js";
11
11
  import X from "../../util/shape/sausage.js";
12
- import xe from "../../view/Chart.js";
12
+ import Ae from "../../view/Chart.js";
13
13
  import { isCoordinateSystemType as te } from "../../coord/CoordinateSystem.js";
14
- import { getDefaultLabel as ye, getDefaultInterpolatedLabel as Se } from "../helper/labelHelper.js";
15
- import { createSectorCalculateTextPosition as we, setSectorTextRotation as De } from "../../label/sectorLabel.js";
16
- import { initProps as P, updateProps as L, saveOldStyle as Le, removeElementWithFadeOut as z } from "../../animation/basicTransition.js";
14
+ import { getDefaultLabel as xe, getDefaultInterpolatedLabel as we } from "../helper/labelHelper.js";
15
+ import "../../util/log.js";
16
+ import { createSectorCalculateTextPosition as Se, setSectorTextRotation as De } from "../../label/sectorLabel.js";
17
+ import { initProps as I, updateProps as L, saveOldStyle as Le, removeElementWithFadeOut as z } from "../../animation/basicTransition.js";
17
18
  import { getSectorCornerRadius as Ce } from "../helper/sectorHelper.js";
18
19
  import re from "../../../../zrender/lib/graphic/shape/Sector.js";
19
20
  import ae from "../../../../zrender/lib/graphic/shape/Rect.js";
20
21
  var R = Math.max, E = Math.min;
21
- function Ie(i, r) {
22
+ function ke(i, r) {
22
23
  var e = i.getArea && i.getArea();
23
24
  if (te(i, "cartesian2d")) {
24
25
  var t = i.getBaseAxis();
@@ -29,7 +30,7 @@ function Ie(i, r) {
29
30
  }
30
31
  return e;
31
32
  }
32
- var rt = (
33
+ var it = (
33
34
  /** @class */
34
35
  (function(i) {
35
36
  H(r, i);
@@ -46,78 +47,78 @@ var rt = (
46
47
  }, r.prototype.incrementalRender = function(e, t) {
47
48
  this._progressiveEls = [], this._incrementalRenderLarge(e, t);
48
49
  }, r.prototype.eachRendered = function(e) {
49
- de(this._progressiveEls || this.group, e);
50
+ fe(this._progressiveEls || this.group, e);
50
51
  }, r.prototype._updateDrawMode = function(e) {
51
52
  var t = e.pipelineContext.large;
52
53
  (this._isLargeDraw == null || t !== this._isLargeDraw) && (this._isLargeDraw = t, this._clear());
53
54
  }, r.prototype._renderNormal = function(e, t, a, n) {
54
55
  var o = this.group, s = e.getData(), u = this._data, h = e.coordinateSystem, p = h.getBaseAxis(), g;
55
56
  h.type === "cartesian2d" ? g = p.isHorizontal() : h.type === "polar" && (g = p.dim === "angle");
56
- var m = e.isAnimationEnabled() ? e : null, f = Pe(e, h);
57
- f && this._enableRealtimeSort(f, s, a);
58
- var x = e.get("clip", !0) || f, w = Ie(h, s);
57
+ var m = e.isAnimationEnabled() ? e : null, d = Ie(e, h);
58
+ d && this._enableRealtimeSort(d, s, a);
59
+ var A = e.get("clip", !0) || d, S = ke(h, s);
59
60
  o.removeClipPath();
60
- var y = e.get("roundCap", !0), S = e.get("showBackground", !0), A = e.getModel("backgroundStyle"), C = A.get("borderRadius") || 0, D = [], B = this._backgroundEls, F = n && n.isInitSort, G = n && n.type === "changeAxisOrder";
61
- function T(d) {
62
- var _ = I[h.type](s, d), v = We(h, g, _);
63
- return v.useStyle(A.getItemStyle()), h.type === "cartesian2d" ? v.setShape("r", C) : v.setShape("cornerRadius", C), D[d] = v, v;
61
+ var x = e.get("roundCap", !0), w = e.get("showBackground", !0), y = e.getModel("backgroundStyle"), C = y.get("borderRadius") || 0, D = [], B = this._backgroundEls, F = n && n.isInitSort, G = n && n.type === "changeAxisOrder";
62
+ function T(f) {
63
+ var _ = k[h.type](s, f), l = We(h, g, _);
64
+ return l.useStyle(y.getItemStyle()), h.type === "cartesian2d" ? l.setShape("r", C) : l.setShape("cornerRadius", C), D[f] = l, l;
64
65
  }
65
- s.diff(u).add(function(d) {
66
- var _ = s.getItemModel(d), v = I[h.type](s, d, _);
67
- if (S && T(d), !(!s.hasValue(d) || !q[h.type](v))) {
66
+ s.diff(u).add(function(f) {
67
+ var _ = s.getItemModel(f), l = k[h.type](s, f, _);
68
+ if (w && T(f), !(!s.hasValue(f) || !q[h.type](l))) {
68
69
  var b = !1;
69
- x && (b = U[h.type](w, v));
70
- var c = Y[h.type](e, s, d, v, g, m, p.model, !1, y);
71
- f && (c.forceLabelAnimation = !0), J(c, s, d, _, v, e, g, h.type === "polar"), F ? c.attr({
72
- shape: v
73
- }) : f ? Z(f, m, c, v, d, g, !1, !1) : P(c, {
74
- shape: v
75
- }, e, d), s.setItemGraphicEl(d, c), o.add(c), c.ignore = b;
70
+ A && (b = U[h.type](S, l));
71
+ var c = Y[h.type](e, s, f, l, g, m, p.model, !1, x);
72
+ d && (c.forceLabelAnimation = !0), J(c, s, f, _, l, e, g, h.type === "polar"), F ? c.attr({
73
+ shape: l
74
+ }) : d ? Z(d, m, c, l, f, g, !1, !1) : I(c, {
75
+ shape: l
76
+ }, e, f), s.setItemGraphicEl(f, c), o.add(c), c.ignore = b;
76
77
  }
77
- }).update(function(d, _) {
78
- var v = s.getItemModel(d), b = I[h.type](s, d, v);
79
- if (S) {
78
+ }).update(function(f, _) {
79
+ var l = s.getItemModel(f), b = k[h.type](s, f, l);
80
+ if (w) {
80
81
  var c = void 0;
81
- B.length === 0 ? c = T(_) : (c = B[_], c.useStyle(A.getItemStyle()), h.type === "cartesian2d" ? c.setShape("r", C) : c.setShape("cornerRadius", C), D[d] = c);
82
- var se = I[h.type](s, d), oe = ne(g, se, h);
82
+ B.length === 0 ? c = T(_) : (c = B[_], c.useStyle(y.getItemStyle()), h.type === "cartesian2d" ? c.setShape("r", C) : c.setShape("cornerRadius", C), D[f] = c);
83
+ var se = k[h.type](s, f), oe = ne(g, se, h);
83
84
  L(c, {
84
85
  shape: oe
85
- }, m, d);
86
+ }, m, f);
86
87
  }
87
- var l = u.getItemGraphicEl(_);
88
- if (!s.hasValue(d) || !q[h.type](b)) {
89
- o.remove(l);
88
+ var v = u.getItemGraphicEl(_);
89
+ if (!s.hasValue(f) || !q[h.type](b)) {
90
+ o.remove(v);
90
91
  return;
91
92
  }
92
93
  var O = !1;
93
- if (x && (O = U[h.type](w, b), O && o.remove(l)), l ? Le(l) : l = Y[h.type](e, s, d, b, g, m, p.model, !!l, y), f && (l.forceLabelAnimation = !0), G) {
94
- var M = l.getTextContent();
94
+ if (A && (O = U[h.type](S, b), O && o.remove(v)), v ? Le(v) : v = Y[h.type](e, s, f, b, g, m, p.model, !!v, x), d && (v.forceLabelAnimation = !0), G) {
95
+ var M = v.getTextContent();
95
96
  if (M) {
96
97
  var N = ce(M);
97
98
  N.prevValue != null && (N.prevValue = N.value);
98
99
  }
99
100
  } else
100
- J(l, s, d, v, b, e, g, h.type === "polar");
101
- F ? l.attr({
101
+ J(v, s, f, l, b, e, g, h.type === "polar");
102
+ F ? v.attr({
102
103
  shape: b
103
- }) : f ? Z(f, m, l, b, d, g, !0, G) : L(l, {
104
+ }) : d ? Z(d, m, v, b, f, g, !0, G) : L(v, {
104
105
  shape: b
105
- }, e, d, null), s.setItemGraphicEl(d, l), l.ignore = O, o.add(l);
106
- }).remove(function(d) {
107
- var _ = u.getItemGraphicEl(d);
108
- _ && z(_, e, d);
106
+ }, e, f, null), s.setItemGraphicEl(f, v), v.ignore = O, o.add(v);
107
+ }).remove(function(f) {
108
+ var _ = u.getItemGraphicEl(f);
109
+ _ && z(_, e, f);
109
110
  }).execute();
110
- var k = this._backgroundGroup || (this._backgroundGroup = new pe());
111
- k.removeAll();
111
+ var P = this._backgroundGroup || (this._backgroundGroup = new pe());
112
+ P.removeAll();
112
113
  for (var V = 0; V < D.length; ++V)
113
- k.add(D[V]);
114
- o.add(k), this._backgroundEls = D, this._data = s;
114
+ P.add(D[V]);
115
+ o.add(P), this._backgroundEls = D, this._data = s;
115
116
  }, r.prototype._renderLarge = function(e, t, a) {
116
117
  this._clear(), Q(e, this.group), this._updateLargeClip(e);
117
118
  }, r.prototype._incrementalRenderLarge = function(e, t) {
118
119
  this._removeBackground(), Q(t, this.group, this._progressiveEls, !0);
119
120
  }, r.prototype._updateLargeClip = function(e) {
120
- var t = e.get("clip", !0) && Ae(e.coordinateSystem, !1, e), a = this.group;
121
+ var t = e.get("clip", !0) && ye(e.coordinateSystem, !1, e), a = this.group;
121
122
  t ? a.setClipPath(t) : a.removeClipPath();
122
123
  }, r.prototype._enableRealtimeSort = function(e, t, a) {
123
124
  var n = this;
@@ -200,7 +201,7 @@ var rt = (
200
201
  }, r.prototype._removeBackground = function() {
201
202
  this.group.remove(this._backgroundGroup), this._backgroundGroup = null;
202
203
  }, r.type = "bar", r;
203
- })(xe)
204
+ })(Ae)
204
205
  ), U = {
205
206
  cartesian2d: function(i, r) {
206
207
  var e = r.width < 0 ? -1 : 1, t = r.height < 0 ? -1 : 1;
@@ -242,19 +243,19 @@ var rt = (
242
243
  });
243
244
  p.name = "item";
244
245
  var g = ie(a);
245
- if (p.calculateTextPosition = we(g, {
246
+ if (p.calculateTextPosition = Se(g, {
246
247
  isRoundCap: h === X
247
248
  }), n) {
248
- var m = p.shape, f = a ? "r" : "endAngle", x = {};
249
- m[f] = a ? t.r0 : t.startAngle, x[f] = t[f], (s ? L : P)(p, {
250
- shape: x
249
+ var m = p.shape, d = a ? "r" : "endAngle", A = {};
250
+ m[d] = a ? t.r0 : t.startAngle, A[d] = t[d], (s ? L : I)(p, {
251
+ shape: A
251
252
  // __value: typeof dataValue === 'string' ? parseInt(dataValue, 10) : dataValue
252
253
  }, n);
253
254
  }
254
255
  return p;
255
256
  }
256
257
  };
257
- function Pe(i, r) {
258
+ function Ie(i, r) {
258
259
  var e = i.get("realtimeSort", !0), t = r.getBaseAxis();
259
260
  if (e && t.type === "category" && r.type === "cartesian2d")
260
261
  return {
@@ -276,11 +277,11 @@ function Z(i, r, e, t, a, n, o, s) {
276
277
  }, u = {
277
278
  x: t.x,
278
279
  width: t.width
279
- }), s || (o ? L : P)(e, {
280
+ }), s || (o ? L : I)(e, {
280
281
  shape: u
281
282
  }, r, a, null);
282
283
  var p = r ? i.baseAxis.model : null;
283
- (o ? L : P)(e, {
284
+ (o ? L : I)(e, {
284
285
  shape: h
285
286
  }, p, a);
286
287
  }
@@ -290,14 +291,14 @@ function j(i, r) {
290
291
  return !0;
291
292
  return !1;
292
293
  }
293
- var ke = ["x", "y", "width", "height"], Ve = ["cx", "cy", "r", "startAngle", "endAngle"], q = {
294
+ var Pe = ["x", "y", "width", "height"], Ve = ["cx", "cy", "r", "startAngle", "endAngle"], q = {
294
295
  cartesian2d: function(i) {
295
- return !j(i, ke);
296
+ return !j(i, Pe);
296
297
  },
297
298
  polar: function(i) {
298
299
  return !j(i, Ve);
299
300
  }
300
- }, I = {
301
+ }, k = {
301
302
  // itemModel is only used to get borderWidth, which is not needed
302
303
  // when calculating bar background layout.
303
304
  cartesian2d: function(i, r, e) {
@@ -355,26 +356,26 @@ function J(i, r, e, t, a, n, o, s) {
355
356
  i.useStyle(u);
356
357
  var m = t.getShallow("cursor");
357
358
  m && i.attr("cursor", m);
358
- var f = s ? o ? a.r >= a.r0 ? "endArc" : "startArc" : a.endAngle >= a.startAngle ? "endAngle" : "startAngle" : o ? a.height >= 0 ? "bottom" : "top" : a.width >= 0 ? "right" : "left", x = le(t);
359
- me(i, x, {
359
+ var d = s ? o ? a.r >= a.r0 ? "endArc" : "startArc" : a.endAngle >= a.startAngle ? "endAngle" : "startAngle" : o ? a.height >= 0 ? "bottom" : "top" : a.width >= 0 ? "right" : "left", A = ve(t);
360
+ me(i, A, {
360
361
  labelFetcher: n,
361
362
  labelDataIndex: e,
362
- defaultText: ye(n.getData(), e),
363
+ defaultText: xe(n.getData(), e),
363
364
  inheritColor: u.fill,
364
365
  defaultOpacity: u.opacity,
365
- defaultOutsidePosition: f
366
+ defaultOutsidePosition: d
366
367
  });
367
- var w = i.getTextContent();
368
- if (s && w) {
369
- var y = t.get(["label", "position"]);
370
- i.textConfig.inside = y === "middle" ? !0 : null, De(i, y === "outside" ? f : y, ie(o), t.get(["label", "rotate"]));
368
+ var S = i.getTextContent();
369
+ if (s && S) {
370
+ var x = t.get(["label", "position"]);
371
+ i.textConfig.inside = x === "middle" ? !0 : null, De(i, x === "outside" ? d : x, ie(o), t.get(["label", "rotate"]));
371
372
  }
372
- _e(w, x, n.getRawValue(e), function(A) {
373
- return Se(r, A);
373
+ _e(S, A, n.getRawValue(e), function(y) {
374
+ return we(r, y);
374
375
  });
375
- var S = t.getModel(["emphasis"]);
376
- fe(i, S.get("focus"), S.get("blurScope"), S.get("disabled")), ve(i, t), Oe(a) && (i.style.fill = "none", i.style.stroke = "none", ge(i.states, function(A) {
377
- A.style && (A.style.fill = A.style.stroke = "none");
376
+ var w = t.getModel(["emphasis"]);
377
+ de(i, w.get("focus"), w.get("blurScope"), w.get("disabled")), le(i, t), Oe(a) && (i.style.fill = "none", i.style.stroke = "none", ge(i.states, function(y) {
378
+ y.style && (y.style.fill = y.style.stroke = "none");
378
379
  }));
379
380
  }
380
381
  function Ne(i, r) {
@@ -472,5 +473,5 @@ function We(i, r, e) {
472
473
  });
473
474
  }
474
475
  export {
475
- rt as default
476
+ it as default
476
477
  };
@@ -1,5 +1,5 @@
1
1
  import { __extends as re } from "../../../../tslib/tslib.es6.js";
2
- import { each as Q, isArray as U, retrieve as te, extend as z } from "../../../../zrender/lib/core/util.js";
2
+ import { isArray as Q, retrieve as te, extend as z, each as U } from "../../../../zrender/lib/core/util.js";
3
3
  import * as Z from "../../util/graphic.js";
4
4
  import { toggleHoverEmphasis as ae } from "../../util/states.js";
5
5
  import { normalizeSymbolOffset as ne, createSymbol as oe } from "../../util/symbol.js";
@@ -10,10 +10,10 @@ import { setLabelStyle as ve, getLabelStatesModels as ue } from "../../label/lab
10
10
  import pe from "../../../../zrender/lib/graphic/Image.js";
11
11
  import { getECData as he } from "../../util/innerStore.js";
12
12
  import { createClipPath as de } from "../helper/createClipPathFromCoordSys.js";
13
- import X from "../../../../zrender/lib/graphic/Group.js";
14
13
  import fe from "../../../../zrender/lib/graphic/shape/Circle.js";
15
14
  import q from "../../../../zrender/lib/graphic/shape/Rect.js";
16
15
  import { updateProps as F, removeElement as me } from "../../animation/basicTransition.js";
16
+ import X from "../../../../zrender/lib/graphic/Group.js";
17
17
  var ge = ["itemStyle", "borderWidth"], V = [{
18
18
  xy: "x",
19
19
  wh: "width",
@@ -94,7 +94,7 @@ function W(i, r, e, n) {
94
94
  }
95
95
  function Se(i, r, e, n, a) {
96
96
  var t = n.valueDim, o = i.get("symbolBoundingData"), d = n.coordSys.getOtherAxis(n.coordSys.getBaseAxis()), f = d.toGlobalCoord(d.dataToCoord(0)), m = 1 - +(e[t.wh] <= 0), u;
97
- if (U(o)) {
97
+ if (Q(o)) {
98
98
  var p = [A(d, o[0]) - f, A(d, o[1]) - f];
99
99
  p[1] < p[0] && p.reverse(), u = p[m];
100
100
  } else o != null ? u = A(d, o) - f : r ? u = n.coordSysExtent[t.index][m] - f : u = e[t.wh];
@@ -107,7 +107,7 @@ function A(i, r) {
107
107
  }
108
108
  function _e(i, r, e, n, a, t, o, d, f, m) {
109
109
  var u = f.valueDim, p = f.categoryDim, l = Math.abs(e[p.wh]), v = i.getItemVisual(r, "symbolSize"), c;
110
- U(v) ? c = v.slice() : v == null ? c = ["100%", "100%"] : c = [v, v], c[p.index] = L(c[p.index], l), c[u.index] = L(c[u.index], n ? l : Math.abs(t)), m.symbolSize = c;
110
+ Q(v) ? c = v.slice() : v == null ? c = ["100%", "100%"] : c = [v, v], c[p.index] = L(c[p.index], l), c[u.index] = L(c[u.index], n ? l : Math.abs(t)), m.symbolSize = c;
111
111
  var s = m.symbolScale = [c[0] / d, c[1] / d];
112
112
  s[u.index] *= (f.isHorizontal ? -1 : 1) * o;
113
113
  }
@@ -268,7 +268,7 @@ function b(i, r, e, n) {
268
268
  var t = [];
269
269
  T(n, function(o) {
270
270
  t.push(o);
271
- }), n.__pictorialMainPath && t.push(n.__pictorialMainPath), n.__pictorialClipPath && (e = null), Q(t, function(o) {
271
+ }), n.__pictorialMainPath && t.push(n.__pictorialMainPath), n.__pictorialClipPath && (e = null), U(t, function(o) {
272
272
  me(o, {
273
273
  scaleX: 0,
274
274
  scaleY: 0
@@ -281,7 +281,7 @@ function ee(i, r) {
281
281
  return [i.getItemVisual(r.dataIndex, "symbol") || "none", !!r.symbolRepeat, !!r.symbolClip].join(":");
282
282
  }
283
283
  function T(i, r, e) {
284
- Q(i.__pictorialBundle.children(), function(n) {
284
+ U(i.__pictorialBundle.children(), function(n) {
285
285
  n !== i.__pictorialBarRect && r.call(e, n);
286
286
  });
287
287
  }
@@ -1,20 +1,20 @@
1
1
  import e from "./prepareBoxplotData.js";
2
2
  import { throwError as m } from "../../util/log.js";
3
- import { SOURCE_FORMAT_ARRAY_ROWS as p } from "../../util/types.js";
3
+ import { SOURCE_FORMAT_ARRAY_ROWS as i } from "../../util/types.js";
4
4
  var u = {
5
5
  type: "echarts:boxplot",
6
6
  transform: function(r) {
7
- var o = r.upstream;
8
- if (o.sourceFormat !== p) {
9
- var a = "";
10
- m(a);
7
+ var t = r.upstream;
8
+ if (t.sourceFormat !== i) {
9
+ var o = "";
10
+ m(o);
11
11
  }
12
- var t = e(o.getRawData(), r.config);
12
+ var a = e(t.getRawData(), r.config);
13
13
  return [{
14
14
  dimensions: ["ItemName", "Low", "Q1", "Q2", "Q3", "High"],
15
- data: t.boxData
15
+ data: a.boxData
16
16
  }, {
17
- data: t.outliers
17
+ data: a.outliers
18
18
  }];
19
19
  }
20
20
  };
@@ -2,9 +2,9 @@ import { __extends as _ } from "../../../../tslib/tslib.es6.js";
2
2
  import { each as L, map as D } from "../../../../zrender/lib/core/util.js";
3
3
  import N from "../../view/Chart.js";
4
4
  import { traverseElements as T } from "../../util/graphic.js";
5
- import { setStatesStylesFromModel as w, toggleHoverEmphasis as E } from "../../util/states.js";
5
+ import { setStatesStylesFromModel as E, toggleHoverEmphasis as k } from "../../util/states.js";
6
6
  import S from "../../../../zrender/lib/graphic/Path.js";
7
- import { createClipPath as k } from "../helper/createClipPathFromCoordSys.js";
7
+ import { createClipPath as w } from "../helper/createClipPathFromCoordSys.js";
8
8
  import { initProps as b, updateProps as R, saveOldStyle as V } from "../../animation/basicTransition.js";
9
9
  import { getColor as B, getBorderColor as C } from "./candlestickVisual.js";
10
10
  var A = ["color", "borderColor"], U = (
@@ -55,18 +55,18 @@ var A = ["color", "borderColor"], U = (
55
55
  shape: {
56
56
  points: c.ends
57
57
  }
58
- }, e, l), V(s)) : s = g(c), f(s, t, l, n), i.add(s), t.setItemGraphicEl(l, s);
58
+ }, e, l), V(s)) : s = g(c, l), f(s, t, l, n), i.add(s), t.setItemGraphicEl(l, s);
59
59
  }).remove(function(l) {
60
60
  var h = r.getItemGraphicEl(l);
61
61
  h && i.remove(h);
62
62
  }).execute(), this._data = t;
63
63
  }, a.prototype._renderLarge = function(e) {
64
64
  this._clear(), P(e, this.group);
65
- var t = e.get("clip", !0) ? k(e.coordinateSystem, !1, e) : null;
65
+ var t = e.get("clip", !0) ? w(e.coordinateSystem, !1, e) : null;
66
66
  t ? this.group.setClipPath(t) : this.group.removeClipPath();
67
67
  }, a.prototype._incrementalRenderNormal = function(e, t) {
68
68
  for (var r = t.getData(), i = r.getLayout("isSimpleBox"), n; (n = e.next()) != null; ) {
69
- var p = r.getItemLayout(n), u = g(p);
69
+ var p = r.getItemLayout(n), u = g(p, n);
70
70
  f(u, r, n, i), u.incremental = !0, this.group.add(u), this._progressiveEls.push(u);
71
71
  }
72
72
  }, a.prototype._incrementalRenderLarge = function(e, t) {
@@ -119,14 +119,14 @@ function y(o, a) {
119
119
  }
120
120
  function f(o, a, e, t) {
121
121
  var r = a.getItemModel(e);
122
- o.useStyle(a.getItemVisual(e, "style")), o.style.strokeNoScale = !0, o.__simpleBox = t, w(o, r);
122
+ o.useStyle(a.getItemVisual(e, "style")), o.style.strokeNoScale = !0, o.__simpleBox = t, E(o, r);
123
123
  var i = a.getItemLayout(e).sign;
124
124
  L(o.states, function(p, u) {
125
125
  var m = r.getModel(u), l = B(i, m), h = C(i, m) || l, s = p.style || (p.style = {});
126
126
  l && (s.fill = l), h && (s.stroke = h);
127
127
  });
128
128
  var n = r.getModel("emphasis");
129
- E(o, n.get("focus"), n.get("blurScope"), n.get("disabled"));
129
+ k(o, n.get("focus"), n.get("blurScope"), n.get("disabled"));
130
130
  }
131
131
  function x(o, a) {
132
132
  return D(o, function(e) {
@@ -184,7 +184,7 @@ function P(o, a, e, t) {
184
184
  __sign: 0,
185
185
  ignoreCoarsePointer: !0
186
186
  });
187
- a.add(u), d(1, n, o), d(-1, p, o), d(0, u, o), t && (n.incremental = !0, p.incremental = !0), e && e.push(n, p);
187
+ a.add(u), d(1, n, o, r), d(-1, p, o, r), d(0, u, o, r), t && (n.incremental = !0, p.incremental = !0), e && e.push(n, p);
188
188
  }
189
189
  function d(o, a, e, t) {
190
190
  var r = C(o, e) || B(o, e), i = e.getModel("itemStyle").getItemStyle(A);
@@ -7,69 +7,69 @@ var rt = {
7
7
  seriesType: "candlestick",
8
8
  plan: U(),
9
9
  reset: function(v) {
10
- var h = v.coordinateSystem, e = v.getData(), a = Z(v, e), t = 0, u = 1, d = ["x", "y"], y = e.getDimensionIndex(e.mapDimension(d[t])), l = X(e.mapDimensionsAll(d[u]), e.getDimensionIndex, e), R = l[0], P = l[1], z = l[2], E = l[3];
10
+ var h = v.coordinateSystem, e = v.getData(), r = Z(v, e), t = 0, o = 1, s = ["x", "y"], y = e.getDimensionIndex(e.mapDimension(s[t])), l = X(e.mapDimensionsAll(s[o]), e.getDimensionIndex, e), R = l[0], P = l[1], z = l[2], E = l[3];
11
11
  if (e.setLayout({
12
- candleWidth: a,
12
+ candleWidth: r,
13
13
  // The value is experimented visually.
14
- isSimpleBox: a <= 1.3
14
+ isSimpleBox: r <= 1.3
15
15
  }), y < 0 || l.length < 4)
16
16
  return;
17
17
  return {
18
18
  progress: v.pipelineContext.large ? G : w
19
19
  };
20
20
  function w(S, b) {
21
- for (var r, i = b.getStore(); (r = S.next()) != null; ) {
22
- var n = i.get(y, r), g = i.get(R, r), f = i.get(P, r), m = i.get(z, r), s = i.get(E, r), k = Math.min(g, f), B = Math.max(g, f), W = I(k, n), D = I(B, n), C = I(m, n), A = I(s, n), T = [];
21
+ for (var a, i = b.getStore(); (a = S.next()) != null; ) {
22
+ var n = i.get(y, a), g = i.get(R, a), N = i.get(P, a), m = i.get(z, a), c = i.get(E, a), k = Math.min(g, N), B = Math.max(g, N), W = I(k, n), D = I(B, n), C = I(m, n), A = I(c, n), T = [];
23
23
  L(T, D, 0), L(T, W, 1), T.push(j(A), j(D), j(C), j(W));
24
- var J = b.getItemModel(r), K = !!J.get(["itemStyle", "borderColorDoji"]);
25
- b.setItemLayout(r, {
26
- sign: q(i, r, g, f, P, K),
27
- initBaseline: g > f ? D[u] : W[u],
24
+ var J = b.getItemModel(a), K = !!J.get(["itemStyle", "borderColorDoji"]);
25
+ b.setItemLayout(a, {
26
+ sign: q(i, a, g, N, P, K),
27
+ initBaseline: g > N ? D[o] : W[o],
28
28
  ends: T,
29
- brushRect: Q(m, s, n)
29
+ brushRect: Q(m, c, n)
30
30
  });
31
31
  }
32
- function I(o, N) {
32
+ function I(u, x) {
33
33
  var p = [];
34
- return p[t] = N, p[u] = o, isNaN(N) || isNaN(o) ? [NaN, NaN] : h.dataToPoint(p);
34
+ return p[t] = x, p[o] = u, isNaN(x) || isNaN(u) ? [NaN, NaN] : h.dataToPoint(p);
35
35
  }
36
- function L(o, N, p) {
37
- var c = N.slice(), x = N.slice();
38
- c[t] = M(c[t] + a / 2, 1, !1), x[t] = M(x[t] - a / 2, 1, !0), p ? o.push(c, x) : o.push(x, c);
36
+ function L(u, x, p) {
37
+ var d = x.slice(), f = x.slice();
38
+ d[t] = M(d[t] + r / 2, 1, !1), f[t] = M(f[t] - r / 2, 1, !0), p ? u.push(d, f) : u.push(f, d);
39
39
  }
40
- function Q(o, N, p) {
41
- var c = I(o, p), x = I(N, p);
42
- return c[t] -= a / 2, x[t] -= a / 2, {
43
- x: c[0],
44
- y: c[1],
45
- width: a,
46
- height: x[1] - c[1]
40
+ function Q(u, x, p) {
41
+ var d = I(u, p), f = I(x, p);
42
+ return d[t] -= r / 2, f[t] -= r / 2, {
43
+ x: d[0],
44
+ y: d[1],
45
+ width: o ? r : f[0] - d[0],
46
+ height: o ? f[1] - d[1] : r
47
47
  };
48
48
  }
49
- function j(o) {
50
- return o[t] = M(o[t], 1), o;
49
+ function j(u) {
50
+ return u[t] = M(u[t], 1), u;
51
51
  }
52
52
  }
53
53
  function G(S, b) {
54
- for (var r = Y(S.count * 4), i = 0, n, g = [], f = [], m, s = b.getStore(), k = !!v.get(["itemStyle", "borderColorDoji"]); (m = S.next()) != null; ) {
55
- var B = s.get(y, m), W = s.get(R, m), D = s.get(P, m), C = s.get(z, m), A = s.get(E, m);
54
+ for (var a = Y(S.count * 4), i = 0, n, g = [], N = [], m, c = b.getStore(), k = !!v.get(["itemStyle", "borderColorDoji"]); (m = S.next()) != null; ) {
55
+ var B = c.get(y, m), W = c.get(R, m), D = c.get(P, m), C = c.get(z, m), A = c.get(E, m);
56
56
  if (isNaN(B) || isNaN(C) || isNaN(A)) {
57
- r[i++] = NaN, i += 3;
57
+ a[i++] = NaN, i += 3;
58
58
  continue;
59
59
  }
60
- r[i++] = q(s, m, W, D, P, k), g[t] = B, g[u] = C, n = h.dataToPoint(g, null, f), r[i++] = n ? n[0] : NaN, r[i++] = n ? n[1] : NaN, g[u] = A, n = h.dataToPoint(g, null, f), r[i++] = n ? n[1] : NaN;
60
+ a[i++] = q(c, m, W, D, P, k), g[t] = B, g[o] = C, n = h.dataToPoint(g, null, N), a[i++] = n ? n[0] : NaN, a[i++] = n ? n[1] : NaN, g[o] = A, n = h.dataToPoint(g, null, N), a[i++] = n ? n[1] : NaN;
61
61
  }
62
- b.setLayout("largePoints", r);
62
+ b.setLayout("largePoints", a);
63
63
  }
64
64
  }
65
65
  };
66
- function q(v, h, e, a, t, u) {
67
- var d;
68
- return e > a ? d = -1 : e < a ? d = 1 : d = u ? 0 : h > 0 ? v.get(t, h - 1) <= a ? 1 : -1 : 1, d;
66
+ function q(v, h, e, r, t, o) {
67
+ var s;
68
+ return e > r ? s = -1 : e < r ? s = 1 : s = o ? 0 : h > 0 ? v.get(t, h - 1) <= r ? 1 : -1 : 1, s;
69
69
  }
70
70
  function Z(v, h) {
71
- var e = v.getBaseAxis(), a, t = e.type === "category" ? e.getBandWidth() : (a = e.getExtent(), Math.abs(a[1] - a[0]) / h.count()), u = O(F(v.get("barMaxWidth"), t), t), d = O(F(v.get("barMinWidth"), 1), t), y = v.get("barWidth");
72
- return y != null ? O(y, t) : Math.max(Math.min(t / 2, u), d);
71
+ var e = v.getBaseAxis(), r, t = e.type === "category" ? e.getBandWidth() : (r = e.getExtent(), Math.abs(r[1] - r[0]) / h.count()), o = O(F(v.get("barMaxWidth"), t), t), s = O(F(v.get("barMinWidth"), 1), t), y = v.get("barWidth");
72
+ return y != null ? O(y, t) : Math.max(Math.min(t / 2, o), s);
73
73
  }
74
74
  export {
75
75
  rt as default