@opengis/bi 1.2.7 → 1.2.10
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.
- package/README.md +1 -1
- package/dist/bi.js +14 -10
- package/dist/bi.umd.cjs +248 -85
- package/dist/import-file-B5MQcuRd.js +62467 -0
- package/dist/style.css +7 -1
- package/dist/{vs-funnel-bar-BzIfzGso.js → vs-funnel-bar-Lb-T2BvP.js} +11 -11
- package/dist/vs-list-CqZhcJTj.js +525 -0
- package/dist/{vs-map-BsmBbjRv.js → vs-map-BREwpKyt.js} +81 -79
- package/dist/vs-map-cluster-B3VVh2Th.js +314 -0
- package/dist/{vs-number-D28OvROP.js → vs-number-BYY_Gd6m.js} +1 -1
- package/dist/{vs-table-YpK1qNz6.js → vs-table-Deb8wNdP.js} +1 -1
- package/dist/vs-text-C_KFUoCE.js +40 -0
- package/package.json +2 -3
- package/dist/assets/charts/bar.png +0 -0
- package/dist/assets/charts/funnel.png +0 -0
- package/dist/assets/charts/no_data.jpg +0 -0
- package/dist/assets/charts/number.png +0 -0
- package/dist/assets/charts/pie.png +0 -0
- package/dist/assets/charts/progress.png +0 -0
- package/dist/assets/charts/stat.png +0 -0
- package/dist/assets/images/bar.png +0 -0
- package/dist/assets/images/funnel.png +0 -0
- package/dist/assets/images/no_data.jpg +0 -0
- package/dist/assets/images/number.png +0 -0
- package/dist/assets/images/pie.png +0 -0
- package/dist/assets/images/progress.png +0 -0
- package/dist/assets/images/stat.png +0 -0
- package/dist/import-file-DnbEvuUN.js +0 -3681
- package/dist/vs-list-_I6Z56hC.js +0 -525
- package/dist/vs-map-cluster-DT3jfiks.js +0 -356
- package/dist/vs-text-BU0n2bXl.js +0 -1521
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { _ as o, c as s, m as i } from "./import-file-B5MQcuRd.js";
|
|
2
|
+
import { createElementBlock as r, openBlock as n, createCommentVNode as a } from "vue";
|
|
3
|
+
const c = {
|
|
4
|
+
name: "VsText",
|
|
5
|
+
mixins: [s],
|
|
6
|
+
data() {
|
|
7
|
+
return {
|
|
8
|
+
markedText: null,
|
|
9
|
+
uniqueID: null
|
|
10
|
+
};
|
|
11
|
+
},
|
|
12
|
+
async mounted() {
|
|
13
|
+
this.uniqueID = this.widget;
|
|
14
|
+
try {
|
|
15
|
+
await this.getData(), this.markedText = i(this.sourceData);
|
|
16
|
+
} catch (t) {
|
|
17
|
+
console.error(t);
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
methods: {
|
|
21
|
+
onChangedData() {
|
|
22
|
+
return null;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}, u = ["id"], d = ["innerHTML"];
|
|
26
|
+
function l(t, m, x, h, e, _) {
|
|
27
|
+
return n(), r("div", {
|
|
28
|
+
id: e.uniqueID,
|
|
29
|
+
class: "relative select-auto h-full rounded-xl text-[12px] box-border bg-white custom-scrollbar text-widget"
|
|
30
|
+
}, [
|
|
31
|
+
e.markedText ? (n(), r("div", {
|
|
32
|
+
key: 0,
|
|
33
|
+
innerHTML: e.markedText
|
|
34
|
+
}, null, 8, d)) : a("", !0)
|
|
35
|
+
], 8, u);
|
|
36
|
+
}
|
|
37
|
+
const k = /* @__PURE__ */ o(c, [["render", l]]);
|
|
38
|
+
export {
|
|
39
|
+
k as default
|
|
40
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengis/bi",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
4
4
|
"description": "BI data visualization module",
|
|
5
5
|
"main": "dist/bi.js",
|
|
6
6
|
"browser": "dist/bi.umd.cjs",
|
|
@@ -48,13 +48,11 @@
|
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@highlightjs/vue-plugin": "github:highlightjs/vue-plugin",
|
|
51
|
-
"@jspreadsheet-ce/vue": "^5.0.0",
|
|
52
51
|
"@opengis/fastify-table": "^2.0.33",
|
|
53
52
|
"@opengis/v3-core": "^0.3.93",
|
|
54
53
|
"@opengis/v3-filter": "^0.0.71",
|
|
55
54
|
"cross-env": "^10.1.0",
|
|
56
55
|
"@turf/turf": "^7.1.0",
|
|
57
|
-
"axios": "^1.3.1",
|
|
58
56
|
"echarts": "^5.5.1",
|
|
59
57
|
"highlight.js": "^11.10.0",
|
|
60
58
|
"marked": "^14.1.2",
|
|
@@ -63,6 +61,7 @@
|
|
|
63
61
|
"vue-router": "^4.4.3",
|
|
64
62
|
"@eslint/eslintrc": "^3.1.0",
|
|
65
63
|
"@eslint/js": "^9.12.0",
|
|
64
|
+
|
|
66
65
|
"@types/echarts": "^4.9.22",
|
|
67
66
|
"@types/node": "^22.7.5",
|
|
68
67
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|