nexabase-report 0.3.3 → 0.4.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/dist/{html2canvas-OS3QNo3J.js → html2canvas-CIl29z_V.js} +2 -2
- package/dist/{html2canvas-PXHaohUp.js → html2canvas-DrQHzW4S.js} +1 -1
- package/dist/{html2pdf-hgaCZ6lQ.js → html2pdf-CqVUYxiC.js} +3 -3
- package/dist/{index-DGMS37uu.js → index-EE5FdcwR.js} +18769 -18689
- package/dist/{index.es-0l4FLy5P.js → index.es-Dlgpv5Mf.js} +2 -2
- package/dist/{jspdf.es.min-G4HnA2xa.js → jspdf.es.min-CEYFDnSg.js} +2 -2
- package/dist/lib/styles/_designer.css +1 -0
- package/dist/nexabase-report.es.js +1 -1
- package/dist/nexabase-report.umd.js +132 -132
- package/docs/VIEWER_API.md +1 -0
- package/package.json +3 -2
package/docs/VIEWER_API.md
CHANGED
|
@@ -110,6 +110,7 @@ function MiReporte({ definition, data, parameters }) {
|
|
|
110
110
|
| `currentPage` | `number` | `1` | Página inicial que se debe mostrar. |
|
|
111
111
|
| `apiBaseUrl` | `string` | — | URL base de NexaBase para reportes con datos dinámicos. |
|
|
112
112
|
| `apiKey` | `string` | — | API Key para autenticación de datos desde NexaBase. |
|
|
113
|
+
| `licenseKey` | `string` | — | Clave de licencia comercial. Sin licencia válida se muestra un aviso "Sin licencia" en el visor. |
|
|
113
114
|
|
|
114
115
|
## Métodos (vía ref DOM)
|
|
115
116
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexabase-report",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Professional report designer and viewer for NexaBase — drag & drop designer, PDF/Excel export, charts, crosstabs, subreports.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "NexaBase Team",
|
|
@@ -66,7 +66,8 @@
|
|
|
66
66
|
"release:major": "npm test && npm run build && npm version major",
|
|
67
67
|
"prepack": "npm run build",
|
|
68
68
|
"lint": "eslint src/lib/",
|
|
69
|
-
"lint:fix": "eslint src/lib/ --fix"
|
|
69
|
+
"lint:fix": "eslint src/lib/ --fix",
|
|
70
|
+
"license:gen": "node scripts/gen-license.mjs"
|
|
70
71
|
},
|
|
71
72
|
"dependencies": {
|
|
72
73
|
"@nexabase/sdk": "^2.17.6",
|