aspose.cells 25.12.0 → 26.1.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
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
Aspose.Cells for Node.js via Java is a scalable and feature-rich API to create, process, manipulate & convert Excel & OpenOffice spreadsheets using Node.js. API offers Excel file generation, conversion, worksheets styling, Pivot Table & chart management & rendering, reliable formula calculation engine and much more - all without any dependency on Office Automation or Microsoft Excel®.
|
|
2
2
|
|
|
3
3
|
# Note
|
|
4
|
-
We have released **[Aspose.Cells for Node.js via C++](https://www.npmjs.com/package/aspose.cells.node)** since v24.7.0. It is highly recommended to use it to replace Aspose.Cells for Node.js via Java. We will gradually reduce the release frequency of Aspose.Cells for Node.js via Java and focus on **[Aspose.Cells for Node.js via C++](https://www.npmjs.com/package/aspose.cells.node)** in the future.
|
|
4
|
+
- We have released **[Aspose.Cells for Node.js via C++](https://www.npmjs.com/package/aspose.cells.node)** since v24.7.0. It is highly recommended to use it to replace Aspose.Cells for Node.js via Java. We will gradually reduce the release frequency of Aspose.Cells for Node.js via Java and focus on **[Aspose.Cells for Node.js via C++](https://www.npmjs.com/package/aspose.cells.node)** in the future.
|
|
5
|
+
- Aspose.Cells for Node.js via Java depends internally on node-java, which is built on NAN, and NAN directly relies on the V8 C++ API. Therefore, installing "Aspose.Cells for Node.js via Java" requires compiling node-java.
|
|
5
6
|
|
|
6
7
|
## Node.js Spreadsheet API Features
|
|
7
8
|
- Generate Excel files via API or using templates.
|
|
Binary file
|
package/lib/aspose.cells.js
CHANGED
|
@@ -10,7 +10,7 @@ java.asyncOptions = {
|
|
|
10
10
|
asyncSuffix: "Async",
|
|
11
11
|
syncSuffix: "",
|
|
12
12
|
};
|
|
13
|
-
java.classpath.push(__dirname + "/aspose-cells-
|
|
13
|
+
java.classpath.push(__dirname + "/aspose-cells-26.1.jar");
|
|
14
14
|
java.classpath.push(__dirname + "/bcprov-jdk15on-1.68.jar");
|
|
15
15
|
java.classpath.push(__dirname + "/bcpkix-jdk15on-1.68.jar");
|
|
16
16
|
java.classpath.push(__dirname + "/JavaClassBridge.jar");
|
|
@@ -1698,6 +1698,11 @@ exports.InputMethodEditorMode = {
|
|
|
1698
1698
|
OFF : 2,
|
|
1699
1699
|
ON : 1,
|
|
1700
1700
|
},
|
|
1701
|
+
exports.ItemsWithNoDataShowMode = {
|
|
1702
|
+
LAST : 1,
|
|
1703
|
+
NATURAL : 2,
|
|
1704
|
+
NONE : 0,
|
|
1705
|
+
},
|
|
1701
1706
|
exports.JsonExportHyperlinkType = {
|
|
1702
1707
|
ADDRESS : 1,
|
|
1703
1708
|
DISPLAY_STRING : 0,
|
|
@@ -3077,11 +3082,6 @@ exports.SlicerCacheCrossFilterType = {
|
|
|
3077
3082
|
SHOW_ITEMS_WITH_DATA_AT_TOP : 1,
|
|
3078
3083
|
SHOW_ITEMS_WITH_NO_DATA : 2,
|
|
3079
3084
|
},
|
|
3080
|
-
exports.SlicerCacheItemSortType = {
|
|
3081
|
-
ASCENDING : 1,
|
|
3082
|
-
DESCENDING : 2,
|
|
3083
|
-
NATURAL : 0,
|
|
3084
|
-
},
|
|
3085
3085
|
exports.SlicerStyleType = {
|
|
3086
3086
|
CUSTOM : 14,
|
|
3087
3087
|
SLICER_STYLE_DARK_1 : 8,
|
|
@@ -3566,6 +3566,12 @@ exports.TiffPhotometricInterpretation = {
|
|
|
3566
3566
|
BLACKISZERO : 1,
|
|
3567
3567
|
WHITEISZERO : 0,
|
|
3568
3568
|
},
|
|
3569
|
+
exports.TimelineLevelType = {
|
|
3570
|
+
DAY : 3,
|
|
3571
|
+
MONTH : 2,
|
|
3572
|
+
QUARTER : 1,
|
|
3573
|
+
YEAR : 0,
|
|
3574
|
+
},
|
|
3569
3575
|
exports.TimePeriodType = {
|
|
3570
3576
|
LAST_7_DAYS : 3,
|
|
3571
3577
|
LAST_MONTH : 5,
|
package/package.json
CHANGED
|
Binary file
|