aspose.cells 25.10.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");
|
|
@@ -665,7 +665,6 @@ exports.ChartType = {
|
|
|
665
665
|
RADAR : 57,
|
|
666
666
|
RADAR_FILLED : 59,
|
|
667
667
|
RADAR_WITH_DATA_MARKERS : 58,
|
|
668
|
-
RADIAL_HISTOGRAM : 81,
|
|
669
668
|
SCATTER : 60,
|
|
670
669
|
SCATTER_CONNECTED_BY_CURVES_WITH_DATA_MARKER : 61,
|
|
671
670
|
SCATTER_CONNECTED_BY_CURVES_WITHOUT_DATA_MARKER : 62,
|
|
@@ -903,6 +902,10 @@ exports.DataBarNegativeColorType = {
|
|
|
903
902
|
COLOR : 0,
|
|
904
903
|
SAME_AS_POSITIVE : 1,
|
|
905
904
|
},
|
|
905
|
+
exports.DataBarRenderMode = {
|
|
906
|
+
BACKGROUND_COLOR : 1,
|
|
907
|
+
IMAGE : 2,
|
|
908
|
+
},
|
|
906
909
|
exports.DataLabelShapeType = {
|
|
907
910
|
BENT_LINE_CALLOUT : 11,
|
|
908
911
|
BENT_LINE_WITH_ACCENT_BAR_CALLOUT : 13,
|
|
@@ -1615,6 +1618,10 @@ exports.HtmlHiddenRowDisplayType = {
|
|
|
1615
1618
|
HIDDEN : 0,
|
|
1616
1619
|
REMOVE : 1,
|
|
1617
1620
|
},
|
|
1621
|
+
exports.HtmlLayoutMode = {
|
|
1622
|
+
NORMAL : 0,
|
|
1623
|
+
PRINT : 1,
|
|
1624
|
+
},
|
|
1618
1625
|
exports.HtmlLinkTargetType = {
|
|
1619
1626
|
BLANK : 0,
|
|
1620
1627
|
PARENT : 1,
|
|
@@ -1691,6 +1698,11 @@ exports.InputMethodEditorMode = {
|
|
|
1691
1698
|
OFF : 2,
|
|
1692
1699
|
ON : 1,
|
|
1693
1700
|
},
|
|
1701
|
+
exports.ItemsWithNoDataShowMode = {
|
|
1702
|
+
LAST : 1,
|
|
1703
|
+
NATURAL : 2,
|
|
1704
|
+
NONE : 0,
|
|
1705
|
+
},
|
|
1694
1706
|
exports.JsonExportHyperlinkType = {
|
|
1695
1707
|
ADDRESS : 1,
|
|
1696
1708
|
DISPLAY_STRING : 0,
|
|
@@ -3070,11 +3082,6 @@ exports.SlicerCacheCrossFilterType = {
|
|
|
3070
3082
|
SHOW_ITEMS_WITH_DATA_AT_TOP : 1,
|
|
3071
3083
|
SHOW_ITEMS_WITH_NO_DATA : 2,
|
|
3072
3084
|
},
|
|
3073
|
-
exports.SlicerCacheItemSortType = {
|
|
3074
|
-
ASCENDING : 1,
|
|
3075
|
-
DESCENDING : 2,
|
|
3076
|
-
NATURAL : 0,
|
|
3077
|
-
},
|
|
3078
3085
|
exports.SlicerStyleType = {
|
|
3079
3086
|
CUSTOM : 14,
|
|
3080
3087
|
SLICER_STYLE_DARK_1 : 8,
|
|
@@ -3559,6 +3566,12 @@ exports.TiffPhotometricInterpretation = {
|
|
|
3559
3566
|
BLACKISZERO : 1,
|
|
3560
3567
|
WHITEISZERO : 0,
|
|
3561
3568
|
},
|
|
3569
|
+
exports.TimelineLevelType = {
|
|
3570
|
+
DAY : 3,
|
|
3571
|
+
MONTH : 2,
|
|
3572
|
+
QUARTER : 1,
|
|
3573
|
+
YEAR : 0,
|
|
3574
|
+
},
|
|
3562
3575
|
exports.TimePeriodType = {
|
|
3563
3576
|
LAST_7_DAYS : 3,
|
|
3564
3577
|
LAST_MONTH : 5,
|
|
@@ -3689,7 +3702,6 @@ exports.CopyOptions = java.import("com.aspose.cells.CopyOptions");
|
|
|
3689
3702
|
exports.CustomFilterCollection = java.import("com.aspose.cells.CustomFilterCollection");
|
|
3690
3703
|
exports.CustomFunctionDefinition = java.import("com.aspose.cells.CustomFunctionDefinition");
|
|
3691
3704
|
exports.CustomPiovtFieldGroupItem = java.import("com.aspose.cells.CustomPiovtFieldGroupItem");
|
|
3692
|
-
exports.CustomProperty = java.import("com.aspose.cells.CustomProperty");
|
|
3693
3705
|
exports.CustomRenderSettings = java.import("com.aspose.cells.CustomRenderSettings");
|
|
3694
3706
|
exports.DataSorterKeyCollection = java.import("com.aspose.cells.DataSorterKeyCollection");
|
|
3695
3707
|
exports.DateTime = java.import("com.aspose.cells.DateTime");
|
package/package.json
CHANGED
|
Binary file
|