@shjjs/visual-ui 1.0.13 → 1.0.15

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 (1032) hide show
  1. package/es/commons/core/datasource/core/api.d.ts +1 -0
  2. package/es/commons/core/datasource/core/api.mjs +32 -0
  3. package/es/commons/core/datasource/core/static.d.ts +1 -0
  4. package/es/commons/core/datasource/core/static.mjs +16 -0
  5. package/es/commons/core/datasource/core/url.d.ts +1 -0
  6. package/es/commons/core/datasource/core/url.mjs +17 -0
  7. package/es/commons/core/datasource/core/variable.d.ts +1 -0
  8. package/es/commons/core/datasource/core/variable.mjs +17 -0
  9. package/es/commons/core/datasource/core/ws.d.ts +32 -0
  10. package/es/commons/core/datasource/core/ws.mjs +138 -0
  11. package/es/commons/core/datasource/index.d.ts +63 -0
  12. package/es/commons/core/datasource/index.mjs +191 -0
  13. package/es/commons/core/datasource/utils/request.d.ts +3 -0
  14. package/es/commons/core/datasource/utils/request.mjs +7 -0
  15. package/es/commons/core/datasource/utils/utils.d.ts +50 -0
  16. package/es/commons/core/datasource/utils/utils.mjs +123 -0
  17. package/es/commons/core/datasource/utils/wsManager.d.ts +16 -0
  18. package/es/commons/core/datasource/utils/wsManager.mjs +78 -0
  19. package/es/commons/core/earth/base64/Aperture.d.ts +1 -0
  20. package/es/commons/core/earth/base64/Aperture.mjs +4 -0
  21. package/es/commons/core/earth/base64/Callout.d.ts +1 -0
  22. package/es/commons/core/earth/base64/Callout.mjs +4 -0
  23. package/es/commons/core/earth/base64/CalloutAperture.d.ts +1 -0
  24. package/es/commons/core/earth/base64/CalloutAperture.mjs +4 -0
  25. package/es/commons/core/earth/base64/CloudCover.d.ts +1 -0
  26. package/es/commons/core/earth/base64/CloudCover.mjs +4 -0
  27. package/es/commons/core/earth/base64/LightColumn.d.ts +1 -0
  28. package/es/commons/core/earth/base64/LightColumn.mjs +4 -0
  29. package/es/commons/core/earth/base64/StarrySky.d.ts +1 -0
  30. package/es/commons/core/earth/base64/StarrySky.mjs +4 -0
  31. package/es/commons/core/earth/base64/rotation/innner.d.ts +1 -0
  32. package/es/commons/core/earth/base64/rotation/innner.mjs +4 -0
  33. package/es/commons/core/earth/base64/rotation/out.d.ts +1 -0
  34. package/es/commons/core/earth/base64/rotation/out.mjs +4 -0
  35. package/es/commons/core/earth/border.vue.d.ts +70 -0
  36. package/es/commons/core/earth/border.vue.mjs +19 -0
  37. package/es/commons/core/earth/border.vue2.mjs +4 -0
  38. package/es/commons/core/earth/geojson/china-border.d.ts +22 -0
  39. package/es/commons/core/earth/geojson/china-border.mjs +29305 -0
  40. package/es/commons/core/earth/geojson/china.d.ts +84 -0
  41. package/es/commons/core/earth/geojson/china.mjs +103022 -0
  42. package/es/commons/core/earth/geojson/world.d.ts +25 -0
  43. package/es/commons/core/earth/geojson/world.mjs +43220 -0
  44. package/es/commons/core/earth/interface.d.ts +190 -0
  45. package/es/commons/core/earth/main.d.ts +94 -0
  46. package/es/commons/core/earth/main.mjs +504 -0
  47. package/es/commons/core/earth/main.vue.d.ts +834 -0
  48. package/es/commons/core/earth/main.vue.mjs +7 -0
  49. package/es/commons/core/earth/main.vue2.mjs +290 -0
  50. package/es/commons/core/earth/types.d.ts +108 -0
  51. package/es/commons/core/earth/utils/GradientLine.d.ts +17 -0
  52. package/es/commons/core/earth/utils/GradientLine.mjs +78 -0
  53. package/es/commons/core/earth/utils/composer.d.ts +38 -0
  54. package/es/commons/core/earth/utils/composer.mjs +40 -0
  55. package/es/commons/core/earth/utils/controls/obt.d.ts +9 -0
  56. package/es/commons/core/earth/utils/controls/obt.mjs +19 -0
  57. package/es/commons/core/earth/utils/interface.d.ts +134 -0
  58. package/es/commons/core/earth/utils/label.d.ts +4 -0
  59. package/es/commons/core/earth/utils/label.mjs +15 -0
  60. package/es/commons/core/earth/utils/line2.d.ts +3 -0
  61. package/es/commons/core/earth/utils/line2.mjs +21 -0
  62. package/es/commons/core/earth/utils/scene.d.ts +28 -0
  63. package/es/commons/core/earth/utils/scene.mjs +120 -0
  64. package/es/commons/core/useChart.d.ts +15 -0
  65. package/es/commons/core/useChart.mjs +115 -0
  66. package/es/commons/utils/babylon/ColorConvert.d.ts +3 -0
  67. package/es/commons/utils/babylon/ColorConvert.mjs +21 -0
  68. package/es/commons/utils/clickOutSide.d.ts +5 -0
  69. package/es/commons/utils/clickOutSide.mjs +13 -0
  70. package/es/commons/utils/cloneSeries.d.ts +7 -0
  71. package/es/commons/utils/cloneSeries.mjs +12 -0
  72. package/es/commons/utils/hoverLoop.d.ts +10 -0
  73. package/es/commons/utils/hoverLoop.mjs +43 -0
  74. package/es/commons/utils/imgPreloader.d.ts +1 -0
  75. package/es/commons/utils/imgPreloader.mjs +16 -0
  76. package/es/commons/utils/install.d.ts +2 -0
  77. package/es/commons/utils/install.mjs +7 -0
  78. package/es/commons/utils/json2css.d.ts +3 -0
  79. package/es/commons/utils/json2css.mjs +31 -0
  80. package/es/commons/utils/parseDataset.d.ts +4 -0
  81. package/es/commons/utils/parseDataset.mjs +19 -0
  82. package/es/commons/utils/parseOtherData.d.ts +1 -0
  83. package/es/commons/utils/parseOtherData.mjs +10 -0
  84. package/es/commons/utils/parseScatterData.d.ts +3 -0
  85. package/es/commons/utils/parseScatterData.mjs +14 -0
  86. package/es/commons/utils/shj/component-refs.d.ts +6 -0
  87. package/es/commons/utils/shj/component-refs.mjs +10 -0
  88. package/es/commons/utils/typescript.d.ts +5 -0
  89. package/es/components/chart-bar-animation/index.d.ts +1 -1
  90. package/es/components/chart-bar-animation/index.mjs +1 -1
  91. package/es/components/chart-bar-animation/index.vue.mjs +21 -20
  92. package/es/components/chart-bar-basic/index.d.ts +1 -1
  93. package/es/components/chart-bar-basic/index.mjs +1 -1
  94. package/es/components/chart-bar-basic/index.vue.mjs +21 -20
  95. package/es/components/chart-bar-contrast/index.d.ts +1 -1
  96. package/es/components/chart-bar-contrast/index.mjs +1 -1
  97. package/es/components/chart-bar-contrast/index.vue.mjs +34 -33
  98. package/es/components/chart-bar-contrast2/index.d.ts +1 -1
  99. package/es/components/chart-bar-contrast2/index.mjs +1 -1
  100. package/es/components/chart-bar-contrast2/index.vue.mjs +20 -19
  101. package/es/components/chart-bar-contrast3/index.d.ts +1 -1
  102. package/es/components/chart-bar-contrast3/index.mjs +1 -1
  103. package/es/components/chart-bar-contrast3/index.vue.mjs +19 -18
  104. package/es/components/chart-bar-gradient-column-chart/index.d.ts +1 -1
  105. package/es/components/chart-bar-gradient-column-chart/index.mjs +1 -1
  106. package/es/components/chart-bar-gradient-column-chart/index.vue.mjs +21 -20
  107. package/es/components/chart-bar-horizontal/index.d.ts +1 -1
  108. package/es/components/chart-bar-horizontal/index.mjs +1 -1
  109. package/es/components/chart-bar-horizontal/index.vue.mjs +21 -20
  110. package/es/components/chart-bar-horizontal-stack/index.d.ts +1 -1
  111. package/es/components/chart-bar-horizontal-stack/index.mjs +1 -1
  112. package/es/components/chart-bar-horizontal-stack/index.vue.mjs +21 -20
  113. package/es/components/chart-bar-line-bar/index.d.ts +1 -1
  114. package/es/components/chart-bar-line-bar/index.mjs +1 -1
  115. package/es/components/chart-bar-line-bar/index.vue.mjs +26 -25
  116. package/es/components/chart-bar-line-bar2/index.d.ts +1 -1
  117. package/es/components/chart-bar-line-bar2/index.mjs +1 -1
  118. package/es/components/chart-bar-line-bar2/index.vue.mjs +26 -25
  119. package/es/components/chart-bar-loop/index.d.ts +1 -1
  120. package/es/components/chart-bar-loop/index.mjs +1 -1
  121. package/es/components/chart-bar-loop/index.vue.mjs +14 -13
  122. package/es/components/chart-bar-mini/index.d.ts +1 -1
  123. package/es/components/chart-bar-mini/index.mjs +1 -1
  124. package/es/components/chart-bar-mini/index.vue.mjs +23 -22
  125. package/es/components/chart-bar-polar/index.d.ts +1 -1
  126. package/es/components/chart-bar-polar/index.mjs +1 -1
  127. package/es/components/chart-bar-polar/index.vue.mjs +20 -19
  128. package/es/components/chart-bar-polar-stack/index.d.ts +1 -1
  129. package/es/components/chart-bar-polar-stack/index.mjs +1 -1
  130. package/es/components/chart-bar-polar-stack/index.vue.mjs +20 -19
  131. package/es/components/chart-bar-polar2/index.d.ts +1 -1
  132. package/es/components/chart-bar-polar2/index.mjs +1 -1
  133. package/es/components/chart-bar-polar2/index.vue.mjs +20 -19
  134. package/es/components/chart-bar-radius-circle/index.d.ts +1 -1
  135. package/es/components/chart-bar-radius-circle/index.mjs +1 -1
  136. package/es/components/chart-bar-radius-circle/index.vue.mjs +20 -19
  137. package/es/components/chart-bar-rank/index.d.ts +1 -1
  138. package/es/components/chart-bar-rank/index.mjs +1 -1
  139. package/es/components/chart-bar-rank/index.vue.mjs +19 -18
  140. package/es/components/chart-bar-segmented-progress/index.d.ts +1 -1
  141. package/es/components/chart-bar-segmented-progress/index.mjs +1 -1
  142. package/es/components/chart-bar-segmented-progress/index.vue.mjs +19 -18
  143. package/es/components/chart-bar-spire/index.d.ts +1 -1
  144. package/es/components/chart-bar-spire/index.mjs +1 -1
  145. package/es/components/chart-bar-spire/index.vue.mjs +22 -21
  146. package/es/components/chart-bar-stack/index.d.ts +1 -1
  147. package/es/components/chart-bar-stack/index.mjs +1 -1
  148. package/es/components/chart-bar-stack/index.vue.mjs +21 -20
  149. package/es/components/chart-bar-stack-line/index.d.ts +1 -1
  150. package/es/components/chart-bar-stack-line/index.mjs +1 -1
  151. package/es/components/chart-bar-stack-line/index.vue.mjs +20 -19
  152. package/es/components/chart-bar-stack2/index.d.ts +1 -1
  153. package/es/components/chart-bar-stack2/index.mjs +1 -1
  154. package/es/components/chart-bar-stack2/index.vue.mjs +20 -19
  155. package/es/components/chart-bar-stack3/index.d.ts +1 -1
  156. package/es/components/chart-bar-stack3/index.mjs +1 -1
  157. package/es/components/chart-bar-stack3/index.vue.mjs +20 -19
  158. package/es/components/chart-bar-staggered/index.d.ts +1 -1
  159. package/es/components/chart-bar-staggered/index.mjs +1 -1
  160. package/es/components/chart-bar-staggered/index.vue.mjs +20 -19
  161. package/es/components/chart-bar-three/index.d.ts +1 -1
  162. package/es/components/chart-bar-three/index.mjs +1 -1
  163. package/es/components/chart-bar-three/index.vue.mjs +18 -17
  164. package/es/components/chart-bar-waterfall/index.d.ts +1 -1
  165. package/es/components/chart-bar-waterfall/index.mjs +1 -1
  166. package/es/components/chart-bar-waterfall/index.vue.mjs +18 -17
  167. package/es/components/chart-bar-zebra/index.d.ts +1 -1
  168. package/es/components/chart-bar-zebra/index.mjs +1 -1
  169. package/es/components/chart-bar-zebra/index.vue.mjs +20 -19
  170. package/es/components/chart-line-area-gradient/index.d.ts +1 -1
  171. package/es/components/chart-line-area-gradient/index.mjs +1 -1
  172. package/es/components/chart-line-area-gradient/index.vue.mjs +18 -17
  173. package/es/components/chart-line-area-highlight/index.d.ts +1 -1
  174. package/es/components/chart-line-area-highlight/index.mjs +1 -1
  175. package/es/components/chart-line-area-highlight/index.vue.mjs +19 -18
  176. package/es/components/chart-line-area-highlight2/index.d.ts +1 -1
  177. package/es/components/chart-line-area-highlight2/index.mjs +1 -1
  178. package/es/components/chart-line-area-highlight2/index.vue.mjs +19 -18
  179. package/es/components/chart-line-basic/index.d.ts +1 -1
  180. package/es/components/chart-line-basic/index.mjs +1 -1
  181. package/es/components/chart-line-basic/index.vue.mjs +18 -17
  182. package/es/components/chart-line-bump/index.d.ts +1 -1
  183. package/es/components/chart-line-bump/index.mjs +1 -1
  184. package/es/components/chart-line-bump/index.vue.mjs +17 -16
  185. package/es/components/chart-line-dashed/index.d.ts +1 -1
  186. package/es/components/chart-line-dashed/index.mjs +1 -1
  187. package/es/components/chart-line-dashed/index.vue.mjs +20 -19
  188. package/es/components/chart-line-ladder/index.d.ts +1 -1
  189. package/es/components/chart-line-ladder/index.mjs +1 -1
  190. package/es/components/chart-line-ladder/index.vue.mjs +18 -17
  191. package/es/components/chart-line-logarithm/index.d.ts +1 -1
  192. package/es/components/chart-line-logarithm/index.mjs +1 -1
  193. package/es/components/chart-line-logarithm/index.vue.mjs +18 -17
  194. package/es/components/chart-line-multix/index.d.ts +1 -1
  195. package/es/components/chart-line-multix/index.mjs +1 -1
  196. package/es/components/chart-line-multix/index.vue.mjs +18 -17
  197. package/es/components/chart-line-polar-double/index.d.ts +1 -1
  198. package/es/components/chart-line-polar-double/index.mjs +1 -1
  199. package/es/components/chart-line-polar-double/index.vue.mjs +14 -13
  200. package/es/components/chart-line-rain-flow/index.d.ts +1 -1
  201. package/es/components/chart-line-rain-flow/index.mjs +1 -1
  202. package/es/components/chart-line-rain-flow/index.vue.mjs +20 -19
  203. package/es/components/chart-line-scale/index.d.ts +1 -1
  204. package/es/components/chart-line-scale/index.mjs +1 -1
  205. package/es/components/chart-line-scale/index.vue.mjs +18 -17
  206. package/es/components/chart-line-smooth/index.d.ts +1 -1
  207. package/es/components/chart-line-smooth/index.mjs +1 -1
  208. package/es/components/chart-line-smooth/index.vue.mjs +21 -20
  209. package/es/components/chart-line-smooth-area/index.d.ts +1 -1
  210. package/es/components/chart-line-smooth-area/index.mjs +1 -1
  211. package/es/components/chart-line-smooth-area/index.vue.mjs +21 -20
  212. package/es/components/chart-line-stack/index.d.ts +1 -1
  213. package/es/components/chart-line-stack/index.mjs +1 -1
  214. package/es/components/chart-line-stack/index.vue.mjs +18 -17
  215. package/es/components/chart-line-stack-area/index.d.ts +1 -1
  216. package/es/components/chart-line-stack-area/index.mjs +1 -1
  217. package/es/components/chart-line-stack-area/index.vue.mjs +18 -17
  218. package/es/components/chart-line-temp/index.d.ts +1 -1
  219. package/es/components/chart-line-temp/index.mjs +1 -1
  220. package/es/components/chart-line-temp/index.vue.mjs +17 -16
  221. package/es/components/chart-line-vertical/index.d.ts +1 -1
  222. package/es/components/chart-line-vertical/index.mjs +1 -1
  223. package/es/components/chart-line-vertical/index.vue.mjs +18 -17
  224. package/es/components/chart-map-basic/index.d.ts +1 -1
  225. package/es/components/chart-map-basic/index.mjs +1 -1
  226. package/es/components/chart-map-basic/index.vue.mjs +18 -17
  227. package/es/components/chart-map-bmap-basic/index.d.ts +1 -1
  228. package/es/components/chart-map-bmap-basic/index.mjs +1 -1
  229. package/es/components/chart-map-bmap-basic/index.vue.mjs +24 -23
  230. package/es/components/chart-map-bmap-heatmap/index.d.ts +1 -1
  231. package/es/components/chart-map-bmap-heatmap/index.mjs +1 -1
  232. package/es/components/chart-map-bmap-heatmap/index.vue.mjs +24 -23
  233. package/es/components/chart-map-bmap-rich/index.d.ts +1 -1
  234. package/es/components/chart-map-bmap-rich/index.mjs +1 -1
  235. package/es/components/chart-map-bmap-rich/index.vue.mjs +24 -23
  236. package/es/components/chart-map-customize/index.d.ts +1 -1
  237. package/es/components/chart-map-customize/index.mjs +1 -1
  238. package/es/components/chart-map-customize/index.vue.mjs +25 -24
  239. package/es/components/chart-map-lines/index.d.ts +1 -1
  240. package/es/components/chart-map-lines/index.mjs +1 -1
  241. package/es/components/chart-map-lines/index.vue.mjs +23 -22
  242. package/es/components/chart-map-scatter/index.d.ts +1 -1
  243. package/es/components/chart-map-scatter/index.mjs +1 -1
  244. package/es/components/chart-map-scatter/index.vue.mjs +25 -24
  245. package/es/components/chart-other-candlestick-basic/index.d.ts +1 -1
  246. package/es/components/chart-other-candlestick-basic/index.mjs +1 -1
  247. package/es/components/chart-other-candlestick-basic/index.vue.mjs +20 -19
  248. package/es/components/chart-other-candlestick-demo/index.d.ts +1 -1
  249. package/es/components/chart-other-candlestick-demo/index.mjs +1 -1
  250. package/es/components/chart-other-candlestick-demo/index.vue.mjs +31 -30
  251. package/es/components/chart-other-candlestick-shanghai/index.d.ts +1 -1
  252. package/es/components/chart-other-candlestick-shanghai/index.mjs +1 -1
  253. package/es/components/chart-other-candlestick-shanghai/index.vue.mjs +17 -16
  254. package/es/components/chart-other-circular-graph/index.d.ts +1 -1
  255. package/es/components/chart-other-circular-graph/index.mjs +1 -1
  256. package/es/components/chart-other-circular-graph/index.vue.mjs +13 -12
  257. package/es/components/chart-other-force/index.d.ts +1 -1
  258. package/es/components/chart-other-force/index.mjs +1 -1
  259. package/es/components/chart-other-force/index.vue.mjs +27 -26
  260. package/es/components/chart-other-force2/index.d.ts +1 -1
  261. package/es/components/chart-other-force2/index.mjs +1 -1
  262. package/es/components/chart-other-force2/index.vue.mjs +27 -26
  263. package/es/components/chart-other-funnel/index.d.ts +1 -1
  264. package/es/components/chart-other-funnel/index.mjs +1 -1
  265. package/es/components/chart-other-funnel/index.vue.mjs +25 -24
  266. package/es/components/chart-other-funnel-contrast/index.d.ts +1 -1
  267. package/es/components/chart-other-funnel-contrast/index.mjs +1 -1
  268. package/es/components/chart-other-funnel-contrast/index.vue.mjs +25 -24
  269. package/es/components/chart-other-funnel-split/index.d.ts +1 -1
  270. package/es/components/chart-other-funnel-split/index.mjs +1 -1
  271. package/es/components/chart-other-funnel-split/index.vue.mjs +25 -24
  272. package/es/components/chart-other-funnel2/index.d.ts +1 -1
  273. package/es/components/chart-other-funnel2/index.mjs +1 -1
  274. package/es/components/chart-other-funnel2/index.vue.mjs +25 -24
  275. package/es/components/chart-other-gauge/index.d.ts +1 -1
  276. package/es/components/chart-other-gauge/index.mjs +1 -1
  277. package/es/components/chart-other-gauge/index.vue.mjs +23 -22
  278. package/es/components/chart-other-gauge-grade/index.d.ts +1 -1
  279. package/es/components/chart-other-gauge-grade/index.mjs +1 -1
  280. package/es/components/chart-other-gauge-grade/index.vue.mjs +24 -23
  281. package/es/components/chart-other-gauge-stage/index.d.ts +1 -1
  282. package/es/components/chart-other-gauge-stage/index.mjs +1 -1
  283. package/es/components/chart-other-gauge-stage/index.vue.mjs +24 -23
  284. package/es/components/chart-other-graph-basic/index.d.ts +1 -1
  285. package/es/components/chart-other-graph-basic/index.mjs +1 -1
  286. package/es/components/chart-other-graph-basic/index.vue.mjs +13 -12
  287. package/es/components/chart-other-graph-basic2/index.d.ts +1 -1
  288. package/es/components/chart-other-graph-basic2/index.mjs +1 -1
  289. package/es/components/chart-other-graph-basic2/index.vue.mjs +13 -12
  290. package/es/components/chart-other-graph-calendar/index.d.ts +1 -1
  291. package/es/components/chart-other-graph-calendar/index.mjs +1 -1
  292. package/es/components/chart-other-graph-calendar/index.vue.mjs +13 -12
  293. package/es/components/chart-other-grid-percentage/index.d.ts +1 -1
  294. package/es/components/chart-other-grid-percentage/index.mjs +1 -1
  295. package/es/components/chart-other-grid-percentage/index.vue.mjs +11 -10
  296. package/es/components/chart-other-heatmap/index.d.ts +1 -1
  297. package/es/components/chart-other-heatmap/index.mjs +1 -1
  298. package/es/components/chart-other-heatmap/index.vue.mjs +27 -26
  299. package/es/components/chart-other-label-gauge/index.d.ts +1 -1
  300. package/es/components/chart-other-label-gauge/index.mjs +1 -1
  301. package/es/components/chart-other-label-gauge/index.vue.mjs +11 -10
  302. package/es/components/chart-other-liquidfill/index.d.ts +1 -1
  303. package/es/components/chart-other-liquidfill/index.mjs +1 -1
  304. package/es/components/chart-other-liquidfill/index.vue.mjs +11 -10
  305. package/es/components/chart-other-parallel-basic/index.d.ts +1 -1
  306. package/es/components/chart-other-parallel-basic/index.mjs +1 -1
  307. package/es/components/chart-other-parallel-basic/index.vue.mjs +13 -12
  308. package/es/components/chart-other-parallel-mul/index.d.ts +1 -1
  309. package/es/components/chart-other-parallel-mul/index.mjs +1 -1
  310. package/es/components/chart-other-parallel-mul/index.vue.mjs +18 -17
  311. package/es/components/chart-other-radar/index.d.ts +1 -1
  312. package/es/components/chart-other-radar/index.mjs +1 -1
  313. package/es/components/chart-other-radar/index.vue.mjs +30 -29
  314. package/es/components/chart-other-radar-stack/index.d.ts +1 -1
  315. package/es/components/chart-other-radar-stack/index.mjs +1 -1
  316. package/es/components/chart-other-radar-stack/index.vue.mjs +21 -20
  317. package/es/components/chart-other-sunburst-basic/index.d.ts +1 -1
  318. package/es/components/chart-other-sunburst-basic/index.mjs +1 -1
  319. package/es/components/chart-other-sunburst-basic/index.vue.mjs +20 -19
  320. package/es/components/chart-other-sunburst-basic2/index.d.ts +1 -1
  321. package/es/components/chart-other-sunburst-basic2/index.mjs +1 -1
  322. package/es/components/chart-other-sunburst-basic2/index.vue.mjs +20 -19
  323. package/es/components/chart-other-sunburst-basic3/index.d.ts +1 -1
  324. package/es/components/chart-other-sunburst-basic3/index.mjs +1 -1
  325. package/es/components/chart-other-sunburst-basic3/index.vue.mjs +20 -19
  326. package/es/components/chart-other-sunburst-basic4/index.d.ts +1 -1
  327. package/es/components/chart-other-sunburst-basic4/index.mjs +1 -1
  328. package/es/components/chart-other-sunburst-basic4/index.vue.mjs +20 -19
  329. package/es/components/chart-other-sunburst-book/index.d.ts +1 -1
  330. package/es/components/chart-other-sunburst-book/index.mjs +1 -1
  331. package/es/components/chart-other-sunburst-book/index.vue.mjs +17 -16
  332. package/es/components/chart-other-sunburst-flavors/index.d.ts +1 -1
  333. package/es/components/chart-other-sunburst-flavors/index.mjs +1 -1
  334. package/es/components/chart-other-sunburst-flavors/index.vue.mjs +13 -12
  335. package/es/components/chart-other-sunburst-radius/index.d.ts +1 -1
  336. package/es/components/chart-other-sunburst-radius/index.mjs +1 -1
  337. package/es/components/chart-other-sunburst-radius/index.vue.mjs +27 -26
  338. package/es/components/chart-other-theme-river/index.d.ts +1 -1
  339. package/es/components/chart-other-theme-river/index.mjs +1 -1
  340. package/es/components/chart-other-theme-river/index.vue.mjs +23 -22
  341. package/es/components/chart-other-tree/index.d.ts +1 -1
  342. package/es/components/chart-other-tree/index.mjs +1 -1
  343. package/es/components/chart-other-tree/index.vue.mjs +16 -15
  344. package/es/components/chart-other-tree-line/index.d.ts +1 -1
  345. package/es/components/chart-other-tree-line/index.mjs +1 -1
  346. package/es/components/chart-other-tree-line/index.vue.mjs +15 -14
  347. package/es/components/chart-other-treemap/index.d.ts +1 -1
  348. package/es/components/chart-other-treemap/index.mjs +1 -1
  349. package/es/components/chart-other-treemap/index.vue.mjs +16 -15
  350. package/es/components/chart-other-treemap-basic/index.d.ts +1 -1
  351. package/es/components/chart-other-treemap-basic/index.mjs +1 -1
  352. package/es/components/chart-other-treemap-basic/index.vue.mjs +19 -18
  353. package/es/components/chart-other-word-cloud/index.d.ts +1 -1
  354. package/es/components/chart-other-word-cloud/index.mjs +1 -1
  355. package/es/components/chart-other-word-cloud/index.vue.mjs +15 -14
  356. package/es/components/chart-pie-3d/index.d.ts +1 -1
  357. package/es/components/chart-pie-3d/index.mjs +1 -1
  358. package/es/components/chart-pie-3d/index.vue.mjs +21 -20
  359. package/es/components/chart-pie-basic/index.d.ts +1 -1
  360. package/es/components/chart-pie-basic/index.mjs +1 -1
  361. package/es/components/chart-pie-basic/index.vue.mjs +17 -16
  362. package/es/components/chart-pie-basic2/index.d.ts +1 -1
  363. package/es/components/chart-pie-basic2/index.mjs +1 -1
  364. package/es/components/chart-pie-basic2/index.vue.mjs +17 -16
  365. package/es/components/chart-pie-customized/index.d.ts +1 -1
  366. package/es/components/chart-pie-customized/index.mjs +1 -1
  367. package/es/components/chart-pie-customized/index.vue.mjs +19 -18
  368. package/es/components/chart-pie-index/index.d.ts +1 -1
  369. package/es/components/chart-pie-index/index.mjs +1 -1
  370. package/es/components/chart-pie-index/index.vue.mjs +26 -25
  371. package/es/components/chart-pie-interval/index.d.ts +1 -1
  372. package/es/components/chart-pie-interval/index.mjs +1 -1
  373. package/es/components/chart-pie-interval/index.vue.mjs +23 -22
  374. package/es/components/chart-pie-legend-scroll/index.d.ts +1 -1
  375. package/es/components/chart-pie-legend-scroll/index.mjs +1 -1
  376. package/es/components/chart-pie-legend-scroll/index.vue.mjs +17 -16
  377. package/es/components/chart-pie-radius/index.d.ts +1 -1
  378. package/es/components/chart-pie-radius/index.mjs +1 -1
  379. package/es/components/chart-pie-radius/index.vue.mjs +17 -16
  380. package/es/components/chart-pie-rose/index.d.ts +1 -1
  381. package/es/components/chart-pie-rose/index.mjs +1 -1
  382. package/es/components/chart-pie-rose/index.vue.mjs +20 -19
  383. package/es/components/chart-pie-round/index.d.ts +1 -1
  384. package/es/components/chart-pie-round/index.mjs +1 -1
  385. package/es/components/chart-pie-round/index.vue.mjs +17 -16
  386. package/es/components/chart-pie-semicircle/index.d.ts +1 -1
  387. package/es/components/chart-pie-semicircle/index.mjs +1 -1
  388. package/es/components/chart-pie-semicircle/index.vue.mjs +20 -19
  389. package/es/components/chart-pie-sunburst/index.d.ts +1 -1
  390. package/es/components/chart-pie-sunburst/index.mjs +1 -1
  391. package/es/components/chart-pie-sunburst/index.vue.mjs +17 -16
  392. package/es/components/chart-scatter-basic/index.d.ts +1 -1
  393. package/es/components/chart-scatter-basic/index.mjs +1 -1
  394. package/es/components/chart-scatter-basic/index.vue.mjs +21 -20
  395. package/es/components/chart-scatter-basic2/index.d.ts +1 -1
  396. package/es/components/chart-scatter-basic2/index.mjs +1 -1
  397. package/es/components/chart-scatter-basic2/index.vue.mjs +21 -20
  398. package/es/components/chart-scatter-bubble/index.d.ts +1 -1
  399. package/es/components/chart-scatter-bubble/index.mjs +1 -1
  400. package/es/components/chart-scatter-bubble/index.vue.mjs +18 -17
  401. package/es/components/chart-scatter-ripples/index.d.ts +1 -1
  402. package/es/components/chart-scatter-ripples/index.mjs +1 -1
  403. package/es/components/chart-scatter-ripples/index.vue.mjs +19 -18
  404. package/es/components/commons-babylon/index.mjs +1 -1
  405. package/es/components/commons-echarts/compileAndRunEcharts.mjs +4 -3
  406. package/es/components/commons-echarts/index.d.ts +1 -37
  407. package/es/components/commons-echarts/index.mjs +1 -1
  408. package/es/components/commons-gaussian-splatting-view/index.mjs +1 -1
  409. package/es/components/commons-gaussian-splatting-view/index.vue.mjs +2 -2
  410. package/es/components/commons-gaussian-splatting-view/index.vue2.mjs +1 -1
  411. package/es/components/commons-loop-iterator/index.d.ts +1 -1
  412. package/es/components/commons-loop-iterator/index.mjs +1 -1
  413. package/es/components/commons-loop-iterator/index.vue.mjs +1 -1
  414. package/es/components/commons-loop-iterator/index.vue2.mjs +28 -27
  415. package/es/components/commons-product-model/index.mjs +1 -1
  416. package/es/components/commons-product-model/index.vue.mjs +2 -2
  417. package/es/components/commons-product-model/index.vue2.mjs +1 -1
  418. package/es/components/commons-qrcode/index.mjs +1 -1
  419. package/es/components/commons-svg/index.d.ts +1 -1
  420. package/es/components/commons-svg/index.mjs +1 -1
  421. package/es/components/commons-three-loader/index.mjs +1 -1
  422. package/es/components/commons-three-loader/index.vue.mjs +2 -2
  423. package/es/components/commons-three-loader/index.vue2.mjs +1 -1
  424. package/es/components/commons-three-loader3/index.d.ts +1 -1
  425. package/es/components/commons-three-loader3/index.mjs +1 -1
  426. package/es/components/commons-three-loader3/index.vue.mjs +2 -2
  427. package/es/components/commons-three-loader3/index.vue2.mjs +1 -1
  428. package/es/components/commons-vr-photo/index.mjs +1 -1
  429. package/es/components/commons-vr-video/index.mjs +1 -1
  430. package/es/components/commons-weather/index.mjs +1 -1
  431. package/es/components/commons-weather/index.vue.mjs +1 -1
  432. package/es/components/commons-weather/index.vue2.mjs +1 -1
  433. package/es/components/graphical-circle/index.d.ts +1 -1
  434. package/es/components/graphical-circle/index.mjs +1 -1
  435. package/es/components/graphical-diamond/index.d.ts +1 -1
  436. package/es/components/graphical-diamond/index.mjs +1 -1
  437. package/es/components/graphical-hexagon/index.d.ts +1 -1
  438. package/es/components/graphical-hexagon/index.mjs +1 -1
  439. package/es/components/graphical-isosceles-triangle/index.d.ts +1 -1
  440. package/es/components/graphical-isosceles-triangle/index.mjs +1 -1
  441. package/es/components/graphical-pentagon/index.d.ts +1 -1
  442. package/es/components/graphical-pentagon/index.mjs +1 -1
  443. package/es/components/graphical-rect/index.d.ts +1 -1
  444. package/es/components/graphical-rect/index.mjs +1 -1
  445. package/es/components/graphical-right-triangle/index.d.ts +1 -1
  446. package/es/components/graphical-right-triangle/index.mjs +1 -1
  447. package/es/components/interaction-button/index.d.ts +1 -1
  448. package/es/components/interaction-button/index.mjs +1 -1
  449. package/es/components/interaction-button/index.vue.mjs +2 -2
  450. package/es/components/interaction-button/index.vue2.mjs +1 -1
  451. package/es/components/interaction-button-image/index.d.ts +1 -1
  452. package/es/components/interaction-button-image/index.mjs +1 -1
  453. package/es/components/interaction-button-image/index.vue.mjs +2 -2
  454. package/es/components/interaction-button-image/index.vue2.mjs +2 -2
  455. package/es/components/interaction-button-refresh/index.d.ts +1 -1
  456. package/es/components/interaction-button-refresh/index.mjs +1 -1
  457. package/es/components/interaction-button-refresh/index.vue.mjs +2 -2
  458. package/es/components/interaction-button-refresh/index.vue2.mjs +2 -2
  459. package/es/components/interaction-data-picker/index.d.ts +1 -1
  460. package/es/components/interaction-data-picker/index.mjs +1 -1
  461. package/es/components/interaction-input/index.d.ts +1 -1
  462. package/es/components/interaction-input/index.mjs +1 -1
  463. package/es/components/interaction-input/index.vue.mjs +1 -1
  464. package/es/components/interaction-input/index.vue2.mjs +31 -30
  465. package/es/components/interaction-radio/index.d.ts +1 -1
  466. package/es/components/interaction-radio/index.mjs +1 -1
  467. package/es/components/interaction-select/index.d.ts +1 -1
  468. package/es/components/interaction-select/index.mjs +1 -1
  469. package/es/components/interaction-select/index.vue.mjs +2 -2
  470. package/es/components/interaction-select/index.vue2.mjs +27 -26
  471. package/es/components/interaction-slider/index.d.ts +1 -1
  472. package/es/components/interaction-slider/index.mjs +1 -1
  473. package/es/components/interaction-slider/index.vue.mjs +2 -2
  474. package/es/components/interaction-slider/index.vue2.mjs +41 -40
  475. package/es/components/interaction-switch/index.d.ts +1 -1
  476. package/es/components/interaction-switch/index.mjs +1 -1
  477. package/es/components/interaction-tabs/index.d.ts +1 -1
  478. package/es/components/interaction-tabs/index.mjs +1 -1
  479. package/es/components/interaction-tabs/index.vue.mjs +2 -2
  480. package/es/components/interaction-tabs/index.vue2.mjs +1 -1
  481. package/es/components/interaction-tabs2/index.d.ts +1 -1
  482. package/es/components/interaction-tabs2/index.mjs +1 -1
  483. package/es/components/interaction-tabs2/index.vue.mjs +2 -2
  484. package/es/components/interaction-tabs2/index.vue2.mjs +1 -1
  485. package/es/components/map-earth-basic/index.d.ts +3 -3
  486. package/es/components/map-earth-basic/index.mjs +1 -1
  487. package/es/components/map-earth-basic/index.vue.d.ts +6 -4
  488. package/es/components/map-earth-basic/index.vue.mjs +16 -15
  489. package/es/components/map-earth-cool-tech/index.d.ts +3 -3
  490. package/es/components/map-earth-cool-tech/index.mjs +1 -1
  491. package/es/components/map-earth-cool-tech/index.vue.d.ts +4 -4
  492. package/es/components/map-earth-cool-tech/index.vue.mjs +16 -15
  493. package/es/components/map-earth-fly-line/index.d.ts +3 -3
  494. package/es/components/map-earth-fly-line/index.mjs +1 -1
  495. package/es/components/map-earth-fly-line/index.vue.d.ts +4 -6
  496. package/es/components/map-earth-fly-line/index.vue.mjs +10 -9
  497. package/es/components/map-earth-hacker/index.d.ts +3 -3
  498. package/es/components/map-earth-hacker/index.mjs +1 -1
  499. package/es/components/map-earth-hacker/index.vue.d.ts +2 -6
  500. package/es/components/map-earth-hacker/index.vue.mjs +10 -9
  501. package/es/components/map-earth-particle/index.d.ts +3 -3
  502. package/es/components/map-earth-particle/index.mjs +1 -1
  503. package/es/components/map-earth-particle/index.vue.d.ts +4 -6
  504. package/es/components/map-earth-particle/index.vue.mjs +16 -15
  505. package/es/components/media-audio/index.d.ts +1 -1
  506. package/es/components/media-audio/index.mjs +1 -1
  507. package/es/components/media-audio-dynamic/index.d.ts +1 -1
  508. package/es/components/media-audio-dynamic/index.mjs +1 -1
  509. package/es/components/media-audio-dynamic/index.vue.mjs +2 -2
  510. package/es/components/media-audio-dynamic/index.vue2.mjs +18 -17
  511. package/es/components/media-carousel/index.d.ts +1 -1
  512. package/es/components/media-carousel/index.mjs +1 -1
  513. package/es/components/media-carousel-slides/index.d.ts +1 -1
  514. package/es/components/media-carousel-slides/index.mjs +1 -1
  515. package/es/components/media-flv/index.d.ts +1 -1
  516. package/es/components/media-flv/index.mjs +1 -1
  517. package/es/components/media-iframe/index.d.ts +1 -1
  518. package/es/components/media-iframe/index.mjs +1 -1
  519. package/es/components/media-iframe-carousel/index.d.ts +1 -1
  520. package/es/components/media-iframe-carousel/index.mjs +1 -1
  521. package/es/components/media-image/index.d.ts +1 -1
  522. package/es/components/media-image/index.mjs +1 -1
  523. package/es/components/media-image-dynamic/index.d.ts +1 -1
  524. package/es/components/media-image-dynamic/index.mjs +1 -1
  525. package/es/components/media-image-dynamic/index.vue.mjs +1 -1
  526. package/es/components/media-image-dynamic/index.vue2.mjs +14 -13
  527. package/es/components/media-m3u8/index.d.ts +1 -1
  528. package/es/components/media-m3u8/index.mjs +1 -1
  529. package/es/components/media-m3u8-dynamic/index.d.ts +1 -1
  530. package/es/components/media-m3u8-dynamic/index.mjs +1 -1
  531. package/es/components/media-m3u8-dynamic/index.vue.mjs +12 -11
  532. package/es/components/media-video/index.d.ts +1 -1
  533. package/es/components/media-video/index.mjs +1 -1
  534. package/es/components/media-video-dynamic/index.d.ts +1 -1
  535. package/es/components/media-video-dynamic/index.mjs +1 -1
  536. package/es/components/media-video-dynamic/index.vue.mjs +2 -2
  537. package/es/components/media-video-dynamic/index.vue2.mjs +10 -9
  538. package/es/components/media-wavesurfer/index.d.ts +1 -1
  539. package/es/components/media-wavesurfer/index.mjs +1 -1
  540. package/es/components/scene-amap2d/index.d.ts +1 -1
  541. package/es/components/scene-amap2d/index.mjs +1 -1
  542. package/es/components/scene-amap2d/index.vue.mjs +2 -2
  543. package/es/components/scene-amap2d/index.vue2.mjs +9 -8
  544. package/es/components/scene-amap3d/index.d.ts +1 -1
  545. package/es/components/scene-amap3d/index.mjs +1 -1
  546. package/es/components/scene-amap3d/index.vue.mjs +2 -2
  547. package/es/components/scene-amap3d/index.vue2.mjs +23 -22
  548. package/es/components/scene-map3d/index.d.ts +1 -1
  549. package/es/components/scene-map3d/index.mjs +1 -1
  550. package/es/components/scene-map3d/index.vue.mjs +2 -2
  551. package/es/components/scene-map3d/index.vue2.mjs +10 -9
  552. package/es/components/scene-map3d/map3d/map.mjs +1 -1
  553. package/es/components/scene-ue-iframe/index.d.ts +1 -1
  554. package/es/components/scene-ue-iframe/index.mjs +1 -1
  555. package/es/components/scene-ue-iframe/index.vue.mjs +2 -2
  556. package/es/components/scene-ue-iframe/index.vue2.mjs +32 -23
  557. package/es/components/scene-ue-shj/index.d.ts +1 -1
  558. package/es/components/scene-ue-shj/index.mjs +1 -1
  559. package/es/components/scene-unity-iframe/index.d.ts +1 -1
  560. package/es/components/scene-unity-iframe/index.mjs +1 -1
  561. package/es/components/scene-unity-webgl/index.d.ts +1 -1
  562. package/es/components/scene-unity-webgl/index.mjs +1 -1
  563. package/es/components/scene-vr/index.d.ts +1 -1
  564. package/es/components/scene-vr/index.mjs +1 -1
  565. package/es/components/text-carousel/index.d.ts +1 -1
  566. package/es/components/text-carousel/index.mjs +1 -1
  567. package/es/components/text-carousel/index.vue.mjs +2 -2
  568. package/es/components/text-carousel/index.vue2.mjs +7 -7
  569. package/es/components/text-count-down/index.mjs +1 -1
  570. package/es/components/text-count-down/index.vue.mjs +2 -2
  571. package/es/components/text-count-down/index.vue2.mjs +1 -1
  572. package/es/components/text-over-number/index.mjs +1 -1
  573. package/es/components/text-over-number/index.vue.d.ts +16 -16
  574. package/es/components/text-over-number/index.vue.mjs +2 -2
  575. package/es/components/text-over-number/index.vue2.mjs +8 -7
  576. package/es/components/text-real-time/index.mjs +1 -1
  577. package/es/components/text-real-time/index.vue.mjs +1 -1
  578. package/es/components/text-real-time/index.vue2.mjs +1 -1
  579. package/es/components/text-row-scroll/index.d.ts +1 -1
  580. package/es/components/text-row-scroll/index.mjs +1 -1
  581. package/es/components/text-row-scroll/index.vue.mjs +1 -1
  582. package/es/components/text-row-scroll/index.vue2.mjs +45 -44
  583. package/es/components/text-table-basic/index.d.ts +1 -1
  584. package/es/components/text-table-basic/index.mjs +1 -1
  585. package/es/components/text-table-basic/index.vue.mjs +3 -3
  586. package/es/components/text-table-basic/index.vue2.mjs +69 -68
  587. package/es/components/text-table-scroll/index.d.ts +1 -1
  588. package/es/components/text-table-scroll/index.mjs +1 -1
  589. package/es/components/text-table-scroll/index.vue.mjs +2 -2
  590. package/es/components/text-table-scroll/index.vue2.mjs +36 -35
  591. package/es/components/text-text-basic/index.d.ts +1 -1
  592. package/es/components/text-text-basic/index.mjs +1 -1
  593. package/es/components/text-text-basic/index.vue.mjs +2 -2
  594. package/es/components/text-text-basic/index.vue2.mjs +1 -1
  595. package/es/components/text-text-dynamic/index.d.ts +1 -1
  596. package/es/components/text-text-dynamic/index.mjs +1 -1
  597. package/es/components/text-text-dynamic/index.vue.mjs +1 -1
  598. package/es/components/text-text-dynamic/index.vue2.mjs +26 -25
  599. package/es/components/text-title/index.d.ts +1 -1
  600. package/es/components/text-title/index.mjs +1 -1
  601. package/es/components/text-title/index.vue.mjs +2 -2
  602. package/es/components/text-title/index.vue2.mjs +1 -1
  603. package/es/core/datasource/core/api.d.ts +1 -0
  604. package/es/core/datasource/core/api.mjs +32 -0
  605. package/es/core/datasource/core/static.d.ts +1 -0
  606. package/es/core/datasource/core/static.mjs +16 -0
  607. package/es/core/datasource/core/url.d.ts +1 -0
  608. package/es/core/datasource/core/url.mjs +17 -0
  609. package/es/core/datasource/core/variable.d.ts +1 -0
  610. package/es/core/datasource/core/variable.mjs +17 -0
  611. package/es/core/datasource/core/ws.d.ts +32 -0
  612. package/es/core/datasource/core/ws.mjs +138 -0
  613. package/es/core/datasource/index.d.ts +63 -0
  614. package/es/core/datasource/index.mjs +188 -0
  615. package/es/core/datasource/utils/request.d.ts +3 -0
  616. package/es/core/datasource/utils/request.mjs +7 -0
  617. package/es/core/datasource/utils/useMapping.d.ts +7 -0
  618. package/es/core/datasource/utils/useMapping.mjs +55 -0
  619. package/es/core/datasource/utils/userRequest.d.ts +3 -0
  620. package/es/core/datasource/utils/userRequest.mjs +7 -0
  621. package/es/core/datasource/utils/utils.d.ts +50 -0
  622. package/es/core/datasource/utils/utils.mjs +123 -0
  623. package/es/core/datasource/utils/wsManager.d.ts +16 -0
  624. package/es/core/datasource/utils/wsManager.mjs +78 -0
  625. package/es/env.d.ts +0 -2
  626. package/es/index.d.ts +2 -1
  627. package/es/index.mjs +347 -345
  628. package/es/widgets.css +1 -1
  629. package/lib/commons/core/datasource/core/api.js +1 -0
  630. package/lib/commons/core/datasource/core/static.js +1 -0
  631. package/lib/commons/core/datasource/core/url.js +1 -0
  632. package/lib/commons/core/datasource/core/variable.js +1 -0
  633. package/lib/commons/core/datasource/core/ws.js +1 -0
  634. package/lib/commons/core/datasource/index.js +6 -0
  635. package/lib/commons/core/datasource/utils/request.js +1 -0
  636. package/lib/commons/core/datasource/utils/utils.js +1 -0
  637. package/lib/commons/core/datasource/utils/wsManager.js +1 -0
  638. package/lib/commons/core/earth/base64/Aperture.js +1 -0
  639. package/lib/commons/core/earth/base64/Callout.js +1 -0
  640. package/lib/commons/core/earth/base64/CalloutAperture.js +1 -0
  641. package/lib/commons/core/earth/base64/CloudCover.js +1 -0
  642. package/lib/commons/core/earth/base64/LightColumn.js +1 -0
  643. package/lib/commons/core/earth/base64/StarrySky.js +1 -0
  644. package/lib/commons/core/earth/base64/rotation/innner.js +1 -0
  645. package/lib/commons/core/earth/base64/rotation/out.js +1 -0
  646. package/lib/commons/core/earth/border.vue.js +1 -0
  647. package/lib/commons/core/earth/border.vue2.js +1 -0
  648. package/lib/commons/core/earth/geojson/china-border.js +1 -0
  649. package/lib/commons/core/earth/geojson/china.js +1 -0
  650. package/lib/commons/core/earth/geojson/world.js +1 -0
  651. package/lib/commons/core/earth/main.js +32 -0
  652. package/lib/commons/core/earth/main.vue.js +1 -0
  653. package/lib/commons/core/earth/main.vue2.js +1 -0
  654. package/lib/commons/core/earth/utils/GradientLine.js +1 -0
  655. package/lib/commons/core/earth/utils/composer.js +1 -0
  656. package/lib/commons/core/earth/utils/controls/obt.js +1 -0
  657. package/lib/commons/core/earth/utils/label.js +1 -0
  658. package/lib/commons/core/earth/utils/line2.js +1 -0
  659. package/lib/commons/core/earth/utils/scene.js +1 -0
  660. package/lib/commons/core/useChart.js +1 -0
  661. package/lib/commons/utils/babylon/ColorConvert.js +1 -0
  662. package/lib/commons/utils/clickOutSide.js +1 -0
  663. package/lib/commons/utils/cloneSeries.js +1 -0
  664. package/lib/commons/utils/hoverLoop.js +1 -0
  665. package/lib/commons/utils/imgPreloader.js +1 -0
  666. package/lib/commons/utils/install.js +1 -0
  667. package/lib/commons/utils/json2css.js +1 -0
  668. package/lib/commons/utils/parseDataset.js +1 -0
  669. package/lib/commons/utils/parseOtherData.js +1 -0
  670. package/lib/commons/utils/parseScatterData.js +1 -0
  671. package/lib/commons/utils/shj/component-refs.js +1 -0
  672. package/lib/components/chart-bar-animation/index.js +1 -1
  673. package/lib/components/chart-bar-animation/index.vue.js +1 -1
  674. package/lib/components/chart-bar-basic/index.js +1 -1
  675. package/lib/components/chart-bar-basic/index.vue.js +1 -1
  676. package/lib/components/chart-bar-contrast/index.js +1 -1
  677. package/lib/components/chart-bar-contrast/index.vue.js +1 -1
  678. package/lib/components/chart-bar-contrast2/index.js +1 -1
  679. package/lib/components/chart-bar-contrast2/index.vue.js +1 -1
  680. package/lib/components/chart-bar-contrast3/index.js +1 -1
  681. package/lib/components/chart-bar-contrast3/index.vue.js +1 -1
  682. package/lib/components/chart-bar-gradient-column-chart/index.js +1 -1
  683. package/lib/components/chart-bar-gradient-column-chart/index.vue.js +1 -1
  684. package/lib/components/chart-bar-horizontal/index.js +1 -1
  685. package/lib/components/chart-bar-horizontal/index.vue.js +1 -1
  686. package/lib/components/chart-bar-horizontal-stack/index.js +1 -1
  687. package/lib/components/chart-bar-horizontal-stack/index.vue.js +1 -1
  688. package/lib/components/chart-bar-line-bar/index.js +1 -1
  689. package/lib/components/chart-bar-line-bar/index.vue.js +1 -1
  690. package/lib/components/chart-bar-line-bar2/index.js +1 -1
  691. package/lib/components/chart-bar-line-bar2/index.vue.js +1 -1
  692. package/lib/components/chart-bar-loop/index.js +1 -1
  693. package/lib/components/chart-bar-loop/index.vue.js +1 -1
  694. package/lib/components/chart-bar-mini/index.js +1 -1
  695. package/lib/components/chart-bar-mini/index.vue.js +1 -1
  696. package/lib/components/chart-bar-polar/index.js +1 -1
  697. package/lib/components/chart-bar-polar/index.vue.js +1 -1
  698. package/lib/components/chart-bar-polar-stack/index.js +1 -1
  699. package/lib/components/chart-bar-polar-stack/index.vue.js +1 -1
  700. package/lib/components/chart-bar-polar2/index.js +1 -1
  701. package/lib/components/chart-bar-polar2/index.vue.js +1 -1
  702. package/lib/components/chart-bar-radius-circle/index.js +1 -1
  703. package/lib/components/chart-bar-radius-circle/index.vue.js +1 -1
  704. package/lib/components/chart-bar-rank/index.js +1 -1
  705. package/lib/components/chart-bar-rank/index.vue.js +1 -1
  706. package/lib/components/chart-bar-segmented-progress/index.js +1 -1
  707. package/lib/components/chart-bar-segmented-progress/index.vue.js +1 -1
  708. package/lib/components/chart-bar-spire/index.js +1 -1
  709. package/lib/components/chart-bar-spire/index.vue.js +1 -1
  710. package/lib/components/chart-bar-stack/index.js +1 -1
  711. package/lib/components/chart-bar-stack/index.vue.js +1 -1
  712. package/lib/components/chart-bar-stack-line/index.js +1 -1
  713. package/lib/components/chart-bar-stack-line/index.vue.js +1 -1
  714. package/lib/components/chart-bar-stack2/index.js +1 -1
  715. package/lib/components/chart-bar-stack2/index.vue.js +1 -1
  716. package/lib/components/chart-bar-stack3/index.js +1 -1
  717. package/lib/components/chart-bar-stack3/index.vue.js +1 -1
  718. package/lib/components/chart-bar-staggered/index.js +1 -1
  719. package/lib/components/chart-bar-staggered/index.vue.js +1 -1
  720. package/lib/components/chart-bar-three/index.js +1 -1
  721. package/lib/components/chart-bar-three/index.vue.js +1 -1
  722. package/lib/components/chart-bar-waterfall/index.js +1 -1
  723. package/lib/components/chart-bar-waterfall/index.vue.js +1 -1
  724. package/lib/components/chart-bar-zebra/index.js +1 -1
  725. package/lib/components/chart-bar-zebra/index.vue.js +1 -1
  726. package/lib/components/chart-line-area-gradient/index.js +1 -1
  727. package/lib/components/chart-line-area-gradient/index.vue.js +1 -1
  728. package/lib/components/chart-line-area-highlight/index.js +1 -1
  729. package/lib/components/chart-line-area-highlight/index.vue.js +1 -1
  730. package/lib/components/chart-line-area-highlight2/index.js +1 -1
  731. package/lib/components/chart-line-area-highlight2/index.vue.js +1 -1
  732. package/lib/components/chart-line-basic/index.js +1 -1
  733. package/lib/components/chart-line-basic/index.vue.js +1 -1
  734. package/lib/components/chart-line-bump/index.js +1 -1
  735. package/lib/components/chart-line-bump/index.vue.js +1 -1
  736. package/lib/components/chart-line-dashed/index.js +1 -1
  737. package/lib/components/chart-line-dashed/index.vue.js +1 -1
  738. package/lib/components/chart-line-ladder/index.js +1 -1
  739. package/lib/components/chart-line-ladder/index.vue.js +1 -1
  740. package/lib/components/chart-line-logarithm/index.js +1 -1
  741. package/lib/components/chart-line-logarithm/index.vue.js +1 -1
  742. package/lib/components/chart-line-multix/index.js +1 -1
  743. package/lib/components/chart-line-multix/index.vue.js +1 -1
  744. package/lib/components/chart-line-polar-double/index.js +1 -1
  745. package/lib/components/chart-line-polar-double/index.vue.js +1 -1
  746. package/lib/components/chart-line-rain-flow/index.js +1 -1
  747. package/lib/components/chart-line-rain-flow/index.vue.js +1 -1
  748. package/lib/components/chart-line-scale/index.js +1 -1
  749. package/lib/components/chart-line-scale/index.vue.js +1 -1
  750. package/lib/components/chart-line-smooth/index.js +1 -1
  751. package/lib/components/chart-line-smooth/index.vue.js +1 -1
  752. package/lib/components/chart-line-smooth-area/index.js +1 -1
  753. package/lib/components/chart-line-smooth-area/index.vue.js +1 -1
  754. package/lib/components/chart-line-stack/index.js +1 -1
  755. package/lib/components/chart-line-stack/index.vue.js +1 -1
  756. package/lib/components/chart-line-stack-area/index.js +1 -1
  757. package/lib/components/chart-line-stack-area/index.vue.js +1 -1
  758. package/lib/components/chart-line-temp/index.js +1 -1
  759. package/lib/components/chart-line-temp/index.vue.js +1 -1
  760. package/lib/components/chart-line-vertical/index.js +1 -1
  761. package/lib/components/chart-line-vertical/index.vue.js +1 -1
  762. package/lib/components/chart-map-basic/index.js +1 -1
  763. package/lib/components/chart-map-basic/index.vue.js +1 -1
  764. package/lib/components/chart-map-bmap-basic/index.js +1 -1
  765. package/lib/components/chart-map-bmap-basic/index.vue.js +1 -1
  766. package/lib/components/chart-map-bmap-heatmap/index.js +1 -1
  767. package/lib/components/chart-map-bmap-heatmap/index.vue.js +1 -1
  768. package/lib/components/chart-map-bmap-rich/index.js +1 -1
  769. package/lib/components/chart-map-bmap-rich/index.vue.js +1 -1
  770. package/lib/components/chart-map-customize/index.js +1 -1
  771. package/lib/components/chart-map-customize/index.vue.js +1 -1
  772. package/lib/components/chart-map-lines/index.js +1 -1
  773. package/lib/components/chart-map-lines/index.vue.js +1 -1
  774. package/lib/components/chart-map-scatter/index.js +1 -1
  775. package/lib/components/chart-map-scatter/index.vue.js +1 -1
  776. package/lib/components/chart-other-candlestick-basic/index.js +1 -1
  777. package/lib/components/chart-other-candlestick-basic/index.vue.js +1 -1
  778. package/lib/components/chart-other-candlestick-demo/index.js +1 -1
  779. package/lib/components/chart-other-candlestick-demo/index.vue.js +1 -1
  780. package/lib/components/chart-other-candlestick-shanghai/index.js +1 -1
  781. package/lib/components/chart-other-candlestick-shanghai/index.vue.js +1 -1
  782. package/lib/components/chart-other-circular-graph/index.js +1 -1
  783. package/lib/components/chart-other-circular-graph/index.vue.js +1 -1
  784. package/lib/components/chart-other-force/index.js +1 -1
  785. package/lib/components/chart-other-force/index.vue.js +1 -1
  786. package/lib/components/chart-other-force2/index.js +1 -1
  787. package/lib/components/chart-other-force2/index.vue.js +1 -1
  788. package/lib/components/chart-other-funnel/index.js +1 -1
  789. package/lib/components/chart-other-funnel/index.vue.js +1 -1
  790. package/lib/components/chart-other-funnel-contrast/index.js +1 -1
  791. package/lib/components/chart-other-funnel-contrast/index.vue.js +1 -1
  792. package/lib/components/chart-other-funnel-split/index.js +1 -1
  793. package/lib/components/chart-other-funnel-split/index.vue.js +1 -1
  794. package/lib/components/chart-other-funnel2/index.js +1 -1
  795. package/lib/components/chart-other-funnel2/index.vue.js +1 -1
  796. package/lib/components/chart-other-gauge/index.js +1 -1
  797. package/lib/components/chart-other-gauge/index.vue.js +1 -1
  798. package/lib/components/chart-other-gauge-grade/index.js +1 -1
  799. package/lib/components/chart-other-gauge-grade/index.vue.js +1 -1
  800. package/lib/components/chart-other-gauge-stage/index.js +1 -1
  801. package/lib/components/chart-other-gauge-stage/index.vue.js +1 -1
  802. package/lib/components/chart-other-graph-basic/index.js +1 -1
  803. package/lib/components/chart-other-graph-basic/index.vue.js +1 -1
  804. package/lib/components/chart-other-graph-basic2/index.js +1 -1
  805. package/lib/components/chart-other-graph-basic2/index.vue.js +1 -1
  806. package/lib/components/chart-other-graph-calendar/index.js +1 -1
  807. package/lib/components/chart-other-graph-calendar/index.vue.js +1 -1
  808. package/lib/components/chart-other-grid-percentage/index.js +1 -1
  809. package/lib/components/chart-other-grid-percentage/index.vue.js +1 -1
  810. package/lib/components/chart-other-heatmap/index.js +1 -1
  811. package/lib/components/chart-other-heatmap/index.vue.js +1 -1
  812. package/lib/components/chart-other-label-gauge/index.js +1 -1
  813. package/lib/components/chart-other-label-gauge/index.vue.js +1 -1
  814. package/lib/components/chart-other-liquidfill/index.js +1 -1
  815. package/lib/components/chart-other-liquidfill/index.vue.js +1 -1
  816. package/lib/components/chart-other-parallel-basic/index.js +1 -1
  817. package/lib/components/chart-other-parallel-basic/index.vue.js +1 -1
  818. package/lib/components/chart-other-parallel-mul/index.js +1 -1
  819. package/lib/components/chart-other-parallel-mul/index.vue.js +1 -1
  820. package/lib/components/chart-other-radar/index.js +1 -1
  821. package/lib/components/chart-other-radar/index.vue.js +1 -1
  822. package/lib/components/chart-other-radar-stack/index.js +1 -1
  823. package/lib/components/chart-other-radar-stack/index.vue.js +1 -1
  824. package/lib/components/chart-other-sunburst-basic/index.js +1 -1
  825. package/lib/components/chart-other-sunburst-basic/index.vue.js +1 -1
  826. package/lib/components/chart-other-sunburst-basic2/index.js +1 -1
  827. package/lib/components/chart-other-sunburst-basic2/index.vue.js +1 -1
  828. package/lib/components/chart-other-sunburst-basic3/index.js +1 -1
  829. package/lib/components/chart-other-sunburst-basic3/index.vue.js +1 -1
  830. package/lib/components/chart-other-sunburst-basic4/index.js +1 -1
  831. package/lib/components/chart-other-sunburst-basic4/index.vue.js +1 -1
  832. package/lib/components/chart-other-sunburst-book/index.js +1 -1
  833. package/lib/components/chart-other-sunburst-book/index.vue.js +1 -1
  834. package/lib/components/chart-other-sunburst-flavors/index.js +1 -1
  835. package/lib/components/chart-other-sunburst-flavors/index.vue.js +1 -1
  836. package/lib/components/chart-other-sunburst-radius/index.js +1 -1
  837. package/lib/components/chart-other-sunburst-radius/index.vue.js +1 -1
  838. package/lib/components/chart-other-theme-river/index.js +1 -1
  839. package/lib/components/chart-other-theme-river/index.vue.js +1 -1
  840. package/lib/components/chart-other-tree/index.js +1 -1
  841. package/lib/components/chart-other-tree/index.vue.js +1 -1
  842. package/lib/components/chart-other-tree-line/index.js +1 -1
  843. package/lib/components/chart-other-tree-line/index.vue.js +1 -1
  844. package/lib/components/chart-other-treemap/index.js +1 -1
  845. package/lib/components/chart-other-treemap/index.vue.js +1 -1
  846. package/lib/components/chart-other-treemap-basic/index.js +1 -1
  847. package/lib/components/chart-other-treemap-basic/index.vue.js +1 -1
  848. package/lib/components/chart-other-word-cloud/index.js +1 -1
  849. package/lib/components/chart-other-word-cloud/index.vue.js +1 -1
  850. package/lib/components/chart-pie-3d/index.js +1 -1
  851. package/lib/components/chart-pie-3d/index.vue.js +1 -1
  852. package/lib/components/chart-pie-basic/index.js +1 -1
  853. package/lib/components/chart-pie-basic/index.vue.js +1 -1
  854. package/lib/components/chart-pie-basic2/index.js +1 -1
  855. package/lib/components/chart-pie-basic2/index.vue.js +1 -1
  856. package/lib/components/chart-pie-customized/index.js +1 -1
  857. package/lib/components/chart-pie-customized/index.vue.js +1 -1
  858. package/lib/components/chart-pie-index/index.js +1 -1
  859. package/lib/components/chart-pie-index/index.vue.js +1 -1
  860. package/lib/components/chart-pie-interval/index.js +1 -1
  861. package/lib/components/chart-pie-interval/index.vue.js +1 -1
  862. package/lib/components/chart-pie-legend-scroll/index.js +1 -1
  863. package/lib/components/chart-pie-legend-scroll/index.vue.js +1 -1
  864. package/lib/components/chart-pie-radius/index.js +1 -1
  865. package/lib/components/chart-pie-radius/index.vue.js +1 -1
  866. package/lib/components/chart-pie-rose/index.js +1 -1
  867. package/lib/components/chart-pie-rose/index.vue.js +1 -1
  868. package/lib/components/chart-pie-round/index.js +1 -1
  869. package/lib/components/chart-pie-round/index.vue.js +1 -1
  870. package/lib/components/chart-pie-semicircle/index.js +1 -1
  871. package/lib/components/chart-pie-semicircle/index.vue.js +1 -1
  872. package/lib/components/chart-pie-sunburst/index.js +1 -1
  873. package/lib/components/chart-pie-sunburst/index.vue.js +1 -1
  874. package/lib/components/chart-scatter-basic/index.js +1 -1
  875. package/lib/components/chart-scatter-basic/index.vue.js +1 -1
  876. package/lib/components/chart-scatter-basic2/index.js +1 -1
  877. package/lib/components/chart-scatter-basic2/index.vue.js +1 -1
  878. package/lib/components/chart-scatter-bubble/index.js +1 -1
  879. package/lib/components/chart-scatter-bubble/index.vue.js +1 -1
  880. package/lib/components/chart-scatter-ripples/index.js +1 -1
  881. package/lib/components/chart-scatter-ripples/index.vue.js +1 -1
  882. package/lib/components/commons-babylon/index.js +1 -1
  883. package/lib/components/commons-echarts/compileAndRunEcharts.js +4 -4
  884. package/lib/components/commons-echarts/index.js +1 -1
  885. package/lib/components/commons-gaussian-splatting-view/index.js +1 -1
  886. package/lib/components/commons-gaussian-splatting-view/index.vue.js +1 -1
  887. package/lib/components/commons-gaussian-splatting-view/index.vue2.js +1 -1
  888. package/lib/components/commons-loop-iterator/index.js +1 -1
  889. package/lib/components/commons-loop-iterator/index.vue.js +1 -1
  890. package/lib/components/commons-loop-iterator/index.vue2.js +1 -1
  891. package/lib/components/commons-product-model/index.js +1 -1
  892. package/lib/components/commons-product-model/index.vue.js +1 -1
  893. package/lib/components/commons-product-model/index.vue2.js +1 -1
  894. package/lib/components/commons-qrcode/index.js +1 -1
  895. package/lib/components/commons-svg/index.js +1 -1
  896. package/lib/components/commons-three-loader/index.js +1 -1
  897. package/lib/components/commons-three-loader/index.vue.js +1 -1
  898. package/lib/components/commons-three-loader/index.vue2.js +1 -1
  899. package/lib/components/commons-three-loader3/index.js +1 -1
  900. package/lib/components/commons-three-loader3/index.vue.js +1 -1
  901. package/lib/components/commons-three-loader3/index.vue2.js +1 -1
  902. package/lib/components/commons-vr-photo/index.js +1 -1
  903. package/lib/components/commons-vr-video/index.js +1 -1
  904. package/lib/components/commons-weather/index.js +1 -1
  905. package/lib/components/commons-weather/index.vue.js +1 -1
  906. package/lib/components/commons-weather/index.vue2.js +1 -1
  907. package/lib/components/graphical-circle/index.js +1 -1
  908. package/lib/components/graphical-diamond/index.js +1 -1
  909. package/lib/components/graphical-hexagon/index.js +1 -1
  910. package/lib/components/graphical-isosceles-triangle/index.js +1 -1
  911. package/lib/components/graphical-pentagon/index.js +1 -1
  912. package/lib/components/graphical-rect/index.js +1 -1
  913. package/lib/components/graphical-right-triangle/index.js +1 -1
  914. package/lib/components/interaction-button/index.js +1 -1
  915. package/lib/components/interaction-button/index.vue.js +1 -1
  916. package/lib/components/interaction-button/index.vue2.js +1 -1
  917. package/lib/components/interaction-button-image/index.js +1 -1
  918. package/lib/components/interaction-button-image/index.vue.js +1 -1
  919. package/lib/components/interaction-button-image/index.vue2.js +1 -1
  920. package/lib/components/interaction-button-refresh/index.js +1 -1
  921. package/lib/components/interaction-button-refresh/index.vue.js +1 -1
  922. package/lib/components/interaction-button-refresh/index.vue2.js +1 -1
  923. package/lib/components/interaction-data-picker/index.js +1 -1
  924. package/lib/components/interaction-input/index.js +1 -1
  925. package/lib/components/interaction-input/index.vue.js +1 -1
  926. package/lib/components/interaction-input/index.vue2.js +1 -1
  927. package/lib/components/interaction-radio/index.js +1 -1
  928. package/lib/components/interaction-select/index.js +1 -1
  929. package/lib/components/interaction-select/index.vue.js +1 -1
  930. package/lib/components/interaction-select/index.vue2.js +1 -1
  931. package/lib/components/interaction-slider/index.js +1 -1
  932. package/lib/components/interaction-slider/index.vue.js +1 -1
  933. package/lib/components/interaction-slider/index.vue2.js +1 -1
  934. package/lib/components/interaction-switch/index.js +1 -1
  935. package/lib/components/interaction-tabs/index.js +1 -1
  936. package/lib/components/interaction-tabs/index.vue.js +1 -1
  937. package/lib/components/interaction-tabs/index.vue2.js +1 -1
  938. package/lib/components/interaction-tabs2/index.js +1 -1
  939. package/lib/components/interaction-tabs2/index.vue.js +1 -1
  940. package/lib/components/interaction-tabs2/index.vue2.js +1 -1
  941. package/lib/components/map-earth-basic/index.js +1 -1
  942. package/lib/components/map-earth-basic/index.vue.js +1 -1
  943. package/lib/components/map-earth-cool-tech/index.js +1 -1
  944. package/lib/components/map-earth-cool-tech/index.vue.js +1 -1
  945. package/lib/components/map-earth-fly-line/index.js +1 -1
  946. package/lib/components/map-earth-fly-line/index.vue.js +1 -1
  947. package/lib/components/map-earth-hacker/index.js +1 -1
  948. package/lib/components/map-earth-hacker/index.vue.js +1 -1
  949. package/lib/components/map-earth-particle/index.js +1 -1
  950. package/lib/components/map-earth-particle/index.vue.js +1 -1
  951. package/lib/components/media-audio/index.js +1 -1
  952. package/lib/components/media-audio-dynamic/index.js +1 -1
  953. package/lib/components/media-audio-dynamic/index.vue.js +1 -1
  954. package/lib/components/media-audio-dynamic/index.vue2.js +1 -1
  955. package/lib/components/media-carousel/index.js +1 -1
  956. package/lib/components/media-carousel-slides/index.js +1 -1
  957. package/lib/components/media-flv/index.js +1 -1
  958. package/lib/components/media-iframe/index.js +1 -1
  959. package/lib/components/media-iframe-carousel/index.js +1 -1
  960. package/lib/components/media-image/index.js +1 -1
  961. package/lib/components/media-image-dynamic/index.js +1 -1
  962. package/lib/components/media-image-dynamic/index.vue.js +1 -1
  963. package/lib/components/media-image-dynamic/index.vue2.js +1 -1
  964. package/lib/components/media-m3u8/index.js +1 -1
  965. package/lib/components/media-m3u8-dynamic/index.js +1 -1
  966. package/lib/components/media-m3u8-dynamic/index.vue.js +1 -1
  967. package/lib/components/media-video/index.js +1 -1
  968. package/lib/components/media-video-dynamic/index.js +1 -1
  969. package/lib/components/media-video-dynamic/index.vue.js +1 -1
  970. package/lib/components/media-video-dynamic/index.vue2.js +1 -1
  971. package/lib/components/media-wavesurfer/index.js +1 -1
  972. package/lib/components/scene-amap2d/index.js +1 -1
  973. package/lib/components/scene-amap2d/index.vue.js +1 -1
  974. package/lib/components/scene-amap2d/index.vue2.js +1 -1
  975. package/lib/components/scene-amap3d/index.js +1 -1
  976. package/lib/components/scene-amap3d/index.vue.js +1 -1
  977. package/lib/components/scene-amap3d/index.vue2.js +2 -2
  978. package/lib/components/scene-map3d/index.js +1 -1
  979. package/lib/components/scene-map3d/index.vue.js +1 -1
  980. package/lib/components/scene-map3d/index.vue2.js +1 -1
  981. package/lib/components/scene-map3d/map3d/map.js +1 -1
  982. package/lib/components/scene-ue-iframe/index.js +1 -1
  983. package/lib/components/scene-ue-iframe/index.vue.js +1 -1
  984. package/lib/components/scene-ue-iframe/index.vue2.js +1 -1
  985. package/lib/components/scene-ue-shj/index.js +1 -1
  986. package/lib/components/scene-unity-iframe/index.js +1 -1
  987. package/lib/components/scene-unity-webgl/index.js +1 -1
  988. package/lib/components/scene-vr/index.js +1 -1
  989. package/lib/components/text-carousel/index.js +1 -1
  990. package/lib/components/text-carousel/index.vue.js +1 -1
  991. package/lib/components/text-carousel/index.vue2.js +1 -1
  992. package/lib/components/text-count-down/index.js +1 -1
  993. package/lib/components/text-count-down/index.vue.js +1 -1
  994. package/lib/components/text-count-down/index.vue2.js +1 -1
  995. package/lib/components/text-over-number/index.js +1 -1
  996. package/lib/components/text-over-number/index.vue.js +1 -1
  997. package/lib/components/text-over-number/index.vue2.js +1 -1
  998. package/lib/components/text-real-time/index.js +1 -1
  999. package/lib/components/text-real-time/index.vue.js +1 -1
  1000. package/lib/components/text-real-time/index.vue2.js +1 -1
  1001. package/lib/components/text-row-scroll/index.js +1 -1
  1002. package/lib/components/text-row-scroll/index.vue.js +1 -1
  1003. package/lib/components/text-row-scroll/index.vue2.js +1 -1
  1004. package/lib/components/text-table-basic/index.js +1 -1
  1005. package/lib/components/text-table-basic/index.vue.js +1 -1
  1006. package/lib/components/text-table-basic/index.vue2.js +1 -1
  1007. package/lib/components/text-table-scroll/index.js +1 -1
  1008. package/lib/components/text-table-scroll/index.vue.js +1 -1
  1009. package/lib/components/text-table-scroll/index.vue2.js +1 -1
  1010. package/lib/components/text-text-basic/index.js +1 -1
  1011. package/lib/components/text-text-basic/index.vue.js +1 -1
  1012. package/lib/components/text-text-basic/index.vue2.js +1 -1
  1013. package/lib/components/text-text-dynamic/index.js +1 -1
  1014. package/lib/components/text-text-dynamic/index.vue.js +1 -1
  1015. package/lib/components/text-text-dynamic/index.vue2.js +1 -1
  1016. package/lib/components/text-title/index.js +1 -1
  1017. package/lib/components/text-title/index.vue.js +1 -1
  1018. package/lib/components/text-title/index.vue2.js +1 -1
  1019. package/lib/core/datasource/core/api.js +1 -0
  1020. package/lib/core/datasource/core/static.js +1 -0
  1021. package/lib/core/datasource/core/url.js +1 -0
  1022. package/lib/core/datasource/core/variable.js +1 -0
  1023. package/lib/core/datasource/core/ws.js +1 -0
  1024. package/lib/core/datasource/index.js +6 -0
  1025. package/lib/core/datasource/utils/request.js +1 -0
  1026. package/lib/core/datasource/utils/useMapping.js +1 -0
  1027. package/lib/core/datasource/utils/userRequest.js +1 -0
  1028. package/lib/core/datasource/utils/utils.js +1 -0
  1029. package/lib/core/datasource/utils/wsManager.js +1 -0
  1030. package/lib/index.js +1 -1
  1031. package/lib/widgets.css +1 -1
  1032. package/package.json +3 -2
