react-pivottable-plus 1.0.2 → 1.0.4
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 +16 -16
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
# react-pivottable-plus
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/react-pivottable-plus)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://react.dev/)
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
**La solución definitiva de Tablas Dinámicas para el ecosistema moderno de React.**
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
`react-pivottable-plus` es una versión premium y mantenida de `react-pivottable`, rediseñada para ofrecer una experiencia de usuario excepcional con soporte nativo para Tailwind CSS, Radix UI y Shadcn.
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
Totalmente compatible con **React 19**, aprovechando las últimas mejoras de rendimiento y estabilidad del ecosistema.
|
|
11
|
+
## 🌐 Enlaces Rápidos
|
|
11
12
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
- **
|
|
15
|
-
- **Shadcn/UI**: Diseño profesional basado en componentes de Radix UI y Tailwind.
|
|
16
|
-
- **Radix UI**: Soporte nativo para componentes accesibles y robustos.
|
|
13
|
+
- 📚 **[Documentación Oficial](https://jasp402.github.io/react-pivottable-plus/)**
|
|
14
|
+
- 🚀 **[Guía de Inicio Rápido](https://jasp402.github.io/react-pivottable-plus/docs/get-started)**
|
|
15
|
+
- 🎨 **[Galería de Interfaces](https://jasp402.github.io/react-pivottable-plus/examples/gallery)**
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
Se ha añadido un pie de página inteligente que incluye:
|
|
20
|
-
- **Paginación avanzada**: Control de página actual y tamaño de página (registros por página).
|
|
21
|
-
- **Totalización**: Visualización en tiempo real del total de registros procesados y el total de filas resultantes en la tabla dinámica.
|
|
17
|
+
## 🚀 Por qué elegir esta versión?
|
|
22
18
|
|
|
23
|
-
|
|
24
|
-
|
|
19
|
+
A diferencia de otros forks estancados, `react-pivottable-plus` ofrece:
|
|
20
|
+
|
|
21
|
+
- **Soporte React 19**: Construido sobre los estándares más recientes.
|
|
22
|
+
- **UI de Próxima Generación**: Renderizadores modernos integrados.
|
|
23
|
+
- **Paginación Inteligente**: Rendimiento fluido con grandes conjuntos de datos.
|
|
24
|
+
- **Configuración Cero**: Implementación en segundos con valores por defecto robustos.
|
|
25
25
|
|
|
26
26
|
## 📦 Instalación
|
|
27
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-pivottable-plus",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A React-based pivot table with grouping and modern UI (Tailwind, Radix, Shadcn)",
|
|
6
6
|
"main": "PivotTableUI.js",
|
|
@@ -37,7 +37,10 @@
|
|
|
37
37
|
"postpublish": "npm run clean",
|
|
38
38
|
"bump": "node scripts/bump-version.js patch",
|
|
39
39
|
"bump:minor": "node scripts/bump-version.js minor",
|
|
40
|
-
"bump:major": "node scripts/bump-version.js major"
|
|
40
|
+
"bump:major": "node scripts/bump-version.js major",
|
|
41
|
+
"docs:dev": "cd docs && next dev -p 3001",
|
|
42
|
+
"docs:build": "cd docs && npm run build",
|
|
43
|
+
"release": "npm run bump && git add package.json && git commit -m \"chore: bump version\" && git push origin master"
|
|
41
44
|
},
|
|
42
45
|
"repository": {
|
|
43
46
|
"type": "git",
|
|
@@ -72,6 +75,8 @@
|
|
|
72
75
|
"clsx": "^2.1.1",
|
|
73
76
|
"immutability-helper": "^2.3.1",
|
|
74
77
|
"lucide-react": "^0.575.0",
|
|
78
|
+
"nextra": "^3.3.1",
|
|
79
|
+
"nextra-theme-docs": "^3.3.1",
|
|
75
80
|
"prop-types": "^15.8.1",
|
|
76
81
|
"react-draggable": "^4.4.6",
|
|
77
82
|
"react-sortablejs": "^6.1.4",
|