web-core-tcm 0.0.62 → 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,64 +1,68 @@
1
- import { __extends as _e } from "../../../tslib/tslib.es6.js";
2
- import { init as Oe, registerSSRDataGetter as gt } from "../../../zrender/lib/zrender.js";
3
- import { isObject as H, assert as mt, indexOf as Ke, retrieve2 as Me, bind as Ie, clone as Le, setAsPrimitive as St, each as E, extend as U, createHashMap as ee, map as Tt, defaults as Ct, isString as yt, isFunction as $e, noop as W } from "../../../zrender/lib/core/util.js";
4
- import b from "../../../zrender/lib/core/env.js";
5
- import te from "../../../zrender/lib/core/timsort.js";
6
- import Te from "../../../zrender/lib/core/Eventful.js";
7
- import Rt from "../model/Global.js";
8
- import Et from "./ExtensionAPI.js";
9
- import je from "./CoordinateSystem.js";
10
- import At from "../model/OptionManager.js";
11
- import Je from "../preprocessor/backwardCompat.js";
12
- import Pt from "../processor/dataStack.js";
13
- import xe from "../model/Series.js";
14
- import wt from "../view/Component.js";
15
- import re from "../view/Chart.js";
1
+ import { __extends as me } from "../../../tslib/tslib.es6.js";
2
+ import { registerSSRDataGetter as Ct, init as Le } from "../../../zrender/lib/zrender.js";
3
+ import { isString as je, retrieve2 as Ie, createHashMap as re, bind as xe, clone as Ue, setAsPrimitive as yt, isObject as B, each as y, extend as k, assert as Et, map as Rt, defaults as wt, isArray as At, indexOf as Je, isFunction as Qe, noop as W } from "../../../zrender/lib/core/util.js";
4
+ import H from "../../../zrender/lib/core/env.js";
5
+ import ie from "../../../zrender/lib/core/timsort.js";
6
+ import ye from "../../../zrender/lib/core/Eventful.js";
7
+ import Pt from "../model/Global.js";
8
+ import Ot from "./ExtensionAPI.js";
9
+ import Ee from "./CoordinateSystem.js";
10
+ import Dt from "../model/OptionManager.js";
11
+ import et from "../preprocessor/backwardCompat.js";
12
+ import Mt from "../processor/dataStack.js";
13
+ import Ve from "../model/Series.js";
14
+ import Lt from "../view/Component.js";
15
+ import ne from "../view/Chart.js";
16
+ import "../util/graphic.js";
16
17
  import { getECData as Z } from "../util/innerStore.js";
17
- import { isSelectChangePayload as De, isHighDownPayload as Ve, allLeaveBlur as Ot, getAllSelectedIndices as Mt, updateSeriesElementSelection as Ue, HOVER_STATE_EMPHASIS as It, HOVER_STATE_BLUR as Lt, savePathStates as xt, enterEmphasis as ke, leaveEmphasis as ze, enterBlur as Dt, leaveBlur as Vt, enterSelect as Ut, leaveSelect as kt, HIGHLIGHT_ACTION_TYPE as z, blurSeriesFromHighlightPayload as zt, findComponentHighDownDispatchers as Ft, blurComponent as bt, toggleSelectionFromPayload as Yt, isHighDownDispatcher as Fe, handleGlobalMouseOverForHighDown as Bt, handleGlobalMouseOutForHighDown as Ht, DOWNPLAY_ACTION_TYPE as ie, SELECT_ACTION_TYPE as ne, UNSELECT_ACTION_TYPE as ae, TOGGLE_SELECT_ACTION_TYPE as se } from "../util/states.js";
18
- import { setAttribute as Qe, getAttribute as Gt, parseFinder as oe, preParseFinder as Nt, convertOptionIdName as Wt, normalizeToArray as Xt } from "../util/model.js";
19
- import { throttle as Zt } from "../util/throttle.js";
20
- import { seriesStyleTask as qt, dataStyleTask as Kt, dataColorPaletteTask as $t } from "../visual/style.js";
21
- import jt from "../loading/default.js";
22
- import et from "./Scheduler.js";
23
- import Jt from "../theme/light.js";
24
- import Qt from "../theme/dark.js";
25
- import { parseClassType as be } from "../util/clazz.js";
26
- import { ECEventProcessor as er } from "../util/ECEventProcessor.js";
27
- import { seriesSymbolTask as tr, dataSymbolTask as rr } from "../visual/symbol.js";
28
- import { getItemVisualFromData as ir, getVisualFromData as nr } from "../visual/helper.js";
29
- import { handleLegacySelectEvents as ar } from "../legacy/dataSelectAction.js";
30
- import { registerExternalTransform as sr } from "../data/helper/transform.js";
31
- import { createLocaleObject as or, SYSTEM_LANG as ur } from "./locale.js";
32
- import { registerLocale as Ii } from "./locale.js";
18
+ import { isHighDownPayload as ke, HIGHLIGHT_ACTION_TYPE as b, blurSeriesFromHighlightPayload as It, findComponentHighDownDispatchers as xt, blurComponent as Ut, enterEmphasis as ze, leaveEmphasis as be, isSelectChangePayload as Fe, toggleSelectionFromPayload as Vt, updateSeriesElementSelection as He, allLeaveBlur as kt, getAllSelectedIndices as zt, isHighDownDispatcher as Ne, handleGlobalMouseOverForHighDown as bt, handleGlobalMouseOutForHighDown as Ft, HOVER_STATE_EMPHASIS as Ht, HOVER_STATE_BLUR as Nt, savePathStates as Yt, enterBlur as Bt, leaveBlur as Gt, enterSelect as Wt, leaveSelect as Xt, DOWNPLAY_ACTION_TYPE as ae, SELECT_ACTION_TYPE as se, UNSELECT_ACTION_TYPE as oe, TOGGLE_SELECT_ACTION_TYPE as ue } from "../util/states.js";
19
+ import { parseFinder as fe, setAttribute as tt, normalizeToArray as Zt, convertOptionIdName as qt, preParseFinder as Kt, getAttribute as $t } from "../util/model.js";
20
+ import { throttle as jt } from "../util/throttle.js";
21
+ import { seriesStyleTask as Jt, dataStyleTask as Qt, dataColorPaletteTask as er } from "../visual/style.js";
22
+ import tr from "../loading/default.js";
23
+ import rt from "./Scheduler.js";
24
+ import rr from "../theme/light.js";
25
+ import ir from "../theme/dark.js";
26
+ import { parseClassType as Ye } from "../util/clazz.js";
27
+ import { ECEventProcessor as nr } from "../util/ECEventProcessor.js";
28
+ import { seriesSymbolTask as ar, dataSymbolTask as sr } from "../visual/symbol.js";
29
+ import { getItemVisualFromData as or, getVisualFromData as ur } from "../visual/helper.js";
30
+ import { deprecateLog as it } from "../util/log.js";
31
+ import { handleLegacySelectEvents as fr } from "../legacy/dataSelectAction.js";
32
+ import { registerExternalTransform as lr } from "../data/helper/transform.js";
33
+ import { createLocaleObject as dr, SYSTEM_LANG as pr } from "./locale.js";
34
+ import { registerLocale as ji } from "./locale.js";
33
35
  import { findEventDispatcher as q } from "../util/event.js";