package/es/index.mjs CHANGED
@@ -1,178 +1,179 @@
1
1
  import * as r from "./components/index.mjs";
2
2
  /* empty css */
3
- import { registerComponentRef as x } from "./utils/shj/component-refs.mjs";
4
- import { ZvChartBarStack as h } from "./components/chart-bar-stack/index.mjs";
5
- import { ZvChartBarBasic as Z } from "./components/chart-bar-basic/index.mjs";
6
- import { ZvChartBarLoop as n } from "./components/chart-bar-loop/index.mjs";
7
- import { ZvChartBarZebra as c } from "./components/chart-bar-zebra/index.mjs";
8
- import { ZvChartBarContrast as s } from "./components/chart-bar-contrast/index.mjs";
9
- import { ZvChartBarContrast2 as B } from "./components/chart-bar-contrast2/index.mjs";
10
- import { ZvChartBarLineBar as S } from "./components/chart-bar-line-bar/index.mjs";
11
- import { ZvChartBarStack2 as L } from "./components/chart-bar-stack2/index.mjs";
12
- import { ZvChartBarStackLine as T } from "./components/chart-bar-stack-line/index.mjs";
13
- import { ZvChartBarGradientColumnChart as P } from "./components/chart-bar-gradient-column-chart/index.mjs";
14
- import { ZvChartBarSpire as b } from "./components/chart-bar-spire/index.mjs";
15
- import { ZvchartBarPolar as R } from "./components/chart-bar-waterfall/index.mjs";
16
- import { ZvChartBarPolar as D } from "./components/chart-bar-polar/index.mjs";
17
- import { ZvchartBarWaterfall2 as F } from "./components/chart-bar-polar2/index.mjs";
18
- import { ZvChartBarStaggered as H } from "./components/chart-bar-staggered/index.mjs";
19
- import { ZvChartBarPolarStack as E } from "./components/chart-bar-polar-stack/index.mjs";
20
- import { ZvChartBarStack3 as W } from "./components/chart-bar-stack3/index.mjs";
21
- import { ZvChartBarHorizontalStack as U } from "./components/chart-bar-horizontal-stack/index.mjs";
22
- import { ZvChartBarContrast3 as q } from "./components/chart-bar-contrast3/index.mjs";
23
- import { ZvChartBarLineBar2 as Q } from "./components/chart-bar-line-bar2/index.mjs";
24
- import { ZvchartBarRadiusCricle as J } from "./components/chart-bar-radius-circle/index.mjs";
25
- import { ZvChartBarAnimation as X } from "./components/chart-bar-animation/index.mjs";
26
- import { ZvChartPie3d as _ } from "./components/chart-pie-3d/index.mjs";
27
- import { ZvChartPieBasic as or } from "./components/chart-pie-basic/index.mjs";
28
- import { ZvChartPieBasic2 as er } from "./components/chart-pie-basic2/index.mjs";
29
- import { ZvChartPieRadius as mr } from "./components/chart-pie-radius/index.mjs";
30
- import { ZvChartPieCustomized as xr } from "./components/chart-pie-customized/index.mjs";
31
- import { ZvChartPieInterval as hr } from "./components/chart-pie-interval/index.mjs";
32
- import { ZvChartPieLegendScroll as Zr } from "./components/chart-pie-legend-scroll/index.mjs";
33
- import { ZvChartLineBump as nr } from "./components/chart-line-bump/index.mjs";
34
- import { ZvChartLineTemp as cr } from "./components/chart-line-temp/index.mjs";
35
- import { ZvChartLineStack as sr } from "./components/chart-line-stack/index.mjs";
36
- import { ZvChartLineSmooth as Br } from "./components/chart-line-smooth/index.mjs";
37
- import { ZvChartLineRainFlow as Sr } from "./components/chart-line-rain-flow/index.mjs";
38
- import { ZvChartLineStackArea as Lr } from "./components/chart-line-stack-area/index.mjs";
39
- import { ZvChartLineSmoothArea as Tr } from "./components/chart-line-smooth-area/index.mjs";
40
- import { ZvChartLineAreaGardient as Pr } from "./components/chart-line-area-gradient/index.mjs";
41
- import { ZvChartLineAreaHighlight as br } from "./components/chart-line-area-highlight/index.mjs";
42
- import { ZvChartLineAreaHighlight2 as Rr } from "./components/chart-line-area-highlight2/index.mjs";
43
- import { ZvChartLineMultix as Dr } from "./components/chart-line-multix/index.mjs";
44
- import { ZvChartLineLogarithm as Fr } from "./components/chart-line-logarithm/index.mjs";
45
- import { ZvChartLineLadder as Hr } from "./components/chart-line-ladder/index.mjs";
46
- import { ZvChartLineVertical as Er } from "./components/chart-line-vertical/index.mjs";
47
- import { ZvChartLinePolarDouble as Wr } from "./components/chart-line-polar-double/index.mjs";
48
- import { ZvChartScatterBasic as Ur } from "./components/chart-scatter-basic/index.mjs";
49
- import { ZvChartScatterRipples as qr } from "./components/chart-scatter-ripples/index.mjs";
50
- import { ZvChartScatterBubble as Qr } from "./components/chart-scatter-bubble/index.mjs";
51
- import { ZvTextTextBasic as Jr } from "./components/text-text-basic/index.mjs";
52
- import { ZvTextTableBasic as Xr } from "./components/text-table-basic/index.mjs";
53
- import { ZvChartOtherGauge as _r } from "./components/chart-other-gauge/index.mjs";
54
- import { ZvChartOtherGaugeStage as oo } from "./components/chart-other-gauge-stage/index.mjs";
55
- import { ZvChartOtherGaugeGrade as eo } from "./components/chart-other-gauge-grade/index.mjs";
56
- import { ZvChartOtherWordCloud as mo } from "./components/chart-other-word-cloud/index.mjs";
57
- import { ZvChartOtherLiquidfill as xo } from "./components/chart-other-liquidfill/index.mjs";
58
- import { ZvChartBarHorizontal as ho } from "./components/chart-bar-horizontal/index.mjs";
59
- import { ZvChartBarThree as Zo } from "./components/chart-bar-three/index.mjs";
60
- import { ZvChartBarRank as no } from "./components/chart-bar-rank/index.mjs";
61
- import { ZvChartBarMini as co } from "./components/chart-bar-mini/index.mjs";
62
- import { ZvChartLineDashed as so } from "./components/chart-line-dashed/index.mjs";
63
- import { ZvChartPieSemicircle as uo } from "./components/chart-pie-semicircle/index.mjs";
64
- import { ZvChartPieRose as Oo } from "./components/chart-pie-rose/index.mjs";
65
- import { ZvChartScatterBasic2 as Mo } from "./components/chart-scatter-basic2/index.mjs";
66
- import { ZvChartOtherFunnel as go } from "./components/chart-other-funnel/index.mjs";
67
- import { ZvChartOtherForce as Io } from "./components/chart-other-force/index.mjs";
68
- import { ZvChartOtherRadar as Go } from "./components/chart-other-radar/index.mjs";
69
- import { ZvChartOtherFunnelSplit as ko } from "./components/chart-other-funnel-split/index.mjs";
70
- import { ZvChartOtherFunnelContrast as Ao } from "./components/chart-other-funnel-contrast/index.mjs";
71
- import { ZvChartOtherCandlestickBasic as yo } from "./components/chart-other-candlestick-basic/index.mjs";
72
- import { ZvChartOtherCandlestickShanghai as Vo } from "./components/chart-other-candlestick-shanghai/index.mjs";
73
- import { ZvChartOtherCandlestickDemo as wo } from "./components/chart-other-candlestick-demo/index.mjs";
74
- import { ZvChartOtherHeatmap as zo } from "./components/chart-other-heatmap/index.mjs";
75
- import { ZvChartOtherForce2 as jo } from "./components/chart-other-force2/index.mjs";
76
- import { ZvChartOtherGraphBasic as No } from "./components/chart-other-graph-basic/index.mjs";
77
- import { ZvChartOtherGraphBasic2 as $o } from "./components/chart-other-graph-basic2/index.mjs";
78
- import { ZvChartOtherGraphCalendar as Ko } from "./components/chart-other-graph-calendar/index.mjs";
79
- import { ZvChartOtherTreeLine as Yo } from "./components/chart-other-tree-line/index.mjs";
80
- import { ZvChartOtherTreemapBasic as rt } from "./components/chart-other-treemap-basic/index.mjs";
81
- import { ZvChartOtherSunburstBasic as tt } from "./components/chart-other-sunburst-basic/index.mjs";
82
- import { ZvChartOtherSunburstBasic2 as at } from "./components/chart-other-sunburst-basic2/index.mjs";
83
- import { ZvChartOtherSunburstBasic3 as pt } from "./components/chart-other-sunburst-basic3/index.mjs";
84
- import { ZvChartOtherSunburstBasic4 as ft } from "./components/chart-other-sunburst-basic4/index.mjs";
85
- import { ZvChartOtherSunburstBook as vt } from "./components/chart-other-sunburst-book/index.mjs";
86
- import { ZvChartOtherSunburstRadius as it } from "./components/chart-other-sunburst-radius/index.mjs";
87
- import { ZvChartOtherSunburstFlavors as Ct } from "./components/chart-other-sunburst-flavors/index.mjs";
88
- import { ZvChartOtherParallelBasic as lt } from "./components/chart-other-parallel-basic/index.mjs";
89
- import { ZvChartOtherParallelMul as dt } from "./components/chart-other-parallel-mul/index.mjs";
90
- import { ZvChartLineBasic as ut } from "./components/chart-line-basic/index.mjs";
91
- import { ZvChartLineScale as Ot } from "./components/chart-line-scale/index.mjs";
92
- import { ZvChartMapLines as Mt } from "./components/chart-map-lines/index.mjs";
93
- import { ZvChartMapBasic as gt } from "./components/chart-map-basic/index.mjs";
94
- import { ZvChartMapScatter as It } from "./components/chart-map-scatter/index.mjs";
95
- import { ZvChartMapCustomize as Gt } from "./components/chart-map-customize/index.mjs";
96
- import { ZvChartMapBmapRich as kt } from "./components/chart-map-bmap-rich/index.mjs";
97
- import { ZvChartOtherCircularGraph as At } from "./components/chart-other-circular-graph/index.mjs";
98
- import { ZvChartMapBmapHeatmap as yt } from "./components/chart-map-bmap-heatmap/index.mjs";
99
- import { ZvChartMapBmapBasic as Vt } from "./components/chart-map-bmap-basic/index.mjs";
100
- import { ZvMapEarthBasic as wt } from "./components/map-earth-basic/index.mjs";
101
- import { ZvMapEarthCoolTech as zt } from "./components/map-earth-cool-tech/index.mjs";
102
- import { ZvMapEarthParticle as jt } from "./components/map-earth-particle/index.mjs";
103
- import { ZvMapEarthHacker as Nt } from "./components/map-earth-hacker/index.mjs";
104
- import { ZvMapEarthFlyLine as $t } from "./components/map-earth-fly-line/index.mjs";
105
- import { ZvChartPieIndex as Kt } from "./components/chart-pie-index/index.mjs";
106
- import { ZvChartOtherGridPercentage as Yt } from "./components/chart-other-grid-percentage/index.mjs";
107
- import { ZvChartOtherRadarStack as re } from "./components/chart-other-radar-stack/index.mjs";
108
- import { ZvChartBarSegmentedProgress as te } from "./components/chart-bar-segmented-progress/index.mjs";
109
- import { ZvChartOtherFunnel2 as ae } from "./components/chart-other-funnel2/index.mjs";
110
- import { ZvChartOtherLabelGauge as pe } from "./components/chart-other-label-gauge/index.mjs";
111
- import { ZvChartPieRound as fe } from "./components/chart-pie-round/index.mjs";
112
- import { ZvChartPieSunburst as ve } from "./components/chart-pie-sunburst/index.mjs";
113
- import { ZvChartOtherThemeRiver as ie } from "./components/chart-other-theme-river/index.mjs";
114
- import { ZvChartOtherTree as Ce } from "./components/chart-other-tree/index.mjs";
115
- import { ZvChartOtherTreemap as le } from "./components/chart-other-treemap/index.mjs";
116
- import { ZvCommonsProductModel as de } from "./components/commons-product-model/index.mjs";
117
- import { ZvCommonsVrPhoto as ue } from "./components/commons-vr-photo/index.mjs";
118
- import { ZvCommonsVrVideo as Oe } from "./components/commons-vr-video/index.mjs";
119
- import { ZvCommonsThreeLoader as Me } from "./components/commons-three-loader/index.mjs";
120
- import { ZvCommonsThreeLoader3 as ge } from "./components/commons-three-loader3/index.mjs";
121
- import { ZvCommonsLoopIterator as Ie } from "./components/commons-loop-iterator/index.mjs";
122
- import { ZvCommonsGaussianSplattingView as Ge } from "./components/commons-gaussian-splatting-view/index.mjs";
123
- import { ZvCommonsBabylon as ke } from "./components/commons-babylon/index.mjs";
124
- import { ZvCommonsSvg as Ae } from "./components/commons-svg/index.mjs";
125
- import { ZvCommonsWeather as ye } from "./components/commons-weather/index.mjs";
126
- import { ZvMediaWavesurfer as Ve } from "./components/media-wavesurfer/index.mjs";
127
- import { ZvInteractionTabs as we } from "./components/interaction-tabs/index.mjs";
128
- import { ZvInteractionTabs2 as ze } from "./components/interaction-tabs2/index.mjs";
129
- import { ZvInteractionButton as je } from "./components/interaction-button/index.mjs";
130
- import { ZvInteractionButtonImage as Ne } from "./components/interaction-button-image/index.mjs";
131
- import { ZvInteractionSelect as $e } from "./components/interaction-select/index.mjs";
132
- import { ZvInteractionInput as Ke } from "./components/interaction-input/index.mjs";
133
- import { ZvInteractionRadio as Ye } from "./components/interaction-radio/index.mjs";
134
- import { ZvInteractionSlider as ra } from "./components/interaction-slider/index.mjs";
135
- import { ZvInteractionSwitch as ta } from "./components/interaction-switch/index.mjs";
136
- import { ZvInteractionDataPicker as aa } from "./components/interaction-data-picker/index.mjs";
137
- import { ZvInteractionButtonRefresh as pa } from "./components/interaction-button-refresh/index.mjs";
138
- import { ZvMediaImage as fa } from "./components/media-image/index.mjs";
139
- import { ZvTextTitle as va } from "./components/text-title/index.mjs";
140
- import { ZvCommonsQrcode as ia } from "./components/commons-qrcode/index.mjs";
141
- import { ZvMediaVideo as Ca } from "./components/media-video/index.mjs";
142
- import { ZvMediaAudio as la } from "./components/media-audio/index.mjs";
143
- import { ZvTextRealTime as da } from "./components/text-real-time/index.mjs";
144
- import { ZvMediaCarousel as ua } from "./components/media-carousel/index.mjs";
145
- import { ZvMediaCarouselSlides as Oa } from "./components/media-carousel-slides/index.mjs";
146
- import { ZvMediaIframeCarousel as Ma } from "./components/media-iframe-carousel/index.mjs";
147
- import { ZvMediaIframe as ga } from "./components/media-iframe/index.mjs";
148
- import { ZvMediaM3u8 as Ia } from "./components/media-m3u8/index.mjs";
149
- import { ZvMediaM3u8Dynamic as Ga } from "./components/media-m3u8-dynamic/index.mjs";
150
- import { ZvMediaAudioDynamic as ka } from "./components/media-audio-dynamic/index.mjs";
151
- import { ZvMediaVideoDynamic as Aa } from "./components/media-video-dynamic/index.mjs";
152
- import { ZvMediaImageDynamic as ya } from "./components/media-image-dynamic/index.mjs";
153
- import { ZvMediaFlv as Va } from "./components/media-flv/index.mjs";
154
- import { ZvCommonsEcharts as wa } from "./components/commons-echarts/index.mjs";
155
- import { ZvTextOverNumber as za } from "./components/text-over-number/index.mjs";
156
- import { ZvTextTableScroll as ja } from "./components/text-table-scroll/index.mjs";
157
- import { ZvTextCarousel as Na } from "./components/text-carousel/index.mjs";
158
- import { ZvTextRowScroll as $a } from "./components/text-row-scroll/index.mjs";
159
- import { ZvTextTextDynamic as Ka } from "./components/text-text-dynamic/index.mjs";
160
- import { ZvTextCountDown as Ya } from "./components/text-count-down/index.mjs";
161
- import { ZvGraphicalCircle as rm } from "./components/graphical-circle/index.mjs";
162
- import { ZvGraphicalDiamond as tm } from "./components/graphical-diamond/index.mjs";
163
- import { ZvGraphicalHexagon as am } from "./components/graphical-hexagon/index.mjs";
164
- import { ZvGraphicalIsoscelesTriangle as pm } from "./components/graphical-isosceles-triangle/index.mjs";
165
- import { ZvGraphicalPentagon as fm } from "./components/graphical-pentagon/index.mjs";
166
- import { ZvGraphicalRect as vm } from "./components/graphical-rect/index.mjs";
167
- import { ZvGraphicalRightTriangle as im } from "./components/graphical-right-triangle/index.mjs";
168
- import { ZvSceneMap3d as Cm } from "./components/scene-map3d/index.mjs";
169
- import { ZvSceneAmap2d as lm } from "./components/scene-amap2d/index.mjs";
170
- import { ZvSceneAmap3d as dm } from "./components/scene-amap3d/index.mjs";
171
- import { ZvSceneVr as um } from "./components/scene-vr/index.mjs";
172
- import { ZvSceneUnityIframe as Om } from "./components/scene-unity-iframe/index.mjs";
173
- import { ZvSceneUnityWebgl as Mm } from "./components/scene-unity-webgl/index.mjs";
174
- import { ZvSceneUeIframe as gm } from "./components/scene-ue-iframe/index.mjs";
175
- import { ZvSceneUeShj as Im } from "./components/scene-ue-shj/index.mjs";
3
+ import { registerComponentRef as x } from "./commons/utils/shj/component-refs.mjs";
4
+ import { SHJDatasourceV2 as h } from "./commons/core/datasource/index.mjs";
5
+ import { ZvChartBarStack as Z } from "./components/chart-bar-stack/index.mjs";
6
+ import { ZvChartBarBasic as n } from "./components/chart-bar-basic/index.mjs";
7
+ import { ZvChartBarLoop as c } from "./components/chart-bar-loop/index.mjs";
8
+ import { ZvChartBarZebra as s } from "./components/chart-bar-zebra/index.mjs";
9
+ import { ZvChartBarContrast as u } from "./components/chart-bar-contrast/index.mjs";
10
+ import { ZvChartBarContrast2 as S } from "./components/chart-bar-contrast2/index.mjs";
11
+ import { ZvChartBarLineBar as L } from "./components/chart-bar-line-bar/index.mjs";
12
+ import { ZvChartBarStack2 as T } from "./components/chart-bar-stack2/index.mjs";
13
+ import { ZvChartBarStackLine as P } from "./components/chart-bar-stack-line/index.mjs";
14
+ import { ZvChartBarGradientColumnChart as b } from "./components/chart-bar-gradient-column-chart/index.mjs";
15
+ import { ZvChartBarSpire as R } from "./components/chart-bar-spire/index.mjs";
16
+ import { ZvchartBarPolar as D } from "./components/chart-bar-waterfall/index.mjs";
17
+ import { ZvChartBarPolar as F } from "./components/chart-bar-polar/index.mjs";
18
+ import { ZvchartBarWaterfall2 as H } from "./components/chart-bar-polar2/index.mjs";
19
+ import { ZvChartBarStaggered as E } from "./components/chart-bar-staggered/index.mjs";
20
+ import { ZvChartBarPolarStack as W } from "./components/chart-bar-polar-stack/index.mjs";
21
+ import { ZvChartBarStack3 as U } from "./components/chart-bar-stack3/index.mjs";
22
+ import { ZvChartBarHorizontalStack as q } from "./components/chart-bar-horizontal-stack/index.mjs";
23
+ import { ZvChartBarContrast3 as N } from "./components/chart-bar-contrast3/index.mjs";
24
+ import { ZvChartBarLineBar2 as $ } from "./components/chart-bar-line-bar2/index.mjs";
25
+ import { ZvchartBarRadiusCricle as X } from "./components/chart-bar-radius-circle/index.mjs";
26
+ import { ZvChartBarAnimation as _ } from "./components/chart-bar-animation/index.mjs";
27
+ import { ZvChartPie3d as or } from "./components/chart-pie-3d/index.mjs";
28
+ import { ZvChartPieBasic as er } from "./components/chart-pie-basic/index.mjs";
29
+ import { ZvChartPieBasic2 as mr } from "./components/chart-pie-basic2/index.mjs";
30
+ import { ZvChartPieRadius as xr } from "./components/chart-pie-radius/index.mjs";
31
+ import { ZvChartPieCustomized as hr } from "./components/chart-pie-customized/index.mjs";
32
+ import { ZvChartPieInterval as Zr } from "./components/chart-pie-interval/index.mjs";
33
+ import { ZvChartPieLegendScroll as nr } from "./components/chart-pie-legend-scroll/index.mjs";
34
+ import { ZvChartLineBump as cr } from "./components/chart-line-bump/index.mjs";
35
+ import { ZvChartLineTemp as sr } from "./components/chart-line-temp/index.mjs";
36
+ import { ZvChartLineStack as ur } from "./components/chart-line-stack/index.mjs";
37
+ import { ZvChartLineSmooth as Sr } from "./components/chart-line-smooth/index.mjs";
38
+ import { ZvChartLineRainFlow as Lr } from "./components/chart-line-rain-flow/index.mjs";
39
+ import { ZvChartLineStackArea as Tr } from "./components/chart-line-stack-area/index.mjs";
40
+ import { ZvChartLineSmoothArea as Pr } from "./components/chart-line-smooth-area/index.mjs";
41
+ import { ZvChartLineAreaGardient as br } from "./components/chart-line-area-gradient/index.mjs";
42
+ import { ZvChartLineAreaHighlight as Rr } from "./components/chart-line-area-highlight/index.mjs";
43
+ import { ZvChartLineAreaHighlight2 as Dr } from "./components/chart-line-area-highlight2/index.mjs";
44
+ import { ZvChartLineMultix as Fr } from "./components/chart-line-multix/index.mjs";
45
+ import { ZvChartLineLogarithm as Hr } from "./components/chart-line-logarithm/index.mjs";
46
+ import { ZvChartLineLadder as Er } from "./components/chart-line-ladder/index.mjs";
47
+ import { ZvChartLineVertical as Wr } from "./components/chart-line-vertical/index.mjs";
48
+ import { ZvChartLinePolarDouble as Ur } from "./components/chart-line-polar-double/index.mjs";
49
+ import { ZvChartScatterBasic as qr } from "./components/chart-scatter-basic/index.mjs";
50
+ import { ZvChartScatterRipples as Nr } from "./components/chart-scatter-ripples/index.mjs";
51
+ import { ZvChartScatterBubble as $r } from "./components/chart-scatter-bubble/index.mjs";
52
+ import { ZvTextTextBasic as Xr } from "./components/text-text-basic/index.mjs";
53
+ import { ZvTextTableBasic as _r } from "./components/text-table-basic/index.mjs";
54
+ import { ZvChartOtherGauge as oo } from "./components/chart-other-gauge/index.mjs";
55
+ import { ZvChartOtherGaugeStage as eo } from "./components/chart-other-gauge-stage/index.mjs";
56
+ import { ZvChartOtherGaugeGrade as mo } from "./components/chart-other-gauge-grade/index.mjs";
57
+ import { ZvChartOtherWordCloud as xo } from "./components/chart-other-word-cloud/index.mjs";
58
+ import { ZvChartOtherLiquidfill as ho } from "./components/chart-other-liquidfill/index.mjs";
59
+ import { ZvChartBarHorizontal as Zo } from "./components/chart-bar-horizontal/index.mjs";
60
+ import { ZvChartBarThree as no } from "./components/chart-bar-three/index.mjs";
61
+ import { ZvChartBarRank as co } from "./components/chart-bar-rank/index.mjs";
62
+ import { ZvChartBarMini as so } from "./components/chart-bar-mini/index.mjs";
63
+ import { ZvChartLineDashed as Bo } from "./components/chart-line-dashed/index.mjs";
64
+ import { ZvChartPieSemicircle as Oo } from "./components/chart-pie-semicircle/index.mjs";
65
+ import { ZvChartPieRose as Mo } from "./components/chart-pie-rose/index.mjs";
66
+ import { ZvChartScatterBasic2 as go } from "./components/chart-scatter-basic2/index.mjs";
67
+ import { ZvChartOtherFunnel as Io } from "./components/chart-other-funnel/index.mjs";
68
+ import { ZvChartOtherForce as Go } from "./components/chart-other-force/index.mjs";
69
+ import { ZvChartOtherRadar as ko } from "./components/chart-other-radar/index.mjs";
70
+ import { ZvChartOtherFunnelSplit as Ao } from "./components/chart-other-funnel-split/index.mjs";
71
+ import { ZvChartOtherFunnelContrast as yo } from "./components/chart-other-funnel-contrast/index.mjs";
72
+ import { ZvChartOtherCandlestickBasic as Vo } from "./components/chart-other-candlestick-basic/index.mjs";
73
+ import { ZvChartOtherCandlestickShanghai as wo } from "./components/chart-other-candlestick-shanghai/index.mjs";
74
+ import { ZvChartOtherCandlestickDemo as zo } from "./components/chart-other-candlestick-demo/index.mjs";
75
+ import { ZvChartOtherHeatmap as jo } from "./components/chart-other-heatmap/index.mjs";
76
+ import { ZvChartOtherForce2 as Jo } from "./components/chart-other-force2/index.mjs";
77
+ import { ZvChartOtherGraphBasic as Qo } from "./components/chart-other-graph-basic/index.mjs";
78
+ import { ZvChartOtherGraphBasic2 as Ko } from "./components/chart-other-graph-basic2/index.mjs";
79
+ import { ZvChartOtherGraphCalendar as Yo } from "./components/chart-other-graph-calendar/index.mjs";
80
+ import { ZvChartOtherTreeLine as rt } from "./components/chart-other-tree-line/index.mjs";
81
+ import { ZvChartOtherTreemapBasic as tt } from "./components/chart-other-treemap-basic/index.mjs";
82
+ import { ZvChartOtherSunburstBasic as at } from "./components/chart-other-sunburst-basic/index.mjs";
83
+ import { ZvChartOtherSunburstBasic2 as pt } from "./components/chart-other-sunburst-basic2/index.mjs";
84
+ import { ZvChartOtherSunburstBasic3 as ft } from "./components/chart-other-sunburst-basic3/index.mjs";
85
+ import { ZvChartOtherSunburstBasic4 as vt } from "./components/chart-other-sunburst-basic4/index.mjs";
86
+ import { ZvChartOtherSunburstBook as it } from "./components/chart-other-sunburst-book/index.mjs";
87
+ import { ZvChartOtherSunburstRadius as Ct } from "./components/chart-other-sunburst-radius/index.mjs";
88
+ import { ZvChartOtherSunburstFlavors as lt } from "./components/chart-other-sunburst-flavors/index.mjs";
89
+ import { ZvChartOtherParallelBasic as dt } from "./components/chart-other-parallel-basic/index.mjs";
90
+ import { ZvChartOtherParallelMul as Bt } from "./components/chart-other-parallel-mul/index.mjs";
91
+ import { ZvChartLineBasic as Ot } from "./components/chart-line-basic/index.mjs";
92
+ import { ZvChartLineScale as Mt } from "./components/chart-line-scale/index.mjs";
93
+ import { ZvChartMapLines as gt } from "./components/chart-map-lines/index.mjs";
94
+ import { ZvChartMapBasic as It } from "./components/chart-map-basic/index.mjs";
95
+ import { ZvChartMapScatter as Gt } from "./components/chart-map-scatter/index.mjs";
96
+ import { ZvChartMapCustomize as kt } from "./components/chart-map-customize/index.mjs";
97
+ import { ZvChartMapBmapRich as At } from "./components/chart-map-bmap-rich/index.mjs";
98
+ import { ZvChartOtherCircularGraph as yt } from "./components/chart-other-circular-graph/index.mjs";
99
+ import { ZvChartMapBmapHeatmap as Vt } from "./components/chart-map-bmap-heatmap/index.mjs";
100
+ import { ZvChartMapBmapBasic as wt } from "./components/chart-map-bmap-basic/index.mjs";
101
+ import { ZvMapEarthBasic as zt } from "./components/map-earth-basic/index.mjs";
102
+ import { ZvMapEarthCoolTech as jt } from "./components/map-earth-cool-tech/index.mjs";
103
+ import { ZvMapEarthParticle as Jt } from "./components/map-earth-particle/index.mjs";
104
+ import { ZvMapEarthHacker as Qt } from "./components/map-earth-hacker/index.mjs";
105
+ import { ZvMapEarthFlyLine as Kt } from "./components/map-earth-fly-line/index.mjs";
106
+ import { ZvChartPieIndex as Yt } from "./components/chart-pie-index/index.mjs";
107
+ import { ZvChartOtherGridPercentage as re } from "./components/chart-other-grid-percentage/index.mjs";
108
+ import { ZvChartOtherRadarStack as te } from "./components/chart-other-radar-stack/index.mjs";
109
+ import { ZvChartBarSegmentedProgress as ae } from "./components/chart-bar-segmented-progress/index.mjs";
110
+ import { ZvChartOtherFunnel2 as pe } from "./components/chart-other-funnel2/index.mjs";
111
+ import { ZvChartOtherLabelGauge as fe } from "./components/chart-other-label-gauge/index.mjs";
112
+ import { ZvChartPieRound as ve } from "./components/chart-pie-round/index.mjs";
113
+ import { ZvChartPieSunburst as ie } from "./components/chart-pie-sunburst/index.mjs";
114
+ import { ZvChartOtherThemeRiver as Ce } from "./components/chart-other-theme-river/index.mjs";
115
+ import { ZvChartOtherTree as le } from "./components/chart-other-tree/index.mjs";
116
+ import { ZvChartOtherTreemap as de } from "./components/chart-other-treemap/index.mjs";
117
+ import { ZvCommonsProductModel as Be } from "./components/commons-product-model/index.mjs";
118
+ import { ZvCommonsVrPhoto as Oe } from "./components/commons-vr-photo/index.mjs";
119
+ import { ZvCommonsVrVideo as Me } from "./components/commons-vr-video/index.mjs";
120
+ import { ZvCommonsThreeLoader as ge } from "./components/commons-three-loader/index.mjs";
121
+ import { ZvCommonsThreeLoader3 as Ie } from "./components/commons-three-loader3/index.mjs";
122
+ import { ZvCommonsLoopIterator as Ge } from "./components/commons-loop-iterator/index.mjs";
123
+ import { ZvCommonsGaussianSplattingView as ke } from "./components/commons-gaussian-splatting-view/index.mjs";
124
+ import { ZvCommonsBabylon as Ae } from "./components/commons-babylon/index.mjs";
125
+ import { ZvCommonsSvg as ye } from "./components/commons-svg/index.mjs";
126
+ import { ZvCommonsWeather as Ve } from "./components/commons-weather/index.mjs";
127
+ import { ZvMediaWavesurfer as we } from "./components/media-wavesurfer/index.mjs";
128
+ import { ZvInteractionTabs as ze } from "./components/interaction-tabs/index.mjs";
129
+ import { ZvInteractionTabs2 as je } from "./components/interaction-tabs2/index.mjs";
130
+ import { ZvInteractionButton as Je } from "./components/interaction-button/index.mjs";
131
+ import { ZvInteractionButtonImage as Qe } from "./components/interaction-button-image/index.mjs";
132
+ import { ZvInteractionSelect as Ke } from "./components/interaction-select/index.mjs";
133
+ import { ZvInteractionInput as Ye } from "./components/interaction-input/index.mjs";
134
+ import { ZvInteractionRadio as ra } from "./components/interaction-radio/index.mjs";
135
+ import { ZvInteractionSlider as ta } from "./components/interaction-slider/index.mjs";
136
+ import { ZvInteractionSwitch as aa } from "./components/interaction-switch/index.mjs";
137
+ import { ZvInteractionDataPicker as pa } from "./components/interaction-data-picker/index.mjs";
138
+ import { ZvInteractionButtonRefresh as fa } from "./components/interaction-button-refresh/index.mjs";
139
+ import { ZvMediaImage as va } from "./components/media-image/index.mjs";
140
+ import { ZvTextTitle as ia } from "./components/text-title/index.mjs";
141
+ import { ZvCommonsQrcode as Ca } from "./components/commons-qrcode/index.mjs";
142
+ import { ZvMediaVideo as la } from "./components/media-video/index.mjs";
143
+ import { ZvMediaAudio as da } from "./components/media-audio/index.mjs";
144
+ import { ZvTextRealTime as Ba } from "./components/text-real-time/index.mjs";
145
+ import { ZvMediaCarousel as Oa } from "./components/media-carousel/index.mjs";
146
+ import { ZvMediaCarouselSlides as Ma } from "./components/media-carousel-slides/index.mjs";
147
+ import { ZvMediaIframeCarousel as ga } from "./components/media-iframe-carousel/index.mjs";
148
+ import { ZvMediaIframe as Ia } from "./components/media-iframe/index.mjs";
149
+ import { ZvMediaM3u8 as Ga } from "./components/media-m3u8/index.mjs";
150
+ import { ZvMediaM3u8Dynamic as ka } from "./components/media-m3u8-dynamic/index.mjs";
151
+ import { ZvMediaAudioDynamic as Aa } from "./components/media-audio-dynamic/index.mjs";
152
+ import { ZvMediaVideoDynamic as ya } from "./components/media-video-dynamic/index.mjs";
153
+ import { ZvMediaImageDynamic as Va } from "./components/media-image-dynamic/index.mjs";
154
+ import { ZvMediaFlv as wa } from "./components/media-flv/index.mjs";
155
+ import { ZvCommonsEcharts as za } from "./components/commons-echarts/index.mjs";
156
+ import { ZvTextOverNumber as ja } from "./components/text-over-number/index.mjs";
157
+ import { ZvTextTableScroll as Ja } from "./components/text-table-scroll/index.mjs";
158
+ import { ZvTextCarousel as Qa } from "./components/text-carousel/index.mjs";
159
+ import { ZvTextRowScroll as Ka } from "./components/text-row-scroll/index.mjs";
160
+ import { ZvTextTextDynamic as Ya } from "./components/text-text-dynamic/index.mjs";
161
+ import { ZvTextCountDown as rm } from "./components/text-count-down/index.mjs";
162
+ import { ZvGraphicalCircle as tm } from "./components/graphical-circle/index.mjs";
163
+ import { ZvGraphicalDiamond as am } from "./components/graphical-diamond/index.mjs";
164
+ import { ZvGraphicalHexagon as pm } from "./components/graphical-hexagon/index.mjs";
165
+ import { ZvGraphicalIsoscelesTriangle as fm } from "./components/graphical-isosceles-triangle/index.mjs";
166
+ import { ZvGraphicalPentagon as vm } from "./components/graphical-pentagon/index.mjs";
167
+ import { ZvGraphicalRect as im } from "./components/graphical-rect/index.mjs";
168
+ import { ZvGraphicalRightTriangle as Cm } from "./components/graphical-right-triangle/index.mjs";
169
+ import { ZvSceneMap3d as lm } from "./components/scene-map3d/index.mjs";
170
+ import { ZvSceneAmap2d as dm } from "./components/scene-amap2d/index.mjs";
171
+ import { ZvSceneAmap3d as Bm } from "./components/scene-amap3d/index.mjs";
172
+ import { ZvSceneVr as Om } from "./components/scene-vr/index.mjs";
173
+ import { ZvSceneUnityIframe as Mm } from "./components/scene-unity-iframe/index.mjs";
174
+ import { ZvSceneUnityWebgl as gm } from "./components/scene-unity-webgl/index.mjs";
175
+ import { ZvSceneUeIframe as Im } from "./components/scene-ue-iframe/index.mjs";
176
+ import { ZvSceneUeShj as Gm } from "./components/scene-ue-shj/index.mjs";
176
177
  const a = {
177
178
  install: (o) => {
178
179
  for (const t in r)
@@ -180,178 +181,179 @@ const a = {
180
181
  }
181
182
  };
182
183
  export {
183
- X as ZvChartBarAnimation,
184
- Z as ZvChartBarBasic,
185
- s as ZvChartBarContrast,
186
- B as ZvChartBarContrast2,
187
- q as ZvChartBarContrast3,
188
- P as ZvChartBarGradientColumnChart,
189
- ho as ZvChartBarHorizontal,
190
- U as ZvChartBarHorizontalStack,
191
- S as ZvChartBarLineBar,
192
- Q as ZvChartBarLineBar2,
193
- n as ZvChartBarLoop,
194
- co as ZvChartBarMini,
195
- D as ZvChartBarPolar,
196
- E as ZvChartBarPolarStack,
197
- no as ZvChartBarRank,
198
- te as ZvChartBarSegmentedProgress,
199
- b as ZvChartBarSpire,
200
- h as ZvChartBarStack,
201
- L as ZvChartBarStack2,
202
- W as ZvChartBarStack3,
203
- T as ZvChartBarStackLine,
204
- H as ZvChartBarStaggered,
205
- Zo as ZvChartBarThree,
206
- c as ZvChartBarZebra,
207
- Pr as ZvChartLineAreaGardient,
208
- br as ZvChartLineAreaHighlight,
209
- Rr as ZvChartLineAreaHighlight2,
210
- ut as ZvChartLineBasic,
211
- nr as ZvChartLineBump,
212
- so as ZvChartLineDashed,
213
- Hr as ZvChartLineLadder,
214
- Fr as ZvChartLineLogarithm,
215
- Dr as ZvChartLineMultix,
216
- Wr as ZvChartLinePolarDouble,
217
- Sr as ZvChartLineRainFlow,
218
- Ot as ZvChartLineScale,
219
- Br as ZvChartLineSmooth,
220
- Tr as ZvChartLineSmoothArea,
221
- sr as ZvChartLineStack,
222
- Lr as ZvChartLineStackArea,
223
- cr as ZvChartLineTemp,
224
- Er as ZvChartLineVertical,
225
- gt as ZvChartMapBasic,
226
- Vt as ZvChartMapBmapBasic,
227
- yt as ZvChartMapBmapHeatmap,
228
- kt as ZvChartMapBmapRich,
229
- Gt as ZvChartMapCustomize,
230
- Mt as ZvChartMapLines,
231
- It as ZvChartMapScatter,
232
- yo as ZvChartOtherCandlestickBasic,
233
- wo as ZvChartOtherCandlestickDemo,
234
- Vo as ZvChartOtherCandlestickShanghai,
235
- At as ZvChartOtherCircularGraph,
236
- Io as ZvChartOtherForce,
237
- jo as ZvChartOtherForce2,
238
- go as ZvChartOtherFunnel,
239
- ae as ZvChartOtherFunnel2,
240
- Ao as ZvChartOtherFunnelContrast,
241
- ko as ZvChartOtherFunnelSplit,
242
- _r as ZvChartOtherGauge,
243
- eo as ZvChartOtherGaugeGrade,
244
- oo as ZvChartOtherGaugeStage,
245
- No as ZvChartOtherGraphBasic,
246
- $o as ZvChartOtherGraphBasic2,
247
- Ko as ZvChartOtherGraphCalendar,
248
- Yt as ZvChartOtherGridPercentage,
249
- zo as ZvChartOtherHeatmap,
250
- pe as ZvChartOtherLabelGauge,
251
- xo as ZvChartOtherLiquidfill,
252
- lt as ZvChartOtherParallelBasic,
253
- dt as ZvChartOtherParallelMul,
254
- Go as ZvChartOtherRadar,
255
- re as ZvChartOtherRadarStack,
256
- tt as ZvChartOtherSunburstBasic,
257
- at as ZvChartOtherSunburstBasic2,
258
- pt as ZvChartOtherSunburstBasic3,
259
- ft as ZvChartOtherSunburstBasic4,
260
- vt as ZvChartOtherSunburstBook,
261
- Ct as ZvChartOtherSunburstFlavors,
262
- it as ZvChartOtherSunburstRadius,
263
- ie as ZvChartOtherThemeRiver,
264
- Ce as ZvChartOtherTree,
265
- Yo as ZvChartOtherTreeLine,
266
- le as ZvChartOtherTreemap,
267
- rt as ZvChartOtherTreemapBasic,
268
- mo as ZvChartOtherWordCloud,
269
- _ as ZvChartPie3d,
270
- or as ZvChartPieBasic,
271
- er as ZvChartPieBasic2,
272
- xr as ZvChartPieCustomized,
273
- Kt as ZvChartPieIndex,
274
- hr as ZvChartPieInterval,
275
- Zr as ZvChartPieLegendScroll,
276
- mr as ZvChartPieRadius,
277
- Oo as ZvChartPieRose,
278
- fe as ZvChartPieRound,
279
- uo as ZvChartPieSemicircle,
280
- ve as ZvChartPieSunburst,
281
- Ur as ZvChartScatterBasic,
282
- Mo as ZvChartScatterBasic2,
283
- Qr as ZvChartScatterBubble,
284
- qr as ZvChartScatterRipples,
285
- ke as ZvCommonsBabylon,
286
- wa as ZvCommonsEcharts,
287
- Ge as ZvCommonsGaussianSplattingView,
288
- Ie as ZvCommonsLoopIterator,
289
- de as ZvCommonsProductModel,
290
- ia as ZvCommonsQrcode,
291
- Ae as ZvCommonsSvg,
292
- Me as ZvCommonsThreeLoader,
293
- ge as ZvCommonsThreeLoader3,
294
- ue as ZvCommonsVrPhoto,
295
- Oe as ZvCommonsVrVideo,
296
- ye as ZvCommonsWeather,
297
- rm as ZvGraphicalCircle,
298
- tm as ZvGraphicalDiamond,
299
- am as ZvGraphicalHexagon,
300
- pm as ZvGraphicalIsoscelesTriangle,
301
- fm as ZvGraphicalPentagon,
302
- vm as ZvGraphicalRect,
303
- im as ZvGraphicalRightTriangle,
304
- je as ZvInteractionButton,
305
- Ne as ZvInteractionButtonImage,
306
- pa as ZvInteractionButtonRefresh,
307
- aa as ZvInteractionDataPicker,
308
- Ke as ZvInteractionInput,
309
- Ye as ZvInteractionRadio,
310
- $e as ZvInteractionSelect,
311
- ra as ZvInteractionSlider,
312
- ta as ZvInteractionSwitch,
313
- we as ZvInteractionTabs,
314
- ze as ZvInteractionTabs2,
315
- wt as ZvMapEarthBasic,
316
- zt as ZvMapEarthCoolTech,
317
- $t as ZvMapEarthFlyLine,
318
- Nt as ZvMapEarthHacker,
319
- jt as ZvMapEarthParticle,
320
- la as ZvMediaAudio,
321
- ka as ZvMediaAudioDynamic,
322
- ua as ZvMediaCarousel,
323
- Oa as ZvMediaCarouselSlides,
324
- Va as ZvMediaFlv,
325
- ga as ZvMediaIframe,
326
- Ma as ZvMediaIframeCarousel,
327
- fa as ZvMediaImage,
328
- ya as ZvMediaImageDynamic,
329
- Ia as ZvMediaM3u8,
330
- Ga as ZvMediaM3u8Dynamic,
331
- Ca as ZvMediaVideo,
332
- Aa as ZvMediaVideoDynamic,
333
- Ve as ZvMediaWavesurfer,
334
- lm as ZvSceneAmap2d,
335
- dm as ZvSceneAmap3d,
336
- Cm as ZvSceneMap3d,
337
- gm as ZvSceneUeIframe,
338
- Im as ZvSceneUeShj,
339
- Om as ZvSceneUnityIframe,
340
- Mm as ZvSceneUnityWebgl,
341
- um as ZvSceneVr,
342
- Na as ZvTextCarousel,
343
- Ya as ZvTextCountDown,
344
- za as ZvTextOverNumber,
345
- da as ZvTextRealTime,
346
- $a as ZvTextRowScroll,
347
- Xr as ZvTextTableBasic,
348
- ja as ZvTextTableScroll,
349
- Jr as ZvTextTextBasic,
350
- Ka as ZvTextTextDynamic,
351
- va as ZvTextTitle,
352
- R as ZvchartBarPolar,
353
- J as ZvchartBarRadiusCricle,
354
- F as ZvchartBarWaterfall2,
184
+ h as SHJDatasourceV2,
185
+ _ as ZvChartBarAnimation,
186
+ n as ZvChartBarBasic,
187
+ u as ZvChartBarContrast,
188
+ S as ZvChartBarContrast2,
189
+ N as ZvChartBarContrast3,
190
+ b as ZvChartBarGradientColumnChart,
191
+ Zo as ZvChartBarHorizontal,
192
+ q as ZvChartBarHorizontalStack,
193
+ L as ZvChartBarLineBar,
194
+ $ as ZvChartBarLineBar2,
195
+ c as ZvChartBarLoop,
196
+ so as ZvChartBarMini,
197
+ F as ZvChartBarPolar,
198
+ W as ZvChartBarPolarStack,
199
+ co as ZvChartBarRank,
200
+ ae as ZvChartBarSegmentedProgress,
201
+ R as ZvChartBarSpire,
202
+ Z as ZvChartBarStack,
203
+ T as ZvChartBarStack2,
204
+ U as ZvChartBarStack3,
205
+ P as ZvChartBarStackLine,
206
+ E as ZvChartBarStaggered,
207
+ no as ZvChartBarThree,
208
+ s as ZvChartBarZebra,
209
+ br as ZvChartLineAreaGardient,
210
+ Rr as ZvChartLineAreaHighlight,
211
+ Dr as ZvChartLineAreaHighlight2,
212
+ Ot as ZvChartLineBasic,
213
+ cr as ZvChartLineBump,
214
+ Bo as ZvChartLineDashed,
215
+ Er as ZvChartLineLadder,
216
+ Hr as ZvChartLineLogarithm,
217
+ Fr as ZvChartLineMultix,
218
+ Ur as ZvChartLinePolarDouble,
219
+ Lr as ZvChartLineRainFlow,
220
+ Mt as ZvChartLineScale,
221
+ Sr as ZvChartLineSmooth,
222
+ Pr as ZvChartLineSmoothArea,
223
+ ur as ZvChartLineStack,
224
+ Tr as ZvChartLineStackArea,
225
+ sr as ZvChartLineTemp,
226
+ Wr as ZvChartLineVertical,
227
+ It as ZvChartMapBasic,
228
+ wt as ZvChartMapBmapBasic,
229
+ Vt as ZvChartMapBmapHeatmap,
230
+ At as ZvChartMapBmapRich,
231
+ kt as ZvChartMapCustomize,
232
+ gt as ZvChartMapLines,
233
+ Gt as ZvChartMapScatter,
234
+ Vo as ZvChartOtherCandlestickBasic,
235
+ zo as ZvChartOtherCandlestickDemo,
236
+ wo as ZvChartOtherCandlestickShanghai,
237
+ yt as ZvChartOtherCircularGraph,
238
+ Go as ZvChartOtherForce,
239
+ Jo as ZvChartOtherForce2,
240
+ Io as ZvChartOtherFunnel,
241
+ pe as ZvChartOtherFunnel2,
242
+ yo as ZvChartOtherFunnelContrast,
243
+ Ao as ZvChartOtherFunnelSplit,
244
+ oo as ZvChartOtherGauge,
245
+ mo as ZvChartOtherGaugeGrade,
246
+ eo as ZvChartOtherGaugeStage,
247
+ Qo as ZvChartOtherGraphBasic,
248
+ Ko as ZvChartOtherGraphBasic2,
249
+ Yo as ZvChartOtherGraphCalendar,
250
+ re as ZvChartOtherGridPercentage,
251
+ jo as ZvChartOtherHeatmap,
252
+ fe as ZvChartOtherLabelGauge,
253
+ ho as ZvChartOtherLiquidfill,
254
+ dt as ZvChartOtherParallelBasic,
255
+ Bt as ZvChartOtherParallelMul,
256
+ ko as ZvChartOtherRadar,
257
+ te as ZvChartOtherRadarStack,
258
+ at as ZvChartOtherSunburstBasic,
259
+ pt as ZvChartOtherSunburstBasic2,
260
+ ft as ZvChartOtherSunburstBasic3,
261
+ vt as ZvChartOtherSunburstBasic4,
262
+ it as ZvChartOtherSunburstBook,
263
+ lt as ZvChartOtherSunburstFlavors,
264
+ Ct as ZvChartOtherSunburstRadius,
265
+ Ce as ZvChartOtherThemeRiver,
266
+ le as ZvChartOtherTree,
267
+ rt as ZvChartOtherTreeLine,
268
+ de as ZvChartOtherTreemap,
269
+ tt as ZvChartOtherTreemapBasic,
270
+ xo as ZvChartOtherWordCloud,
271
+ or as ZvChartPie3d,
272
+ er as ZvChartPieBasic,
273
+ mr as ZvChartPieBasic2,
274
+ hr as ZvChartPieCustomized,
275
+ Yt as ZvChartPieIndex,
276
+ Zr as ZvChartPieInterval,
277
+ nr as ZvChartPieLegendScroll,
278
+ xr as ZvChartPieRadius,
279
+ Mo as ZvChartPieRose,
280
+ ve as ZvChartPieRound,
281
+ Oo as ZvChartPieSemicircle,
282
+ ie as ZvChartPieSunburst,
283
+ qr as ZvChartScatterBasic,
284
+ go as ZvChartScatterBasic2,
285
+ $r as ZvChartScatterBubble,
286
+ Nr as ZvChartScatterRipples,
287
+ Ae as ZvCommonsBabylon,
288
+ za as ZvCommonsEcharts,
289
+ ke as ZvCommonsGaussianSplattingView,
290
+ Ge as ZvCommonsLoopIterator,
291
+ Be as ZvCommonsProductModel,
292
+ Ca as ZvCommonsQrcode,
293
+ ye as ZvCommonsSvg,
294
+ ge as ZvCommonsThreeLoader,
295
+ Ie as ZvCommonsThreeLoader3,
296
+ Oe as ZvCommonsVrPhoto,
297
+ Me as ZvCommonsVrVideo,
298
+ Ve as ZvCommonsWeather,
299
+ tm as ZvGraphicalCircle,
300
+ am as ZvGraphicalDiamond,
301
+ pm as ZvGraphicalHexagon,
302
+ fm as ZvGraphicalIsoscelesTriangle,
303
+ vm as ZvGraphicalPentagon,
304
+ im as ZvGraphicalRect,
305
+ Cm as ZvGraphicalRightTriangle,
306
+ Je as ZvInteractionButton,
307
+ Qe as ZvInteractionButtonImage,
308
+ fa as ZvInteractionButtonRefresh,
309
+ pa as ZvInteractionDataPicker,
310
+ Ye as ZvInteractionInput,
311
+ ra as ZvInteractionRadio,
312
+ Ke as ZvInteractionSelect,
313
+ ta as ZvInteractionSlider,
314
+ aa as ZvInteractionSwitch,
315
+ ze as ZvInteractionTabs,
316
+ je as ZvInteractionTabs2,
317
+ zt as ZvMapEarthBasic,
318
+ jt as ZvMapEarthCoolTech,
319
+ Kt as ZvMapEarthFlyLine,
320
+ Qt as ZvMapEarthHacker,
321
+ Jt as ZvMapEarthParticle,
322
+ da as ZvMediaAudio,
323
+ Aa as ZvMediaAudioDynamic,
324
+ Oa as ZvMediaCarousel,
325
+ Ma as ZvMediaCarouselSlides,
326
+ wa as ZvMediaFlv,
327
+ Ia as ZvMediaIframe,
328
+ ga as ZvMediaIframeCarousel,
329
+ va as ZvMediaImage,
330
+ Va as ZvMediaImageDynamic,
331
+ Ga as ZvMediaM3u8,
332
+ ka as ZvMediaM3u8Dynamic,
333
+ la as ZvMediaVideo,
334
+ ya as ZvMediaVideoDynamic,
335
+ we as ZvMediaWavesurfer,
336
+ dm as ZvSceneAmap2d,
337
+ Bm as ZvSceneAmap3d,
338
+ lm as ZvSceneMap3d,
339
+ Im as ZvSceneUeIframe,
340
+ Gm as ZvSceneUeShj,
341
+ Mm as ZvSceneUnityIframe,
342
+ gm as ZvSceneUnityWebgl,
343
+ Om as ZvSceneVr,
344
+ Qa as ZvTextCarousel,
345
+ rm as ZvTextCountDown,
346
+ ja as ZvTextOverNumber,
347
+ Ba as ZvTextRealTime,
348
+ Ka as ZvTextRowScroll,
349
+ _r as ZvTextTableBasic,
350
+ Ja as ZvTextTableScroll,
351
+ Xr as ZvTextTextBasic,
352
+ Ya as ZvTextTextDynamic,
353
+ ia as ZvTextTitle,
354
+ D as ZvchartBarPolar,
355
+ X as ZvchartBarRadiusCricle,
356
+ H as ZvchartBarWaterfall2,
355
357
  a as default,
356
358
  x as registerComponentRef
357
359
  };