@visionaris-bruno/vs-echarts 0.0.1 → 0.0.2
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 +9 -11
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -10,20 +10,18 @@ Biblioteca de componentes de visualización de datos basada en **Apache ECharts*
|
|
|
10
10
|
|
|
11
11
|
## 📦 Instalación
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Para instalar la librería en tu proyecto Angular, utiliza npm:
|
|
14
14
|
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
"vs-echarts": "file:../reusable/vs-ng-library/dist/vs-echarts"
|
|
18
|
-
}
|
|
15
|
+
```bash
|
|
16
|
+
npm install @visionaris-bruno/vs-echarts
|
|
19
17
|
```
|
|
20
18
|
|
|
21
|
-
|
|
19
|
+
> **Nota para el equipo de Visionaris**: Para desarrollo local vinculando el código fuente, consulta los archivos `tsconfig.dev.json` de la aplicación para ver los mapeos de rutas (`paths`) que permiten el hot-reload de la librería.
|
|
22
20
|
|
|
23
21
|
## 🛠️ Uso Básico
|
|
24
22
|
|
|
25
23
|
```typescript
|
|
26
|
-
import { EchartsRingComponent } from 'vs-echarts';
|
|
24
|
+
import { EchartsRingComponent } from '@visionaris-bruno/vs-echarts';
|
|
27
25
|
|
|
28
26
|
// En tu componente wrapper
|
|
29
27
|
@Component({
|
|
@@ -41,8 +39,8 @@ import { EchartsRingComponent } from 'vs-echarts';
|
|
|
41
39
|
|
|
42
40
|
## 📖 Documentación Detallada
|
|
43
41
|
|
|
44
|
-
- [**Arquitectura Interna (Builders & Specialists)**](
|
|
45
|
-
- [**Referencia de API e Interfaces**](
|
|
42
|
+
- [**Arquitectura Interna (Builders & Specialists)**](https://bitbucket.org/visionaris/visionaris_suite/src/desarrollo/reusable/vs-ng-library/projects/vs-echarts/docs/internal-architecture.md)
|
|
43
|
+
- [**Referencia de API e Interfaces**](https://bitbucket.org/visionaris/visionaris_suite/src/desarrollo/reusable/vs-ng-library/projects/vs-echarts/docs/api-reference.md)
|
|
46
44
|
- **Patrones por Componente**:
|
|
47
|
-
- [ECharts Ring Patterns](
|
|
48
|
-
- [ECharts Vertical Bands Patterns](
|
|
45
|
+
- [ECharts Ring Patterns](https://bitbucket.org/visionaris/visionaris_suite/src/desarrollo/reusable/vs-ng-library/projects/vs-echarts/docs/charts/ring-patterns.md)
|
|
46
|
+
- [ECharts Vertical Bands Patterns](https://bitbucket.org/visionaris/visionaris_suite/src/desarrollo/reusable/vs-ng-library/projects/vs-echarts/docs/charts/vertical-bands-patterns.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visionaris-bruno/vs-echarts",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^20.3.0",
|
|
6
6
|
"@angular/core": "^20.3.0",
|
|
@@ -11,6 +11,11 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"tslib": "^2.3.0"
|
|
13
13
|
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://bitbucket.org/visionaris/visionaris_suite.git",
|
|
17
|
+
"directory": "reusable/vs-ng-library/projects/vs-echarts"
|
|
18
|
+
},
|
|
14
19
|
"sideEffects": false,
|
|
15
20
|
"module": "fesm2022/visionaris-bruno-vs-echarts.mjs",
|
|
16
21
|
"typings": "index.d.ts",
|