@simple-table/solid 3.0.0-beta.10 → 3.0.0-beta.12
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 +36 -0
- package/package.json +4 -4
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Simple Table for Solid
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@simple-table/solid)
|
|
4
|
+
[](https://www.npmjs.com/package/@simple-table/solid)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
|
|
7
|
+
Solid.js adapter for [Simple Table](https://www.simple-table.com/) — a lightweight, high-performance data grid with full Solid component support for all renderers.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install @simple-table/solid
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**Peer dependencies:** `solid-js >=1.0.0`
|
|
16
|
+
|
|
17
|
+
## Features
|
|
18
|
+
|
|
19
|
+
- Use Solid components for cell renderers, header renderers, footer renderers, and more
|
|
20
|
+
- Access the imperative `TableAPI` via a ref callback for sorting, filtering, pagination, export, and more
|
|
21
|
+
- All types exported directly — no need to install `simple-table-core` separately
|
|
22
|
+
|
|
23
|
+
## Documentation
|
|
24
|
+
|
|
25
|
+
- **Quick Start**: [simple-table.com/docs/quick-start](https://www.simple-table.com/docs/quick-start)
|
|
26
|
+
- **Full Documentation**: [simple-table.com/docs/installation](https://www.simple-table.com/docs/installation)
|
|
27
|
+
- **Examples**: [simple-table.com/examples/crm](https://www.simple-table.com/examples/crm)
|
|
28
|
+
|
|
29
|
+
## Community & Support
|
|
30
|
+
|
|
31
|
+
- **Discord**: [Join us on Discord](https://discord.gg/RvKHCfg3PC)
|
|
32
|
+
- **GitHub**: [Report bugs or suggest features](https://github.com/petera2c/simple-table/issues)
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
Dual licensed — MIT for individuals & startups, proprietary Pro tier for revenue-generating companies. See [LICENSE](LICENSE) and [EULA.txt](../../EULA.txt) for details.
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simple-table/solid",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.12",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
6
|
+
"types": "dist/types/index.d.ts",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
10
|
"import": "./dist/index.es.js",
|
|
11
11
|
"require": "./dist/cjs/index.js",
|
|
12
|
-
"types": "./dist/index.d.ts"
|
|
12
|
+
"types": "./dist/types/index.d.ts"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"license": "MIT",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"solid-js": ">=1.0.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"simple-table-core": "3.0.0-beta.
|
|
27
|
+
"simple-table-core": "3.0.0-beta.12"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@babel/preset-typescript": "^7.28.5",
|