aspose.cells 24.6.0 → 24.7.1
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,5 +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
|
+
# Node
|
|
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
|
+
|
|
3
6
|
## Node.js Spreadsheet API Features
|
|
4
7
|
- Generate Excel files via API or using templates.
|
|
5
8
|
- Create Pivot Tables, charts, sparklines & conditional formatting rules on-the-fly.
|
|
@@ -25,12 +28,6 @@ Aspose.Cells for Node.js via Java is a scalable and feature-rich API to create,
|
|
|
25
28
|
**Text:** CSV, Tab-Delimited, JSON, SQL, XML
|
|
26
29
|
|
|
27
30
|
## Getting Started with Aspose.Cells for Nodejs via Java
|
|
28
|
-
### Installation
|
|
29
|
-
|
|
30
|
-
From the command line:
|
|
31
|
-
|
|
32
|
-
npm install aspose.cells --save
|
|
33
|
-
|
|
34
31
|
### Create Excel XLSX File from Scratch using Node.js
|
|
35
32
|
``` js
|
|
36
33
|
var aspose = aspose || {};
|
|
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-24.
|
|
13
|
+
java.classpath.push(__dirname + "/aspose-cells-24.7.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");
|
|
@@ -2770,6 +2770,7 @@ exports.RevisionType = {
|
|
|
2770
2770
|
},
|
|
2771
2771
|
exports.SaveFormat = {
|
|
2772
2772
|
AUTO : 0,
|
|
2773
|
+
AZW_3 : 773,
|
|
2773
2774
|
BMP : 263,
|
|
2774
2775
|
CSV : 1,
|
|
2775
2776
|
DIF : 30,
|
|
@@ -2870,8 +2871,9 @@ exports.SlicerCacheCrossFilterType = {
|
|
|
2870
2871
|
SHOW_ITEMS_WITH_NO_DATA : 2,
|
|
2871
2872
|
},
|
|
2872
2873
|
exports.SlicerCacheItemSortType = {
|
|
2873
|
-
ASCENDING :
|
|
2874
|
-
DESCENDING :
|
|
2874
|
+
ASCENDING : 1,
|
|
2875
|
+
DESCENDING : 2,
|
|
2876
|
+
NATURAL : 0,
|
|
2875
2877
|
},
|
|
2876
2878
|
exports.SlicerStyleType = {
|
|
2877
2879
|
CUSTOM : 14,
|
|
@@ -3538,6 +3540,7 @@ exports.PivotAreaFilterCollection = java.import("com.aspose.cells.PivotAreaFilte
|
|
|
3538
3540
|
exports.PivotFieldGroupSettings = java.import("com.aspose.cells.PivotFieldGroupSettings");
|
|
3539
3541
|
exports.PivotGlobalizationSettings = java.import("com.aspose.cells.PivotGlobalizationSettings");
|
|
3540
3542
|
exports.PivotPageFields = java.import("com.aspose.cells.PivotPageFields");
|
|
3543
|
+
exports.PivotTableCalculateOption = java.import("com.aspose.cells.PivotTableCalculateOption");
|
|
3541
3544
|
exports.PivotTableRefreshOption = java.import("com.aspose.cells.PivotTableRefreshOption");
|
|
3542
3545
|
exports.PowerQueryFormulaParameter = java.import("com.aspose.cells.PowerQueryFormulaParameter");
|
|
3543
3546
|
exports.PowerQueryFormulaParameterCollection = java.import("com.aspose.cells.PowerQueryFormulaParameterCollection");
|
|
@@ -3597,6 +3600,7 @@ exports.XpsSaveOptions = java.import("com.aspose.cells.XpsSaveOptions");
|
|
|
3597
3600
|
exports.CellsHelper = java.import("com.aspose.cells.CellsHelper");
|
|
3598
3601
|
exports.ColorHelper = java.import("com.aspose.cells.ColorHelper");
|
|
3599
3602
|
exports.ConditionalFormattingIcon = java.import("com.aspose.cells.ConditionalFormattingIcon");
|
|
3603
|
+
exports.ConversionUtility = java.import("com.aspose.cells.ConversionUtility");
|
|
3600
3604
|
exports.Encoding = java.import("com.aspose.cells.Encoding");
|
|
3601
3605
|
exports.EquationNode = java.import("com.aspose.cells.EquationNode");
|
|
3602
3606
|
exports.FileFormatUtil = java.import("com.aspose.cells.FileFormatUtil");
|