34
- import fr from "../visual/decal.js";
35
- import I from "./lifecycle.js";
36
- import { platformApi as dr } from "../../../zrender/lib/core/platform.js";
37
- import { getImpl as lr } from "./impl.js";
38
- import pr from "../../../zrender/lib/graphic/shape/Rect.js";
39
- import hr from "../../../zrender/lib/graphic/Image.js";
40
- import cr from "../../../zrender/lib/graphic/Path.js";
41
- import { isElementRemoved as ue } from "../animation/basicTransition.js";
42
- var vr = 1, _r = 800, gr = 900, mr = 1e3, Sr = 2e3, Tr = 5e3, tt = 1e3, Cr = 1100, Ce = 2e3, rt = 3e3, yr = 4e3, Q = 4500, Rr = 4600, Er = 5e3, Ar = 6e3, it = 7e3, Ti = {
36
+ import cr from "../visual/decal.js";
37
+ import M from "./lifecycle.js";
38
+ import { platformApi as hr, setPlatformAPI as vr } from "../../../zrender/lib/core/platform.js";
39
+ import { getImpl as nt } from "./impl.js";
40
+ import _r from "../../../zrender/lib/graphic/shape/Rect.js";
41
+ import gr from "../../../zrender/lib/graphic/Image.js";
42
+ import { isElementRemoved as le } from "../animation/basicTransition.js";
43
+ import mr from "../../../zrender/lib/graphic/Path.js";
44
+ var Li = "5.6.0", Ii = {
45
+ zrender: "5.6.1"
46
+ }, Tr = 1, Sr = 800, Cr = 900, yr = 1e3, Er = 2e3, Rr = 5e3, at = 1e3, wr = 1100, Re = 2e3, st = 3e3, Ar = 4e3, te = 4500, Pr = 4600, Or = 5e3, Dr = 6e3, ot = 7e3, xi = {
43
47
  PROCESSOR: {
44
- FILTER: mr,
45
- SERIES_FILTER: _r,
46
- STATISTIC: Tr
48
+ FILTER: yr,
49
+ SERIES_FILTER: Sr,
50
+ STATISTIC: Rr
47
51
  },
48
52
  VISUAL: {
49
- LAYOUT: tt,
50
- PROGRESSIVE_LAYOUT: Cr,
51
- GLOBAL: Ce,
52
- CHART: rt,
53
- POST_CHART_LAYOUT: Rr,
54
- COMPONENT: yr,
55
- BRUSH: Er,
56
- CHART_ITEM: Q,
57
- ARIA: Ar,
58
- DECAL: it
53
+ LAYOUT: at,
54
+ PROGRESSIVE_LAYOUT: wr,
55
+ GLOBAL: Re,
56
+ CHART: st,
57
+ POST_CHART_LAYOUT: Pr,
58
+ COMPONENT: Ar,
59
+ BRUSH: Or,
60
+ CHART_ITEM: te,
61
+ ARIA: Dr,
62
+ DECAL: ot
59
63
  }
60
- }, A = "__flagInMainProcess", P = "__pendingUpdate", fe = "__needsUpdateStatus", Ye = /^[a-zA-Z0-9_]+$/, de = "__connectUpdateStatus", Be = 0, Pr = 1, wr = 2;
61
- function nt(c) {
64
+ }, w = "__flagInMainProcess", A = "__pendingUpdate", de = "__needsUpdateStatus", Be = /^[a-zA-Z0-9_]+$/, pe = "__connectUpdateStatus", Ge = 0, Mr = 1, Lr = 2;
65
+ function ut(f) {
62
66
  return function() {
63
67
  for (var o = [], r = 0; r < arguments.length; r++)
64
68
  o[r] = arguments[r];
@@ -66,83 +70,85 @@ function nt(c) {
66
70
  this.id;
67
71
  return;
68
72
  }
69
- return st(this, c, o);
73
+ return lt(this, f, o);
70
74
  };
71
75
  }
72
- function at(c) {
76
+ function ft(f) {
73
77
  return function() {
74
78
  for (var o = [], r = 0; r < arguments.length; r++)
75
79
  o[r] = arguments[r];
76
- return st(this, c, o);
80
+ return lt(this, f, o);
77
81
  };
78
82
  }
79
- function st(c, o, r) {
80
- return r[0] = r[0] && r[0].toLowerCase(), Te.prototype[o].apply(c, r);
83
+ function lt(f, o, r) {
84
+ return r[0] = r[0] && r[0].toLowerCase(), ye.prototype[o].apply(f, r);
81
85
  }
82
- var ot = (
86
+ var dt = (
83
87
  /** @class */
84
- (function(c) {
85
- _e(o, c);
88
+ (function(f) {
89
+ me(o, f);
86
90
  function o() {
87
- return c !== null && c.apply(this, arguments) || this;
91
+ return f !== null && f.apply(this, arguments) || this;
88
92
  }
89
93
  return o;
90
- })(Te)
91
- ), ut = ot.prototype;
92
- ut.on = at("on");
93
- ut.off = at("off");
94
- var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
94
+ })(ye)
95
+ ), pt = dt.prototype;
96
+ pt.on = ft("on");
97
+ pt.off = ft("off");
98
+ var z, ce, K, U, he, ve, _e, N, Y, We, Xe, ge, Ze, $, qe, ct, D, Ke, j = (
95
99
  /** @class */
96
- (function(c) {
97
- _e(o, c);
98
- function o(r, s, p) {
99
- var u = c.call(this, new er()) || this;
100
- u._chartsViews = [], u._chartsMap = {}, u._componentsViews = [], u._componentsMap = {}, u._pendingActions = [], p = p || {}, yt(s) && (s = lt[s]), u._dom = r;
101
- var S = "canvas", C = "auto", g = !1;
102
- p.ssr && gt(function(i) {
103
- var t = Z(i), n = t.dataIndex;
104
- if (n != null) {
105
- var a = ee();
106
- return a.set("series_index", t.seriesIndex), a.set("data_index", n), t.ssrType && a.set("ssr_type", t.ssrType), a;
100
+ (function(f) {
101
+ me(o, f);
102
+ function o(r, a, c) {
103
+ var u = f.call(this, new nr()) || this;
104
+ u._chartsViews = [], u._chartsMap = {}, u._componentsViews = [], u._componentsMap = {}, u._pendingActions = [], c = c || {}, je(a) && (a = ht[a]), u._dom = r;
105
+ var m = "canvas", C = "auto", g = !1;
106
+ if (0)
107
+ var R;
108
+ c.ssr && Ct(function(t) {
109
+ var n = Z(t), s = n.dataIndex;
110
+ if (s != null) {
111
+ var d = re();
112
+ return d.set("series_index", n.seriesIndex), d.set("data_index", s), n.ssrType && d.set("ssr_type", n.ssrType), d;
107
113
  }
108
114
  });
109
- var y = u._zr = Oe(r, {
110
- renderer: p.renderer || S,
111
- devicePixelRatio: p.devicePixelRatio,
112
- width: p.width,
113
- height: p.height,
114
- ssr: p.ssr,
115
- useDirtyRect: Me(p.useDirtyRect, g),
116
- useCoarsePointer: Me(p.useCoarsePointer, C),
117
- pointerSize: p.pointerSize
115
+ var T = u._zr = Le(r, {
116
+ renderer: c.renderer || m,
117
+ devicePixelRatio: c.devicePixelRatio,
118
+ width: c.width,
119
+ height: c.height,
120
+ ssr: c.ssr,
121
+ useDirtyRect: Ie(c.useDirtyRect, g),
122
+ useCoarsePointer: Ie(c.useCoarsePointer, C),
123
+ pointerSize: c.pointerSize
118
124
  });
119
- u._ssr = p.ssr, u._throttledZrFlush = Zt(Ie(y.flush, y), 17), s = Le(s), s && Je(s, !0), u._theme = s, u._locale = or(p.locale || ur), u._coordSysMgr = new je();
120
- var T = u._api = We(u);
121
- function e(i, t) {
122
- return i.__prio - t.__prio;
125
+ u._ssr = c.ssr, u._throttledZrFlush = jt(xe(T.flush, T), 17), a = Ue(a), a && et(a, !0), u._theme = a, u._locale = dr(c.locale || pr), u._coordSysMgr = new Ee();
126
+ var e = u._api = qe(u);
127
+ function i(t, n) {
128
+ return t.__prio - n.__prio;
123
129
  }
124
- return te(J, e), te(ge, e), u._scheduler = new et(u, T, ge, J), u._messageCenter = new ot(), u._initEvents(), u.resize = Ie(u.resize, u), y.animation.on("frame", u._onframe, u), He(y, u), Ge(y, u), St(u), u;
130
+ return ie(Q, i), ie(Te, i), u._scheduler = new rt(u, e, Te, Q), u._messageCenter = new dt(), u._initEvents(), u.resize = xe(u.resize, u), T.animation.on("frame", u._onframe, u), We(T, u), Xe(T, u), yt(u), u;
125
131
  }
126
132
  return o.prototype._onframe = function() {
127
133
  if (!this._disposed) {
128
- Xe(this);
134
+ Ke(this);
129
135
  var r = this._scheduler;
130
- if (this[P]) {
131
- var s = this[P].silent;
132
- this[A] = !0;
136
+ if (this[A]) {
137
+ var a = this[A].silent;
138
+ this[w] = !0;
133
139
  try {
134
- k(this), V.update.call(this, null, this[P].updateParams);
140
+ z(this), U.update.call(this, null, this[A].updateParams);
135
141
  } catch (g) {
136
- throw this[A] = !1, this[P] = null, g;
142
+ throw this[w] = !1, this[A] = null, g;
137
143
  }
138
- this._zr.flush(), this[A] = !1, this[P] = null, Y.call(this, s), B.call(this, s);
144
+ this._zr.flush(), this[w] = !1, this[A] = null, N.call(this, a), Y.call(this, a);
139
145
  } else if (r.unfinished) {
140
- var p = vr, u = this._model, S = this._api;
146
+ var c = Tr, u = this._model, m = this._api;
141
147
  r.unfinished = !1;
142
148
  do {
143
149
  var C = +/* @__PURE__ */ new Date();
144
- r.performSeriesTasks(u), r.performDataProcessorTasks(u), he(this, u), r.performVisualTasks(u), $(this, this._model, S, "remain", {}), p -= +/* @__PURE__ */ new Date() - C;
145
- } while (p > 0 && r.unfinished);
150
+ r.performSeriesTasks(u), r.performDataProcessorTasks(u), ve(this, u), r.performVisualTasks(u), $(this, this._model, m, "remain", {}), c -= +/* @__PURE__ */ new Date() - C;
151
+ } while (c > 0 && r.unfinished);
146
152
  r.unfinished || this._zr.flush();
147
153
  }
148
154
  }
@@ -154,39 +160,40 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
154
160
  return this._zr;
155
161
  }, o.prototype.isSSR = function() {
156
162
  return this._ssr;
157
- }, o.prototype.setOption = function(r, s, p) {
158
- if (!this[A]) {
163
+ }, o.prototype.setOption = function(r, a, c) {
164
+ if (!this[w]) {
159
165
  if (this._disposed) {
160
166
  this.id;
161
167
  return;
162
168
  }
163
- var u, S, C;
164
- if (H(s) && (p = s.lazyUpdate, u = s.silent, S = s.replaceMerge, C = s.transition, s = s.notMerge), this[A] = !0, !this._model || s) {
165
- var g = new At(this._api), y = this._theme, T = this._model = new Rt();
166
- T.scheduler = this._scheduler, T.ssr = this._ssr, T.init(null, null, null, y, this._locale, g);
169
+ var u, m, C;
170
+ if (B(a) && (c = a.lazyUpdate, u = a.silent, m = a.replaceMerge, C = a.transition, a = a.notMerge), this[w] = !0, !this._model || a) {
171
+ var g = new Dt(this._api), R = this._theme, T = this._model = new Pt();
172
+ T.scheduler = this._scheduler, T.ssr = this._ssr, T.init(null, null, null, R, this._locale, g);
167
173
  }
168
174
  this._model.setOption(r, {
169
- replaceMerge: S
170
- }, me);
175
+ replaceMerge: m
176
+ }, Se);
171
177
  var e = {
172
178
  seriesTransition: C,
173
179
  optionChanged: !0
174
180
  };
175
- if (p)
176
- this[P] = {
181
+ if (c)
182
+ this[A] = {
177
183
  silent: u,
178
184
  updateParams: e
179
- }, this[A] = !1, this.getZr().wakeUp();
185
+ }, this[w] = !1, this.getZr().wakeUp();
180
186
  else {
181
187
  try {
182
- k(this), V.update.call(this, null, e);
188
+ z(this), U.update.call(this, null, e);
183
189
  } catch (i) {
184
- throw this[P] = null, this[A] = !1, i;
190
+ throw this[A] = null, this[w] = !1, i;
185
191
  }
186
- this._ssr || this._zr.flush(), this[P] = null, this[A] = !1, Y.call(this, u), B.call(this, u);
192
+ this._ssr || this._zr.flush(), this[A] = null, this[w] = !1, N.call(this, u), Y.call(this, u);
187
193
  }
188
194
  }
189
195
  }, o.prototype.setTheme = function() {
196
+ it("ECharts#setTheme() is DEPRECATED in ECharts 3.0");
190
197
  }, o.prototype.getModel = function() {
191
198
  return this._model;
192
199
  }, o.prototype.getOption = function() {
@@ -196,27 +203,27 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
196
203
  }, o.prototype.getHeight = function() {
197
204
  return this._zr.getHeight();
198
205
  }, o.prototype.getDevicePixelRatio = function() {
199
- return this._zr.painter.dpr || b.hasGlobalWindow && window.devicePixelRatio || 1;
206
+ return this._zr.painter.dpr || H.hasGlobalWindow && window.devicePixelRatio || 1;
200
207
  }, o.prototype.getRenderedCanvas = function(r) {
201
208
  return this.renderToCanvas(r);
202
209
  }, o.prototype.renderToCanvas = function(r) {
203
210
  r = r || {};
204
- var s = this._zr.painter;
205
- return s.getRenderedCanvas({
211
+ var a = this._zr.painter;
212
+ return a.getRenderedCanvas({
206
213
  backgroundColor: r.backgroundColor || this._model.get("backgroundColor"),
207
214
  pixelRatio: r.pixelRatio || this.getDevicePixelRatio()
208
215
  });
209
216
  }, o.prototype.renderToSVGString = function(r) {
210
217
  r = r || {};
211
- var s = this._zr.painter;
212
- return s.renderToString({
218
+ var a = this._zr.painter;
219
+ return a.renderToString({
213
220
  useViewBox: r.useViewBox
214
221
  });
215
222
  }, o.prototype.getSvgDataURL = function() {
216
- if (b.svgSupported) {
217
- var r = this._zr, s = r.storage.getDisplayList();
218
- return E(s, function(p) {
219
- p.stopAnimation(null, !0);
223
+ if (H.svgSupported) {
224
+ var r = this._zr, a = r.storage.getDisplayList();
225
+ return y(a, function(c) {
226
+ c.stopAnimation(null, !0);
220
227
  }), r.painter.toDataURL();
221
228
  }
222
229
  }, o.prototype.getDataURL = function(r) {
@@ -225,17 +232,17 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
225
232
  return;
226
233
  }
227
234
  r = r || {};
228
- var s = r.excludeComponents, p = this._model, u = [], S = this;
229
- E(s, function(g) {
230
- p.eachComponent({
235
+ var a = r.excludeComponents, c = this._model, u = [], m = this;
236
+ y(a, function(g) {
237
+ c.eachComponent({
231
238
  mainType: g
232
- }, function(y) {
233
- var T = S._componentsMap[y.__viewId];
239
+ }, function(R) {
240
+ var T = m._componentsMap[R.__viewId];
234
241
  T.group.ignore || (u.push(T), T.group.ignore = !0);
235
242
  });
236
243
  });
237
244
  var C = this._zr.painter.getType() === "svg" ? this.getSvgDataURL() : this.renderToCanvas(r).toDataURL("image/" + (r && r.type || "png"));
238
- return E(u, function(g) {
245
+ return y(u, function(g) {
239
246
  g.group.ignore = !1;
240
247
  }), C;
241
248
  }, o.prototype.getConnectedDataURL = function(r) {
@@ -243,118 +250,118 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
243
250
  this.id;
244
251
  return;
245
252
  }
246
- var s = r.type === "svg", p = this.group, u = Math.min, S = Math.max, C = 1 / 0;
247
- if (Ze[p]) {
248
- var g = C, y = C, T = -C, e = -C, i = [], t = r && r.pixelRatio || this.getDevicePixelRatio();
249
- E(N, function(d, v) {
250
- if (d.group === p) {
251
- var m = s ? d.getZr().painter.getSvgDom().innerHTML : d.renderToCanvas(Le(r)), _ = d.getDom().getBoundingClientRect();
252
- g = u(_.left, g), y = u(_.top, y), T = S(_.right, T), e = S(_.bottom, e), i.push({
253
- dom: m,
253
+ var a = r.type === "svg", c = this.group, u = Math.min, m = Math.max, C = 1 / 0;
254
+ if (ee[c]) {
255
+ var g = C, R = C, T = -C, e = -C, i = [], t = r && r.pixelRatio || this.getDevicePixelRatio();
256
+ y(V, function(p, v) {
257
+ if (p.group === c) {
258
+ var S = a ? p.getZr().painter.getSvgDom().innerHTML : p.renderToCanvas(Ue(r)), _ = p.getDom().getBoundingClientRect();
259
+ g = u(_.left, g), R = u(_.top, R), T = m(_.right, T), e = m(_.bottom, e), i.push({
260
+ dom: S,
254
261
  left: _.left,
255
262
  top: _.top
256
263
  });
257
264
  }
258
- }), g *= t, y *= t, T *= t, e *= t;
259
- var n = T - g, a = e - y, l = dr.createCanvas(), f = Oe(l, {
260
- renderer: s ? "svg" : "canvas"
265
+ }), g *= t, R *= t, T *= t, e *= t;
266
+ var n = T - g, s = e - R, d = hr.createCanvas(), l = Le(d, {
267
+ renderer: a ? "svg" : "canvas"
261
268
  });
262
- if (f.resize({
269
+ if (l.resize({
263
270
  width: n,
264
- height: a
265
- }), s) {
271
+ height: s
272
+ }), a) {
266
273
  var h = "";
267
- return E(i, function(d) {
268
- var v = d.left - g, m = d.top - y;
269
- h += '<g transform="translate(' + v + "," + m + ')">' + d.dom + "</g>";
270
- }), f.painter.getSvgRoot().innerHTML = h, r.connectedBackgroundColor && f.painter.setBackgroundColor(r.connectedBackgroundColor), f.refreshImmediately(), f.painter.toDataURL();
274
+ return y(i, function(p) {
275
+ var v = p.left - g, S = p.top - R;
276
+ h += '<g transform="translate(' + v + "," + S + ')">' + p.dom + "</g>";
277
+ }), l.painter.getSvgRoot().innerHTML = h, r.connectedBackgroundColor && l.painter.setBackgroundColor(r.connectedBackgroundColor), l.refreshImmediately(), l.painter.toDataURL();
271
278
  } else
272
- return r.connectedBackgroundColor && f.add(new pr({
279
+ return r.connectedBackgroundColor && l.add(new _r({
273
280
  shape: {
274
281
  x: 0,
275
282
  y: 0,
276
283
  width: n,
277
- height: a
284
+ height: s
278
285
  },
279
286
  style: {
280
287
  fill: r.connectedBackgroundColor
281
288
  }
282
- })), E(i, function(d) {
283
- var v = new hr({
289
+ })), y(i, function(p) {
290
+ var v = new gr({
284
291
  style: {
285
- x: d.left * t - g,
286
- y: d.top * t - y,
287
- image: d.dom
292
+ x: p.left * t - g,
293
+ y: p.top * t - R,
294
+ image: p.dom
288
295
  }
289
296
  });
290
- f.add(v);
291
- }), f.refreshImmediately(), l.toDataURL("image/" + (r && r.type || "png"));
297
+ l.add(v);
298
+ }), l.refreshImmediately(), d.toDataURL("image/" + (r && r.type || "png"));
292
299
  } else
293
300
  return this.getDataURL(r);
294
- }, o.prototype.convertToPixel = function(r, s) {
295
- return pe(this, "convertToPixel", r, s);
296
- }, o.prototype.convertFromPixel = function(r, s) {
297
- return pe(this, "convertFromPixel", r, s);
298
- }, o.prototype.containPixel = function(r, s) {
301
+ }, o.prototype.convertToPixel = function(r, a) {
302
+ return he(this, "convertToPixel", r, a);
303
+ }, o.prototype.convertFromPixel = function(r, a) {
304
+ return he(this, "convertFromPixel", r, a);
305
+ }, o.prototype.containPixel = function(r, a) {
299
306
  if (this._disposed) {
300
307
  this.id;
301
308
  return;
302
309
  }
303
- var p = this._model, u, S = oe(p, r);
304
- return E(S, function(C, g) {
305
- g.indexOf("Models") >= 0 && E(C, function(y) {
306
- var T = y.coordinateSystem;
310
+ var c = this._model, u, m = fe(c, r);
311
+ return y(m, function(C, g) {
312
+ g.indexOf("Models") >= 0 && y(C, function(R) {
313
+ var T = R.coordinateSystem;
307
314
  if (T && T.containPoint)
308
- u = u || !!T.containPoint(s);
315
+ u = u || !!T.containPoint(a);
309
316
  else if (g === "seriesModels") {
310
- var e = this._chartsMap[y.__viewId];
311
- e && e.containPoint && (u = u || e.containPoint(s, y));
317
+ var e = this._chartsMap[R.__viewId];
318
+ e && e.containPoint && (u = u || e.containPoint(a, R));
312
319
  }
313
320
  }, this);
314
321
  }, this), !!u;
315
- }, o.prototype.getVisual = function(r, s) {
316
- var p = this._model, u = oe(p, r, {
322
+ }, o.prototype.getVisual = function(r, a) {
323
+ var c = this._model, u = fe(c, r, {
317
324
  defaultMainType: "series"
318
- }), S = u.seriesModel, C = S.getData(), g = u.hasOwnProperty("dataIndexInside") ? u.dataIndexInside : u.hasOwnProperty("dataIndex") ? C.indexOfRawIndex(u.dataIndex) : null;
319
- return g != null ? ir(C, g, s) : nr(C, s);
325
+ }), m = u.seriesModel, C = m.getData(), g = u.hasOwnProperty("dataIndexInside") ? u.dataIndexInside : u.hasOwnProperty("dataIndex") ? C.indexOfRawIndex(u.dataIndex) : null;
326
+ return g != null ? or(C, g, a) : ur(C, a);
320
327
  }, o.prototype.getViewOfComponentModel = function(r) {
321
328
  return this._componentsMap[r.__viewId];
322
329
  }, o.prototype.getViewOfSeriesModel = function(r) {
323
330
  return this._chartsMap[r.__viewId];
324
331
  }, o.prototype._initEvents = function() {
325
332
  var r = this;
326
- E(Or, function(s) {
327
- var p = function(u) {
328
- var S = r.getModel(), C = u.target, g, y = s === "globalout";
329
- if (y ? g = {} : C && q(C, function(n) {
330
- var a = Z(n);
331
- if (a && a.dataIndex != null) {
332
- var l = a.dataModel || S.getSeriesByIndex(a.seriesIndex);
333
- return g = l && l.getDataParams(a.dataIndex, a.dataType, C) || {}, !0;
334
- } else if (a.eventData)
335
- return g = U({}, a.eventData), !0;
333
+ y(Ir, function(a) {
334
+ var c = function(u) {
335
+ var m = r.getModel(), C = u.target, g, R = a === "globalout";
336
+ if (R ? g = {} : C && q(C, function(n) {
337
+ var s = Z(n);
338
+ if (s && s.dataIndex != null) {
339
+ var d = s.dataModel || m.getSeriesByIndex(s.seriesIndex);
340
+ return g = d && d.getDataParams(s.dataIndex, s.dataType, C) || {}, !0;
341
+ } else if (s.eventData)
342
+ return g = k({}, s.eventData), !0;
336
343
  }, !0), g) {
337
344
  var T = g.componentType, e = g.componentIndex;
338
345
  (T === "markLine" || T === "markPoint" || T === "markArea") && (T = "series", e = g.seriesIndex);
339
- var i = T && e != null && S.getComponent(T, e), t = i && r[i.mainType === "series" ? "_chartsMap" : "_componentsMap"][i.__viewId];
340
- g.event = u, g.type = s, r._$eventProcessor.eventInfo = {
346
+ var i = T && e != null && m.getComponent(T, e), t = i && r[i.mainType === "series" ? "_chartsMap" : "_componentsMap"][i.__viewId];
347
+ g.event = u, g.type = a, r._$eventProcessor.eventInfo = {
341
348
  targetEl: C,
342
349
  packedEvent: g,
343
350
  model: i,
344
351
  view: t
345
- }, r.trigger(s, g);
352
+ }, r.trigger(a, g);
346
353
  }
347
354
  };
348
- p.zrEventfulCallAtLast = !0, r._zr.on(s, p, r);
349
- }), E(G, function(s, p) {
350
- r._messageCenter.on(p, function(u) {
351
- this.trigger(p, u);
355
+ c.zrEventfulCallAtLast = !0, r._zr.on(a, c, r);
356
+ }), y(G, function(a, c) {
357
+ r._messageCenter.on(c, function(u) {
358
+ this.trigger(c, u);
352
359
  }, r);
353
- }), E(["selectchanged"], function(s) {
354
- r._messageCenter.on(s, function(p) {
355
- this.trigger(s, p);
360
+ }), y(["selectchanged"], function(a) {
361
+ r._messageCenter.on(a, function(c) {
362
+ this.trigger(a, c);
356
363
  }, r);
357
- }), ar(this._messageCenter, this, this._api);
364
+ }), fr(this._messageCenter, this, this._api);
358
365
  }, o.prototype.isDisposed = function() {
359
366
  return this._disposed;
360
367
  }, o.prototype.clear = function() {
@@ -372,46 +379,46 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
372
379
  }
373
380
  this._disposed = !0;
374
381
  var r = this.getDom();
375
- r && Qe(this.getDom(), Re, "");
376
- var s = this, p = s._api, u = s._model;
377
- E(s._componentsViews, function(S) {
378
- S.dispose(u, p);
379
- }), E(s._chartsViews, function(S) {
380
- S.dispose(u, p);
381
- }), s._zr.dispose(), s._dom = s._model = s._chartsMap = s._componentsMap = s._chartsViews = s._componentsViews = s._scheduler = s._api = s._zr = s._throttledZrFlush = s._theme = s._coordSysMgr = s._messageCenter = null, delete N[s.id];
382
+ r && tt(this.getDom(), Ae, "");
383
+ var a = this, c = a._api, u = a._model;
384
+ y(a._componentsViews, function(m) {
385
+ m.dispose(u, c);
386
+ }), y(a._chartsViews, function(m) {
387
+ m.dispose(u, c);
388
+ }), a._zr.dispose(), a._dom = a._model = a._chartsMap = a._componentsMap = a._chartsViews = a._componentsViews = a._scheduler = a._api = a._zr = a._throttledZrFlush = a._theme = a._coordSysMgr = a._messageCenter = null, delete V[a.id];
382
389
  }, o.prototype.resize = function(r) {
383
- if (!this[A]) {
390
+ if (!this[w]) {
384
391
  if (this._disposed) {
385
392
  this.id;
386
393
  return;
387
394
  }
388
395
  this._zr.resize(r);
389
- var s = this._model;
390
- if (this._loadingFX && this._loadingFX.resize(), !!s) {
391
- var p = s.resetOption("media"), u = r && r.silent;
392
- this[P] && (u == null && (u = this[P].silent), p = !0, this[P] = null), this[A] = !0;
396
+ var a = this._model;
397
+ if (this._loadingFX && this._loadingFX.resize(), !!a) {
398
+ var c = a.resetOption("media"), u = r && r.silent;
399
+ this[A] && (u == null && (u = this[A].silent), c = !0, this[A] = null), this[w] = !0;
393
400
  try {
394
- p && k(this), V.update.call(this, {
401
+ c && z(this), U.update.call(this, {
395
402
  type: "resize",
396
- animation: U({
403
+ animation: k({
397
404
  // Disable animation
398
405
  duration: 0
399
406
  }, r && r.animation)
400
407
  });
401
- } catch (S) {
402
- throw this[A] = !1, S;
408
+ } catch (m) {
409
+ throw this[w] = !1, m;
403
410
  }
404
- this[A] = !1, Y.call(this, u), B.call(this, u);
411
+ this[w] = !1, N.call(this, u), Y.call(this, u);
405
412
  }
406
413
  }
407
- }, o.prototype.showLoading = function(r, s) {
414
+ }, o.prototype.showLoading = function(r, a) {
408
415
  if (this._disposed) {
409
416
  this.id;
410
417
  return;
411
418
  }
412
- if (H(r) && (s = r, r = ""), r = r || "default", this.hideLoading(), !!Se[r]) {
413
- var p = Se[r](this._api, s), u = this._zr;
414
- this._loadingFX = p, u.add(p);
419
+ if (B(r) && (a = r, r = ""), r = r || "default", this.hideLoading(), !!Ce[r]) {
420
+ var c = Ce[r](this._api, a), u = this._zr;
421
+ this._loadingFX = c, u.add(c);
415
422
  }
416
423
  }, o.prototype.hideLoading = function() {
417
424
  if (this._disposed) {
@@ -420,27 +427,27 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
420
427
  }
421
428
  this._loadingFX && this._zr.remove(this._loadingFX), this._loadingFX = null;
422
429
  }, o.prototype.makeActionFromEvent = function(r) {
423
- var s = U({}, r);
424
- return s.type = G[r.type], s;
425
- }, o.prototype.dispatchAction = function(r, s) {
430
+ var a = k({}, r);
431
+ return a.type = G[r.type], a;
432
+ }, o.prototype.dispatchAction = function(r, a) {
426
433
  if (this._disposed) {
427
434
  this.id;
428
435
  return;
429
436
  }
430
- if (H(s) || (s = {
431
- silent: !!s
432
- }), !!j[r.type] && this._model) {
433
- if (this[A]) {
437
+ if (B(a) || (a = {
438
+ silent: !!a
439
+ }), !!J[r.type] && this._model) {
440
+ if (this[w]) {
434
441
  this._pendingActions.push(r);
435
442
  return;
436
443
  }
437
- var p = s.silent;
438
- ce.call(this, r, p);
439
- var u = s.flush;
440
- u ? this._zr.flush() : u !== !1 && b.browser.weChat && this._throttledZrFlush(), Y.call(this, p), B.call(this, p);
444
+ var c = a.silent;
445
+ _e.call(this, r, c);
446
+ var u = a.flush;
447
+ u ? this._zr.flush() : u !== !1 && H.browser.weChat && this._throttledZrFlush(), N.call(this, c), Y.call(this, c);
441
448
  }
442
449
  }, o.prototype.updateLabelLayout = function() {
443
- I.trigger("series:layoutlabels", this._model, this._api, {
450
+ M.trigger("series:layoutlabels", this._model, this._api, {
444
451
  // Not adding series labels.
445
452
  // TODO
446
453
  updatedSeries: []
@@ -450,82 +457,82 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
450
457
  this.id;
451
458
  return;
452
459
  }
453
- var s = r.seriesIndex, p = this.getModel(), u = p.getSeriesByIndex(s);
460
+ var a = r.seriesIndex, c = this.getModel(), u = c.getSeriesByIndex(a);
454
461
  u.appendData(r), this._scheduler.unfinished = !0, this.getZr().wakeUp();
455
462
  }, o.internalField = (function() {
456
- k = function(e) {
463
+ z = function(e) {
457
464
  var i = e._scheduler;
458
- i.restorePipelines(e._model), i.prepareStageTasks(), le(e, !0), le(e, !1), i.plan();
459
- }, le = function(e, i) {
460
- for (var t = e._model, n = e._scheduler, a = i ? e._componentsViews : e._chartsViews, l = i ? e._componentsMap : e._chartsMap, f = e._zr, h = e._api, d = 0; d < a.length; d++)
461
- a[d].__alive = !1;
462
- i ? t.eachComponent(function(_, w) {
463
- _ !== "series" && v(w);
465
+ i.restorePipelines(e._model), i.prepareStageTasks(), ce(e, !0), ce(e, !1), i.plan();
466
+ }, ce = function(e, i) {
467
+ for (var t = e._model, n = e._scheduler, s = i ? e._componentsViews : e._chartsViews, d = i ? e._componentsMap : e._chartsMap, l = e._zr, h = e._api, p = 0; p < s.length; p++)
468
+ s[p].__alive = !1;
469
+ i ? t.eachComponent(function(_, P) {
470
+ _ !== "series" && v(P);
464
471
  }) : t.eachSeries(v);
465
472
  function v(_) {
466
- var w = _.__requireNewView;
473
+ var P = _.__requireNewView;
467
474
  _.__requireNewView = !1;
468
- var L = "_ec_" + _.id + "_" + _.type, R = !w && l[L];
469
- if (!R) {
470
- var x = be(_.type), D = i ? wt.getClass(x.main, x.sub) : (
475
+ var L = "_ec_" + _.id + "_" + _.type, E = !P && d[L];
476
+ if (!E) {
477
+ var I = Ye(_.type), x = i ? Lt.getClass(I.main, I.sub) : (
471
478
  // FIXME:TS
472
479
  // (ChartView as ChartViewConstructor).getClass('series', classType.sub)
473
480
  // For backward compat, still support a chart type declared as only subType
474
481
  // like "liquidfill", but recommend "series.liquidfill"
475
482
  // But need a base class to make a type series.
476
- re.getClass(x.sub)
483
+ ne.getClass(I.sub)
477
484
  );
478
- R = new D(), R.init(t, h), l[L] = R, a.push(R), f.add(R.group);
485
+ E = new x(), E.init(t, h), d[L] = E, s.push(E), l.add(E.group);
479
486
  }
480
- _.__viewId = R.__id = L, R.__alive = !0, R.__model = _, R.group.__ecComponentInfo = {
487
+ _.__viewId = E.__id = L, E.__alive = !0, E.__model = _, E.group.__ecComponentInfo = {
481
488
  mainType: _.mainType,
482
489
  index: _.componentIndex
483
- }, !i && n.prepareView(R, _, t, h);
490
+ }, !i && n.prepareView(E, _, t, h);
484
491
  }
485
- for (var d = 0; d < a.length; ) {
486
- var m = a[d];
487
- m.__alive ? d++ : (!i && m.renderTask.dispose(), f.remove(m.group), m.dispose(t, h), a.splice(d, 1), l[m.__id] === m && delete l[m.__id], m.__id = m.group.__ecComponentInfo = null);
492
+ for (var p = 0; p < s.length; ) {
493
+ var S = s[p];
494
+ S.__alive ? p++ : (!i && S.renderTask.dispose(), l.remove(S.group), S.dispose(t, h), s.splice(p, 1), d[S.__id] === S && delete d[S.__id], S.__id = S.group.__ecComponentInfo = null);
488
495
  }
489
- }, K = function(e, i, t, n, a) {
490
- var l = e._model;
491
- if (l.setUpdatePayload(t), !n) {
492
- E([].concat(e._componentsViews).concat(e._chartsViews), m);
496
+ }, K = function(e, i, t, n, s) {
497
+ var d = e._model;
498
+ if (d.setUpdatePayload(t), !n) {
499
+ y([].concat(e._componentsViews).concat(e._chartsViews), S);
493
500
  return;
494
501
  }
495
- var f = {};
496
- f[n + "Id"] = t[n + "Id"], f[n + "Index"] = t[n + "Index"], f[n + "Name"] = t[n + "Name"];
502
+ var l = {};
503
+ l[n + "Id"] = t[n + "Id"], l[n + "Index"] = t[n + "Index"], l[n + "Name"] = t[n + "Name"];
497
504
  var h = {
498
505
  mainType: n,
499
- query: f
506
+ query: l
500
507
  };
501
- a && (h.subType = a);
502
- var d = t.excludeSeriesId, v;
503
- d != null && (v = ee(), E(Xt(d), function(_) {
504
- var w = Wt(_, null);
505
- w != null && v.set(w, !0);
506
- })), l && l.eachComponent(h, function(_) {
507
- var w = v && v.get(_.id) != null;
508
- if (!w)
509
- if (Ve(t))
510
- if (_ instanceof xe)
511
- t.type === z && !t.notBlur && !_.get(["emphasis", "disabled"]) && zt(_, t, e._api);
508
+ s && (h.subType = s);
509
+ var p = t.excludeSeriesId, v;
510
+ p != null && (v = re(), y(Zt(p), function(_) {
511
+ var P = qt(_, null);
512
+ P != null && v.set(P, !0);
513
+ })), d && d.eachComponent(h, function(_) {
514
+ var P = v && v.get(_.id) != null;
515
+ if (!P)
516
+ if (ke(t))
517
+ if (_ instanceof Ve)
518
+ t.type === b && !t.notBlur && !_.get(["emphasis", "disabled"]) && It(_, t, e._api);
512
519
  else {
513
- var L = Ft(_.mainType, _.componentIndex, t.name, e._api), R = L.focusSelf, x = L.dispatchers;
514
- t.type === z && R && !t.notBlur && bt(_.mainType, _.componentIndex, e._api), x && E(x, function(D) {
515
- t.type === z ? ke(D) : ze(D);
520
+ var L = xt(_.mainType, _.componentIndex, t.name, e._api), E = L.focusSelf, I = L.dispatchers;
521
+ t.type === b && E && !t.notBlur && Ut(_.mainType, _.componentIndex, e._api), I && y(I, function(x) {
522
+ t.type === b ? ze(x) : be(x);
516
523
  });
517
524
  }
518
- else De(t) && _ instanceof xe && (Yt(_, t, e._api), Ue(_), M(e));
519
- }, e), l && l.eachComponent(h, function(_) {
520
- var w = v && v.get(_.id) != null;
521
- w || m(e[n === "series" ? "_chartsMap" : "_componentsMap"][_.__viewId]);
525
+ else Fe(t) && _ instanceof Ve && (Vt(_, t, e._api), He(_), D(e));
526
+ }, e), d && d.eachComponent(h, function(_) {
527
+ var P = v && v.get(_.id) != null;
528
+ P || S(e[n === "series" ? "_chartsMap" : "_componentsMap"][_.__viewId]);
522
529
  }, e);
523
- function m(_) {
524
- _ && _.__alive && _[i] && _[i](_.__model, l, e._api, t);
530
+ function S(_) {
531
+ _ && _.__alive && _[i] && _[i](_.__model, d, e._api, t);
525
532
  }
526
- }, V = {
533
+ }, U = {
527
534
  prepareAndUpdate: function(e) {
528
- k(this), V.update.call(this, e, {
535
+ z(this), U.update.call(this, e, {
529
536
  // Needs to mark option changed if newOption is given.
530
537
  // It's from MagicType.
531
538
  // TODO If use a separate flag optionChanged in payload?
@@ -533,153 +540,153 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
533
540
  });
534
541
  },
535
542
  update: function(e, i) {
536
- var t = this._model, n = this._api, a = this._zr, l = this._coordSysMgr, f = this._scheduler;
543
+ var t = this._model, n = this._api, s = this._zr, d = this._coordSysMgr, l = this._scheduler;
537
544
  if (t) {
538
- t.setUpdatePayload(e), f.restoreData(t, e), f.performSeriesTasks(t), l.create(t, n), f.performDataProcessorTasks(t, e), he(this, t), l.update(t, n), r(t), f.performVisualTasks(t, e), ve(this, t, n, e, i);
539
- var h = t.get("backgroundColor") || "transparent", d = t.get("darkMode");
540
- a.setBackgroundColor(h), d != null && d !== "auto" && a.setDarkMode(d), I.trigger("afterupdate", t, n);
545
+ t.setUpdatePayload(e), l.restoreData(t, e), l.performSeriesTasks(t), d.create(t, n), l.performDataProcessorTasks(t, e), ve(this, t), d.update(t, n), r(t), l.performVisualTasks(t, e), ge(this, t, n, e, i);
546
+ var h = t.get("backgroundColor") || "transparent", p = t.get("darkMode");
547
+ s.setBackgroundColor(h), p != null && p !== "auto" && s.setDarkMode(p), M.trigger("afterupdate", t, n);
541
548
  }
542
549
  },
543
550
  updateTransform: function(e) {
544
551
  var i = this, t = this._model, n = this._api;
545
552
  if (t) {
546
553
  t.setUpdatePayload(e);
547
- var a = [];
548
- t.eachComponent(function(f, h) {
549
- if (f !== "series") {
550
- var d = i.getViewOfComponentModel(h);
551
- if (d && d.__alive)
552
- if (d.updateTransform) {
553
- var v = d.updateTransform(h, t, n, e);
554
- v && v.update && a.push(d);
554
+ var s = [];
555
+ t.eachComponent(function(l, h) {
556
+ if (l !== "series") {
557
+ var p = i.getViewOfComponentModel(h);
558
+ if (p && p.__alive)
559
+ if (p.updateTransform) {
560
+ var v = p.updateTransform(h, t, n, e);
561
+ v && v.update && s.push(p);
555
562
  } else
556
- a.push(d);
563
+ s.push(p);
557
564
  }
558
565
  });
559
- var l = ee();
560
- t.eachSeries(function(f) {
561
- var h = i._chartsMap[f.__viewId];
566
+ var d = re();
567
+ t.eachSeries(function(l) {
568
+ var h = i._chartsMap[l.__viewId];
562
569
  if (h.updateTransform) {
563
- var d = h.updateTransform(f, t, n, e);
564
- d && d.update && l.set(f.uid, 1);
570
+ var p = h.updateTransform(l, t, n, e);
571
+ p && p.update && d.set(l.uid, 1);
565
572
  } else
566
- l.set(f.uid, 1);
573
+ d.set(l.uid, 1);
567
574
  }), r(t), this._scheduler.performVisualTasks(t, e, {
568
575
  setDirty: !0,
569
- dirtyMap: l
570
- }), $(this, t, n, e, {}, l), I.trigger("afterupdate", t, n);
576
+ dirtyMap: d
577
+ }), $(this, t, n, e, {}, d), M.trigger("afterupdate", t, n);
571
578
  }
572
579
  },
573
580
  updateView: function(e) {
574
581
  var i = this._model;
575
- i && (i.setUpdatePayload(e), re.markUpdateMethod(e, "updateView"), r(i), this._scheduler.performVisualTasks(i, e, {
582
+ i && (i.setUpdatePayload(e), ne.markUpdateMethod(e, "updateView"), r(i), this._scheduler.performVisualTasks(i, e, {
576
583
  setDirty: !0
577
- }), ve(this, i, this._api, e, {}), I.trigger("afterupdate", i, this._api));
584
+ }), ge(this, i, this._api, e, {}), M.trigger("afterupdate", i, this._api));
578
585
  },
579
586
  updateVisual: function(e) {
580
587
  var i = this, t = this._model;
581
588
  t && (t.setUpdatePayload(e), t.eachSeries(function(n) {
582
589
  n.getData().clearAllVisual();
583
- }), re.markUpdateMethod(e, "updateVisual"), r(t), this._scheduler.performVisualTasks(t, e, {
590
+ }), ne.markUpdateMethod(e, "updateVisual"), r(t), this._scheduler.performVisualTasks(t, e, {
584
591
  visualType: "visual",
585
592
  setDirty: !0
586
- }), t.eachComponent(function(n, a) {
593
+ }), t.eachComponent(function(n, s) {
587
594
  if (n !== "series") {
588
- var l = i.getViewOfComponentModel(a);
589
- l && l.__alive && l.updateVisual(a, t, i._api, e);
595
+ var d = i.getViewOfComponentModel(s);
596
+ d && d.__alive && d.updateVisual(s, t, i._api, e);
590
597
  }
591
598
  }), t.eachSeries(function(n) {
592
- var a = i._chartsMap[n.__viewId];
593
- a.updateVisual(n, t, i._api, e);
594
- }), I.trigger("afterupdate", t, this._api));
599
+ var s = i._chartsMap[n.__viewId];
600
+ s.updateVisual(n, t, i._api, e);
601
+ }), M.trigger("afterupdate", t, this._api));
595
602
  },
596
603
  updateLayout: function(e) {
597
- V.update.call(this, e);
604
+ U.update.call(this, e);
598
605
  }
599
- }, pe = function(e, i, t, n) {
606
+ }, he = function(e, i, t, n) {
600
607
  if (e._disposed) {
601
608
  e.id;
602
609
  return;
603
610
  }
604
- for (var a = e._model, l = e._coordSysMgr.getCoordinateSystems(), f, h = oe(a, t), d = 0; d < l.length; d++) {
605
- var v = l[d];
606
- if (v[i] && (f = v[i](a, h, n)) != null)
607
- return f;
611
+ for (var s = e._model, d = e._coordSysMgr.getCoordinateSystems(), l, h = fe(s, t), p = 0; p < d.length; p++) {
612
+ var v = d[p];
613
+ if (v[i] && (l = v[i](s, h, n)) != null)
614
+ return l;
608
615
  }
609
- }, he = function(e, i) {
616
+ }, ve = function(e, i) {
610
617
  var t = e._chartsMap, n = e._scheduler;
611
- i.eachSeries(function(a) {
612
- n.updateStreamModes(a, t[a.__viewId]);
618
+ i.eachSeries(function(s) {
619
+ n.updateStreamModes(s, t[s.__viewId]);
613
620
  });
614
- }, ce = function(e, i) {
615
- var t = this, n = this.getModel(), a = e.type, l = e.escapeConnect, f = j[a], h = f.actionInfo, d = (h.update || "update").split(":"), v = d.pop(), m = d[0] != null && be(d[0]);
616
- this[A] = !0;
617
- var _ = [e], w = !1;
618
- e.batch && (w = !0, _ = Tt(e.batch, function(O) {
619
- return O = Ct(U({}, O), e), O.batch = null, O;
621
+ }, _e = function(e, i) {
622
+ var t = this, n = this.getModel(), s = e.type, d = e.escapeConnect, l = J[s], h = l.actionInfo, p = (h.update || "update").split(":"), v = p.pop(), S = p[0] != null && Ye(p[0]);
623
+ this[w] = !0;
624
+ var _ = [e], P = !1;
625
+ e.batch && (P = !0, _ = Rt(e.batch, function(O) {
626
+ return O = wt(k({}, O), e), O.batch = null, O;
620
627
  }));
621
- var L = [], R, x = De(e), D = Ve(e);
622
- if (D && Ot(this._api), E(_, function(O) {
623
- if (R = f.action(O, t._model, t._api), R = R || U({}, O), R.type = h.event || R.type, L.push(R), D) {
624
- var we = Nt(e), ct = we.queryOptionMap, vt = we.mainTypeSpecified, _t = vt ? ct.keys()[0] : "series";
625
- K(t, v, O, _t), M(t);
626
- } else x ? (K(t, v, O, "series"), M(t)) : m && K(t, v, O, m.main, m.sub);
627
- }), v !== "none" && !D && !x && !m)
628
+ var L = [], E, I = Fe(e), x = ke(e);
629
+ if (x && kt(this._api), y(_, function(O) {
630
+ if (E = l.action(O, t._model, t._api), E = E || k({}, O), E.type = h.event || E.type, L.push(E), x) {
631
+ var Me = Kt(e), mt = Me.queryOptionMap, Tt = Me.mainTypeSpecified, St = Tt ? mt.keys()[0] : "series";
632
+ K(t, v, O, St), D(t);
633
+ } else I ? (K(t, v, O, "series"), D(t)) : S && K(t, v, O, S.main, S.sub);
634
+ }), v !== "none" && !x && !I && !S)
628
635
  try {
629
- this[P] ? (k(this), V.update.call(this, e), this[P] = null) : V[v].call(this, e);
636
+ this[A] ? (z(this), U.update.call(this, e), this[A] = null) : U[v].call(this, e);
630
637
  } catch (O) {
631
- throw this[A] = !1, O;
638
+ throw this[w] = !1, O;
632
639
  }
633
- if (w ? R = {
634
- type: h.event || a,
635
- escapeConnect: l,
640
+ if (P ? E = {
641
+ type: h.event || s,
642
+ escapeConnect: d,
636
643
  batch: L
637
- } : R = L[0], this[A] = !1, !i) {
638
- var Ae = this._messageCenter;
639
- if (Ae.trigger(R.type, R), x) {
640
- var Pe = {
644
+ } : E = L[0], this[w] = !1, !i) {
645
+ var Oe = this._messageCenter;
646
+ if (Oe.trigger(E.type, E), I) {
647
+ var De = {
641
648
  type: "selectchanged",
642
- escapeConnect: l,
643
- selected: Mt(n),
649
+ escapeConnect: d,
650
+ selected: zt(n),
644
651
  isFromClick: e.isFromClick || !1,
645
652
  fromAction: e.type,
646
653
  fromActionPayload: e
647
654
  };
648
- Ae.trigger(Pe.type, Pe);
655
+ Oe.trigger(De.type, De);
649
656
  }
650
657
  }
651
- }, Y = function(e) {
658
+ }, N = function(e) {
652
659
  for (var i = this._pendingActions; i.length; ) {
653
660
  var t = i.shift();
654
- ce.call(this, t, e);
661
+ _e.call(this, t, e);
655
662
  }
656
- }, B = function(e) {
663
+ }, Y = function(e) {
657
664
  !e && this.trigger("updated");
658
- }, He = function(e, i) {
665
+ }, We = function(e, i) {
659
666
  e.on("rendered", function(t) {
660
667
  i.trigger("rendered", t), // Although zr is dirty if initial animation is not finished
661
668
  // and this checking is called on frame, we also check
662
669
  // animation finished for robustness.
663
- e.animation.isFinished() && !i[P] && !i._scheduler.unfinished && !i._pendingActions.length && i.trigger("finished");
670
+ e.animation.isFinished() && !i[A] && !i._scheduler.unfinished && !i._pendingActions.length && i.trigger("finished");
664
671
  });
665
- }, Ge = function(e, i) {
672
+ }, Xe = function(e, i) {
666
673
  e.on("mouseover", function(t) {
667
- var n = t.target, a = q(n, Fe);
668
- a && (Bt(a, t, i._api), M(i));
674
+ var n = t.target, s = q(n, Ne);
675
+ s && (bt(s, t, i._api), D(i));
669
676
  }).on("mouseout", function(t) {
670
- var n = t.target, a = q(n, Fe);
671
- a && (Ht(a, t, i._api), M(i));
677
+ var n = t.target, s = q(n, Ne);
678
+ s && (Ft(s, t, i._api), D(i));
672
679
  }).on("click", function(t) {
673
- var n = t.target, a = q(n, function(h) {
680
+ var n = t.target, s = q(n, function(h) {
674
681
  return Z(h).dataIndex != null;
675
682
  }, !0);
676
- if (a) {
677
- var l = a.selected ? "unselect" : "select", f = Z(a);
683
+ if (s) {
684
+ var d = s.selected ? "unselect" : "select", l = Z(s);
678
685
  i._api.dispatchAction({
679
- type: l,
680
- dataType: f.dataType,
681
- dataIndexInside: f.dataIndex,
682
- seriesIndex: f.seriesIndex,
686
+ type: d,
687
+ dataType: l.dataType,
688
+ dataIndexInside: l.dataIndex,
689
+ seriesIndex: l.seriesIndex,
683
690
  isFromClick: !0
684
691
  });
685
692
  }
@@ -690,81 +697,81 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
690
697
  i.clearColorPalette();
691
698
  });
692
699
  }
693
- function s(e) {
700
+ function a(e) {
694
701
  var i = [], t = [], n = !1;
695
- if (e.eachComponent(function(h, d) {
696
- var v = d.get("zlevel") || 0, m = d.get("z") || 0, _ = d.getZLevelKey();
702
+ if (e.eachComponent(function(h, p) {
703
+ var v = p.get("zlevel") || 0, S = p.get("z") || 0, _ = p.getZLevelKey();
697
704
  n = n || !!_, (h === "series" ? t : i).push({
698
705
  zlevel: v,
699
- z: m,
700
- idx: d.componentIndex,
706
+ z: S,
707
+ idx: p.componentIndex,
701
708
  type: h,
702
709
  key: _
703
710
  });
704
711
  }), n) {
705
- var a = i.concat(t), l, f;
706
- te(a, function(h, d) {
707
- return h.zlevel === d.zlevel ? h.z - d.z : h.zlevel - d.zlevel;
708
- }), E(a, function(h) {
709
- var d = e.getComponent(h.type, h.idx), v = h.zlevel, m = h.key;
710
- l != null && (v = Math.max(l, v)), m ? (v === l && m !== f && v++, f = m) : f && (v === l && v++, f = ""), l = v, d.setZLevel(v);
712
+ var s = i.concat(t), d, l;
713
+ ie(s, function(h, p) {
714
+ return h.zlevel === p.zlevel ? h.z - p.z : h.zlevel - p.zlevel;
715
+ }), y(s, function(h) {
716
+ var p = e.getComponent(h.type, h.idx), v = h.zlevel, S = h.key;
717
+ d != null && (v = Math.max(d, v)), S ? (v === d && S !== l && v++, l = S) : l && (v === d && v++, l = ""), d = v, p.setZLevel(v);
711
718
  });
712
719
  }
713
720
  }
714
- ve = function(e, i, t, n, a) {
715
- s(i), Ne(e, i, t, n, a), E(e._chartsViews, function(l) {
716
- l.__alive = !1;
717
- }), $(e, i, t, n, a), E(e._chartsViews, function(l) {
718
- l.__alive || l.remove(i, t);
721
+ ge = function(e, i, t, n, s) {
722
+ a(i), Ze(e, i, t, n, s), y(e._chartsViews, function(d) {
723
+ d.__alive = !1;
724
+ }), $(e, i, t, n, s), y(e._chartsViews, function(d) {
725
+ d.__alive || d.remove(i, t);
719
726
  });
720
- }, Ne = function(e, i, t, n, a, l) {
721
- E(l || e._componentsViews, function(f) {
722
- var h = f.__model;
723
- y(h, f), f.render(h, i, t, n), C(h, f), T(h, f);
727
+ }, Ze = function(e, i, t, n, s, d) {
728
+ y(d || e._componentsViews, function(l) {
729
+ var h = l.__model;
730
+ R(h, l), l.render(h, i, t, n), C(h, l), T(h, l);
724
731
  });
725
- }, $ = function(e, i, t, n, a, l) {
726
- var f = e._scheduler;
727
- a = U(a || {}, {
732
+ }, $ = function(e, i, t, n, s, d) {
733
+ var l = e._scheduler;
734
+ s = k(s || {}, {
728
735
  updatedSeries: i.getSeries()
729
- }), I.trigger("series:beforeupdate", i, t, a);
736
+ }), M.trigger("series:beforeupdate", i, t, s);
730
737
  var h = !1;
731
- i.eachSeries(function(d) {
732
- var v = e._chartsMap[d.__viewId];
738
+ i.eachSeries(function(p) {
739
+ var v = e._chartsMap[p.__viewId];
733
740
  v.__alive = !0;
734
- var m = v.renderTask;
735
- f.updatePayload(m, n), y(d, v), l && l.get(d.uid) && m.dirty(), m.perform(f.getPerformArgs(m)) && (h = !0), v.group.silent = !!d.get("silent"), S(d, v), Ue(d);
736
- }), f.unfinished = h || f.unfinished, I.trigger("series:layoutlabels", i, t, a), I.trigger("series:transition", i, t, a), i.eachSeries(function(d) {
737
- var v = e._chartsMap[d.__viewId];
738
- C(d, v), T(d, v);
739
- }), u(e, i), I.trigger("series:afterupdate", i, t, a);
740
- }, M = function(e) {
741
- e[fe] = !0, e.getZr().wakeUp();
742
- }, Xe = function(e) {
743
- e[fe] && (e.getZr().storage.traverse(function(i) {
744
- ue(i) || p(i);
745
- }), e[fe] = !1);
741
+ var S = v.renderTask;
742
+ l.updatePayload(S, n), R(p, v), d && d.get(p.uid) && S.dirty(), S.perform(l.getPerformArgs(S)) && (h = !0), v.group.silent = !!p.get("silent"), m(p, v), He(p);
743
+ }), l.unfinished = h || l.unfinished, M.trigger("series:layoutlabels", i, t, s), M.trigger("series:transition", i, t, s), i.eachSeries(function(p) {
744
+ var v = e._chartsMap[p.__viewId];
745
+ C(p, v), T(p, v);
746
+ }), u(e, i), M.trigger("series:afterupdate", i, t, s);
747
+ }, D = function(e) {
748
+ e[de] = !0, e.getZr().wakeUp();
749
+ }, Ke = function(e) {
750
+ e[de] && (e.getZr().storage.traverse(function(i) {
751
+ le(i) || c(i);
752
+ }), e[de] = !1);
746
753
  };
747
- function p(e) {
754
+ function c(e) {
748
755
  for (var i = [], t = e.currentStates, n = 0; n < t.length; n++) {
749
- var a = t[n];
750
- a === "emphasis" || a === "blur" || a === "select" || i.push(a);
756
+ var s = t[n];
757
+ s === "emphasis" || s === "blur" || s === "select" || i.push(s);
751
758
  }
752
- e.selected && e.states.select && i.push("select"), e.hoverState === It && e.states.emphasis ? i.push("emphasis") : e.hoverState === Lt && e.states.blur && i.push("blur"), e.useStates(i);
759
+ e.selected && e.states.select && i.push("select"), e.hoverState === Ht && e.states.emphasis ? i.push("emphasis") : e.hoverState === Nt && e.states.blur && i.push("blur"), e.useStates(i);
753
760
  }
754
761
  function u(e, i) {
755
- var t = e._zr, n = t.storage, a = 0;
756
- n.traverse(function(l) {
757
- l.isGroup || a++;
758
- }), a > i.get("hoverLayerThreshold") && !b.node && !b.worker && i.eachSeries(function(l) {
759
- if (!l.preventUsingHoverLayer) {
760
- var f = e._chartsMap[l.__viewId];
761
- f.__alive && f.eachRendered(function(h) {
762
+ var t = e._zr, n = t.storage, s = 0;
763
+ n.traverse(function(d) {
764
+ d.isGroup || s++;
765
+ }), s > i.get("hoverLayerThreshold") && !H.node && !H.worker && i.eachSeries(function(d) {
766
+ if (!d.preventUsingHoverLayer) {
767
+ var l = e._chartsMap[d.__viewId];
768
+ l.__alive && l.eachRendered(function(h) {
762
769
  h.states.emphasis && (h.states.emphasis.hoverLayer = !0);
763
770
  });
764
771
  }
765
772
  });
766
773
  }
767
- function S(e, i) {
774
+ function m(e, i) {
768
775
  var t = e.get("blendMode") || null;
769
776
  i.eachRendered(function(n) {
770
777
  n.isGroup || (n.style.blend = t);
@@ -773,60 +780,60 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
773
780
  function C(e, i) {
774
781
  if (!e.preventAutoZ) {
775
782
  var t = e.get("z") || 0, n = e.get("zlevel") || 0;
776
- i.eachRendered(function(a) {
777
- return g(a, t, n, -1 / 0), !0;
783
+ i.eachRendered(function(s) {
784
+ return g(s, t, n, -1 / 0), !0;
778
785
  });
779
786
  }
780
787
  }
781
788
  function g(e, i, t, n) {
782
- var a = e.getTextContent(), l = e.getTextGuideLine(), f = e.isGroup;
783
- if (f)
784
- for (var h = e.childrenRef(), d = 0; d < h.length; d++)
785
- n = Math.max(g(h[d], i, t, n), n);
789
+ var s = e.getTextContent(), d = e.getTextGuideLine(), l = e.isGroup;
790
+ if (l)
791
+ for (var h = e.childrenRef(), p = 0; p < h.length; p++)
792
+ n = Math.max(g(h[p], i, t, n), n);
786
793
  else
787
794
  e.z = i, e.zlevel = t, n = Math.max(e.z2, n);
788
- if (a && (a.z = i, a.zlevel = t, isFinite(n) && (a.z2 = n + 2)), l) {
795
+ if (s && (s.z = i, s.zlevel = t, isFinite(n) && (s.z2 = n + 2)), d) {
789
796
  var v = e.textGuideLineConfig;
790
- l.z = i, l.zlevel = t, isFinite(n) && (l.z2 = n + (v && v.showAbove ? 1 : -1));
797
+ d.z = i, d.zlevel = t, isFinite(n) && (d.z2 = n + (v && v.showAbove ? 1 : -1));
791
798
  }
792
799
  return n;
793
800
  }
794
- function y(e, i) {
801
+ function R(e, i) {
795
802
  i.eachRendered(function(t) {
796
- if (!ue(t)) {
797
- var n = t.getTextContent(), a = t.getTextGuideLine();
798
- t.stateTransition && (t.stateTransition = null), n && n.stateTransition && (n.stateTransition = null), a && a.stateTransition && (a.stateTransition = null), t.hasState() ? (t.prevStates = t.currentStates, t.clearStates()) : t.prevStates && (t.prevStates = null);
803
+ if (!le(t)) {
804
+ var n = t.getTextContent(), s = t.getTextGuideLine();
805
+ t.stateTransition && (t.stateTransition = null), n && n.stateTransition && (n.stateTransition = null), s && s.stateTransition && (s.stateTransition = null), t.hasState() ? (t.prevStates = t.currentStates, t.clearStates()) : t.prevStates && (t.prevStates = null);
799
806
  }
800
807
  });
801
808
  }
802
809
  function T(e, i) {
803
- var t = e.getModel("stateAnimation"), n = e.isAnimationEnabled(), a = t.get("duration"), l = a > 0 ? {
804
- duration: a,
810
+ var t = e.getModel("stateAnimation"), n = e.isAnimationEnabled(), s = t.get("duration"), d = s > 0 ? {
811
+ duration: s,
805
812
  delay: t.get("delay"),
806
813
  easing: t.get("easing")
807
814
  // additive: stateAnimationModel.get('additive')
808
815
  } : null;
809
- i.eachRendered(function(f) {
810
- if (f.states && f.states.emphasis) {
811
- if (ue(f))
816
+ i.eachRendered(function(l) {
817
+ if (l.states && l.states.emphasis) {
818
+ if (le(l))
812
819
  return;
813
- if (f instanceof cr && xt(f), f.__dirty) {
814
- var h = f.prevStates;
815
- h && f.useStates(h);
820
+ if (l instanceof mr && Yt(l), l.__dirty) {
821
+ var h = l.prevStates;
822
+ h && l.useStates(h);
816
823
  }
817
824
  if (n) {
818
- f.stateTransition = l;
819
- var d = f.getTextContent(), v = f.getTextGuideLine();
820
- d && (d.stateTransition = l), v && (v.stateTransition = l);
825
+ l.stateTransition = d;
826
+ var p = l.getTextContent(), v = l.getTextGuideLine();
827
+ p && (p.stateTransition = d), v && (v.stateTransition = d);
821
828
  }
822
- f.__dirty && p(f);
829
+ l.__dirty && c(l);
823
830
  }
824
831
  });
825
832
  }
826
- We = function(e) {
833
+ qe = function(e) {
827
834
  return new /** @class */
828
835
  ((function(i) {
829
- _e(t, i);
836
+ me(t, i);
830
837
  function t() {
831
838
  return i !== null && i.apply(this, arguments) || this;
832
839
  }
@@ -834,23 +841,23 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
834
841
  return e._coordSysMgr.getCoordinateSystems();
835
842
  }, t.prototype.getComponentByElement = function(n) {
836
843
  for (; n; ) {
837
- var a = n.__ecComponentInfo;
838
- if (a != null)
839
- return e._model.getComponent(a.mainType, a.index);
844
+ var s = n.__ecComponentInfo;
845
+ if (s != null)
846
+ return e._model.getComponent(s.mainType, s.index);
840
847
  n = n.parent;
841
848
  }
842
- }, t.prototype.enterEmphasis = function(n, a) {
843
- ke(n, a), M(e);
844
- }, t.prototype.leaveEmphasis = function(n, a) {
845
- ze(n, a), M(e);
849
+ }, t.prototype.enterEmphasis = function(n, s) {
850
+ ze(n, s), D(e);
851
+ }, t.prototype.leaveEmphasis = function(n, s) {
852
+ be(n, s), D(e);
846
853
  }, t.prototype.enterBlur = function(n) {
847
- Dt(n), M(e);
854
+ Bt(n), D(e);
848
855
  }, t.prototype.leaveBlur = function(n) {
849
- Vt(n), M(e);
856
+ Gt(n), D(e);
850
857
  }, t.prototype.enterSelect = function(n) {
851
- Ut(n), M(e);
858
+ Wt(n), D(e);
852
859
  }, t.prototype.leaveSelect = function(n) {
853
- kt(n), M(e);
860
+ Xt(n), D(e);
854
861
  }, t.prototype.getModel = function() {
855
862
  return e.getModel();
856
863
  }, t.prototype.getViewOfComponentModel = function(n) {
@@ -858,133 +865,160 @@ var k, le, K, V, pe, he, ce, Y, B, He, Ge, ve, Ne, $, We, ft, M, Xe, dt = (
858
865
  }, t.prototype.getViewOfSeriesModel = function(n) {
859
866
  return e.getViewOfSeriesModel(n);
860
867
  }, t;
861
- })(Et))(e);
862
- }, ft = function(e) {
868
+ })(Ot))(e);
869
+ }, ct = function(e) {
863
870
  function i(t, n) {
864
- for (var a = 0; a < t.length; a++) {
865
- var l = t[a];
866
- l[de] = n;
871
+ for (var s = 0; s < t.length; s++) {
872
+ var d = t[s];
873
+ d[pe] = n;
867
874
  }
868
875
  }
869
- E(G, function(t, n) {
870
- e._messageCenter.on(n, function(a) {
871
- if (Ze[e.group] && e[de] !== Be) {
872
- if (a && a.escapeConnect)
876
+ y(G, function(t, n) {
877
+ e._messageCenter.on(n, function(s) {
878
+ if (ee[e.group] && e[pe] !== Ge) {
879
+ if (s && s.escapeConnect)
873
880
  return;
874
- var l = e.makeActionFromEvent(a), f = [];
875
- E(N, function(h) {
876
- h !== e && h.group === e.group && f.push(h);
877
- }), i(f, Be), E(f, function(h) {
878
- h[de] !== Pr && h.dispatchAction(l);
879
- }), i(f, wr);
881
+ var d = e.makeActionFromEvent(s), l = [];
882
+ y(V, function(h) {
883
+ h !== e && h.group === e.group && l.push(h);
884
+ }), i(l, Ge), y(l, function(h) {
885
+ h[pe] !== Mr && h.dispatchAction(d);
886
+ }), i(l, Lr);
880
887
  }
881
888
  });
882
889
  });
883
890
  };
884
891
  })(), o;
885
- })(Te)
886
- ), ye = dt.prototype;
887
- ye.on = nt("on");
888
- ye.off = nt("off");
889
- ye.one = function(c, o, r) {
890
- var s = this;
891
- function p() {
892
- for (var u = [], S = 0; S < arguments.length; S++)
893
- u[S] = arguments[S];
894
- o && o.apply && o.apply(this, u), s.off(c, p);
892
+ })(ye)
893
+ ), we = j.prototype;
894
+ we.on = ut("on");
895
+ we.off = ut("off");
896
+ we.one = function(f, o, r) {
897
+ var a = this;
898
+ it("ECharts#one is deprecated.");
899
+ function c() {
900
+ for (var u = [], m = 0; m < arguments.length; m++)
901
+ u[m] = arguments[m];
902
+ o && o.apply && o.apply(this, u), a.off(f, c);
895
903
  }
896
- this.on.call(this, c, p, r);
904
+ this.on.call(this, f, c, r);
897
905
  };
898
- var Or = ["click", "dblclick", "mouseover", "mouseout", "mousemove", "mousedown", "mouseup", "globalout", "contextmenu"];
899
- var j = {}, G = {}, ge = [], me = [], J = [], lt = {}, Se = {}, N = {}, Ze = {}, Mr = +/* @__PURE__ */ new Date() - 0, Re = "_echarts_instance_";
900
- function Ci(c, o, r) {
901
- {
902
- var s = Ir(c);
903
- if (s)
904
- return s;
906
+ var Ir = ["click", "dblclick", "mouseover", "mouseout", "mousemove", "mousedown", "mouseup", "globalout", "contextmenu"];
907
+ var J = {}, G = {}, Te = [], Se = [], Q = [], ht = {}, Ce = {}, V = {}, ee = {}, xr = +/* @__PURE__ */ new Date() - 0, Ur = +/* @__PURE__ */ new Date() - 0, Ae = "_echarts_instance_";
908
+ function Ui(f, o, r) {
909
+ var a = !(r && r.ssr);
910
+ if (a) {
911
+ var c = vt(f);
912
+ if (c)
913
+ return c;
905
914
  }
906
- var p = new dt(c, o, r);
907
- return p.id = "ec_" + Mr++, N[p.id] = p, Qe(c, Re, p.id), ft(p), I.trigger("afterinit", p), p;
915
+ var u = new j(f, o, r);
916
+ return u.id = "ec_" + xr++, V[u.id] = u, a && tt(f, Ae, u.id), ct(u), M.trigger("afterinit", u), u;
917
+ }
918
+ function Vi(f) {
919
+ if (At(f)) {
920
+ var o = f;
921
+ f = null, y(o, function(r) {
922
+ r.group != null && (f = r.group);
923
+ }), f = f || "g_" + Ur++, y(o, function(r) {
924
+ r.group = f;
925
+ });
926
+ }
927
+ return ee[f] = !0, f;
928
+ }
929
+ function Vr(f) {
930
+ ee[f] = !1;
931
+ }
932
+ var ki = Vr;
933
+ function zi(f) {
934
+ je(f) ? f = V[f] : f instanceof j || (f = vt(f)), f instanceof j && !f.isDisposed() && f.dispose();
935
+ }
936
+ function vt(f) {
937
+ return V[$t(f, Ae)];
908
938
  }
909
- function Ir(c) {
910
- return N[Gt(c, Re)];
939
+ function bi(f) {
940
+ return V[f];
911
941
  }
912
- function pt(c, o) {
913
- lt[c] = o;
942
+ function _t(f, o) {
943
+ ht[f] = o;
914
944
  }
915
- function Lr(c) {
916
- Ke(me, c) < 0 && me.push(c);
945
+ function kr(f) {
946
+ Je(Se, f) < 0 && Se.push(f);
917
947
  }
918
- function xr(c, o) {
919
- Ee(ge, c, o, Sr);
948
+ function zr(f, o) {
949
+ Pe(Te, f, o, Er);
920
950
  }
921
- function yi(c) {
922
- ht("afterinit", c);
951
+ function Fi(f) {
952
+ gt("afterinit", f);
923
953
  }
924
- function Ri(c) {
925
- ht("afterupdate", c);
954
+ function Hi(f) {
955
+ gt("afterupdate", f);
926
956
  }
927
- function ht(c, o) {
928
- I.on(c, o);
957
+ function gt(f, o) {
958
+ M.on(f, o);
929
959
  }
930
- function X(c, o, r) {
931
- $e(o) && (r = o, o = "");
932
- var s = H(c) ? c.type : [c, c = {
960
+ function X(f, o, r) {
961
+ Qe(o) && (r = o, o = "");
962
+ var a = B(f) ? f.type : [f, f = {
933
963
  event: o
934
964
  }][0];
935
- c.event = (c.event || s).toLowerCase(), o = c.event, !G[o] && (mt(Ye.test(s) && Ye.test(o)), j[s] || (j[s] = {
965
+ f.event = (f.event || a).toLowerCase(), o = f.event, !G[o] && (Et(Be.test(a) && Be.test(o)), J[a] || (J[a] = {
936
966
  action: r,
937
- actionInfo: c
938
- }), G[o] = s);
967
+ actionInfo: f
968
+ }), G[o] = a);
939
969
  }
940
- function Ei(c, o) {
941
- je.register(c, o);
970
+ function Ni(f, o) {
971
+ Ee.register(f, o);
942
972
  }
943
- function Ai(c, o) {
944
- Ee(J, c, o, tt, "layout");
973
+ function Yi(f) {
974
+ var o = Ee.get(f);
975
+ if (o)
976
+ return o.getDimensionsInfo ? o.getDimensionsInfo() : o.dimensions.slice();
945
977
  }
946
- function F(c, o) {
947
- Ee(J, c, o, rt, "visual");
978
+ function Bi(f, o) {
979
+ Pe(Q, f, o, at, "layout");
948
980
  }
949
- var qe = [];
950
- function Ee(c, o, r, s, p) {
951
- if (($e(o) || H(o)) && (r = o, o = s), !(Ke(qe, r) >= 0)) {
952
- qe.push(r);
953
- var u = et.wrapStageHandler(r, p);
954
- u.__prio = o, u.__raw = r, c.push(u);
981
+ function F(f, o) {
982
+ Pe(Q, f, o, st, "visual");
983
+ }
984
+ var $e = [];
985
+ function Pe(f, o, r, a, c) {
986
+ if ((Qe(o) || B(o)) && (r = o, o = a), !(Je($e, r) >= 0)) {
987
+ $e.push(r);
988
+ var u = rt.wrapStageHandler(r, c);
989
+ u.__prio = o, u.__raw = r, f.push(u);
955
990
  }
956
991
  }
957
- function Dr(c, o) {
958
- Se[c] = o;
992
+ function br(f, o) {
993
+ Ce[f] = o;
959
994
  }
960
- function Pi(c, o, r) {
961
- var s = lr("registerMap");
962
- s && s(c, o, r);
995
+ function Gi(f) {
996
+ vr({
997
+ createCanvas: f
998
+ });
963
999
  }
964
- var wi = sr;
965
- F(Ce, qt);
966
- F(Q, Kt);
967
- F(Q, $t);
968
- F(Ce, tr);
969
- F(Q, rr);
970
- F(it, fr);
971
- Lr(Je);
972
- xr(gr, Pt);
973
- Dr("default", jt);
974
- X({
975
- type: z,
976
- event: z,
977
- update: z
978
- }, W);
979
- X({
980
- type: ie,
981
- event: ie,
982
- update: ie
983
- }, W);
1000
+ function Wi(f, o, r) {
1001
+ var a = nt("registerMap");
1002
+ a && a(f, o, r);
1003
+ }
1004
+ function Xi(f) {
1005
+ var o = nt("getMap");
1006
+ return o && o(f);
1007
+ }
1008
+ var Zi = lr;
1009
+ F(Re, Jt);
1010
+ F(te, Qt);
1011
+ F(te, er);
1012
+ F(Re, ar);
1013
+ F(te, sr);
1014
+ F(ot, cr);
1015
+ kr(et);
1016
+ zr(Cr, Mt);
1017
+ br("default", tr);
984
1018
  X({
985
- type: ne,
986
- event: ne,
987
- update: ne
1019
+ type: b,
1020
+ event: b,
1021
+ update: b
988
1022
  }, W);
989
1023
  X({
990
1024
  type: ae,
@@ -996,24 +1030,46 @@ X({
996
1030
  event: se,
997
1031
  update: se
998
1032
  }, W);
999
- pt("light", Jt);
1000
- pt("dark", Qt);
1033
+ X({
1034
+ type: oe,
1035
+ event: oe,
1036
+ update: oe
1037
+ }, W);
1038
+ X({
1039
+ type: ue,
1040
+ event: ue,
1041
+ update: ue
1042
+ }, W);
1043
+ _t("light", rr);
1044
+ _t("dark", ir);
1045
+ var qi = {};
1001
1046
  export {
1002
- Ti as PRIORITY,
1003
- Ir as getInstanceByDom,
1004
- Ci as init,
1047
+ xi as PRIORITY,
1048
+ Vi as connect,
1049
+ qi as dataTool,
1050
+ Ii as dependencies,
1051
+ ki as disConnect,
1052
+ Vr as disconnect,
1053
+ zi as dispose,
1054
+ Yi as getCoordinateSystemDimensions,
1055
+ vt as getInstanceByDom,
1056
+ bi as getInstanceById,
1057
+ Xi as getMap,
1058
+ Ui as init,
1005
1059
  X as registerAction,
1006
- Ei as registerCoordinateSystem,
1007
- Ai as registerLayout,
1008
- Dr as registerLoading,
1009
- Ii as registerLocale,
1010
- Pi as registerMap,
1011
- yi as registerPostInit,
1012
- Ri as registerPostUpdate,
1013
- Lr as registerPreprocessor,
1014
- xr as registerProcessor,
1015
- pt as registerTheme,
1016
- wi as registerTransform,
1017
- ht as registerUpdateLifecycle,
1018
- F as registerVisual
1060
+ Ni as registerCoordinateSystem,
1061
+ Bi as registerLayout,
1062
+ br as registerLoading,
1063
+ ji as registerLocale,
1064
+ Wi as registerMap,
1065
+ Fi as registerPostInit,
1066
+ Hi as registerPostUpdate,
1067
+ kr as registerPreprocessor,
1068
+ zr as registerProcessor,
1069
+ _t as registerTheme,
1070
+ Zi as registerTransform,
1071
+ gt as registerUpdateLifecycle,
1072
+ F as registerVisual,
1073
+ Gi as setCanvasCreator,
1074
+ Li as version
1019
1075
  };