web-core-tcm 0.0.62 → 0.0.64

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 (470) 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/createApis.js +1 -7
  351. package/dist/src/api/authorization/alova/globals.d.ts +331 -250
  352. package/dist/src/api/authorization/alova/implement/index.js +4 -0
  353. package/dist/src/api/authorization/alova/index.d.ts +1 -1
  354. package/dist/src/api/authorization/alova/index.js +7 -6
  355. package/dist/src/api/check/alova/createApis.js +1 -7
  356. package/dist/src/api/check/alova/globals.d.ts +1227 -1126
  357. package/dist/src/api/check/alova/implement/index.js +5 -0
  358. package/dist/src/api/check/alova/index.d.ts +1 -1
  359. package/dist/src/api/check/alova/index.js +9 -11
  360. package/dist/src/api/check/check.js +2 -2
  361. package/dist/src/api/config/index.d.ts +1 -0
  362. package/dist/src/api/config/index.js +3 -1
  363. package/dist/src/api/doctor/alova/createApis.js +1 -7
  364. package/dist/src/api/doctor/alova/globals.d.ts +510 -419
  365. package/dist/src/api/doctor/alova/implement/index.js +4 -0
  366. package/dist/src/api/doctor/alova/index.d.ts +1 -1
  367. package/dist/src/api/doctor/alova/index.js +4 -4
  368. package/dist/src/api/index.d.ts +1 -0
  369. package/dist/src/api/index.js +30 -0
  370. package/dist/src/api/manager/alova/apiDefinitions.d.ts +62 -0
  371. package/dist/src/api/manager/alova/apiDefinitions.js +50 -0
  372. package/dist/src/api/manager/alova/createApis.d.ts +10 -0
  373. package/dist/src/api/manager/alova/createApis.js +49 -0
  374. package/dist/src/api/manager/alova/globals.d.ts +4890 -0
  375. package/dist/src/api/manager/alova/implement/department.d.ts +7 -0
  376. package/dist/src/api/manager/alova/implement/department.js +44 -0
  377. package/dist/src/api/manager/alova/implement/division.d.ts +7 -0
  378. package/dist/src/api/manager/alova/implement/division.js +44 -0
  379. package/dist/src/api/manager/alova/implement/hospital.d.ts +7 -0
  380. package/dist/src/api/manager/alova/implement/hospital.js +44 -0
  381. package/dist/src/api/manager/alova/implement/index.d.ts +3 -0
  382. package/dist/src/api/manager/alova/implement/index.js +8 -0
  383. package/dist/src/api/manager/alova/index.d.ts +6 -0
  384. package/dist/src/api/manager/alova/index.js +19 -0
  385. package/dist/src/api/manager/department.d.ts +30 -0
  386. package/dist/src/api/manager/department.js +35 -0
  387. package/dist/src/api/manager/division.d.ts +30 -0
  388. package/dist/src/api/manager/division.js +34 -0
  389. package/dist/src/api/manager/hospital.d.ts +32 -0
  390. package/dist/src/api/manager/hospital.js +36 -0
  391. package/dist/src/api/manager/index.d.ts +4 -0
  392. package/dist/src/api/manager/index.js +17 -0
  393. package/dist/src/api/metric/alova/implement/index.js +4 -0
  394. package/dist/src/api/metric/alova/index.js +1 -0
  395. package/dist/src/api/metric/index.js +5 -4
  396. package/dist/src/api/oauth/alova/createApis.js +1 -7
  397. package/dist/src/api/oauth/alova/globals.d.ts +403 -312
  398. package/dist/src/api/oauth/alova/implement/index.js +4 -0
  399. package/dist/src/api/oauth/alova/index.d.ts +1 -1
  400. package/dist/src/api/oauth/alova/index.js +12 -11
  401. package/dist/src/api/outpatient/alova/createApis.js +1 -7
  402. package/dist/src/api/outpatient/alova/globals.d.ts +634 -543
  403. package/dist/src/api/outpatient/alova/implement/index.js +4 -0
  404. package/dist/src/api/outpatient/alova/index.d.ts +1 -1
  405. package/dist/src/api/outpatient/alova/index.js +8 -9
  406. package/dist/src/api/patient/alova/createApis.js +1 -7
  407. package/dist/src/api/patient/alova/globals.d.ts +1627 -1480
  408. package/dist/src/api/patient/alova/implement/index.js +16 -0
  409. package/dist/src/api/patient/alova/implement/meta.js +44 -44
  410. package/dist/src/api/patient/alova/index.d.ts +1 -1
  411. package/dist/src/api/patient/alova/index.js +10 -14
  412. package/dist/src/api/patient/index.js +23 -22
  413. package/dist/src/api/patient/meta.d.ts +12 -0
  414. package/dist/src/api/patient/meta.js +100 -98
  415. package/dist/src/api/prescription/alova/apiDefinitions.d.ts +1 -0
  416. package/dist/src/api/prescription/alova/apiDefinitions.js +1 -0
  417. package/dist/src/api/prescription/alova/createApis.js +1 -7
  418. package/dist/src/api/prescription/alova/globals.d.ts +959 -812
  419. package/dist/src/api/prescription/alova/implement/index.js +6 -0
  420. package/dist/src/api/prescription/alova/index.d.ts +1 -1
  421. package/dist/src/api/prescription/alova/index.js +4 -4
  422. package/dist/src/api/scientist/alova/createApis.js +1 -7
  423. package/dist/src/api/scientist/alova/globals.d.ts +406 -315
  424. package/dist/src/api/scientist/alova/implement/index.js +4 -0
  425. package/dist/src/api/scientist/alova/index.d.ts +1 -1
  426. package/dist/src/api/scientist/alova/index.js +7 -8
  427. package/dist/src/components/core/TakeImageCollected.vue.js +2 -2
  428. package/dist/src/components/core/TakeImageCollected.vue2.js +82 -74
  429. package/dist/src/components/tcm/index.d.ts +1 -0
  430. package/dist/src/components/tcm/index.js +28 -0
  431. package/dist/src/components/tcm/inquirise/ComplaintViewCollected.vue.js +1 -1
  432. package/dist/src/components/tcm/inquirise/ComplaintViewCollected.vue2.js +42 -46
  433. package/dist/src/components/tcm/inquirise/ComplaintsRecognitionCollected.vue.js +1 -1
  434. package/dist/src/components/tcm/inquirise/ComplaintsRecognitionCollected.vue2.js +19 -23
  435. package/dist/src/components/tcm/inquirise/symptoms.js +33 -9
  436. package/dist/src/components/tcm/inspections/AppendixMetaCollected.vue.d.ts +7 -0
  437. package/dist/src/components/tcm/inspections/AppendixMetaCollected.vue.js +7 -0
  438. package/dist/src/components/tcm/inspections/AppendixMetaCollected.vue2.js +26 -0
  439. package/dist/src/components/tcm/inspections/CheckSceneMetaCollected.vue.js +2 -2
  440. package/dist/src/components/tcm/inspections/CheckSceneMetaCollected.vue2.js +13 -11
  441. package/dist/src/components/tcm/inspections/FaceMetaCollected.vue.js +2 -2
  442. package/dist/src/components/tcm/inspections/FaceMetaCollected.vue2.js +14 -16
  443. package/dist/src/components/tcm/inspections/InspectionDeviceTakeImageCollected.vue.js +1 -1
  444. package/dist/src/components/tcm/inspections/InspectionDeviceTakeImageCollected.vue2.js +141 -95
  445. package/dist/src/components/tcm/inspections/SceneMetaCollected.vue.js +4 -4
  446. package/dist/src/components/tcm/inspections/SceneMetaCollected.vue2.js +19 -19
  447. package/dist/src/components/tcm/inspections/TongueMetaCollected.vue.d.ts +3 -3
  448. package/dist/src/components/tcm/inspections/TongueMetaCollected.vue.js +2 -2
  449. package/dist/src/components/tcm/inspections/TongueMetaCollected.vue2.js +30 -13
  450. package/dist/src/components/tcm/inspections/index.d.ts +1 -0
  451. package/dist/src/components/tcm/lisems/EPPCollected.vue.js +1 -1
  452. package/dist/src/components/tcm/lisems/EPPCollected.vue2.js +3 -2
  453. package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue.d.ts +1 -1
  454. package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue.js +5 -833
  455. package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue2.js +816 -2
  456. package/dist/src/components/tcm/palpations/OnePulsationCollect.vue.d.ts +1 -1
  457. package/dist/src/components/tcm/palpations/OnePulsationCollect.vue.js +5 -148
  458. package/dist/src/components/tcm/palpations/OnePulsationCollect.vue2.js +147 -2
  459. package/dist/src/components/tcm/palpations/PulsationCollect.vue.js +2 -2
  460. package/dist/src/components/tcm/palpations/PulsationCollect.vue2.js +30 -32
  461. package/dist/src/index.js +65 -58
  462. package/dist/src/proto/index.js +10 -0
  463. package/dist/src/proto/types/Images_pb.js +7 -6
  464. package/dist/src/proto/types/WaveMap_pb.js +4 -3
  465. package/dist/src/util/helper.js +38 -2
  466. package/dist/src/util/number.js +64 -25
  467. package/dist/src/util/string.js +51 -5
  468. package/dist/web-core-tcm.css +1 -1
  469. package/package.json +5 -3
  470. package/dist/node_modules/vue-router/dist/devtools-EWN81iOl.js +0 -19
