sheetnext 0.1.7 → 0.1.9
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/DOCS.md +1165 -151
- package/README.md +7 -6
- package/dist/sheetnext.css +1 -1
- package/dist/sheetnext.es.js +3 -3
- package/dist/sheetnext.umd.js +3 -3
- package/docs/demo.png +0 -0
- package/package.json +11 -4
- package/types/index.d.ts +0 -1
- package/AGENT.md +0 -330
- package/README.zh-CN.md +0 -100
package/README.md
CHANGED
|
@@ -6,13 +6,16 @@
|
|
|
6
6
|
<div>
|
|
7
7
|
<a href="https://www.sheetnext.com/">🏠 官网</a> |
|
|
8
8
|
<a href="https://www.sheetnext.com/editor">🎯 在线体验</a> |
|
|
9
|
-
<a href="https://
|
|
10
|
-
<a href="https://github.com/wyyazlz/sheetnext/blob/master/AGENT.md">🤖 AI中转文档</a>
|
|
9
|
+
<a href="https://www.sheetnext.com/docs">📖 文档</a>
|
|
11
10
|
</div>
|
|
12
11
|
</div>
|
|
13
12
|
|
|
14
13
|
---
|
|
15
14
|
|
|
15
|
+
<div align="center">
|
|
16
|
+
<img src="docs/demo.png" alt="SheetNext Demo" />
|
|
17
|
+
</div>
|
|
18
|
+
|
|
16
19
|
## ✨ 特点
|
|
17
20
|
|
|
18
21
|
- 📊 **电子表格功能** - 支持电子表格核心功能如:单元格编辑、样式、公式引擎、图表、排序、筛选等
|
|
@@ -60,13 +63,11 @@ const SN = new SheetNext(document.querySelector('#SNContainer'));
|
|
|
60
63
|
## ⚙️ 初始化配置
|
|
61
64
|
|
|
62
65
|
```javascript
|
|
63
|
-
const SN = new SheetNext(document.querySelector('#container')
|
|
64
|
-
AI_URL: "http://localhost:3000/sheetnextAI", // AI 中转地址(可选)
|
|
65
|
-
AI_TOKEN: "your-token" // 中转 token(可选)
|
|
66
|
-
});
|
|
66
|
+
const SN = new SheetNext(document.querySelector('#container'));
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## 🔗 相关链接
|
|
70
70
|
|
|
71
71
|
- 🏠 [官网](https://www.sheetnext.com)
|
|
72
|
+
- 📖 [在线文档](https://www.sheetnext.com/docs)
|
|
72
73
|
- 📦 [npm 包地址](https://www.npmjs.com/package/sheetnext)
|