@vesium/shared 1.0.1-beta.35 → 1.0.1-beta.36

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 (2) hide show
  1. package/README.md +31 -20
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -6,31 +6,44 @@
6
6
 
7
7
 
8
8
  <p align="center">
9
- <img src="./assets/logo.svg" align="center" width="15%" />
9
+ <img src="https://github.com/GeoVueJS/vesium/raw/main/assets/logo.svg" align="center" width="15%" />
10
10
  </p>
11
11
 
12
- <h1 align="center">Vesium</h1>
12
+ <h1 align="center">
13
+ <span style="color:#52B783">V</span><span style="color:#38485D">esium</span>
14
+ </h1>
13
15
 
14
- <p align="center">Vue component and composition-api library for Cesium.</p>
16
+ <p align="center">Vue Composition Functions and Vue Components for CesiumJS</p>
15
17
 
16
18
  <p align="center">
17
- <a href="https://www.npmjs.com/package/@vesium/core" target="__blank"><img src="https://img.shields.io/npm/v/@vesium/core?color=a1b858&label=" alt="NPM version"></a>
18
- <a href="https://www.npmjs.com/package/@vesium/core" target="__blank"><img alt="NPM Downloads" src="https://img.shields.io/npm/dm/@vesium/core?color=50a36f&label="></a>
19
- <a href="https://github.com/GeoVueJS/vesium" target="__blank"><img alt="GitHub stars" src="https://img.shields.io/github/stars/GeoVueJS/vesium?style=social"></a>
19
+ <a href="https://github.com/GeoVueJS/vesium/releases" target="__blank"><img src="https://img.shields.io/github/v/tag/GeoVueJS/vesium" alt="Github tag"></a>
20
+ <a href="https://www.npmjs.com/package/vesium" target="__blank"><img src="https://img.shields.io/npm/v/vesium?color=a1b858&label=npm" alt="NPM Version"></a>
21
+ <a href="https://github.com/GeoVueJS/vesium/blob/main/LICENSE" target="__blank"><img src="https://img.shields.io/github/license/GeoVueJS/vesium" alt="Github tag"></a>
22
+ <a href="https://github.com/GeoVueJS/vesium" target="__blank"><img alt="GitHub Stars" src="https://img.shields.io/github/stars/GeoVueJS/vesium?style=social"></a>
20
23
  </p>
21
24
 
22
- > 🚧 This project is under development, and the API may change frequently.
25
+ <p align="center">
26
+ <a href="https://github.com/GeoVueJS/vesium/blob/main/README.zh-CN.md" target="__blank">中文</a>
27
+ |
28
+ <a href="https://github.com/GeoVueJS/vesium/blob/main/README.md" target="__blank">English</a>
29
+ </p>
30
+
31
+ > 🚧 This project is under active development, and the API may change frequently. Any version may introduce breaking changes.
32
+
33
+ ## Documentation
34
+
35
+ To view the documentation, visit <a href="https://cesium.geovue.org" target="__blank">cesium.geovue.org</a>
23
36
 
24
37
  ## Features
25
38
 
26
- - 🎯 **Intuitive** - VueUse-style API design, familiar to Vue developers
27
- - 💪 **Type Strong** - Written in TypeScript, with full TS support
39
+ - 🎯 **Intuitive** - VueUse-style API design familiar to Vue developers
40
+ - 💪 **Type Safe** - Written in TypeScript with full TS support
28
41
  - 🏪 **Modular** - Tree-shakeable ESM modules
29
- - 🌐 **Full Featured** - Comprehensive Cesium functionality support
42
+ - 🌐 **Comprehensive** - Full coverage of common Cesium functionality
30
43
  - 🎮 **Interactive** - Rich interactive capabilities with map elements
31
- - ⚡️ **Lightweight** - No bloated dependencies
44
+ - ⚡️ **Lightweight** - No redundant dependencies
32
45
 
33
- ## Install
46
+ ## Installation
34
47
 
35
48
  ```bash
36
49
  # npm
@@ -43,16 +56,14 @@ yarn add cesium @vueuse/core vesium
43
56
  pnpm add cesium @vueuse/core vesium
44
57
  ```
45
58
 
46
- <template>
47
- <div ref="cesiumContainer" style="width: 100%; height: 100%" />
48
- </template>
49
- ```
50
-
51
- ## 🌸 Credits
59
+ ## Related Projects
52
60
 
53
- - [VueUse](https://github.com/vueuse/vueuse) - Collection of Vue Composition Utilities
54
61
  - [Cesium](https://github.com/CesiumGS/cesium) - An open-source JavaScript library for world-class 3D globes and maps
55
62
 
63
+ - [VueUse](https://github.com/vueuse/vueuse) - Collection of essential Vue Composition API utilities
64
+
65
+ - [VitePress](https://github.com/vuejs/vitepress) - Vite & Vue-powered static site generator
66
+
56
67
  ## 📄 License
57
68
 
58
- [MIT](./LICENSE) License © 2025 [GeoVueJS](https://github.com/GeoVueJS)
69
+ Vesium is released under the [MIT License](./LICENSE).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vesium/shared",
3
3
  "type": "module",
4
- "version": "1.0.1-beta.35",
4
+ "version": "1.0.1-beta.36",
5
5
  "buildInfo": {
6
6
  "name": "VesiumShared",
7
7
  "bundle": true
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@vueuse/shared": "^13.1.0",
37
- "cesium": "^1.128.0",
37
+ "cesium": "^1.129.0",
38
38
  "vue": "^3.5.13"
39
39
  },
40
40
  "types": "./dist/index.d.ts",