@@ -1,109 +1,109 @@
1
- import { isTypedArray as a, clone as y, isArray as O, isObject as S, hasOwn as N, isArrayLike as F, isNumber as I, each as T, createHashMap as D, map as U, keys as x, isString as L } from "../../../zrender/lib/core/util.js";
2
- import { SOURCE_FORMAT_TYPED_ARRAY as C, SOURCE_FORMAT_ORIGINAL as E, SOURCE_FORMAT_KEYED_COLUMNS as f, SOURCE_FORMAT_UNKNOWN as g, SERIES_LAYOUT_BY_COLUMN as B, SOURCE_FORMAT_ARRAY_ROWS as _, SERIES_LAYOUT_BY_ROW as A, SOURCE_FORMAT_OBJECT_ROWS as h } from "../util/types.js";
3
- import { getDataItemValue as M } from "../util/model.js";
4
- import { guessOrdinal as Y, BE_ORDINAL as b } from "./helper/sourceHelper.js";
5
- var c = (
1
+ import { clone as C, isTypedArray as m, isArray as O, isObject as S, hasOwn as N, isArrayLike as T, isString as D, isNumber as I, each as F, keys as U, createHashMap as d, map as x } from "../../../zrender/lib/core/util.js";
2
+ import { SOURCE_FORMAT_KEYED_COLUMNS as l, SOURCE_FORMAT_UNKNOWN as g, SERIES_LAYOUT_BY_COLUMN as L, SOURCE_FORMAT_TYPED_ARRAY as h, SOURCE_FORMAT_ORIGINAL as A, SOURCE_FORMAT_ARRAY_ROWS as _, SOURCE_FORMAT_OBJECT_ROWS as p, SERIES_LAYOUT_BY_ROW as E } from "../util/types.js";
3
+ import { getDataItemValue as B } from "../util/model.js";
4
+ import { guessOrdinal as M, BE_ORDINAL as Y } from "./helper/sourceHelper.js";
5
+ var a = (
6
6
  /** @class */
7
7
  /* @__PURE__ */ (function() {
8
8
  function n(t) {
9
- this.data = t.data || (t.sourceFormat === f ? {} : []), this.sourceFormat = t.sourceFormat || g, this.seriesLayoutBy = t.seriesLayoutBy || B, this.startIndex = t.startIndex || 0, this.dimensionsDetectedCount = t.dimensionsDetectedCount, this.metaRawOption = t.metaRawOption;
9
+ this.data = t.data || (t.sourceFormat === l ? {} : []), this.sourceFormat = t.sourceFormat || g, this.seriesLayoutBy = t.seriesLayoutBy || L, this.startIndex = t.startIndex || 0, this.dimensionsDetectedCount = t.dimensionsDetectedCount, this.metaRawOption = t.metaRawOption;
10
10
  var r = this.dimensionsDefine = t.dimensionsDefine;
11
11
  if (r)
12
12
  for (var i = 0; i < r.length; i++) {
13
13
  var e = r[i];
14
- e.type == null && Y(this, i) === b.Must && (e.type = "ordinal");
14
+ e.type == null && M(this, i) === Y.Must && (e.type = "ordinal");
15
15
  }
16
16
  }
17
17
  return n;
18
18
  })()
19
19
  );
20
- function J(n) {
21
- return n instanceof c;
20
+ function P(n) {
21
+ return n instanceof a;
22
22
  }
23
- function P(n, t, r) {
24
- r = r || d(n);
25
- var i = t.seriesLayoutBy, e = k(n, r, i, t.sourceHeader, t.dimensions), o = new c({
23
+ function V(n, t, r) {
24
+ r = r || b(n);
25
+ var i = t.seriesLayoutBy, e = k(n, r, i, t.sourceHeader, t.dimensions), o = new a({
26
26
  data: n,
27
27
  sourceFormat: r,
28
28
  seriesLayoutBy: i,
29
29
  dimensionsDefine: e.dimensionsDefine,
30
30
  startIndex: e.startIndex,
31
31
  dimensionsDetectedCount: e.dimensionsDetectedCount,
32
- metaRawOption: y(t)
32
+ metaRawOption: C(t)
33
33
  });
34
34
  return o;
35
35
  }
36
- function V(n) {
37
- return new c({
36
+ function q(n) {
37
+ return new a({
38
38
  data: n,
39
- sourceFormat: a(n) ? C : E
39
+ sourceFormat: m(n) ? h : A
40
40
  });
41
41
  }
42
- function q(n) {
43
- return new c({
42
+ function Q(n) {
43
+ return new a({
44
44
  data: n.data,
45
45
  sourceFormat: n.sourceFormat,
46
46
  seriesLayoutBy: n.seriesLayoutBy,
47
- dimensionsDefine: y(n.dimensionsDefine),
47
+ dimensionsDefine: C(n.dimensionsDefine),
48
48
  startIndex: n.startIndex,
49
49
  dimensionsDetectedCount: n.dimensionsDetectedCount
50
50
  });
51
51
  }
52
- function d(n) {
52
+ function b(n) {
53
53
  var t = g;
54
- if (a(n))
55
- t = C;
54
+ if (m(n))
55
+ t = h;
56
56
  else if (O(n)) {
57
57
  n.length === 0 && (t = _);
58
58
  for (var r = 0, i = n.length; r < i; r++) {
59
59
  var e = n[r];
60
60
  if (e != null) {
61
- if (O(e) || a(e)) {
61
+ if (O(e) || m(e)) {
62
62
  t = _;
63
63
  break;
64
64
  } else if (S(e)) {
65
- t = h;
65
+ t = p;
66
66
  break;
67
67
  }
68
68
  }
69
69
  }
70
70
  } else if (S(n)) {
71
71
  for (var o in n)
72
- if (N(n, o) && F(n[o])) {
73
- t = f;
72
+ if (N(n, o) && T(n[o])) {
73
+ t = l;
74
74
  break;
75
75
  }
76
76
  }
77
77
  return t;
78
78
  }
79
79
  function k(n, t, r, i, e) {
80
- var o, u;
80
+ var o, s;
81
81
  if (!n)
82
82
  return {
83
- dimensionsDefine: p(e),
84
- startIndex: u,
83
+ dimensionsDefine: R(e),
84
+ startIndex: s,
85
85
  dimensionsDetectedCount: o
86
86
  };
87
87
  if (t === _) {
88
- var l = n;
89
- i === "auto" || i == null ? v(function(s) {
90
- s != null && s !== "-" && (L(s) ? u == null && (u = 1) : u = 0);
91
- }, r, l, 10) : u = I(i) ? i : i ? 1 : 0, !e && u === 1 && (e = [], v(function(s, m) {
92
- e[m] = s != null ? s + "" : "";
93
- }, r, l, 1 / 0)), o = e ? e.length : r === A ? l.length : l[0] ? l[0].length : null;
94
- } else if (t === h)
88
+ var f = n;
89
+ i === "auto" || i == null ? y(function(u) {
90
+ u != null && u !== "-" && (D(u) ? s == null && (s = 1) : s = 0);
91
+ }, r, f, 10) : s = I(i) ? i : i ? 1 : 0, !e && s === 1 && (e = [], y(function(u, c) {
92
+ e[c] = u != null ? u + "" : "";
93
+ }, r, f, 1 / 0)), o = e ? e.length : r === E ? f.length : f[0] ? f[0].length : null;
94
+ } else if (t === p)
95
95
  e || (e = W(n));
96
- else if (t === f)
97
- e || (e = [], T(n, function(s, m) {
98
- e.push(m);
96
+ else if (t === l)
97
+ e || (e = [], F(n, function(u, c) {
98
+ e.push(c);
99
99
  }));
100
- else if (t === E) {
101
- var R = M(n[0]);
102
- o = O(R) && R.length || 1;
100
+ else if (t === A) {
101
+ var v = B(n[0]);
102
+ o = O(v) && v.length || 1;
103
103
  }
104
104
  return {
105
- startIndex: u,
106
- dimensionsDefine: p(e),
105
+ startIndex: s,
106
+ dimensionsDefine: R(e),
107
107
  dimensionsDetectedCount: o
108
108
  };
109
109
  }
@@ -111,12 +111,12 @@ function W(n) {
111
111
  for (var t = 0, r; t < n.length && !(r = n[t++]); )
112
112
  ;
113
113
  if (r)
114
- return x(r);
114
+ return U(r);
115
115
  }
116
- function p(n) {
116
+ function R(n) {
117
117
  if (n) {
118
- var t = D();
119
- return U(n, function(r, i) {
118
+ var t = d();
119
+ return x(n, function(r, i) {
120
120
  r = S(r) ? r : {
121
121
  name: r
122
122
  };
@@ -135,23 +135,23 @@ function p(n) {
135
135
  });
136
136
  }
137
137
  }
138
- function v(n, t, r, i) {
139
- if (t === A)
138
+ function y(n, t, r, i) {
139
+ if (t === E)
140
140
  for (var e = 0; e < r.length && e < i; e++)
141
141
  n(r[e] ? r[e][0] : null, e);
142
142
  else
143
143
  for (var o = r[0] || [], e = 0; e < o.length && e < i; e++)
144
144
  n(o[e], e);
145
145
  }
146
- function Q(n) {
146
+ function X(n) {
147
147
  var t = n.sourceFormat;
148
- return t === h || t === f;
148
+ return t === p || t === l;
149
149
  }
150
150
  export {
151
- q as cloneSourceShallow,
152
- P as createSource,
153
- V as createSourceFromSeriesDataOption,
154
- d as detectSourceFormat,
155
- J as isSourceInstance,
156
- Q as shouldRetrieveDataByName
151
+ Q as cloneSourceShallow,
152
+ V as createSource,
153
+ q as createSourceFromSeriesDataOption,
154
+ b as detectSourceFormat,
155
+ P as isSourceInstance,
156
+ X as shouldRetrieveDataByName
157
157
  };
@@ -1,4 +1,4 @@
1
- import { isArray as g, isFunction as I, isString as y } from "../../../zrender/lib/core/util.js";
1
+ import { isFunction as g, isString as I, isArray as y } from "../../../zrender/lib/core/util.js";
2
2
  import m from "./helper/linkSeriesData.js";
3
3
  import x from "./SeriesData.js";
4
4
  import N from "./helper/createDimensions.js";
@@ -12,7 +12,7 @@ var D = (
12
12
  return n.prototype.isRemoved = function() {
13
13
  return this.dataIndex < 0;
14
14
  }, n.prototype.eachNode = function(t, e, r) {
15
- I(t) && (r = e, e = t, t = null), t = t || {}, y(t) && (t = {
15
+ g(t) && (r = e, e = t, t = null), t = t || {}, I(t) && (t = {
16
16
  order: t
17
17
  });
18
18
  var a = t.order || "preorder", o = this[t.attr || "children"], i;
@@ -123,7 +123,7 @@ var D = (
123
123
  s(t);
124
124
  function s(d, c) {
125
125
  var l = d.value;
126
- i = Math.max(i, g(l) ? l.length : 1), o.push(d);
126
+ i = Math.max(i, y(l) ? l.length : 1), o.push(d);
127
127
  var h = new D(T(d.name, ""), a);
128
128
  c ? w(h, c) : a.root = h, a._nodes.push(h);
129
129
  var p = d.children;
@@ -1,4 +1,4 @@
1
- import { createHashMap as p, isObject as f, retrieve2 as S } from "../../../../zrender/lib/core/util.js";
1
+ import { retrieve2 as p, createHashMap as f, isObject as S } from "../../../../zrender/lib/core/util.js";
2
2
  import { makeInner as C } from "../../util/model.js";
3
3
  import { shouldRetrieveDataByName as O } from "../Source.js";
4
4
  var _ = C(), g = {
@@ -18,7 +18,7 @@ var _ = C(), g = {
18
18
  }, n.prototype._updateDimOmitted = function(t) {
19
19
  this._dimOmitted = t, t && (this._dimNameMap || (this._dimNameMap = M(this.source)));
20
20
  }, n.prototype.getSourceDimensionIndex = function(t) {
21
- return S(this._dimNameMap.get(t), -1);
21
+ return p(this._dimNameMap.get(t), -1);
22
22
  }, n.prototype.getSourceDimension = function(t) {
23
23
  var i = this.source.dimensionsDefine;
24
24
  if (i)
@@ -64,8 +64,8 @@ function b(n) {
64
64
  return n instanceof N;
65
65
  }
66
66
  function y(n) {
67
- for (var t = p(), i = 0; i < (n || []).length; i++) {
68
- var a = n[i], e = f(a) ? a.name : a;
67
+ for (var t = f(), i = 0; i < (n || []).length; i++) {
68
+ var a = n[i], e = S(a) ? a.name : a;
69
69
  e != null && t.get(e) == null && t.set(e, i);
70
70
  }
71
71
  return t;
@@ -1,34 +1,37 @@
1
1
  import { VISUAL_DIMENSIONS as k } from "../../util/types.js";
2
2
  import q from "../SeriesDimensionDefine.js";
3
- import { createHashMap as L, isString as E, each as M, extend as G, defaults as z, isObject as T } from "../../../../zrender/lib/core/util.js";
3
+ import { createHashMap as L, isObject as T, isString as E, each as M, extend as G, defaults as z } from "../../../../zrender/lib/core/util.js";
4
4
  import { isSourceInstance as J, createSourceFromSeriesDataOption as P } from "../Source.js";
5
5
  import { CtorInt32Array as Q } from "../DataStore.js";
6
6
  import { normalizeToArray as B } from "../../util/model.js";
7
7
  import { guessOrdinal as X, BE_ORDINAL as Y } from "./sourceHelper.js";
8
8
  import { shouldOmitUnusedDimensions as $, ensureSourceDimNameMap as R, createDimNameMap as I, SeriesDataSchema as nn } from "./SeriesDataSchema.js";
9
- function mn(e, i) {
10
- J(e) || (e = P(e)), i = i || {};
11
- var d = i.coordDimensions || [], f = i.dimensionsDefine || e.dimensionsDefine || [], u = L(), t = [], s = en(e, d, f, i.dimensionsCount), O = i.canOmitUnusedDimensions && $(s), F = f === e.dimensionsDefine, K = F ? R(e) : I(f), U = i.encodeDefine;
12
- !U && i.encodeDefaulter && (U = i.encodeDefaulter(e, s));
9
+ function Dn(e, a) {
10
+ return en(e, a).dimensions;
11
+ }
12
+ function en(e, a) {
13
+ J(e) || (e = P(e)), a = a || {};
14
+ var d = a.coordDimensions || [], f = a.dimensionsDefine || e.dimensionsDefine || [], u = L(), t = [], s = rn(e, d, f, a.dimensionsCount), O = a.canOmitUnusedDimensions && $(s), F = f === e.dimensionsDefine, K = F ? R(e) : I(f), U = a.encodeDefine;
15
+ !U && a.encodeDefaulter && (U = a.encodeDefaulter(e, s));
13
16
  for (var S = L(U), N = new Q(s), c = 0; c < N.length; c++)
14
17
  N[c] = -1;
15
- function p(a) {
16
- var r = N[a];
18
+ function p(i) {
19
+ var r = N[i];
17
20
  if (r < 0) {
18
- var o = f[a], v = T(o) ? o : {
21
+ var o = f[i], v = T(o) ? o : {
19
22
  name: o
20
23
  }, n = new q(), D = v.name;
21
24
  D != null && K.get(D) != null && (n.name = n.displayName = D), v.type != null && (n.type = v.type), v.displayName != null && (n.displayName = v.displayName);
22
25
  var l = t.length;
23
- return N[a] = l, n.storeDimIndex = a, t.push(n), n;
26
+ return N[i] = l, n.storeDimIndex = i, t.push(n), n;
24
27
  }
25
28
  return t[r];
26
29
  }
27
30
  if (!O)
28
31
  for (var c = 0; c < s; c++)
29
32
  p(c);
30
- S.each(function(a, r) {
31
- var o = B(a).slice();
33
+ S.each(function(i, r) {
34
+ var o = B(i).slice();
32
35
  if (o.length === 1 && !E(o[0]) && o[0] < 0) {
33
36
  S.set(r, !1);
34
37
  return;
@@ -40,12 +43,12 @@ function mn(e, i) {
40
43
  });
41
44
  });
42
45
  var g = 0;
43
- M(d, function(a) {
46
+ M(d, function(i) {
44
47
  var r, o, v, n;
45
- if (E(a))
46
- r = a, n = {};
48
+ if (E(i))
49
+ r = i, n = {};
47
50
  else {
48
- n = a, r = n.name;
51
+ n = i, r = n.name;
49
52
  var D = n.ordinalMeta;
50
53
  n.ordinalMeta = null, n = G({}, n), n.ordinalMeta = D, o = n.dimsDef, v = n.otherDims, n.name = n.coordDim = n.coordDimIndex = n.dimsDef = n.otherDims = null;
51
54
  }
@@ -69,25 +72,25 @@ function mn(e, i) {
69
72
  });
70
73
  }
71
74
  });
72
- function _(a, r, o) {
73
- k.get(r) != null ? a.otherDims[r] = o : (a.coordDim = r, a.coordDimIndex = o, u.set(r, !0));
75
+ function _(i, r, o) {
76
+ k.get(r) != null ? i.otherDims[r] = o : (i.coordDim = r, i.coordDimIndex = o, u.set(r, !0));
74
77
  }
75
- var A = i.generateCoord, C = i.generateCoordCount, H = C != null;
78
+ var A = a.generateCoord, C = a.generateCoordCount, H = C != null;
76
79
  C = A ? C || 1 : 0;
77
80
  var V = A || "value";
78
- function b(a) {
79
- a.name == null && (a.name = a.coordDim);
81
+ function b(i) {
82
+ i.name == null && (i.name = i.coordDim);
80
83
  }
81
84
  if (O)
82
- M(t, function(a) {
83
- b(a);
84
- }), t.sort(function(a, r) {
85
- return a.storeDimIndex - r.storeDimIndex;
85
+ M(t, function(i) {
86
+ b(i);
87
+ }), t.sort(function(i, r) {
88
+ return i.storeDimIndex - r.storeDimIndex;
86
89
  });
87
90
  else
88
91
  for (var x = 0; x < s; x++) {
89
92
  var m = p(x), W = m.coordDim;
90
- W == null && (m.coordDim = rn(V, u, H), m.coordDimIndex = 0, (!A || C <= 0) && (m.isExtraCoord = !0), C--), b(m), m.type == null && (X(e, x) === Y.Must || m.isExtraCoord && (m.otherDims.itemName != null || m.otherDims.seriesName != null)) && (m.type = "ordinal");
93
+ W == null && (m.coordDim = on(V, u, H), m.coordDimIndex = 0, (!A || C <= 0) && (m.isExtraCoord = !0), C--), b(m), m.type == null && (X(e, x) === Y.Must || m.isExtraCoord && (m.otherDims.itemName != null || m.otherDims.seriesName != null)) && (m.type = "ordinal");
91
94
  }
92
95
  return an(t), new nn({
93
96
  source: e,
@@ -97,26 +100,27 @@ function mn(e, i) {
97
100
  });
98
101
  }
99
102
  function an(e) {
100
- for (var i = L(), d = 0; d < e.length; d++) {
101
- var f = e[d], u = f.name, t = i.get(u) || 0;
102
- t > 0 && (f.name = u + (t - 1)), t++, i.set(u, t);
103
+ for (var a = L(), d = 0; d < e.length; d++) {
104
+ var f = e[d], u = f.name, t = a.get(u) || 0;
105
+ t > 0 && (f.name = u + (t - 1)), t++, a.set(u, t);
103
106
  }
104
107
  }
105
- function en(e, i, d, f) {
106
- var u = Math.max(e.dimensionsDetectedCount || 1, i.length, d.length, f || 0);
107
- return M(i, function(t) {
108
+ function rn(e, a, d, f) {
109
+ var u = Math.max(e.dimensionsDetectedCount || 1, a.length, d.length, f || 0);
110
+ return M(a, function(t) {
108
111
  var s;
109
112
  T(t) && (s = t.dimsDef) && (u = Math.max(u, s.length));
110
113
  }), u;
111
114
  }
112
- function rn(e, i, d) {
113
- if (d || i.hasKey(e)) {
114
- for (var f = 0; i.hasKey(e + f); )
115
+ function on(e, a, d) {
116
+ if (d || a.hasKey(e)) {
117
+ for (var f = 0; a.hasKey(e + f); )
115
118
  f++;
116
119
  e += f;
117
120
  }
118
- return i.set(e, !0), e;
121
+ return a.set(e, !0), e;
119
122
  }
120
123
  export {
121
- mn as default
124
+ Dn as createDimensions,
125
+ en as default
122
126
  };
@@ -1,15 +1,15 @@
1
- import { each as V, extend as N, bind as C } from "../../../../zrender/lib/core/util.js";
2
- import { getDataItemValue as z } from "../../util/model.js";
3
- import { isSourceInstance as W, createSourceFromSeriesDataOption as b } from "../Source.js";
4
- import { SOURCE_FORMAT_ORIGINAL as y, SOURCE_FORMAT_ARRAY_ROWS as l, SOURCE_FORMAT_OBJECT_ROWS as O, SOURCE_FORMAT_KEYED_COLUMNS as A, SOURCE_FORMAT_TYPED_ARRAY as I, SERIES_LAYOUT_BY_COLUMN as F, SERIES_LAYOUT_BY_ROW as w } from "../../util/types.js";
5
- var h, d, m, E, U, $ = (
1
+ import { extend as G, bind as E, each as V, isObject as b } from "../../../../zrender/lib/core/util.js";
2
+ import { getDataItemValue as B } from "../../util/model.js";
3
+ import { isSourceInstance as W, createSourceFromSeriesDataOption as x } from "../Source.js";
4
+ import { SOURCE_FORMAT_TYPED_ARRAY as A, SOURCE_FORMAT_ARRAY_ROWS as d, SERIES_LAYOUT_BY_COLUMN as F, SERIES_LAYOUT_BY_ROW as T, SOURCE_FORMAT_OBJECT_ROWS as I, SOURCE_FORMAT_KEYED_COLUMNS as w, SOURCE_FORMAT_ORIGINAL as y } from "../../util/types.js";
5
+ var m, h, _, z, C, rt = (
6
6
  /** @class */
7
7
  (function() {
8
8
  function t(r, n) {
9
- var a = W(r) ? r : b(r);
10
- this._source = a;
11
- var i = this._data = a.data;
12
- a.sourceFormat === I && (this._offset = 0, this._dimSize = n, this._data = i), U(this, i, a);
9
+ var e = W(r) ? r : x(r);
10
+ this._source = e;
11
+ var i = this._data = e.data;
12
+ e.sourceFormat === A && (this._offset = 0, this._dimSize = n, this._data = i), C(this, i, e);
13
13
  }
14
14
  return t.prototype.getSource = function() {
15
15
  return this._source;
@@ -23,143 +23,154 @@ var h, d, m, E, U, $ = (
23
23
  r.pure = !1, r.persistent = !0;
24
24
  })(), t.internalField = (function() {
25
25
  var r;
26
- U = function(e, o, u) {
27
- var p = u.sourceFormat, c = u.seriesLayoutBy, f = u.startIndex, v = u.dimensionsDefine, _ = E[T(p, c)];
28
- if (N(e, _), p === I)
29
- e.getItem = n, e.count = i, e.fillStorage = a;
26
+ C = function(a, o, u) {
27
+ var p = u.sourceFormat, c = u.seriesLayoutBy, s = u.startIndex, l = u.dimensionsDefine, v = z[M(p, c)];
28
+ if (G(a, v), p === A)
29
+ a.getItem = n, a.count = i, a.fillStorage = e;
30
30
  else {
31
- var S = K(p, c);
32
- e.getItem = C(S, null, o, f, v);
31
+ var S = P(p, c);
32
+ a.getItem = E(S, null, o, s, l);
33
33
  var D = J(p, c);
34
- e.count = C(D, null, o, f, v);
34
+ a.count = E(D, null, o, s, l);
35
35
  }
36
36
  };
37
- var n = function(e, o) {
38
- e = e - this._offset, o = o || [];
39
- for (var u = this._data, p = this._dimSize, c = p * e, f = 0; f < p; f++)
40
- o[f] = u[c + f];
37
+ var n = function(a, o) {
38
+ a = a - this._offset, o = o || [];
39
+ for (var u = this._data, p = this._dimSize, c = p * a, s = 0; s < p; s++)
40
+ o[s] = u[c + s];
41
41
  return o;
42
- }, a = function(e, o, u, p) {
43
- for (var c = this._data, f = this._dimSize, v = 0; v < f; v++) {
44
- for (var _ = p[v], S = _[0] == null ? 1 / 0 : _[0], D = _[1] == null ? -1 / 0 : _[1], B = o - e, G = u[v], R = 0; R < B; R++) {
45
- var g = c[R * f + v];
46
- G[e + R] = g, g < S && (S = g), g > D && (D = g);
42
+ }, e = function(a, o, u, p) {
43
+ for (var c = this._data, s = this._dimSize, l = 0; l < s; l++) {
44
+ for (var v = p[l], S = v[0] == null ? 1 / 0 : v[0], D = v[1] == null ? -1 / 0 : v[1], Y = o - a, N = u[l], R = 0; R < Y; R++) {
45
+ var g = c[R * s + l];
46
+ N[a + R] = g, g < S && (S = g), g > D && (D = g);
47
47
  }
48
- _[0] = S, _[1] = D;
48
+ v[0] = S, v[1] = D;
49
49
  }
50
50
  }, i = function() {
51
51
  return this._data ? this._data.length / this._dimSize : 0;
52
52
  };
53
- E = (r = {}, r[l + "_" + F] = {
53
+ z = (r = {}, r[d + "_" + F] = {
54
54
  pure: !0,
55
- appendData: s
56
- }, r[l + "_" + w] = {
55
+ appendData: f
56
+ }, r[d + "_" + T] = {
57
57
  pure: !0,
58
58
  appendData: function() {
59
59
  throw new Error('Do not support appendData when set seriesLayoutBy: "row".');
60
60
  }
61
- }, r[O] = {
61
+ }, r[I] = {
62
62
  pure: !0,
63
- appendData: s
64
- }, r[A] = {
63
+ appendData: f
64
+ }, r[w] = {
65
65
  pure: !0,
66
- appendData: function(e) {
66
+ appendData: function(a) {
67
67
  var o = this._data;
68
- V(e, function(u, p) {
69
- for (var c = o[p] || (o[p] = []), f = 0; f < (u || []).length; f++)
70
- c.push(u[f]);
68
+ V(a, function(u, p) {
69
+ for (var c = o[p] || (o[p] = []), s = 0; s < (u || []).length; s++)
70
+ c.push(u[s]);
71
71
  });
72
72
  }
73
73
  }, r[y] = {
74
- appendData: s
75
- }, r[I] = {
74
+ appendData: f
75
+ }, r[A] = {
76
76
  persistent: !1,
77
77
  pure: !0,
78
- appendData: function(e) {
79
- this._data = e;
78
+ appendData: function(a) {
79
+ this._data = a;
80
80
  },
81
81
  // Clean self if data is already used.
82
82
  clean: function() {
83
83
  this._offset += this.count(), this._data = null;
84
84
  }
85
85
  }, r);
86
- function s(e) {
87
- for (var o = 0; o < e.length; o++)
88
- this._data.push(e[o]);
86
+ function f(a) {
87
+ for (var o = 0; o < a.length; o++)
88
+ this._data.push(a[o]);
89
89
  }
90
90
  })(), t;
91
91
  })()
92
- ), L = function(t, r, n, a) {
93
- return t[a];
94
- }, x = (h = {}, h[l + "_" + F] = function(t, r, n, a) {
95
- return t[a + r];
96
- }, h[l + "_" + w] = function(t, r, n, a, i) {
97
- a += r;
98
- for (var s = i || [], e = t, o = 0; o < e.length; o++) {
99
- var u = e[o];
100
- s[o] = u ? u[a] : null;
92
+ ), L = function(t, r, n, e) {
93
+ return t[e];
94
+ }, K = (m = {}, m[d + "_" + F] = function(t, r, n, e) {
95
+ return t[e + r];
96
+ }, m[d + "_" + T] = function(t, r, n, e, i) {
97
+ e += r;
98
+ for (var f = i || [], a = t, o = 0; o < a.length; o++) {
99
+ var u = a[o];
100
+ f[o] = u ? u[e] : null;
101
101
  }
102
- return s;
103
- }, h[O] = L, h[A] = function(t, r, n, a, i) {
104
- for (var s = i || [], e = 0; e < n.length; e++) {
105
- var o = n[e].name, u = t[o];
106
- s[e] = u ? u[a] : null;
102
+ return f;
103
+ }, m[I] = L, m[w] = function(t, r, n, e, i) {
104
+ for (var f = i || [], a = 0; a < n.length; a++) {
105
+ var o = n[a].name, u = t[o];
106
+ f[a] = u ? u[e] : null;
107
107
  }
108
- return s;
109
- }, h[y] = L, h);
110
- function K(t, r) {
111
- var n = x[T(t, r)];
108
+ return f;
109
+ }, m[y] = L, m);
110
+ function P(t, r) {
111
+ var n = K[M(t, r)];
112
112
  return n;
113
113
  }
114
- var Y = function(t, r, n) {
114
+ var U = function(t, r, n) {
115
115
  return t.length;
116
- }, P = (d = {}, d[l + "_" + F] = function(t, r, n) {
116
+ }, j = (h = {}, h[d + "_" + F] = function(t, r, n) {
117
117
  return Math.max(0, t.length - r);
118
- }, d[l + "_" + w] = function(t, r, n) {
119
- var a = t[0];
120
- return a ? Math.max(0, a.length - r) : 0;
121
- }, d[O] = Y, d[A] = function(t, r, n) {
122
- var a = n[0].name, i = t[a];
118
+ }, h[d + "_" + T] = function(t, r, n) {
119
+ var e = t[0];
120
+ return e ? Math.max(0, e.length - r) : 0;
121
+ }, h[I] = U, h[w] = function(t, r, n) {
122
+ var e = n[0].name, i = t[e];
123
123
  return i ? i.length : 0;
124
- }, d[y] = Y, d);
124
+ }, h[y] = U, h);
125
125
  function J(t, r) {
126
- var n = P[T(t, r)];
126
+ var n = j[M(t, r)];
127
127
  return n;
128
128
  }
129
- var M = function(t, r, n) {
129
+ var O = function(t, r, n) {
130
130
  return t[r];
131
- }, j = (m = {}, m[l] = M, m[O] = function(t, r, n) {
131
+ }, q = (_ = {}, _[d] = O, _[I] = function(t, r, n) {
132
132
  return t[n];
133
- }, m[A] = M, m[y] = function(t, r, n) {
134
- var a = z(t);
135
- return a instanceof Array ? a[r] : a;
136
- }, m[I] = M, m);
137
- function q(t) {
138
- var r = j[t];
133
+ }, _[w] = O, _[y] = function(t, r, n) {
134
+ var e = B(t);
135
+ return e instanceof Array ? e[r] : e;
136
+ }, _[A] = O, _);
137
+ function H(t) {
138
+ var r = q[t];
139
139
  return r;
140
140
  }
141
- function T(t, r) {
142
- return t === l ? t + "_" + r : t;
141
+ function M(t, r) {
142
+ return t === d ? t + "_" + r : t;
143
143
  }
144
- function k(t, r, n) {
144
+ function et(t, r, n) {
145
145
  if (t) {
146
- var a = t.getRawDataItem(r);
147
- if (a != null) {
148
- var i = t.getStore(), s = i.getSource().sourceFormat;
146
+ var e = t.getRawDataItem(r);
147
+ if (e != null) {
148
+ var i = t.getStore(), f = i.getSource().sourceFormat;
149
149
  if (n != null) {
150
- var e = t.getDimensionIndex(n), o = i.getDimensionProperty(e);
151
- return q(s)(a, e, o);
150
+ var a = t.getDimensionIndex(n), o = i.getDimensionProperty(a);
151
+ return H(f)(e, a, o);
152
152
  } else {
153
- var u = a;
154
- return s === y && (u = z(a)), u;
153
+ var u = e;
154
+ return f === y && (u = B(e)), u;
155
155
  }
156
156
  }
157
157
  }
158
158
  }
159
+ function at(t, r, n) {
160
+ if (t) {
161
+ var e = t.getStore().getSource().sourceFormat;
162
+ if (!(e !== y && e !== I)) {
163
+ var i = t.getRawDataItem(r);
164
+ if (e === y && !b(i) && (i = null), i)
165
+ return i[n];
166
+ }
167
+ }
168
+ }
159
169
  export {
160
- $ as DefaultDataProvider,
170
+ rt as DefaultDataProvider,
161
171
  J as getRawSourceDataCounter,
162
- K as getRawSourceItemGetter,
163
- q as getRawSourceValueGetter,
164
- k as retrieveRawValue
172
+ P as getRawSourceItemGetter,
173
+ H as getRawSourceValueGetter,
174
+ at as retrieveRawAttr,
175
+ et as retrieveRawValue
165
176
  };