@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
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaAudioDynamic: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaAudioDynamic: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as o } from "../../utils/install.mjs";
2
+ import { withInstall as o } from "../../commons/utils/install.mjs";
3
3
  const r = o(t);
4
4
  export {
5
5
  r as ZvMediaAudioDynamic,
@@ -1,7 +1,7 @@
1
1
  import o from "./index.vue2.mjs";
2
2
  /* empty css */
3
3
  import t from "../../_virtual/_plugin-vue_export-helper.mjs";
4
- const p = /* @__PURE__ */ t(o, [["__scopeId", "data-v-a3d928ad"]]);
4
+ const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-60a50fa1"]]);
5
5
  export {
6
- p as default
6
+ m as default
7
7
  };
@@ -1,10 +1,11 @@
1
- import { defineComponent as m, watch as p, ref as d, createElementBlock as b, openBlock as x, unref as u, withDirectives as O, createElementVNode as r, vShow as V, normalizeClass as F, createStaticVNode as B, onMounted as T, nextTick as z } from "vue";
1
+ import { defineComponent as m, watch as p, ref as u, createElementBlock as b, openBlock as x, unref as d, withDirectives as O, createElementVNode as r, vShow as V, normalizeClass as F, createStaticVNode as B, onMounted as T, nextTick as z } from "vue";
2
2
  import { nanoid as G } from "nanoid";
3
3
  import { cloneDeep as v, isEqual as f } from "lodash";
4
- const M = ["autoplay", "loop", "muted"], N = ["src"], R = /* @__PURE__ */ B('<svg width="100%" height="100%" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg" data-v-a3d928ad><circle cx="37.5" cy="37.5" r="37.5" fill="#3D9CFF" fill-opacity="0.1" data-v-a3d928ad></circle><path fill-rule="evenodd" clip-rule="evenodd" d="M51.3268 20.4054H33.1254C32.2255 20.4 31.3554 20.728 30.6832 21.3264C30.0109 21.9247 29.5841 22.7508 29.4852 23.6453L27.0161 44.2762C26.1001 43.746 25.053 43.4598 23.9763 43.4598C22.3672 43.4598 20.824 44.099 19.6862 45.2368C18.5484 46.3746 17.9092 47.9178 17.9092 49.5269C17.9092 51.136 18.5484 52.6792 19.6862 53.817C20.824 54.9548 22.3672 55.594 23.9763 55.594C25.5854 55.594 27.1286 54.9548 28.2664 53.817C29.3529 52.7305 29.9848 51.2743 30.0395 49.744L30.0555 49.746L32.361 31.3141H50.5623L48.8975 44.2994C47.9722 43.7543 46.9103 43.4598 45.818 43.4598C44.2089 43.4598 42.6657 44.099 41.5279 45.2368C40.3901 46.3746 39.7509 47.9178 39.7509 49.5269C39.7509 51.136 40.3901 52.6792 41.5279 53.817C42.6657 54.9548 44.2089 55.594 45.818 55.594C47.4271 55.594 48.9703 54.9548 50.1081 53.817C51.1946 52.7305 51.8265 51.2743 51.8812 49.744L51.8971 49.746L54.9792 24.434C55.034 23.9233 54.9801 23.4069 54.8211 22.9185C54.6621 22.4301 54.4015 21.981 54.0566 21.6005C53.7116 21.22 53.29 20.9168 52.8196 20.7108C52.3491 20.5049 51.8403 20.4008 51.3268 20.4054Z" fill="url(#paint0_linear_534:1941)" data-v-a3d928ad></path><defs data-v-a3d928ad><linearGradient id="paint0_linear_534:1941" x1="17.9092" y1="37.9996" x2="56.4836" y2="37.9996" gradientUnits="userSpaceOnUse" data-v-a3d928ad><stop stop-color="#3D9CFF" data-v-a3d928ad></stop><stop offset="1" stop-color="#43E8F3" data-v-a3d928ad></stop></linearGradient></defs></svg>', 1), U = [
5
- R
6
- ], q = m({ name: "zv-media-audio-dynamic" }), Q = /* @__PURE__ */ m({
7
- ...q,
4
+ import { SHJDatasourceV2 as M } from "../../commons/core/datasource/index.mjs";
5
+ const N = ["autoplay", "loop", "muted"], R = ["src"], U = /* @__PURE__ */ B('<svg width="100%" height="100%" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg" data-v-60a50fa1><circle cx="37.5" cy="37.5" r="37.5" fill="#3D9CFF" fill-opacity="0.1" data-v-60a50fa1></circle><path fill-rule="evenodd" clip-rule="evenodd" d="M51.3268 20.4054H33.1254C32.2255 20.4 31.3554 20.728 30.6832 21.3264C30.0109 21.9247 29.5841 22.7508 29.4852 23.6453L27.0161 44.2762C26.1001 43.746 25.053 43.4598 23.9763 43.4598C22.3672 43.4598 20.824 44.099 19.6862 45.2368C18.5484 46.3746 17.9092 47.9178 17.9092 49.5269C17.9092 51.136 18.5484 52.6792 19.6862 53.817C20.824 54.9548 22.3672 55.594 23.9763 55.594C25.5854 55.594 27.1286 54.9548 28.2664 53.817C29.3529 52.7305 29.9848 51.2743 30.0395 49.744L30.0555 49.746L32.361 31.3141H50.5623L48.8975 44.2994C47.9722 43.7543 46.9103 43.4598 45.818 43.4598C44.2089 43.4598 42.6657 44.099 41.5279 45.2368C40.3901 46.3746 39.7509 47.9178 39.7509 49.5269C39.7509 51.136 40.3901 52.6792 41.5279 53.817C42.6657 54.9548 44.2089 55.594 45.818 55.594C47.4271 55.594 48.9703 54.9548 50.1081 53.817C51.1946 52.7305 51.8265 51.2743 51.8812 49.744L51.8971 49.746L54.9792 24.434C55.034 23.9233 54.9801 23.4069 54.8211 22.9185C54.6621 22.4301 54.4015 21.981 54.0566 21.6005C53.7116 21.22 53.29 20.9168 52.8196 20.7108C52.3491 20.5049 51.8403 20.4008 51.3268 20.4054Z" fill="url(#paint0_linear_534:1941)" data-v-60a50fa1></path><defs data-v-60a50fa1><linearGradient id="paint0_linear_534:1941" x1="17.9092" y1="37.9996" x2="56.4836" y2="37.9996" gradientUnits="userSpaceOnUse" data-v-60a50fa1><stop stop-color="#3D9CFF" data-v-60a50fa1></stop><stop offset="1" stop-color="#43E8F3" data-v-60a50fa1></stop></linearGradient></defs></svg>', 1), q = [
6
+ U
7
+ ], I = m({ name: "zv-media-audio-dynamic" }), X = /* @__PURE__ */ m({
8
+ ...I,
8
9
  props: {
9
10
  basicOption: {},
10
11
  sources: {},
@@ -21,10 +22,10 @@ const M = ["autoplay", "loop", "muted"], N = ["src"], R = /* @__PURE__ */ B('<sv
21
22
  "on-audio-error",
22
23
  "on-audio-volumechange"
23
24
  ],
24
- setup(w, { expose: y, emit: E }) {
25
- const e = w, C = () => {
26
- const o = d(""), s = d(G()), D = d(!1), l = () => {
27
- window.SHJDatasourceV2({
25
+ setup(y, { expose: w, emit: E }) {
26
+ const e = y, C = () => {
27
+ const o = u(""), s = u(G()), D = u(!1), l = () => {
28
+ M.parse({
28
29
  tId: e.uuid,
29
30
  sources: e.sources,
30
31
  callback: ({ data: c }) => {
@@ -45,7 +46,7 @@ const M = ["autoplay", "loop", "muted"], N = ["src"], R = /* @__PURE__ */ B('<sv
45
46
  }), p(() => v(e.sources), (o, s) => {
46
47
  f(o, s) || i();
47
48
  }, { deep: !0 });
48
- const t = d(), a = E, P = () => {
49
+ const t = u(), a = E, P = () => {
49
50
  a("on-audio-progress"), window.SHJParseEvent(e.useEvents, "on-audio-progress"), n.value = !0;
50
51
  }, _ = () => {
51
52
  a("on-audio-play"), window.SHJParseEvent(e.useEvents, "on-audio-play"), n.value = !0;
@@ -62,7 +63,7 @@ const M = ["autoplay", "loop", "muted"], N = ["src"], R = /* @__PURE__ */ B('<sv
62
63
  }, L = () => {
63
64
  a("on-audio-volumechange"), window.SHJParseEvent(e.useEvents, "on-audio-volumechange");
64
65
  };
65
- return y({
66
+ return w({
66
67
  /** 开始播放 */
67
68
  play: () => {
68
69
  t.value && t.value.play();
@@ -75,7 +76,7 @@ const M = ["autoplay", "loop", "muted"], N = ["src"], R = /* @__PURE__ */ B('<sv
75
76
  refreshView: () => i(),
76
77
  refreshData: () => i()
77
78
  }), (o, s) => (x(), b("div", {
78
- key: u(g),
79
+ key: d(g),
79
80
  class: "audio"
80
81
  }, [
81
82
  O(r("audio", {
@@ -94,18 +95,18 @@ const M = ["autoplay", "loop", "muted"], N = ["src"], R = /* @__PURE__ */ B('<sv
94
95
  onError: k,
95
96
  onVolumechange: L
96
97
  }, [
97
- r("source", { src: u(h) }, null, 8, N)
98
- ], 40, M), [
98
+ r("source", { src: d(h) }, null, 8, R)
99
+ ], 40, N), [
99
100
  [V, !1]
100
101
  ]),
101
102
  r("div", {
102
103
  class: F(["audio-svg", {
103
- animation: u(n)
104
+ animation: d(n)
104
105
  }])
105
- }, U, 2)
106
+ }, q, 2)
106
107
  ]));
107
108
  }
108
109
  });
109
110
  export {
110
- Q as default
111
+ X as default
111
112
  };
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaCarousel: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaCarousel: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as o } from "../../utils/install.mjs";
2
+ import { withInstall as o } from "../../commons/utils/install.mjs";
3
3
  const e = o(t);
4
4
  export {
5
5
  e as ZvMediaCarousel,
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaCarouselSlides: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaCarouselSlides: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as o } from "../../utils/install.mjs";
2
+ import { withInstall as o } from "../../commons/utils/install.mjs";
3
3
  const e = o(t);
4
4
  export {
5
5
  e as ZvMediaCarouselSlides,
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaFlv: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaFlv: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as o } from "../../utils/install.mjs";
2
+ import { withInstall as o } from "../../commons/utils/install.mjs";
3
3
  const m = o(t);
4
4
  export {
5
5
  m as ZvMediaFlv,
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaIframe: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaIframe: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as r } from "../../utils/install.mjs";
2
+ import { withInstall as r } from "../../commons/utils/install.mjs";
3
3
  const m = r(t);
4
4
  export {
5
5
  m as ZvMediaIframe,
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaIframeCarousel: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaIframeCarousel: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import r from "./index.vue.mjs";
2
- import { withInstall as t } from "../../utils/install.mjs";
2
+ import { withInstall as t } from "../../commons/utils/install.mjs";
3
3
  const e = t(r);
4
4
  export {
5
5
  e as ZvMediaIframeCarousel,
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaImage: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaImage: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as a } from "../../utils/install.mjs";
2
+ import { withInstall as a } from "../../commons/utils/install.mjs";
3
3
  const m = a(t);
4
4
  export {
5
5
  m as ZvMediaImage,
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaImageDynamic: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaImageDynamic: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as a } from "../../utils/install.mjs";
2
+ import { withInstall as a } from "../../commons/utils/install.mjs";
3
3
  const r = a(t);
4
4
  export {
5
5
  r as ZvMediaImageDynamic,
@@ -1,7 +1,7 @@
1
1
  import o from "./index.vue2.mjs";
2
2
  /* empty css */
3
3
  import t from "../../_virtual/_plugin-vue_export-helper.mjs";
4
- const p = /* @__PURE__ */ t(o, [["__scopeId", "data-v-784030b6"]]);
4
+ const p = /* @__PURE__ */ t(o, [["__scopeId", "data-v-0b7db26e"]]);
5
5
  export {
6
6
  p as default
7
7
  };
@@ -1,7 +1,8 @@
1
- import { defineComponent as a, watch as d, createElementBlock as p, openBlock as l, normalizeStyle as m, unref as f, ref as b, onMounted as g, nextTick as k } from "vue";
2
- import { cloneDeep as v, isEqual as w } from "lodash";
3
- const _ = a({ name: "zv-media-image-dynamic" }), y = /* @__PURE__ */ a({
4
- ..._,
1
+ import { defineComponent as a, watch as p, createElementBlock as d, openBlock as m, normalizeStyle as l, unref as f, ref as b, onMounted as g, nextTick as k } from "vue";
2
+ import { cloneDeep as v, isEqual as _ } from "lodash";
3
+ import { SHJDatasourceV2 as E } from "../../commons/core/datasource/index.mjs";
4
+ const h = a({ name: "zv-media-image-dynamic" }), x = /* @__PURE__ */ a({
5
+ ...h,
5
6
  props: {
6
7
  basicOption: {},
7
8
  sources: {},
@@ -10,30 +11,30 @@ const _ = a({ name: "zv-media-image-dynamic" }), y = /* @__PURE__ */ a({
10
11
  },
11
12
  setup(o, { expose: c }) {
12
13
  const e = o, i = () => {
13
- const t = b(""), r = () => {
14
- window.SHJDatasourceV2({
14
+ const r = b(""), t = () => {
15
+ E.parse({
15
16
  tId: e.uuid,
16
17
  sources: e.sources,
17
18
  callback: ({ data: s }) => {
18
19
  try {
19
- window.SHJParseEvent(e.useEvents, "dataListener", s), t.value = s[0].data[0].src;
20
+ window.SHJParseEvent(e.useEvents, "dataListener", s), r.value = s[0].data[0].src;
20
21
  } catch {
21
22
  window.SHJParseEvent(e.useEvents, "dataListener", null);
22
23
  }
23
24
  }
24
25
  });
25
26
  };
26
- return g(() => k(() => r())), { init: r, src: t };
27
+ return g(() => k(() => t())), { init: t, src: r };
27
28
  }, { init: n, src: u } = i();
28
- return d(() => v(e.sources), (t, r) => {
29
- w(t, r) || n();
29
+ return p(() => v(e.sources), (r, t) => {
30
+ _(r, t) || n();
30
31
  }, { deep: !0 }), c({
31
32
  refresh: () => n(),
32
33
  refreshView: () => n(),
33
34
  refreshData: () => n()
34
- }), (t, r) => (l(), p("div", {
35
+ }), (r, t) => (m(), d("div", {
35
36
  class: "zerov-image",
36
- style: m({
37
+ style: l({
37
38
  backgroundImage: `url('${f(u)}')`,
38
39
  ...e.basicOption.mode === "repeat" ? {
39
40
  backgroundRepeat: "repeat",
@@ -47,5 +48,5 @@ const _ = a({ name: "zv-media-image-dynamic" }), y = /* @__PURE__ */ a({
47
48
  }
48
49
  });
49
50
  export {
50
- y as default
51
+ x as default
51
52
  };
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaM3u8: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaM3u8: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as o } from "../../utils/install.mjs";
2
+ import { withInstall as o } from "../../commons/utils/install.mjs";
3
3
  const m = o(t);
4
4
  export {
5
5
  m as ZvMediaM3u8,
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaM3u8Dynamic: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaM3u8Dynamic: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as a } from "../../utils/install.mjs";
2
+ import { withInstall as a } from "../../commons/utils/install.mjs";
3
3
  const o = a(t);
4
4
  export {
5
5
  o as ZvMediaM3u8Dynamic,
@@ -1,9 +1,10 @@
1
- import { defineComponent as m, watch as p, createElementBlock as M, openBlock as _, unref as R, ref as d, onMounted as D } from "vue";
2
- import r from "hls.js";
1
+ import { defineComponent as m, watch as p, createElementBlock as M, openBlock as _, unref as R, ref as r, onMounted as D } from "vue";
2
+ import d from "hls.js";
3
3
  import { cloneDeep as l, isEqual as c } from "lodash";
4
4
  import { nanoid as T } from "nanoid";
5
- const z = ["poster", "autoplay", "controls", "loop", "muted"], A = m({ name: "zv-media-m3u8-dynamic" }), C = /* @__PURE__ */ m({
6
- ...A,
5
+ import { SHJDatasourceV2 as z } from "../../commons/core/datasource/index.mjs";
6
+ const A = ["poster", "autoplay", "controls", "loop", "muted"], B = m({ name: "zv-media-m3u8-dynamic" }), N = /* @__PURE__ */ m({
7
+ ...B,
7
8
  props: {
8
9
  basicOption: {},
9
10
  sources: {},
@@ -22,16 +23,16 @@ const z = ["poster", "autoplay", "controls", "loop", "muted"], A = m({ name: "zv
22
23
  ],
23
24
  setup(E, { expose: f, emit: y }) {
24
25
  const e = E, w = () => {
25
- const o = d(), n = d(""), O = d(T()), u = () => {
26
- window.SHJDatasourceV2({
26
+ const o = r(), n = r(""), O = r(T()), u = () => {
27
+ z.parse({
27
28
  tId: e.uuid,
28
29
  sources: e.sources,
29
30
  callback: ({ data: v }) => {
30
31
  try {
31
32
  if (window.SHJParseEvent(e.useEvents, "dataListener", v), n.value = v[0].data[0].src, n.value)
32
- if (r.isSupported()) {
33
- const a = new r();
34
- a.loadSource(n.value), a.attachMedia(o.value), a.on(r.Events.MANIFEST_PARSED, () => {
33
+ if (d.isSupported()) {
34
+ const a = new d();
35
+ a.loadSource(n.value), a.attachMedia(o.value), a.on(d.Events.MANIFEST_PARSED, () => {
35
36
  e.basicOption.autoplay && o.value.play();
36
37
  });
37
38
  } else o.value.canPlayType("application/vnd.apple.mpegurl") && (o.value.src = n.value);
@@ -95,9 +96,9 @@ const z = ["poster", "autoplay", "controls", "loop", "muted"], A = m({ name: "zv
95
96
  onTimeupdate: J,
96
97
  onError: b,
97
98
  onVolumechange: k
98
- }, null, 40, z));
99
+ }, null, 40, A));
99
100
  }
100
101
  });
101
102
  export {
102
- C as default
103
+ N as default
103
104
  };
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaVideo: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaVideo: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as o } from "../../utils/install.mjs";
2
+ import { withInstall as o } from "../../commons/utils/install.mjs";
3
3
  const i = o(t);
4
4
  export {
5
5
  i as ZvMediaVideo,
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaVideoDynamic: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaVideoDynamic: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as o } from "../../utils/install.mjs";
2
+ import { withInstall as o } from "../../commons/utils/install.mjs";
3
3
  const r = o(t);
4
4
  export {
5
5
  r as ZvMediaVideoDynamic,
@@ -1,7 +1,7 @@
1
1
  import o from "./index.vue2.mjs";
2
2
  /* empty css */
3
3
  import t from "../../_virtual/_plugin-vue_export-helper.mjs";
4
- const e = /* @__PURE__ */ t(o, [["__scopeId", "data-v-e1d69ec8"]]);
4
+ const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-286203c9"]]);
5
5
  export {
6
- e as default
6
+ m as default
7
7
  };
@@ -1,8 +1,9 @@
1
1
  import { defineComponent as v, watch as S, ref as r, createElementBlock as k, openBlock as b, unref as u, onMounted as O, nextTick as _ } from "vue";
2
2
  import { nanoid as D } from "nanoid";
3
3
  import { cloneDeep as T, isEqual as z } from "lodash";
4
- const B = ["poster", "autoplay", "controls", "loop", "muted", "src"], L = v({ name: "zv-media-video-dynamic" }), M = /* @__PURE__ */ v({
5
- ...L,
4
+ import { SHJDatasourceV2 as B } from "../../commons/core/datasource/index.mjs";
5
+ const L = ["poster", "autoplay", "controls", "loop", "muted", "src"], R = v({ name: "zv-media-video-dynamic" }), A = /* @__PURE__ */ v({
6
+ ...R,
6
7
  props: {
7
8
  basicOption: {},
8
9
  sources: {},
@@ -22,7 +23,7 @@ const B = ["poster", "autoplay", "controls", "loop", "muted", "src"], L = v({ na
22
23
  setup(c, { expose: p, emit: l }) {
23
24
  const e = c, m = () => {
24
25
  const o = r(""), t = r(D()), a = () => {
25
- window.SHJDatasourceV2({
26
+ B.parse({
26
27
  tId: e.uuid,
27
28
  sources: e.sources,
28
29
  callback: ({ data: d }) => {
@@ -35,11 +36,11 @@ const B = ["poster", "autoplay", "controls", "loop", "muted", "src"], L = v({ na
35
36
  });
36
37
  };
37
38
  return O(() => _(() => a())), { init: a, src: o, key: t };
38
- }, { init: i, src: E, key: w } = m();
39
+ }, { init: i, src: E, key: y } = m();
39
40
  S(() => T(e.sources), (o, t) => {
40
41
  z(o, t) || i();
41
42
  }, { deep: !0 });
42
- const s = r(), n = l, y = () => {
43
+ const s = r(), n = l, w = () => {
43
44
  n("on-video-progress"), window.SHJParseEvent(e.useEvents, "on-video-progress");
44
45
  }, f = () => {
45
46
  n("on-video-play"), window.SHJParseEvent(e.useEvents, "on-video-play");
@@ -71,7 +72,7 @@ const B = ["poster", "autoplay", "controls", "loop", "muted", "src"], L = v({ na
71
72
  }), (o, t) => (b(), k("video", {
72
73
  ref_key: "videoRef",
73
74
  ref: s,
74
- key: u(w),
75
+ key: u(y),
75
76
  poster: o.basicOption.poster,
76
77
  autoplay: o.basicOption.autoplay,
77
78
  controls: o.basicOption.controls,
@@ -79,7 +80,7 @@ const B = ["poster", "autoplay", "controls", "loop", "muted", "src"], L = v({ na
79
80
  muted: o.basicOption.muted,
80
81
  class: "zerov-widget-video",
81
82
  src: u(E),
82
- onProgress: y,
83
+ onProgress: w,
83
84
  onPlay: f,
84
85
  onEnded: g,
85
86
  onPlaying: V,
@@ -87,9 +88,9 @@ const B = ["poster", "autoplay", "controls", "loop", "muted", "src"], L = v({ na
87
88
  onTimeupdate: h,
88
89
  onError: H,
89
90
  onVolumechange: J
90
- }, null, 40, B));
91
+ }, null, 40, L));
91
92
  }
92
93
  });
93
94
  export {
94
- M as default
95
+ A as default
95
96
  };
@@ -1,4 +1,4 @@
1
- export declare const ZvMediaWavesurfer: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvMediaWavesurfer: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import r from "./index.vue.mjs";
2
- import { withInstall as t } from "../../utils/install.mjs";
2
+ import { withInstall as t } from "../../commons/utils/install.mjs";
3
3
  const e = t(r);
4
4
  export {
5
5
  e as ZvMediaWavesurfer,
@@ -1,4 +1,4 @@
1
- export declare const ZvSceneAmap2d: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvSceneAmap2d: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as o } from "../../utils/install.mjs";
2
+ import { withInstall as o } from "../../commons/utils/install.mjs";
3
3
  const m = o(t);
4
4
  export {
5
5
  m as ZvSceneAmap2d,
@@ -1,7 +1,7 @@
1
1
  import o from "./index.vue2.mjs";
2
2
  /* empty css */
3
3
  import t from "../../_virtual/_plugin-vue_export-helper.mjs";
4
- const e = /* @__PURE__ */ t(o, [["__scopeId", "data-v-93e7e6bc"]]);
4
+ const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-83f29823"]]);
5
5
  export {
6
- e as default
6
+ m as default
7
7
  };
@@ -2,13 +2,14 @@ import { defineComponent as E, watch as d, createElementBlock as q, openBlock as
2
2
  import oe from "@amap/amap-jsapi-loader";
3
3
  import se from "axios";
4
4
  import { nanoid as le } from "nanoid";
5
- const re = (m) => (ae("data-v-93e7e6bc"), m = m(), te(), m), ne = /* @__PURE__ */ re(() => /* @__PURE__ */ ee("div", {
5
+ import { SHJDatasourceV2 as re } from "../../commons/core/datasource/index.mjs";
6
+ const ne = (m) => (ae("data-v-83f29823"), m = m(), te(), m), ce = /* @__PURE__ */ ne(() => /* @__PURE__ */ ee("div", {
6
7
  id: "zerov-amap-2d",
7
8
  class: "zerov-amap-container"
8
- }, null, -1)), ce = [
9
- ne
10
- ], ie = E({ name: "zv-scene-amap2d" }), ye = /* @__PURE__ */ E({
11
- ...ie,
9
+ }, null, -1)), ie = [
10
+ ce
11
+ ], de = E({ name: "zv-scene-amap2d" }), fe = /* @__PURE__ */ E({
12
+ ...de,
12
13
  props: {
13
14
  basicOption: {},
14
15
  sources: {},
@@ -96,7 +97,7 @@ const re = (m) => (ae("data-v-93e7e6bc"), m = m(), te(), m), ne = /* @__PURE__ *
96
97
  }).catch((e) => {
97
98
  });
98
99
  }, z = (a) => {
99
- o.sources && o.sources.length > 0 ? window.SHJDatasourceV2({
100
+ o.sources && o.sources.length > 0 ? re.parse({
100
101
  tId: o.uuid,
101
102
  sources: o.sources,
102
103
  callback: (e) => {
@@ -365,9 +366,9 @@ const re = (m) => (ae("data-v-93e7e6bc"), m = m(), te(), m), ne = /* @__PURE__ *
365
366
  refreshData: () => h(o.basicOption)
366
367
  }), (s, n) => (K(), q("div", {
367
368
  class: Q(["amap-2d-wrap", { show: X(J) }])
368
- }, ce, 2));
369
+ }, ie, 2));
369
370
  }
370
371
  });
371
372
  export {
372
- ye as default
373
+ fe as default
373
374
  };
@@ -1,4 +1,4 @@
1
- export declare const ZvSceneAmap3d: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvSceneAmap3d: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: any;
4
4
  required: true;
@@ -1,5 +1,5 @@
1
1
  import t from "./index.vue.mjs";
2
- import { withInstall as o } from "../../utils/install.mjs";
2
+ import { withInstall as o } from "../../commons/utils/install.mjs";
3
3
  const m = o(t);
4
4
  export {
5
5
  m as ZvSceneAmap3d,
@@ -1,7 +1,7 @@
1
1
  import o from "./index.vue2.mjs";
2
2
  /* empty css */
3
3
  import t from "../../_virtual/_plugin-vue_export-helper.mjs";
4
- const f = /* @__PURE__ */ t(o, [["__scopeId", "data-v-8bca31f5"]]);
4
+ const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-9af4ba07"]]);
5
5
  export {
6
- f as default
6
+ m as default
7
7
  };