@opengis/bi 1.0.19 → 1.0.21
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 +8 -1
- package/dist/bi.js +1 -1
- package/dist/bi.umd.cjs +93 -77
- package/dist/{import-file-BJjgK8Hl.js → import-file-C8BY90-b.js} +18436 -18368
- package/dist/{map-component-mixin-BDeshFZi.js → map-component-mixin-CFtShPun.js} +711 -728
- package/dist/{vs-calendar-D98bcwCO.js → vs-calendar-B9vXdsaG.js} +1 -1
- package/dist/{vs-funnel-bar-Ps4AevXk.js → vs-funnel-bar-Cj0O8tIf.js} +1 -1
- package/dist/{vs-heatmap-DQ4l7XOD.js → vs-heatmap-C9oFph_f.js} +1 -1
- package/dist/{vs-map-C36n66Hj.js → vs-map-WOn0RAU7.js} +2 -2
- package/dist/{vs-map-cluster-Bcjcul0f.js → vs-map-cluster-RJa6sNfI.js} +2 -2
- package/dist/{vs-number-XzxJiWRu.js → vs-number-BG0szZL-.js} +1 -1
- package/dist/{vs-text-DWhTWJlt.js → vs-text-Kwl3-0yy.js} +4 -4
- package/package.json +3 -3
- package/server/routes/dashboard/controllers/dashboard.js +11 -0
- package/server/routes/data/controllers/data.js +14 -0
- package/server/routes/edit/controllers/widget.edit.js +17 -15
package/README.md
CHANGED
|
@@ -13,7 +13,6 @@ A subsystem for creating interactive graphical representations of key informatio
|
|
|
13
13
|
- Interactive analysis – allows users to interact with data and manipulate charts to obtain more detailed information
|
|
14
14
|
- Data filters
|
|
15
15
|
- Dashboard, Widget Editor
|
|
16
|
-
- Integration with @opengis/admin
|
|
17
16
|
|
|
18
17
|
### Charts 📈
|
|
19
18
|
| Bar | Heat Map |
|
|
@@ -58,6 +57,11 @@ npm i @opengis/bi
|
|
|
58
57
|
fastify.register(import('@opengis/bi'), config);
|
|
59
58
|
```
|
|
60
59
|
|
|
60
|
+
```ts
|
|
61
|
+
import v3Bi from '@opengis/bi';
|
|
62
|
+
v3Bi.install(app)
|
|
63
|
+
```
|
|
64
|
+
|
|
61
65
|
---
|
|
62
66
|
|
|
63
67
|
### Documenation
|
|
@@ -77,6 +81,9 @@ For a detailed understanding of `bi`, its features, and how to use them, refer t
|
|
|
77
81
|
<a href="https://vite.dev/" target="_blank">
|
|
78
82
|
<img src="https://img.shields.io/badge/Vite-323330?style=for-the-badge&logo=vite" /></a>
|
|
79
83
|
|
|
84
|
+
<a href="https://echarts.apache.org/en/index.html" target="_blank">
|
|
85
|
+
<img src="https://img.shields.io/badge/echarts-323330?style=for-the-badge&logo=apacheecharts&logoColor=E43C64" /></a>
|
|
86
|
+
|
|
80
87
|
<a href="https://www.postgresql.org/" target="_blank">
|
|
81
88
|
<img src="https://img.shields.io/badge/PostgreSQL-323330?style=for-the-badge&logo=postgresql&logoColor=white" /></a>
|
|
82
89
|
|
package/dist/bi.js
CHANGED