spire.officejs-web-excel-ve 1.0.2
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 +11 -0
- package/index.d.ts +7 -0
- package/index.js +2 -0
- package/package.json +15 -0
- package/web/service/spireexcel/api-all-min.js +1325 -0
- package/web/service/spireexcel/api-all.js +12881 -0
- package/web/service/spireexcel/css/main-mobile.css +120 -0
- package/web/service/spireexcel/css/main.css +157 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# spire.officejs-excel
|
|
2
|
+
|
|
3
|
+
The excel package is one of the products for Spire.OfficeJS. [Spire.ExcelJS](https://www.e-iceblue.com/Introduce/spire-excel-js.html) is a WebAssembly-based Excel engine, delivering advanced formulas, rich visualization, and precise access control.
|
|
4
|
+
|
|
5
|
+
# Installation
|
|
6
|
+
```bash
|
|
7
|
+
npm install spire.officejs-excel
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
# Getting more help
|
|
11
|
+
Visit the Spire.OfficeJS home page to get more info about the library: https://www.e-iceblue.com/Introduce/spire-office-js.html
|
package/index.d.ts
ADDED
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "spire.officejs-web-excel-ve",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"typings": "index.d.ts",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"Spire.OfficeJS",
|
|
9
|
+
"Spire.ExcelJS",
|
|
10
|
+
"javascript",
|
|
11
|
+
"javascript excel"
|
|
12
|
+
],
|
|
13
|
+
"author": "",
|
|
14
|
+
"license": "MIT"
|
|
15
|
+
}
|