@smallwebco/tinypivot-vue 1.0.58 → 1.0.60

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 +7 -6
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,15 +1,14 @@
1
1
  # @smallwebco/tinypivot-vue
2
2
 
3
- **Embed an AI Data Analyst in your Vue 3 app.** Ask questions in plain English, get instant SQL-powered insights. AI-enabled data grid with pivot tables and charts all under 50KB gzipped.
3
+ A lightweight data grid with pivot tables, charts, and optional AI-powered data exploration for Vue 3. **Under 50KB gzipped**10x smaller than AG Grid.
4
4
 
5
5
  **[Live Demo](https://tiny-pivot.com)** · **[Buy License](https://tiny-pivot.com/#pricing)**
6
6
 
7
7
  ## Why TinyPivot?
8
8
 
9
- - **Embedded AI Data Analyst**: Let users ask questions in plain English — AI generates SQL and returns results instantly
10
- - **Bring Your Own Key (BYOK)**: Use your own OpenAI, Anthropic, or any LLM API key — full control over costs and privacy
11
- - **Lightweight**: Under 50KB gzipped vs 500KB+ for AG Grid (10x smaller)
9
+ - **Lightweight**: Under 50KB gzipped vs 500KB+ for AG Grid
12
10
  - **Batteries Included**: Pivot tables, 6 chart types, Excel-like features out of the box
11
+ - **AI Data Analyst** (Pro): Natural language queries with BYOK — use your own OpenAI/Anthropic key
13
12
  - **One-Time License**: No subscriptions — pay once, use forever
14
13
 
15
14
  ## Installation
@@ -89,9 +88,11 @@ const data = [
89
88
  | `@export` | `{ rowCount, filename }` | CSV exported |
90
89
  | `@copy` | `{ text, cellCount }` | Cells copied |
91
90
 
92
- ## Embedded AI Data Analyst (Pro)
91
+ ## AI Data Analyst (Pro)
93
92
 
94
- Embed an AI-powered data analyst that lets users explore data using natural language. Ask questions like "What's the return rate by category?" and get instant results — no SQL knowledge required for end users.
93
+ Optional AI-powered data analyst that lets users explore data using natural language. Ask questions like "What's the return rate by category?" and get instant results.
94
+
95
+ > See the [AI Analyst Demo](https://github.com/Small-Web-Co/tinypivot/tree/master/examples/ai-analyst-demo) for a complete working example.
95
96
 
96
97
  ```vue
97
98
  <script setup lang="ts">
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@smallwebco/tinypivot-vue",
3
3
  "type": "module",
4
- "version": "1.0.58",
5
- "description": "TinyPivot Vue 3 - Embedded AI Data Analyst component. Ask questions in plain English, get SQL-powered insights. AI-enabled data grid with pivot tables, charts, and BYOK. Under 50KB gzipped.",
4
+ "version": "1.0.60",
5
+ "description": "TinyPivot Vue 3 - Lightweight data grid with pivot tables, charts, and optional AI Data Analyst. Under 50KB gzipped. BYOK for AI features.",
6
6
  "author": "Small Web, LLC",
7
7
  "license": "SEE LICENSE IN LICENSE.md",
8
8
  "homepage": "https://github.com/Small-Web-Co/tinypivot",
@@ -71,7 +71,7 @@
71
71
  "@tanstack/vue-table": "^8.20.0",
72
72
  "apexcharts": "^4.3.0",
73
73
  "vue3-apexcharts": "^1.7.0",
74
- "@smallwebco/tinypivot-core": "1.0.58"
74
+ "@smallwebco/tinypivot-core": "1.0.60"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@vitejs/plugin-vue": "^4.5.0",