@simple-table/vue 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.
Files changed (2) hide show
  1. package/README.md +36 -0
  2. package/package.json +4 -4
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # Simple Table for Vue
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@simple-table/vue.svg)](https://www.npmjs.com/package/@simple-table/vue)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@simple-table/vue.svg)](https://www.npmjs.com/package/@simple-table/vue)
5
+ [![License](https://img.shields.io/npm/l/@simple-table/vue.svg)](LICENSE)
6
+
7
+ Vue 3 adapter for [Simple Table](https://www.simple-table.com/) — a lightweight, high-performance data grid with full Vue component support for all renderers.
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ npm install @simple-table/vue
13
+ ```
14
+
15
+ **Peer dependencies:** `vue >=3.0.0`
16
+
17
+ ## Features
18
+
19
+ - Use Vue components for cell renderers, header renderers, footer renderers, and more
20
+ - Access the imperative `TableAPI` via a template ref 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/vue",
3
- "version": "3.0.0-beta.10",
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
  "vue": ">=3.0.0"
25
25
  },
26
26
  "dependencies": {
27
- "simple-table-core": "3.0.0-beta.10"
27
+ "simple-table-core": "3.0.0-beta.12"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@rollup/plugin-alias": "4.0.0",