aspose.cells.node 25.11.0 → 25.12.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/aspose.cells.js +56 -1
- package/package.json +6 -6
- package/types.d.ts +1450 -1161
package/aspose.cells.js
CHANGED
|
@@ -82,6 +82,11 @@ exports.HtmlEmbeddedFontType = {
|
|
|
82
82
|
Woff : 1,
|
|
83
83
|
};
|
|
84
84
|
|
|
85
|
+
exports.DataBarRenderMode = {
|
|
86
|
+
BackgroundColor : 1,
|
|
87
|
+
Image : 2,
|
|
88
|
+
};
|
|
89
|
+
|
|
85
90
|
exports.HtmlLayoutMode = {
|
|
86
91
|
Normal : 0,
|
|
87
92
|
Print : 1,
|
|
@@ -3186,7 +3191,6 @@ exports.ChartType = {
|
|
|
3186
3191
|
Waterfall : 78,
|
|
3187
3192
|
Histogram : 79,
|
|
3188
3193
|
Map : 80,
|
|
3189
|
-
RadialHistogram : 81,
|
|
3190
3194
|
};
|
|
3191
3195
|
|
|
3192
3196
|
exports.CheckBox.prototype.toImageAsync = async function(...args) {
|
|
@@ -7399,6 +7403,18 @@ Object.assign(exports.EbookSaveOptions.prototype, {
|
|
|
7399
7403
|
},
|
|
7400
7404
|
setEmbeddedFontType(value) {
|
|
7401
7405
|
this.embeddedFontType = value;
|
|
7406
|
+
},
|
|
7407
|
+
getExportNamedRangeAnchors() {
|
|
7408
|
+
return this.exportNamedRangeAnchors;
|
|
7409
|
+
},
|
|
7410
|
+
setExportNamedRangeAnchors(value) {
|
|
7411
|
+
this.exportNamedRangeAnchors = value;
|
|
7412
|
+
},
|
|
7413
|
+
getDataBarRenderMode() {
|
|
7414
|
+
return this.dataBarRenderMode;
|
|
7415
|
+
},
|
|
7416
|
+
setDataBarRenderMode(value) {
|
|
7417
|
+
this.dataBarRenderMode = value;
|
|
7402
7418
|
}
|
|
7403
7419
|
});
|
|
7404
7420
|
|
|
@@ -21322,6 +21338,27 @@ Object.assign(exports.AutoFitterOptions.prototype, {
|
|
|
21322
21338
|
}
|
|
21323
21339
|
});
|
|
21324
21340
|
|
|
21341
|
+
Object.assign(exports.ChartDataValue.prototype, {
|
|
21342
|
+
getValueType() {
|
|
21343
|
+
return this.valueType;
|
|
21344
|
+
},
|
|
21345
|
+
getStringValue() {
|
|
21346
|
+
return this.stringValue;
|
|
21347
|
+
},
|
|
21348
|
+
getIntValue() {
|
|
21349
|
+
return this.intValue;
|
|
21350
|
+
},
|
|
21351
|
+
getDoubleValue() {
|
|
21352
|
+
return this.doubleValue;
|
|
21353
|
+
},
|
|
21354
|
+
getDateTimeValue() {
|
|
21355
|
+
return this.dateTimeValue;
|
|
21356
|
+
},
|
|
21357
|
+
getBoolValue() {
|
|
21358
|
+
return this.boolValue;
|
|
21359
|
+
}
|
|
21360
|
+
});
|
|
21361
|
+
|
|
21325
21362
|
Object.assign(exports.HtmlSaveOptions.prototype, {
|
|
21326
21363
|
getIgnoreInvisibleShapes() {
|
|
21327
21364
|
return this.ignoreInvisibleShapes;
|
|
@@ -21713,6 +21750,18 @@ Object.assign(exports.HtmlSaveOptions.prototype, {
|
|
|
21713
21750
|
setEmbeddedFontType(value) {
|
|
21714
21751
|
this.embeddedFontType = value;
|
|
21715
21752
|
},
|
|
21753
|
+
getExportNamedRangeAnchors() {
|
|
21754
|
+
return this.exportNamedRangeAnchors;
|
|
21755
|
+
},
|
|
21756
|
+
setExportNamedRangeAnchors(value) {
|
|
21757
|
+
this.exportNamedRangeAnchors = value;
|
|
21758
|
+
},
|
|
21759
|
+
getDataBarRenderMode() {
|
|
21760
|
+
return this.dataBarRenderMode;
|
|
21761
|
+
},
|
|
21762
|
+
setDataBarRenderMode(value) {
|
|
21763
|
+
this.dataBarRenderMode = value;
|
|
21764
|
+
},
|
|
21716
21765
|
getSaveFormat() {
|
|
21717
21766
|
return this.saveFormat;
|
|
21718
21767
|
},
|
|
@@ -23471,6 +23520,12 @@ Object.assign(exports.Series.prototype, {
|
|
|
23471
23520
|
setValues(value) {
|
|
23472
23521
|
this.values = value;
|
|
23473
23522
|
},
|
|
23523
|
+
getPointValues() {
|
|
23524
|
+
return this.pointValues;
|
|
23525
|
+
},
|
|
23526
|
+
getCategoryValues() {
|
|
23527
|
+
return this.categoryValues;
|
|
23528
|
+
},
|
|
23474
23529
|
getValuesFormatCode() {
|
|
23475
23530
|
return this.valuesFormatCode;
|
|
23476
23531
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose.cells.node",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.12.1",
|
|
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,10 +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.linux.arm64": "~25.
|
|
41
|
-
"aspose.cells.node.darwin.x64": "~25.
|
|
42
|
-
"aspose.cells.node.darwin.arm64": "~25.
|
|
38
|
+
"aspose.cells.node.win32.x64": "~25.12.1",
|
|
39
|
+
"aspose.cells.node.linux.x64": "~25.12.1",
|
|
40
|
+
"aspose.cells.node.linux.arm64": "~25.12.1",
|
|
41
|
+
"aspose.cells.node.darwin.x64": "~25.12.1",
|
|
42
|
+
"aspose.cells.node.darwin.arm64": "~25.12.1"
|
|
43
43
|
}
|
|
44
44
|
}
|