@chartspire/chartspire-chart 0.5.0 → 1.1.0
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/CHANGELOG.md +9 -0
- package/README.md +2 -25
- package/dist/index.cjs +7 -0
- package/dist/index.d.ts +1212 -0
- package/dist/index.esm.js +15625 -0
- package/dist/umd/klinecharts.js +15649 -0
- package/dist/umd/klinecharts.js.map +1 -0
- package/dist/umd/klinecharts.min.js +7 -0
- package/package.json +2 -3
- package/licenses/LICENSE +0 -7
- package/licenses/LICENSE_APACHE_2.0 +0 -201
- package/licenses/LICENSE_PROPRIETARY +0 -51
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## Unreleased
|
|
9
9
|
|
|
10
|
+
## 1.1.0 - 2024-12-07
|
|
11
|
+
### Added
|
|
12
|
+
- Auto charts - Wedges, Head & Shoulders pattern and Inv Head & Shoulsers
|
|
13
|
+
- New indicators - Candle volume & SuperTrend
|
|
14
|
+
- UI enhancements
|
|
15
|
+
- Bug fixes
|
|
16
|
+
- Other under the hood improvements
|
|
17
|
+
- Performance improvements
|
|
18
|
+
|
|
10
19
|
## 0.5.0 - 2024-12-07
|
|
11
20
|
### Added
|
|
12
21
|
- Auto charts - Wedges, Head & Shoulders pattern and Inv Head & Shoulsers
|
package/README.md
CHANGED
|
@@ -6,19 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
[//]: # ( </a>)
|
|
8
8
|
</div>
|
|
9
|
-
<h1 align="center">
|
|
9
|
+
<h1 align="center">Chartspire chart</h1>
|
|
10
10
|
|
|
11
|
-
<p align="center">💹📈
|
|
11
|
+
<p align="center">💹📈 Charting library for chartspire-ui.</p>
|
|
12
12
|
<div align="center">
|
|
13
|
-
|
|
14
|
-
[//]: # ([](https://github.com/liihuu/ChartSpire/actions/workflows/build.yml))
|
|
15
|
-
[](https://www.npmjs.com/package/chartspire)
|
|
16
|
-
[](https://bundlephobia.com/result?p=ChartSpire@latest)
|
|
17
|
-
[](https://www.npmjs.com/package/chartspire)
|
|
18
|
-
[](types/index.d.ts)
|
|
19
|
-
[](LICENSE)
|
|
20
|
-
[](https://vitepress.dev/)
|
|
21
|
-
|
|
22
13
|
</div>
|
|
23
14
|
|
|
24
15
|
<div align="center">
|
|
@@ -31,9 +22,6 @@
|
|
|
31
22
|
|
|
32
23
|
</div>
|
|
33
24
|
|
|
34
|
-
<img style="margin-bottom:6px" src="https://cdn.nlark.com/yuque/0/2023/png/8403091/1684399506365-assets/web-upload/044fe897-168c-4fbb-a485-87a8ef61c04a.png" />
|
|
35
|
-
|
|
36
|
-
|
|
37
25
|
## ✨ Features
|
|
38
26
|
- 📦 **Out of the box:** Simple and fast integration, basically zero cost to get started.
|
|
39
27
|
- 🚀 **Lightweight and smooth:** Zero dependencies, only 40k under gzip compression.
|
|
@@ -67,17 +55,6 @@ npm i @chartspire/chartspire-chart
|
|
|
67
55
|
yarn add @chartspire/chartspire-chart
|
|
68
56
|
```
|
|
69
57
|
|
|
70
|
-
### CDNs
|
|
71
|
-
#### [unpkg](https://unpkg.com)
|
|
72
|
-
```html
|
|
73
|
-
<script type="text/javascript" src="https://unpkg.com/ChartSpire/dist/ChartSpire.min.js"></script>
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
#### [jsDelivr](https://cdn.jsdelivr.net)
|
|
77
|
-
```html
|
|
78
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ChartSpire/dist/ChartSpire.min.js"></script>
|
|
79
|
-
```
|
|
80
|
-
|
|
81
58
|
## 📄 Docs
|
|
82
59
|
### Online
|
|
83
60
|
[https://www.chartspire.com](https://www.chartspire.com)
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* KLineChart v1.0.0
|
|
4
|
+
* Copyright (c) 2019 lihu.
|
|
5
|
+
* Licensed under Apache License 2.0 https://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
*/
|
|
7
|
+
"use strict";"production"===process.env.NODE_ENV?module.exports=require("./umd/klinecharts.min.js"):module.exports=require("./umd/klinecharts.js");
|