lit-litelements 2.2.3 → 2.2.5
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/dist/component/chart.lit.d.ts +2 -12
- package/dist/component/chart.lit.js +129 -24
- package/dist/main.js +25 -10
- package/package.json +3 -1
- package/readme.md +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lit-litelements",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"description": "My LitElement component build for loading spinner with 10 types, and chart-display fix error hover hidden: true for some line async update",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"module": "dist/main.js",
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
"license": "ISC",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"chart.js": "^4.4.5",
|
|
27
|
+
"chartjs-plugin-annotation": "^3.1.0",
|
|
28
|
+
"chartjs-plugin-zoom": "^2.2.0",
|
|
27
29
|
"lit": "^3.1.4",
|
|
28
30
|
"tslib": "^2.6.3"
|
|
29
31
|
},
|
package/readme.md
CHANGED
|
@@ -67,7 +67,7 @@ You can integrate customizable loading spinners using the `<loading-spinner-elem
|
|
|
67
67
|
|
|
68
68
|
---
|
|
69
69
|
|
|
70
|
-
## 📊 `stock-chart-display` v2.2.
|
|
70
|
+
## 📊 `stock-chart-display` v2.2.4
|
|
71
71
|
|
|
72
72
|
The `<stock-chart-display>` component renders technical stock charts using a data array of candlestick and indicator values.
|
|
73
73
|
|
|
@@ -76,6 +76,7 @@ The `<stock-chart-display>` component renders technical stock charts using a dat
|
|
|
76
76
|
### 🔢 Input: `stockData` Prop
|
|
77
77
|
|
|
78
78
|
Pass an array of objects to the `stockData` prop. Each object should contain the following structure:
|
|
79
|
+
Bull and Bear base on price vs ma200 with SL and TP
|
|
79
80
|
|
|
80
81
|
```ts
|
|
81
82
|
const dataArray = [
|