aspose.cells.node 25.10.0 → 25.12.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/aspose.cells.js +130 -7
- package/package.json +6 -6
- package/types.d.ts +823 -345
package/aspose.cells.js
CHANGED
|
@@ -82,6 +82,16 @@ exports.HtmlEmbeddedFontType = {
|
|
|
82
82
|
Woff : 1,
|
|
83
83
|
};
|
|
84
84
|
|
|
85
|
+
exports.DataBarRenderMode = {
|
|
86
|
+
BackgroundColor : 1,
|
|
87
|
+
Image : 2,
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
exports.HtmlLayoutMode = {
|
|
91
|
+
Normal : 0,
|
|
92
|
+
Print : 1,
|
|
93
|
+
};
|
|
94
|
+
|
|
85
95
|
exports.SvgEmbeddedFontType = {
|
|
86
96
|
None : 0,
|
|
87
97
|
Woff : 1,
|
|
@@ -3181,7 +3191,6 @@ exports.ChartType = {
|
|
|
3181
3191
|
Waterfall : 78,
|
|
3182
3192
|
Histogram : 79,
|
|
3183
3193
|
Map : 80,
|
|
3184
|
-
RadialHistogram : 81,
|
|
3185
3194
|
};
|
|
3186
3195
|
|
|
3187
3196
|
exports.CheckBox.prototype.toImageAsync = async function(...args) {
|
|
@@ -7383,11 +7392,29 @@ Object.assign(exports.EbookSaveOptions.prototype, {
|
|
|
7383
7392
|
setSheetSet(value) {
|
|
7384
7393
|
this.sheetSet = value;
|
|
7385
7394
|
},
|
|
7395
|
+
getLayoutMode() {
|
|
7396
|
+
return this.layoutMode;
|
|
7397
|
+
},
|
|
7398
|
+
setLayoutMode(value) {
|
|
7399
|
+
this.layoutMode = value;
|
|
7400
|
+
},
|
|
7386
7401
|
getEmbeddedFontType() {
|
|
7387
7402
|
return this.embeddedFontType;
|
|
7388
7403
|
},
|
|
7389
7404
|
setEmbeddedFontType(value) {
|
|
7390
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;
|
|
7391
7418
|
}
|
|
7392
7419
|
});
|
|
7393
7420
|
|
|
@@ -12975,6 +13002,12 @@ Object.assign(exports.MarkdownSaveOptions.prototype, {
|
|
|
12975
13002
|
setSplitTablesByBlankRow(value) {
|
|
12976
13003
|
this.splitTablesByBlankRow = value;
|
|
12977
13004
|
},
|
|
13005
|
+
getOfficeMathOutputType() {
|
|
13006
|
+
return this.officeMathOutputType;
|
|
13007
|
+
},
|
|
13008
|
+
setOfficeMathOutputType(value) {
|
|
13009
|
+
this.officeMathOutputType = value;
|
|
13010
|
+
},
|
|
12978
13011
|
getSaveFormat() {
|
|
12979
13012
|
return this.saveFormat;
|
|
12980
13013
|
},
|
|
@@ -14802,12 +14835,6 @@ Object.assign(exports.PivotField.prototype, {
|
|
|
14802
14835
|
setCurrentPageItem(value) {
|
|
14803
14836
|
this.currentPageItem = value;
|
|
14804
14837
|
},
|
|
14805
|
-
getNumber() {
|
|
14806
|
-
return this.number;
|
|
14807
|
-
},
|
|
14808
|
-
setNumber(value) {
|
|
14809
|
-
this.number = value;
|
|
14810
|
-
},
|
|
14811
14838
|
getInsertBlankRow() {
|
|
14812
14839
|
return this.insertBlankRow;
|
|
14813
14840
|
},
|
|
@@ -14826,6 +14853,12 @@ Object.assign(exports.PivotField.prototype, {
|
|
|
14826
14853
|
setShowInOutlineForm(value) {
|
|
14827
14854
|
this.showInOutlineForm = value;
|
|
14828
14855
|
},
|
|
14856
|
+
getNumber() {
|
|
14857
|
+
return this.number;
|
|
14858
|
+
},
|
|
14859
|
+
setNumber(value) {
|
|
14860
|
+
this.number = value;
|
|
14861
|
+
},
|
|
14829
14862
|
get_NumberFormat() {
|
|
14830
14863
|
return this.numberFormat;
|
|
14831
14864
|
},
|
|
@@ -14886,6 +14919,9 @@ Object.assign(exports.PivotTable.prototype, {
|
|
|
14886
14919
|
getDataField() {
|
|
14887
14920
|
return this.dataField;
|
|
14888
14921
|
},
|
|
14922
|
+
getValuesField() {
|
|
14923
|
+
return this.valuesField;
|
|
14924
|
+
},
|
|
14889
14925
|
getBaseFields() {
|
|
14890
14926
|
return this.baseFields;
|
|
14891
14927
|
},
|
|
@@ -19227,6 +19263,12 @@ Object.assign(exports.ListObject.prototype, {
|
|
|
19227
19263
|
getDataSourceType() {
|
|
19228
19264
|
return this.dataSourceType;
|
|
19229
19265
|
},
|
|
19266
|
+
getHasAutoFilter() {
|
|
19267
|
+
return this.hasAutoFilter;
|
|
19268
|
+
},
|
|
19269
|
+
setHasAutoFilter(value) {
|
|
19270
|
+
this.hasAutoFilter = value;
|
|
19271
|
+
},
|
|
19230
19272
|
getAutoFilter() {
|
|
19231
19273
|
return this.autoFilter;
|
|
19232
19274
|
},
|
|
@@ -19890,6 +19932,12 @@ Object.assign(exports.ImportTableOptions.prototype, {
|
|
|
19890
19932
|
setNumberFormats(value) {
|
|
19891
19933
|
this.numberFormats = value;
|
|
19892
19934
|
},
|
|
19935
|
+
getStyles() {
|
|
19936
|
+
return this.styles;
|
|
19937
|
+
},
|
|
19938
|
+
setStyles(value) {
|
|
19939
|
+
this.styles = value;
|
|
19940
|
+
},
|
|
19893
19941
|
getIsFormulas() {
|
|
19894
19942
|
return this.isFormulas;
|
|
19895
19943
|
},
|
|
@@ -21290,6 +21338,27 @@ Object.assign(exports.AutoFitterOptions.prototype, {
|
|
|
21290
21338
|
}
|
|
21291
21339
|
});
|
|
21292
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
|
+
|
|
21293
21362
|
Object.assign(exports.HtmlSaveOptions.prototype, {
|
|
21294
21363
|
getIgnoreInvisibleShapes() {
|
|
21295
21364
|
return this.ignoreInvisibleShapes;
|
|
@@ -21669,12 +21738,30 @@ Object.assign(exports.HtmlSaveOptions.prototype, {
|
|
|
21669
21738
|
setSheetSet(value) {
|
|
21670
21739
|
this.sheetSet = value;
|
|
21671
21740
|
},
|
|
21741
|
+
getLayoutMode() {
|
|
21742
|
+
return this.layoutMode;
|
|
21743
|
+
},
|
|
21744
|
+
setLayoutMode(value) {
|
|
21745
|
+
this.layoutMode = value;
|
|
21746
|
+
},
|
|
21672
21747
|
getEmbeddedFontType() {
|
|
21673
21748
|
return this.embeddedFontType;
|
|
21674
21749
|
},
|
|
21675
21750
|
setEmbeddedFontType(value) {
|
|
21676
21751
|
this.embeddedFontType = value;
|
|
21677
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
|
+
},
|
|
21678
21765
|
getSaveFormat() {
|
|
21679
21766
|
return this.saveFormat;
|
|
21680
21767
|
},
|
|
@@ -23433,6 +23520,12 @@ Object.assign(exports.Series.prototype, {
|
|
|
23433
23520
|
setValues(value) {
|
|
23434
23521
|
this.values = value;
|
|
23435
23522
|
},
|
|
23523
|
+
getPointValues() {
|
|
23524
|
+
return this.pointValues;
|
|
23525
|
+
},
|
|
23526
|
+
getCategoryValues() {
|
|
23527
|
+
return this.categoryValues;
|
|
23528
|
+
},
|
|
23436
23529
|
getValuesFormatCode() {
|
|
23437
23530
|
return this.valuesFormatCode;
|
|
23438
23531
|
},
|
|
@@ -27344,6 +27437,12 @@ Object.assign(exports.CustomProperty.prototype, {
|
|
|
27344
27437
|
},
|
|
27345
27438
|
setValue(value) {
|
|
27346
27439
|
this.value = value;
|
|
27440
|
+
},
|
|
27441
|
+
getBinaryValue() {
|
|
27442
|
+
return this.binaryValue;
|
|
27443
|
+
},
|
|
27444
|
+
setBinaryValue(value) {
|
|
27445
|
+
this.binaryValue = value;
|
|
27347
27446
|
}
|
|
27348
27447
|
});
|
|
27349
27448
|
|
|
@@ -28068,6 +28167,30 @@ Object.assign(exports.FilterColumn.prototype, {
|
|
|
28068
28167
|
setFilterType(value) {
|
|
28069
28168
|
this.filterType = value;
|
|
28070
28169
|
},
|
|
28170
|
+
getMultipleFilters() {
|
|
28171
|
+
return this.multipleFilters;
|
|
28172
|
+
},
|
|
28173
|
+
setMultipleFilters(value) {
|
|
28174
|
+
this.multipleFilters = value;
|
|
28175
|
+
},
|
|
28176
|
+
getCustomFilters() {
|
|
28177
|
+
return this.customFilters;
|
|
28178
|
+
},
|
|
28179
|
+
setCustomFilters(value) {
|
|
28180
|
+
this.customFilters = value;
|
|
28181
|
+
},
|
|
28182
|
+
getColorFilter() {
|
|
28183
|
+
return this.colorFilter;
|
|
28184
|
+
},
|
|
28185
|
+
getDynamicFilter() {
|
|
28186
|
+
return this.dynamicFilter;
|
|
28187
|
+
},
|
|
28188
|
+
getIconFilter() {
|
|
28189
|
+
return this.iconFilter;
|
|
28190
|
+
},
|
|
28191
|
+
getTop10Filter() {
|
|
28192
|
+
return this.top10Filter;
|
|
28193
|
+
},
|
|
28071
28194
|
getFieldIndex() {
|
|
28072
28195
|
return this.fieldIndex;
|
|
28073
28196
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose.cells.node",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.12.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,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.0",
|
|
39
|
+
"aspose.cells.node.linux.x64": "~25.12.0",
|
|
40
|
+
"aspose.cells.node.linux.arm64": "~25.12.0",
|
|
41
|
+
"aspose.cells.node.darwin.x64": "~25.12.0",
|
|
42
|
+
"aspose.cells.node.darwin.arm64": "~25.12.0"
|
|
43
43
|
}
|
|
44
44
|
}
|