sheetnext 0.1.8 → 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 +1150 -273
- package/README.md +3 -6
- package/dist/sheetnext.css +1 -1
- package/dist/sheetnext.es.js +3 -3
- package/dist/sheetnext.umd.js +3 -3
- package/package.json +1 -2
- package/types/index.d.ts +0 -1
- package/AGENT.md +0 -330
package/README.md
CHANGED
|
@@ -6,8 +6,7 @@
|
|
|
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
|
|
|
@@ -64,13 +63,11 @@ const SN = new SheetNext(document.querySelector('#SNContainer'));
|
|
|
64
63
|
## ⚙️ 初始化配置
|
|
65
64
|
|
|
66
65
|
```javascript
|
|
67
|
-
const SN = new SheetNext(document.querySelector('#container')
|
|
68
|
-
AI_URL: "http://localhost:3000/sheetnextAI", // AI 中转地址(可选)
|
|
69
|
-
AI_TOKEN: "your-token" // 中转 token(可选)
|
|
70
|
-
});
|
|
66
|
+
const SN = new SheetNext(document.querySelector('#container'));
|
|
71
67
|
```
|
|
72
68
|
|
|
73
69
|
## 🔗 相关链接
|
|
74
70
|
|
|
75
71
|
- 🏠 [官网](https://www.sheetnext.com)
|
|
72
|
+
- 📖 [在线文档](https://www.sheetnext.com/docs)
|
|
76
73
|
- 📦 [npm 包地址](https://www.npmjs.com/package/sheetnext)
|