aspose.cells.node 25.3.0 → 25.4.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 +1 -1
- package/aspose.cells.js +32 -22
- package/package.json +6 -5
- package/types.d.ts +2195 -368
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Aspose.Cells for Node.js via C++ is a powerful and robust library designed for h
|
|
|
24
24
|
|
|
25
25
|
## Support multiple operating systems and CPU architectures, including:
|
|
26
26
|
- **Windows x64**
|
|
27
|
-
- **Linux x64**
|
|
27
|
+
- **Linux x64 & arm64**
|
|
28
28
|
- **macOS x64 & arm64**
|
|
29
29
|
|
|
30
30
|
## Getting Started with Aspose.Cells for Node.js via C++
|
package/aspose.cells.js
CHANGED
|
@@ -2,30 +2,21 @@
|
|
|
2
2
|
// Powered by Aspose.Cells.
|
|
3
3
|
'use strict'
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
break;
|
|
11
|
-
case "win32":
|
|
12
|
-
if (process.arch === "x64") {
|
|
13
|
-
module.exports = require("aspose.cells.node.win32.x64");
|
|
14
|
-
}
|
|
15
|
-
break;
|
|
16
|
-
case "darwin":
|
|
17
|
-
if (process.arch === "arm64") {
|
|
18
|
-
module.exports = require("aspose.cells.node.darwin.arm64");
|
|
19
|
-
}
|
|
20
|
-
else if (process.arch === "x64") {
|
|
21
|
-
module.exports = require("aspose.cells.node.darwin.x64");
|
|
22
|
-
}
|
|
23
|
-
break;
|
|
24
|
-
default:
|
|
25
|
-
throw new Error("Unsupported platform or architecture");
|
|
5
|
+
try {
|
|
6
|
+
module.exports = require(`aspose.cells.node.${process.platform}.${process.arch}`);
|
|
7
|
+
}
|
|
8
|
+
catch (error) {
|
|
9
|
+
throw new Error("Unsupported platform or architecture: " + error.message);
|
|
26
10
|
}
|
|
27
|
-
|
|
28
11
|
exports = module.exports;
|
|
12
|
+
|
|
13
|
+
exports.EncodingType = {
|
|
14
|
+
Default: 0,
|
|
15
|
+
ASCII: 1,
|
|
16
|
+
UTF8: 2,
|
|
17
|
+
Unicode: 3,
|
|
18
|
+
UnicodeBE: 4,
|
|
19
|
+
};
|
|
29
20
|
|
|
30
21
|
|
|
31
22
|
exports.ObjectType = {
|
|
@@ -69,6 +60,11 @@ exports.AutoFitWrappedTextType = {
|
|
|
69
60
|
Paragraph : 1,
|
|
70
61
|
};
|
|
71
62
|
|
|
63
|
+
exports.SvgEmbeddedFontType = {
|
|
64
|
+
None : 0,
|
|
65
|
+
Woff : 1,
|
|
66
|
+
};
|
|
67
|
+
|
|
72
68
|
exports.FontFileFormatType = {
|
|
73
69
|
Unknown : 0,
|
|
74
70
|
Ttf : 1,
|
|
@@ -244,6 +240,19 @@ exports.MarkdownTableHeaderType = {
|
|
|
244
240
|
Empty : 2,
|
|
245
241
|
};
|
|
246
242
|
|
|
243
|
+
exports.SensitivityLabelAssignmentType = {
|
|
244
|
+
Standard : 0,
|
|
245
|
+
Privileged : 1,
|
|
246
|
+
};
|
|
247
|
+
|
|
248
|
+
exports.SensitivityLabelMarkType = {
|
|
249
|
+
None : 0,
|
|
250
|
+
Header : 1,
|
|
251
|
+
Footer : 2,
|
|
252
|
+
Watermark : 4,
|
|
253
|
+
Encryption : 8,
|
|
254
|
+
};
|
|
255
|
+
|
|
247
256
|
exports.PowerQueryFormulaType = {
|
|
248
257
|
Formula : 0,
|
|
249
258
|
Function : 1,
|
|
@@ -1690,6 +1699,7 @@ exports.LoadFormat = {
|
|
|
1690
1699
|
Epub : 52,
|
|
1691
1700
|
Azw3 : 53,
|
|
1692
1701
|
Chm : 54,
|
|
1702
|
+
Markdown : 55,
|
|
1693
1703
|
Unknown : 255,
|
|
1694
1704
|
Image : 254,
|
|
1695
1705
|
Json : 513,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose.cells.node",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.4.0",
|
|
4
4
|
"description": "Aspose.Cells for Node.js via C++ is a high-performance and powerful library for manipulating and converting Excel (XLS, XLSX, XLSB), ODS, CSV, and HTML files, offering a comprehensive set of features for creating, editing, converting, and rendering spreadsheets within Node.js applications.",
|
|
5
5
|
"main": "aspose.cells.js",
|
|
6
6
|
"types": "types.d.ts",
|
|
@@ -35,9 +35,10 @@
|
|
|
35
35
|
"license": "Commercial",
|
|
36
36
|
"homepage": "https://www.aspose.com",
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"aspose.cells.node.win32.x64": "~25.
|
|
39
|
-
"aspose.cells.node.linux.x64": "~25.
|
|
40
|
-
"aspose.cells.node.
|
|
41
|
-
"aspose.cells.node.darwin.
|
|
38
|
+
"aspose.cells.node.win32.x64": "~25.4.0",
|
|
39
|
+
"aspose.cells.node.linux.x64": "~25.4.0",
|
|
40
|
+
"aspose.cells.node.linux.arm64": "~25.4.0",
|
|
41
|
+
"aspose.cells.node.darwin.x64": "~25.4.0",
|
|
42
|
+
"aspose.cells.node.darwin.arm64": "~25.4.0"
|
|
42
43
|
}
|
|
43
44
|
}
|