@simple-table/solid 3.0.0-beta.11 → 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.
Files changed (2) hide show
  1. package/README.md +36 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # Simple Table for Solid
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@simple-table/solid.svg)](https://www.npmjs.com/package/@simple-table/solid)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@simple-table/solid.svg)](https://www.npmjs.com/package/@simple-table/solid)
5
+ [![License](https://img.shields.io/npm/l/@simple-table/solid.svg)](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,6 +1,6 @@
1
1
  {
2
2
  "name": "@simple-table/solid",
3
- "version": "3.0.0-beta.11",
3
+ "version": "3.0.0-beta.12",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -24,7 +24,7 @@
24
24
  "solid-js": ">=1.0.0"
25
25
  },
26
26
  "dependencies": {
27
- "simple-table-core": "3.0.0-beta.11"
27
+ "simple-table-core": "3.0.0-beta.12"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@babel/preset-typescript": "^7.28.5",