@revolist/react-datagrid 4.23.7 → 4.23.10
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 +20 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -77,7 +77,10 @@ Used by some of the largest companies in Europe and the United States.
|
|
|
77
77
|
- Header filtering.
|
|
78
78
|
- Custom filters to extend system filters with your own set.
|
|
79
79
|
|
|
80
|
-
- **[Export](https://rv-grid.com/guide/export.plugin)**:
|
|
80
|
+
- **[Export](https://rv-grid.com/guide/export.plugin)**:
|
|
81
|
+
- **[CSV](https://rv-grid.com/guide/export.plugin)**: Built-in file export for core RevoGrid data workflows.
|
|
82
|
+
- **[PDF](https://rv-grid.com/guide/pdf-export)**: Browser-side PDF export with the lightweight [`@revolist/revogrid-pdf-export`](https://www.npmjs.com/package/@revolist/revogrid-pdf-export) plugin.
|
|
83
|
+
- **[Excel (Pro)](https://rv-grid.com/guide/data-grid-export-excel)**: Workbook export for RevoGrid Pro with layout, styles, frozen panes, merged cells, and formulas.
|
|
81
84
|
|
|
82
85
|
- **Custom Sizes**: Define custom sizes for [columns](https://rv-grid.com/guide/column/#Column-Size) and [rows](https://rv-grid.com/guide/row/height). Automatic sizing based on content.
|
|
83
86
|
|
|
@@ -349,6 +352,22 @@ npm run test:e2e
|
|
|
349
352
|
|
|
350
353
|
Test files live in `e2e/` and share helpers from `e2e/helpers.ts`:
|
|
351
354
|
|
|
355
|
+
### Local startup troubleshooting
|
|
356
|
+
|
|
357
|
+
For targeted local work, confirm a new or changed test is discoverable before starting the dev server:
|
|
358
|
+
|
|
359
|
+
```bash
|
|
360
|
+
./node_modules/.bin/playwright test e2e/pinning.spec.ts --grep "test name" --list
|
|
361
|
+
```
|
|
362
|
+
|
|
363
|
+
Then run a non-watch Stencil build to catch compile errors without invoking the Playwright web-server lifecycle:
|
|
364
|
+
|
|
365
|
+
```bash
|
|
366
|
+
./node_modules/.bin/stencil build --dev --serve --no-open
|
|
367
|
+
```
|
|
368
|
+
|
|
369
|
+
If Playwright fails before any tests run with a Stencil dev-server startup error such as `ERR_SOCKET_BAD_PORT` and port `65536`, treat it as an environment/startup issue rather than an e2e assertion failure. Check `node -v` and whether another local server is already using `localhost:3333`, then retry only after changing that environment state.
|
|
370
|
+
|
|
352
371
|
|
|
353
372
|
## Contributing
|
|
354
373
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revolist/react-datagrid",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "4.23.
|
|
4
|
+
"version": "4.23.10",
|
|
5
5
|
"description": "React DataGrid Spreadsheet component with native cell render support",
|
|
6
6
|
"main": "./dist/react-datagrid.umd.cjs",
|
|
7
7
|
"module": "./dist/react-datagrid.js",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"homepage": "https://github.com/revolist/revogrid#readme",
|
|
65
65
|
"license": "MIT",
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@revolist/revogrid": "4.23.
|
|
67
|
+
"@revolist/revogrid": "4.23.10"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@stencil/core": "^4.43.2",
|