@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,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 ZvTextRealTime,
@@ -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-6e17aa32"]]);
4
+ const p = /* @__PURE__ */ t(o, [["__scopeId", "data-v-54bb5d61"]]);
5
5
  export {
6
6
  p as default
7
7
  };
@@ -2,7 +2,7 @@ import { defineComponent as f, watch as w, createElementBlock as S, openBlock as
2
2
  import { cloneDeep as j, isEqual as C } from "lodash";
3
3
  import i from "dayjs";
4
4
  import "dayjs/locale/zh-cn";
5
- import { autoInstallFont as I, jsonToCssStyle as k } from "../../utils/json2css.mjs";
5
+ import { autoInstallFont as I, jsonToCssStyle as k } from "../../commons/utils/json2css.mjs";
6
6
  const D = ["ztitle"], O = f({ name: "zv-text-real-time" }), H = /* @__PURE__ */ f({
7
7
  ...O,
8
8
  props: {
@@ -1,4 +1,4 @@
1
- export declare const ZvTextRowScroll: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvTextRowScroll: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: ObjectConstructor;
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 a = o(t);
4
4
  export {
5
5
  a as ZvTextRowScroll,
@@ -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 m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-46fb4306"]]);
4
+ const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-9b2fa9eb"]]);
5
5
  export {
6
6
  m as default
7
7
  };
@@ -1,9 +1,10 @@
1
- import { defineComponent as z, useCssVars as B, ref as f, onMounted as I, watch as S, createElementBlock as i, createCommentVNode as E, openBlock as r, createVNode as R, normalizeStyle as d, Fragment as w, renderList as O, normalizeClass as V, createElementVNode as j, toDisplayString as v, unref as A, withCtx as T } from "vue";
1
+ import { defineComponent as z, useCssVars as B, ref as h, onMounted as I, watch as S, createElementBlock as i, createCommentVNode as E, openBlock as r, createVNode as R, normalizeStyle as d, Fragment as O, renderList as v, normalizeClass as V, createElementVNode as j, toDisplayString as w, unref as A, withCtx as T } from "vue";
2
2
  import { cloneDeep as y, isEqual as W } from "lodash";
3
3
  import { Vue3SeamlessScroll as q } from "vue3-seamless-scroll";
4
4
  import { nanoid as g } from "nanoid";
5
- const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key: 1 }, Q = z({ name: "zv-text-row-scroll" }), ee = /* @__PURE__ */ z({
6
- ...Q,
5
+ import { SHJDatasourceV2 as U } from "../../commons/core/datasource/index.mjs";
6
+ const G = ["onClick", "onMouseenter", "onMouseout"], K = ["onClick"], Q = { key: 1 }, X = z({ name: "zv-text-row-scroll" }), te = /* @__PURE__ */ z({
7
+ ...X,
7
8
  props: {
8
9
  basicOption: {},
9
10
  useEvents: {},
@@ -13,35 +14,35 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
13
14
  emits: ["on-click-item", "on-click-row", "on-mouseenter-row", "on-mouseout-row"],
14
15
  setup(H, { expose: J, emit: M }) {
15
16
  B((e) => ({
16
- d3e7b97c: e.basicOption.css.table.borderWidth + "px",
17
- "1afb3254": e.basicOption.css.table.borderStyle,
18
- "1cc30ef0": e.basicOption.css.table.borderColor,
19
- "8f0e5278": e.basicOption.css.table.paddingLeft + "px",
20
- "4b2887aa": e.basicOption.css.table.alignItems,
21
- "295a5c38": e.basicOption.css.table.justifyContent,
22
- ce1ea980: e.basicOption.css.header.background,
23
- 81733398: e.basicOption.css.header.height + "px",
24
- "08f1d611": e.basicOption.css.header.color,
25
- "283e3ecb": e.basicOption.css.header.fontSize + "px",
26
- "86dc4c8e": e.basicOption.css.header.fontWeight,
27
- "1eaa1a50": e.basicOption.css.header.fontStyle,
28
- "12327c49": e.basicOption.css.body.height + "px",
29
- "7751554b": e.basicOption.css.body.background,
30
- "1ab1644e": e.basicOption.css.oddBackground,
31
- bb285db4: e.basicOption.css.body.color,
32
- "707d23a0": e.basicOption.css.body.fontSize + "px",
33
- ca1af878: e.basicOption.css.body.fontWeight,
34
- "25d682e5": e.basicOption.css.body.fontStyle
17
+ "0666b15e": e.basicOption.css.table.borderWidth + "px",
18
+ "5631c5a7": e.basicOption.css.table.borderStyle,
19
+ "554dd759": e.basicOption.css.table.borderColor,
20
+ "1f395ad3": e.basicOption.css.table.paddingLeft + "px",
21
+ "35998ab9": e.basicOption.css.table.alignItems,
22
+ c3358072: e.basicOption.css.table.justifyContent,
23
+ "06bfebde": e.basicOption.css.header.background,
24
+ "345149c3": e.basicOption.css.header.height + "px",
25
+ "33c4b8a0": e.basicOption.css.header.color,
26
+ f3c30acc: e.basicOption.css.header.fontSize + "px",
27
+ "2041388a": e.basicOption.css.header.fontWeight,
28
+ "091b1d5f": e.basicOption.css.header.fontStyle,
29
+ "246ef798": e.basicOption.css.body.height + "px",
30
+ "2b879748": e.basicOption.css.body.background,
31
+ "4a3ad39f": e.basicOption.css.oddBackground,
32
+ "2b37e916": e.basicOption.css.body.color,
33
+ "34eff1a2": e.basicOption.css.body.fontSize + "px",
34
+ "0ddd62d5": e.basicOption.css.body.fontWeight,
35
+ "310a0498": e.basicOption.css.body.fontStyle
35
36
  }));
36
- const b = M, m = f(g()), c = f([]), s = H, p = f(s.basicOption.scroll.start), u = () => {
37
- window.SHJDatasourceV2({
37
+ const b = M, m = h(g()), l = h([]), s = H, p = h(s.basicOption.scroll.start), u = () => {
38
+ U.parse({
38
39
  tId: s.uuid,
39
40
  sources: s.sources,
40
41
  callback: (e) => {
41
42
  try {
42
- window.SHJParseEvent(s.useEvents, "dataListener", c), c.value = y(e.data[0].data) || [], m.value = g(), p.value = s.basicOption.scroll.start;
43
+ window.SHJParseEvent(s.useEvents, "dataListener", l), l.value = y(e.data[0].data) || [], m.value = g(), p.value = s.basicOption.scroll.start;
43
44
  } catch {
44
- window.SHJParseEvent(s.useEvents, "dataListener", null), c.value = [], m.value = g(), p.value = s.basicOption.scroll.start;
45
+ window.SHJParseEvent(s.useEvents, "dataListener", null), l.value = [], m.value = g(), p.value = s.basicOption.scroll.start;
45
46
  }
46
47
  }
47
48
  });
@@ -69,7 +70,7 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
69
70
  return !0;
70
71
  const o = s.basicOption.columns.find((t) => t.index === e);
71
72
  return o ? o.font.auto : !0;
72
- }, h = (e) => {
73
+ }, f = (e) => {
73
74
  if (!s.basicOption.columns)
74
75
  return null;
75
76
  const o = s.basicOption.columns.find((t) => t.index === e);
@@ -97,7 +98,7 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
97
98
  const n = { row: e, item: o, rowIndex: t, columnIndex: a };
98
99
  b("on-click-item", n), window.SHJParseEvent(s.useEvents, "on-click-item", n);
99
100
  };
100
- return (e, o) => c.value.length > 0 ? (r(), i("div", {
101
+ return (e, o) => l.value.length > 0 ? (r(), i("div", {
101
102
  key: m.value,
102
103
  class: "table-scroll"
103
104
  }, [
@@ -108,19 +109,19 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
108
109
  "--header-background-image": `url(${e.basicOption.css.header.backgroundImage})`
109
110
  })
110
111
  }, [
111
- (r(!0), i(w, null, O(Object.keys(c.value[0]), (t, a) => (r(), i("div", {
112
+ (r(!0), i(O, null, v(Object.keys(l.value[0]), (t, a) => (r(), i("div", {
112
113
  key: t,
113
114
  class: V(["th", { customWidth: !k(a + 1) }]),
114
115
  style: d({ "--width": C(a + 1) + "px" })
115
116
  }, [
116
- j("p", null, v(t), 1)
117
+ j("p", null, w(t), 1)
117
118
  ], 6))), 128))
118
119
  ], 4)) : E("", !0),
119
120
  R(A(q), {
120
121
  modelValue: p.value,
121
122
  "onUpdate:modelValue": o[0] || (o[0] = (t) => p.value = t),
122
123
  direction: e.basicOption.scroll.direction,
123
- list: c.value,
124
+ list: l.value,
124
125
  "is-watch": "",
125
126
  hover: e.basicOption.scroll.hover,
126
127
  "limit-scroll-num": e.basicOption.scroll.limitScrollNum,
@@ -129,7 +130,7 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
129
130
  class: "table-body"
130
131
  }, {
131
132
  default: T(() => [
132
- (r(!0), i(w, null, O(c.value, (t, a) => (r(), i("div", {
133
+ (r(!0), i(O, null, v(l.value, (t, a) => (r(), i("div", {
133
134
  key: t,
134
135
  class: "tr",
135
136
  style: d({
@@ -139,23 +140,23 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
139
140
  onMouseenter: (n) => F(t, a),
140
141
  onMouseout: (n) => L(t, a)
141
142
  }, [
142
- (r(!0), i(w, null, O(P(t), (n, l) => (r(), i("div", {
143
+ (r(!0), i(O, null, v(P(t), (n, c) => (r(), i("div", {
143
144
  key: n,
144
- class: V(["td", { customWidth: !k(l + 1) }]),
145
- style: d({ "--width": C(l + 1) + "px" }),
146
- onClick: (X) => N(t, n, a, l)
145
+ class: V(["td", { customWidth: !k(c + 1) }]),
146
+ style: d({ "--width": C(c + 1) + "px" }),
147
+ onClick: (Y) => N(t, n, a, c)
147
148
  }, [
148
- $(l + 1) ? (r(), i("p", K, v(n), 1)) : (r(), i("p", {
149
+ $(c + 1) ? (r(), i("p", Q, w(n), 1)) : (r(), i("p", {
149
150
  key: 0,
150
151
  class: "customFont",
151
152
  style: d({
152
- "--text-color": h(l + 1).color,
153
- "--text-font-size": h(l + 1).fontSize + "px",
154
- "--text-font-style": h(l + 1).fontStyle
153
+ "--text-color": f(c + 1).color,
154
+ "--text-font-size": f(c + 1).fontSize + "px",
155
+ "--text-font-style": f(c + 1).fontStyle
155
156
  })
156
- }, v(n), 5))
157
- ], 14, G))), 128))
158
- ], 44, U))), 128))
157
+ }, w(n), 5))
158
+ ], 14, K))), 128))
159
+ ], 44, G))), 128))
159
160
  ]),
160
161
  _: 1
161
162
  }, 8, ["modelValue", "direction", "list", "hover", "limit-scroll-num", "single-height", "single-wait-time"])
@@ -163,5 +164,5 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
163
164
  }
164
165
  });
165
166
  export {
166
- ee as default
167
+ te as default
167
168
  };
@@ -1,4 +1,4 @@
1
- export declare const ZvTextTableBasic: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvTextTableBasic: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: ObjectConstructor;
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 i = a(t);
4
4
  export {
5
5
  i as ZvTextTableBasic,
@@ -1,7 +1,7 @@
1
1
  import t from "./index.vue2.mjs";
2
2
  /* empty css */
3
- import o from "../../_virtual/_plugin-vue_export-helper.mjs";
4
- const e = /* @__PURE__ */ o(t, [["__scopeId", "data-v-0848cb68"]]);
3
+ import a from "../../_virtual/_plugin-vue_export-helper.mjs";
4
+ const c = /* @__PURE__ */ a(t, [["__scopeId", "data-v-c9a58eea"]]);
5
5
  export {
6
- e as default
6
+ c as default
7
7
  };
@@ -1,10 +1,11 @@
1
- import { defineComponent as I, useCssVars as T, ref as g, computed as C, watch as E, onMounted as A, resolveComponent as G, createElementBlock as l, createCommentVNode as z, openBlock as d, createVNode as H, normalizeStyle as u, Fragment as J, renderList as M, createElementVNode as w, toDisplayString as $, unref as b, withCtx as P } from "vue";
1
+ import { defineComponent as I, useCssVars as T, ref as g, computed as C, watch as E, onMounted as A, resolveComponent as G, createElementBlock as l, createCommentVNode as z, openBlock as u, createVNode as H, normalizeStyle as d, Fragment as J, renderList as M, createElementVNode as w, toDisplayString as $, unref as p, withCtx as P } from "vue";
2
2
  import { debounce as f, cloneDeep as y, isEqual as V } from "lodash";
3
3
  import { nanoid as O } from "nanoid";
4
4
  import { RecycleScroller as K } from "vue-virtual-scroller";
5
5
  import "vue-virtual-scroller/dist/vue-virtual-scroller.css";
6
- const Q = ["onClick", "onMouseenter", "onMouseout"], U = ["onClick"], X = I({ name: "zv-text-table-basic" }), oe = /* @__PURE__ */ I({
7
- ...X,
6
+ import { SHJDatasourceV2 as Q } from "../../commons/core/datasource/index.mjs";
7
+ const U = ["onClick", "onMouseenter", "onMouseout"], X = ["onClick"], Y = I({ name: "zv-text-table-basic" }), se = /* @__PURE__ */ I({
8
+ ...Y,
8
9
  props: {
9
10
  basicOption: {},
10
11
  useEvents: {},
@@ -14,53 +15,53 @@ const Q = ["onClick", "onMouseenter", "onMouseout"], U = ["onClick"], X = I({ na
14
15
  emits: ["on-click-item", "on-click-row", "on-mouseenter-row", "on-mouseout-row"],
15
16
  setup(D, { expose: L, emit: R }) {
16
17
  T((e) => ({
17
- "282698ac": e.basicOption.css.table.borderWidth + "px",
18
- "0b3ed4ac": e.basicOption.css.table.borderStyle,
19
- "0a5ae65e": e.basicOption.css.table.borderColor,
20
- "4a934c2e": e.basicOption.css.table.paddingLeft + "px",
21
- "2e47f1d8": e.basicOption.css.table.alignItems,
22
- "8de7d2bc": e.basicOption.css.table.justifyContent,
23
- "9ca5cdd4": e.basicOption.css.header.background,
24
- "4ef8209e": e.basicOption.css.header.height + "px",
25
- c35ccb0a: e.basicOption.css.header.color,
26
- db29f296: e.basicOption.css.header.fontSize + "px",
27
- "556370e2": e.basicOption.css.header.fontWeight,
28
- "8744cc8c": e.basicOption.css.header.fontStyle,
29
- "1103c933": e.basicOption.css.body.height + "px",
30
- "4adb40a1": e.basicOption.css.body.background,
31
- "6ee5a810": e.basicOption.css.body.color,
32
- "002ede0a": e.basicOption.css.body.fontSize + "px",
33
- "6e7c6f1a": e.basicOption.css.body.fontWeight,
34
- "3b525662": e.basicOption.css.body.fontStyle
18
+ "832a4e1c": e.basicOption.css.table.borderWidth + "px",
19
+ "52e7b726": e.basicOption.css.table.borderStyle,
20
+ "5203c8d8": e.basicOption.css.table.borderColor,
21
+ "3e50e718": e.basicOption.css.table.paddingLeft + "px",
22
+ "08a0254c": e.basicOption.css.table.alignItems,
23
+ "51512c30": e.basicOption.css.table.justifyContent,
24
+ "0d5408e0": e.basicOption.css.header.background,
25
+ "6d4373e4": e.basicOption.css.header.height + "px",
26
+ e220d87e: e.basicOption.css.header.color,
27
+ "4b2ea07b": e.basicOption.css.header.fontSize + "px",
28
+ "1cf72a09": e.basicOption.css.header.fontWeight,
29
+ "619d0000": e.basicOption.css.header.fontStyle,
30
+ "8311940e": e.basicOption.css.body.height + "px",
31
+ "2a6e799b": e.basicOption.css.body.background,
32
+ e1c58a54: e.basicOption.css.body.color,
33
+ "1e7a3150": e.basicOption.css.body.fontSize + "px",
34
+ "4e0fa814": e.basicOption.css.body.fontWeight,
35
+ "235b9495": e.basicOption.css.body.fontStyle
35
36
  }));
36
- const p = R, m = g(O()), r = g([]), i = D, W = () => {
37
+ const b = R, m = g(O()), r = g([]), i = D, W = () => {
37
38
  if (!r.value.length) return;
38
- const e = Object.keys(r.value[0]), o = i.basicOption.columns || [], n = e.map((t, a) => {
39
- const s = o.find((S) => S.name === t) || {};
39
+ const e = Object.keys(r.value[0]), o = i.basicOption.columns || [], s = e.map((t, a) => {
40
+ const n = o.find((S) => S.name === t) || {};
40
41
  return {
41
- name: s.name || t,
42
+ name: n.name || t,
42
43
  // 如果用户没有提供 name,使用 key 作为 name
43
- label: s.label || t,
44
+ label: n.label || t,
44
45
  // 如果用户没有提供 label,使用 key 作为 label
45
- visible: s.visible !== void 0 ? s.visible : !0,
46
+ visible: n.visible !== void 0 ? n.visible : !0,
46
47
  // 如果用户没有提供 visible,默认可见
47
- index: s.index !== void 0 ? s.index : a,
48
+ index: n.index !== void 0 ? n.index : a,
48
49
  // 如果用户没有提供 index,使用默认顺序
49
- width: s.width || { auto: !0, width: 100 },
50
+ width: n.width || { auto: !0, width: 100 },
50
51
  // 如果用户没有提供 width,使用默认宽度
51
- font: s.font || { auto: !0, color: "#ffffff", fontSize: 12, fontStyle: "normal" }
52
+ font: n.font || { auto: !0, color: "#ffffff", fontSize: 12, fontStyle: "normal" }
52
53
  // 如果用户没有提供 font,使用默认字体
53
54
  };
54
55
  });
55
- i.basicOption.columns = n.sort((t, a) => t.index - a.index);
56
+ i.basicOption.columns = s.sort((t, a) => t.index - a.index);
56
57
  }, v = C(() => i.basicOption.columns || []), h = C(() => v.value.filter((e) => e.visible).map((e) => e.name)), c = () => {
57
- window.SHJDatasourceV2({
58
+ Q.parse({
58
59
  tId: i.uuid,
59
60
  sources: i.sources,
60
61
  callback: (e) => {
61
62
  try {
62
- window.SHJParseEvent(i.useEvents, "dataListener", r), m.value = O(), r.value = y(e.data[0].data).map((o, n) => ({
63
- id: o.id || n,
63
+ window.SHJParseEvent(i.useEvents, "dataListener", r), m.value = O(), r.value = y(e.data[0].data).map((o, s) => ({
64
+ id: o.id || s,
64
65
  // 使用索引作为 id
65
66
  ...o
66
67
  })), W();
@@ -70,12 +71,12 @@ const Q = ["onClick", "onMouseenter", "onMouseout"], U = ["onClick"], X = I({ na
70
71
  }
71
72
  });
72
73
  }, k = (e) => {
73
- const o = v.value.find((n) => n.name === e);
74
+ const o = v.value.find((s) => s.name === e);
74
75
  return o != null && o.width.auto ? null : `${o == null ? void 0 : o.width.width}px`;
75
76
  }, B = (e) => {
76
77
  const o = v.value.find((t) => t.name === e);
77
78
  if (!o) return {};
78
- const n = {
79
+ const s = {
79
80
  whiteSpace: "nowrap",
80
81
  // 默认不换行
81
82
  textOverflow: "ellipsis",
@@ -87,22 +88,22 @@ const Q = ["onClick", "onMouseenter", "onMouseout"], U = ["onClick"], X = I({ na
87
88
  color: o.font.color,
88
89
  fontSize: `${o.font.fontSize}px`,
89
90
  fontStyle: o.font.fontStyle,
90
- ...n,
91
+ ...s,
91
92
  ...o.textStyle
92
93
  // 用户自定义样式
93
94
  };
94
95
  }, N = f((e, o) => {
95
- const n = { row: e, rowIndex: o };
96
- p("on-click-row", n), window.SHJParseEvent(i.useEvents, "on-click-row", n);
96
+ const s = { row: e, rowIndex: o };
97
+ b("on-click-row", s), window.SHJParseEvent(i.useEvents, "on-click-row", s);
97
98
  }, 100), j = f((e, o) => {
98
- const n = { row: e, rowIndex: o };
99
- p("on-mouseenter-row", n), window.SHJParseEvent(i.useEvents, "on-mouseenter-row", n);
99
+ const s = { row: e, rowIndex: o };
100
+ b("on-mouseenter-row", s), window.SHJParseEvent(i.useEvents, "on-mouseenter-row", s);
100
101
  }, 100), q = f((e, o) => {
101
- const n = { row: e, rowIndex: o };
102
- p("on-mouseout-row", n), window.SHJParseEvent(i.useEvents, "on-mouseout-row", n);
103
- }, 100), F = f((e, o, n, t) => {
104
- const a = { row: e, item: o, rowIndex: n, columnIndex: t };
105
- p("on-click-item", a), window.SHJParseEvent(i.useEvents, "on-click-item", a);
102
+ const s = { row: e, rowIndex: o };
103
+ b("on-mouseout-row", s), window.SHJParseEvent(i.useEvents, "on-mouseout-row", s);
104
+ }, 100), F = f((e, o, s, t) => {
105
+ const a = { row: e, item: o, rowIndex: s, columnIndex: t };
106
+ b("on-click-item", a), window.SHJParseEvent(i.useEvents, "on-click-item", a);
106
107
  }, 100);
107
108
  return E(() => y(i.sources), (e, o) => {
108
109
  V(e, o) || c();
@@ -113,27 +114,27 @@ const Q = ["onClick", "onMouseenter", "onMouseout"], U = ["onClick"], X = I({ na
113
114
  refreshView: () => c(),
114
115
  refreshData: () => c()
115
116
  }), (e, o) => {
116
- const n = G("el-tooltip");
117
- return r.value.length > 0 ? (d(), l("div", {
117
+ const s = G("el-tooltip");
118
+ return r.value.length > 0 ? (u(), l("div", {
118
119
  key: m.value,
119
120
  class: "table-scroll"
120
121
  }, [
121
- e.basicOption.css.header.show ? (d(), l("div", {
122
+ e.basicOption.css.header.show ? (u(), l("div", {
122
123
  key: 0,
123
124
  class: "table-header",
124
- style: u({
125
+ style: d({
125
126
  "--header-background-image": `url(${e.basicOption.css.header.background})`
126
127
  })
127
128
  }, [
128
- (d(!0), l(J, null, M(h.value, (t) => (d(), l("div", {
129
+ (u(!0), l(J, null, M(h.value, (t) => (u(), l("div", {
129
130
  key: t,
130
131
  class: "th",
131
- style: u({ width: k(t) })
132
+ style: d({ width: k(t) })
132
133
  }, [
133
134
  w("p", null, $(t), 1)
134
135
  ], 4))), 128))
135
136
  ], 4)) : z("", !0),
136
- H(b(K), {
137
+ H(p(K), {
137
138
  id: "",
138
139
  class: "table-body",
139
140
  items: r.value,
@@ -143,32 +144,32 @@ const Q = ["onClick", "onMouseenter", "onMouseout"], U = ["onClick"], X = I({ na
143
144
  default: P(({ item: t, index: a }) => [
144
145
  w("div", {
145
146
  class: "tr",
146
- style: u({
147
+ style: d({
147
148
  "--row-hover": e.basicOption.css.hoverColor,
148
149
  "--odd-background": e.basicOption.css.oddBackground
149
150
  }),
150
- onClick: (s) => b(N)(t, a),
151
- onMouseenter: (s) => b(j)(t, a),
152
- onMouseout: (s) => b(q)(t, a)
151
+ onClick: (n) => p(N)(t, a),
152
+ onMouseenter: (n) => p(j)(t, a),
153
+ onMouseout: (n) => p(q)(t, a)
153
154
  }, [
154
- (d(!0), l(J, null, M(h.value, (s) => (d(), l("div", {
155
- key: s,
155
+ (u(!0), l(J, null, M(h.value, (n) => (u(), l("div", {
156
+ key: n,
156
157
  class: "td",
157
- style: u({ width: k(s) }),
158
- onClick: (S) => b(F)(t, t[s], a, h.value.indexOf(s))
158
+ style: d({ width: k(n) }),
159
+ onClick: (S) => p(F)(t, t[n], a, h.value.indexOf(n))
159
160
  }, [
160
- H(n, {
161
- content: t[s]
161
+ H(s, {
162
+ content: t[n]
162
163
  }, {
163
164
  default: P(() => [
164
165
  w("p", {
165
- style: u(B(s))
166
- }, $(t[s]), 5)
166
+ style: d(B(n))
167
+ }, $(t[n]), 5)
167
168
  ]),
168
169
  _: 2
169
170
  }, 1032, ["content"])
170
- ], 12, U))), 128))
171
- ], 44, Q)
171
+ ], 12, X))), 128))
172
+ ], 44, U)
172
173
  ]),
173
174
  _: 1
174
175
  }, 8, ["items", "item-size"])
@@ -177,5 +178,5 @@ const Q = ["onClick", "onMouseenter", "onMouseout"], U = ["onClick"], X = I({ na
177
178
  }
178
179
  });
179
180
  export {
180
- oe as default
181
+ se as default
181
182
  };
@@ -1,4 +1,4 @@
1
- export declare const ZvTextTableScroll: import("../../utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const ZvTextTableScroll: import("../../commons/utils/typescript").SFCWithInstall<import("vue").DefineComponent<{
2
2
  basicOption: {
3
3
  type: ObjectConstructor;
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 a = o(t);
4
4
  export {
5
5
  a as ZvTextTableScroll,
@@ -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-cf6a5691"]]);
4
+ const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-7a9a366c"]]);
5
5
  export {
6
- f as default
6
+ m as default
7
7
  };
@@ -1,9 +1,10 @@
1
- import { defineComponent as W, useCssVars as B, ref as f, onMounted as I, watch as S, createElementBlock as i, createCommentVNode as E, openBlock as r, normalizeStyle as u, createVNode as R, Fragment as O, renderList as v, normalizeClass as V, createElementVNode as j, toDisplayString as w, unref as A, withCtx as T } from "vue";
1
+ import { defineComponent as W, useCssVars as B, ref as h, onMounted as I, watch as S, createElementBlock as i, createCommentVNode as E, openBlock as r, normalizeStyle as u, createVNode as R, Fragment as O, renderList as v, normalizeClass as V, createElementVNode as j, toDisplayString as w, unref as A, withCtx as T } from "vue";
2
2
  import { cloneDeep as y, isEqual as H } from "lodash";
3
3
  import { Vue3SeamlessScroll as q } from "vue3-seamless-scroll";
4
4
  import { nanoid as g } from "nanoid";
5
- const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key: 1 }, Q = W({ name: "zv-text-table-scroll" }), ee = /* @__PURE__ */ W({
6
- ...Q,
5
+ import { SHJDatasourceV2 as U } from "../../commons/core/datasource/index.mjs";
6
+ const G = ["onClick", "onMouseenter", "onMouseout"], K = ["onClick"], Q = { key: 1 }, X = W({ name: "zv-text-table-scroll" }), te = /* @__PURE__ */ W({
7
+ ...X,
7
8
  props: {
8
9
  basicOption: {},
9
10
  useEvents: {},
@@ -13,34 +14,34 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
13
14
  emits: ["on-click-item", "on-click-row", "on-mouseenter-row", "on-mouseout-row"],
14
15
  setup(z, { expose: J, emit: M }) {
15
16
  B((e) => ({
16
- "638b1874": e.basicOption.css.table.borderWidth + "px",
17
- "37283a5c": e.basicOption.css.table.borderStyle,
18
- "38f016f8": e.basicOption.css.table.borderColor,
19
- "1eb1b170": e.basicOption.css.table.paddingLeft + "px",
20
- "00619c2e": e.basicOption.css.table.alignItems,
21
- "89a4e288": e.basicOption.css.table.justifyContent,
22
- ea4bb188: e.basicOption.css.header.background,
23
- "511998b8": e.basicOption.css.header.height + "px",
24
- "985c66d6": e.basicOption.css.header.color,
25
- dbe23f62: e.basicOption.css.header.fontSize + "px",
26
- a3095496: e.basicOption.css.header.fontWeight,
27
- "5839a258": e.basicOption.css.header.fontStyle,
28
- "5c21a047": e.basicOption.css.body.background,
29
- "685f836c": e.basicOption.css.oddBackground,
30
- a9c0ceac: e.basicOption.css.body.color,
31
- "02505624": e.basicOption.css.body.fontSize + "px",
32
- "7fc2cec0": e.basicOption.css.body.fontWeight,
33
- ceda2f2e: e.basicOption.css.body.fontStyle
17
+ c8ab01be: e.basicOption.css.table.borderWidth + "px",
18
+ "16a7d052": e.basicOption.css.table.borderStyle,
19
+ "186facee": e.basicOption.css.table.borderColor,
20
+ "83d19aba": e.basicOption.css.table.paddingLeft + "px",
21
+ 32743289: e.basicOption.css.table.alignItems,
22
+ "49f100d2": e.basicOption.css.table.justifyContent,
23
+ c9cb477e: e.basicOption.css.header.background,
24
+ "70f38993": e.basicOption.css.header.height + "px",
25
+ "6d4bc870": e.basicOption.css.header.color,
26
+ "2330066a": e.basicOption.css.header.fontSize + "px",
27
+ "8288ea8c": e.basicOption.css.header.fontWeight,
28
+ "05f5c52f": e.basicOption.css.header.fontStyle,
29
+ "7685528c": e.basicOption.css.body.background,
30
+ "4195bdcf": e.basicOption.css.oddBackground,
31
+ a9e66176: e.basicOption.css.body.color,
32
+ "222a46ff": e.basicOption.css.body.fontSize + "px",
33
+ cbb2fdf6: e.basicOption.css.body.fontWeight,
34
+ "49054cf8": e.basicOption.css.body.fontStyle
34
35
  }));
35
- const b = M, h = f(g()), c = f([]), s = z, p = f(s.basicOption.scroll.start), d = () => {
36
- window.SHJDatasourceV2({
36
+ const b = M, m = h(g()), c = h([]), s = z, p = h(s.basicOption.scroll.start), d = () => {
37
+ U.parse({
37
38
  tId: s.uuid,
38
39
  sources: s.sources,
39
40
  callback: (e) => {
40
41
  try {
41
- window.SHJParseEvent(s.useEvents, "dataListener", c), c.value = y(e.data[0].data) || [], h.value = g(), p.value = s.basicOption.scroll.start;
42
+ window.SHJParseEvent(s.useEvents, "dataListener", c), c.value = y(e.data[0].data) || [], m.value = g(), p.value = s.basicOption.scroll.start;
42
43
  } catch {
43
- window.SHJParseEvent(s.useEvents, "dataListener", null), h.value = g(), c.value = [], p.value = s.basicOption.scroll.start;
44
+ window.SHJParseEvent(s.useEvents, "dataListener", null), m.value = g(), c.value = [], p.value = s.basicOption.scroll.start;
44
45
  }
45
46
  }
46
47
  });
@@ -68,7 +69,7 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
68
69
  return !0;
69
70
  const o = s.basicOption.columns.find((t) => t.index === e);
70
71
  return o ? o.font.auto : !0;
71
- }, m = (e) => {
72
+ }, f = (e) => {
72
73
  if (!s.basicOption.columns)
73
74
  return null;
74
75
  const o = s.basicOption.columns.find((t) => t.index === e);
@@ -97,7 +98,7 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
97
98
  b("on-click-item", n), window.SHJParseEvent(s.useEvents, "on-click-item", n);
98
99
  };
99
100
  return (e, o) => c.value.length > 0 ? (r(), i("div", {
100
- key: h.value,
101
+ key: m.value,
101
102
  class: "table-scroll",
102
103
  style: u({ lineHeight: e.basicOption.css.body.height + "px" })
103
104
  }, [
@@ -146,19 +147,19 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
146
147
  key: n,
147
148
  class: V(["td", { customWidth: !k(a + 1) }]),
148
149
  style: u({ "--width": C(a + 1) + "px" }),
149
- onClick: (X) => N(t, n, l, a)
150
+ onClick: (Y) => N(t, n, l, a)
150
151
  }, [
151
- $(a + 1) ? (r(), i("p", K, w(n), 1)) : (r(), i("p", {
152
+ $(a + 1) ? (r(), i("p", Q, w(n), 1)) : (r(), i("p", {
152
153
  key: 0,
153
154
  class: "customFont",
154
155
  style: u({
155
- "--text-color": m(a + 1).color,
156
- "--text-font-size": m(a + 1).fontSize + "px",
157
- "--text-font-style": m(a + 1).fontStyle
156
+ "--text-color": f(a + 1).color,
157
+ "--text-font-size": f(a + 1).fontSize + "px",
158
+ "--text-font-style": f(a + 1).fontStyle
158
159
  })
159
160
  }, w(n), 5))
160
- ], 14, G))), 128))
161
- ], 44, U))), 128))
161
+ ], 14, K))), 128))
162
+ ], 44, G))), 128))
162
163
  ]),
163
164
  _: 1
164
165
  }, 8, ["modelValue", "direction", "list", "hover", "limit-scroll-num", "single-height", "single-wait-time"])
@@ -166,5 +167,5 @@ const U = ["onClick", "onMouseenter", "onMouseout"], G = ["onClick"], K = { key:
166
167
  }
167
168
  });
168
169
  export {
169
- ee as default
170
+ te as default
170
171
  };