@gui-chat-plugin/spreadsheet 0.1.0 → 0.2.0
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 +19 -0
- package/dist/vue.cjs +108 -75
- package/dist/vue.js +7499 -7192
- package/package.json +15 -6
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @gui-chat-plugin/spreadsheet
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@gui-chat-plugin/spreadsheet)
|
|
4
|
+
|
|
3
5
|
A spreadsheet plugin for [MulmoChat](https://github.com/receptron/MulmoChat) - a multi-modal voice chat application with OpenAI's GPT-4 Realtime API.
|
|
4
6
|
|
|
5
7
|
## What this plugin does
|
|
@@ -17,6 +19,15 @@ This plugin provides a full-featured spreadsheet component with:
|
|
|
17
19
|
- Excel file import/export (.xlsx)
|
|
18
20
|
- Cell formatting and styling
|
|
19
21
|
|
|
22
|
+
## Important: SheetJS Dependency
|
|
23
|
+
|
|
24
|
+
> **Note:** This package uses [SheetJS](https://docs.sheetjs.com/docs/getting-started/installation/nodejs/) for Excel file import/export.
|
|
25
|
+
> SheetJS is **not installed from npm**, but directly from the official SheetJS CDN:
|
|
26
|
+
> ```
|
|
27
|
+
> https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz
|
|
28
|
+
> ```
|
|
29
|
+
> See [SheetJS Installation Guide](https://docs.sheetjs.com/docs/getting-started/installation/nodejs/) for details.
|
|
30
|
+
|
|
20
31
|
## Installation
|
|
21
32
|
|
|
22
33
|
```bash
|
|
@@ -98,6 +109,14 @@ yarn typecheck
|
|
|
98
109
|
yarn lint
|
|
99
110
|
```
|
|
100
111
|
|
|
112
|
+
## Test Prompts
|
|
113
|
+
|
|
114
|
+
Try these prompts to test the plugin:
|
|
115
|
+
|
|
116
|
+
1. "Create a budget spreadsheet with income and expenses columns"
|
|
117
|
+
2. "Make a multiplication table from 1 to 10"
|
|
118
|
+
3. "Create a spreadsheet to track monthly sales with SUM totals"
|
|
119
|
+
|
|
101
120
|
## License
|
|
102
121
|
|
|
103
122
|
MIT
|