@toolbox-web/grid 0.3.2 → 0.3.3
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 +5 -4
- package/index.js +470 -466
- package/index.js.map +1 -1
- package/lib/core/internal/sanitize.d.ts +8 -0
- package/lib/core/internal/sanitize.d.ts.map +1 -1
- package/lib/core/internal/shell.d.ts.map +1 -1
- package/lib/plugins/master-detail/index.js.map +1 -1
- package/package.json +1 -1
- package/umd/grid.all.umd.js +12 -12
- package/umd/grid.all.umd.js.map +1 -1
- package/umd/grid.umd.js +6 -6
- package/umd/grid.umd.js.map +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# @toolbox-web/grid
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@toolbox-web/grid)
|
|
4
|
+
[](../../LICENSE)
|
|
4
5
|
[](https://github.com/sponsors/OysteinAmundsen)
|
|
5
6
|
|
|
6
7
|
A high-performance, framework-agnostic data grid built with pure TypeScript and native Web Components. Zero runtime dependencies.
|
|
@@ -552,10 +553,10 @@ Modern browsers with Web Components support (Chrome, Firefox, Safari, Edge).
|
|
|
552
553
|
## Development
|
|
553
554
|
|
|
554
555
|
```bash
|
|
555
|
-
bun
|
|
556
|
-
bun
|
|
557
|
-
bun
|
|
558
|
-
bun
|
|
556
|
+
bun run build
|
|
557
|
+
bun run test
|
|
558
|
+
bun run coverage
|
|
559
|
+
bun run start
|
|
559
560
|
```
|
|
560
561
|
|
|
561
562
|
For architecture details, rendering pipeline, and plugin development, see [ARCHITECTURE.md](./ARCHITECTURE.md).
|