aspose.cells.node 25.10.0 → 25.11.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 +74 -6
- package/package.json +6 -6
- package/types.d.ts +1505 -1187
package/aspose.cells.js
CHANGED
|
@@ -82,6 +82,11 @@ exports.HtmlEmbeddedFontType = {
|
|
|
82
82
|
Woff : 1,
|
|
83
83
|
};
|
|
84
84
|
|
|
85
|
+
exports.HtmlLayoutMode = {
|
|
86
|
+
Normal : 0,
|
|
87
|
+
Print : 1,
|
|
88
|
+
};
|
|
89
|
+
|
|
85
90
|
exports.SvgEmbeddedFontType = {
|
|
86
91
|
None : 0,
|
|
87
92
|
Woff : 1,
|
|
@@ -7383,6 +7388,12 @@ Object.assign(exports.EbookSaveOptions.prototype, {
|
|
|
7383
7388
|
setSheetSet(value) {
|
|
7384
7389
|
this.sheetSet = value;
|
|
7385
7390
|
},
|
|
7391
|
+
getLayoutMode() {
|
|
7392
|
+
return this.layoutMode;
|
|
7393
|
+
},
|
|
7394
|
+
setLayoutMode(value) {
|
|
7395
|
+
this.layoutMode = value;
|
|
7396
|
+
},
|
|
7386
7397
|
getEmbeddedFontType() {
|
|
7387
7398
|
return this.embeddedFontType;
|
|
7388
7399
|
},
|
|
@@ -12975,6 +12986,12 @@ Object.assign(exports.MarkdownSaveOptions.prototype, {
|
|
|
12975
12986
|
setSplitTablesByBlankRow(value) {
|
|
12976
12987
|
this.splitTablesByBlankRow = value;
|
|
12977
12988
|
},
|
|
12989
|
+
getOfficeMathOutputType() {
|
|
12990
|
+
return this.officeMathOutputType;
|
|
12991
|
+
},
|
|
12992
|
+
setOfficeMathOutputType(value) {
|
|
12993
|
+
this.officeMathOutputType = value;
|
|
12994
|
+
},
|
|
12978
12995
|
getSaveFormat() {
|
|
12979
12996
|
return this.saveFormat;
|
|
12980
12997
|
},
|
|
@@ -14802,12 +14819,6 @@ Object.assign(exports.PivotField.prototype, {
|
|
|
14802
14819
|
setCurrentPageItem(value) {
|
|
14803
14820
|
this.currentPageItem = value;
|
|
14804
14821
|
},
|
|
14805
|
-
getNumber() {
|
|
14806
|
-
return this.number;
|
|
14807
|
-
},
|
|
14808
|
-
setNumber(value) {
|
|
14809
|
-
this.number = value;
|
|
14810
|
-
},
|
|
14811
14822
|
getInsertBlankRow() {
|
|
14812
14823
|
return this.insertBlankRow;
|
|
14813
14824
|
},
|
|
@@ -14826,6 +14837,12 @@ Object.assign(exports.PivotField.prototype, {
|
|
|
14826
14837
|
setShowInOutlineForm(value) {
|
|
14827
14838
|
this.showInOutlineForm = value;
|
|
14828
14839
|
},
|
|
14840
|
+
getNumber() {
|
|
14841
|
+
return this.number;
|
|
14842
|
+
},
|
|
14843
|
+
setNumber(value) {
|
|
14844
|
+
this.number = value;
|
|
14845
|
+
},
|
|
14829
14846
|
get_NumberFormat() {
|
|
14830
14847
|
return this.numberFormat;
|
|
14831
14848
|
},
|
|
@@ -14886,6 +14903,9 @@ Object.assign(exports.PivotTable.prototype, {
|
|
|
14886
14903
|
getDataField() {
|
|
14887
14904
|
return this.dataField;
|
|
14888
14905
|
},
|
|
14906
|
+
getValuesField() {
|
|
14907
|
+
return this.valuesField;
|
|
14908
|
+
},
|
|
14889
14909
|
getBaseFields() {
|
|
14890
14910
|
return this.baseFields;
|
|
14891
14911
|
},
|
|
@@ -19227,6 +19247,12 @@ Object.assign(exports.ListObject.prototype, {
|
|
|
19227
19247
|
getDataSourceType() {
|
|
19228
19248
|
return this.dataSourceType;
|
|
19229
19249
|
},
|
|
19250
|
+
getHasAutoFilter() {
|
|
19251
|
+
return this.hasAutoFilter;
|
|
19252
|
+
},
|
|
19253
|
+
setHasAutoFilter(value) {
|
|
19254
|
+
this.hasAutoFilter = value;
|
|
19255
|
+
},
|
|
19230
19256
|
getAutoFilter() {
|
|
19231
19257
|
return this.autoFilter;
|
|
19232
19258
|
},
|
|
@@ -19890,6 +19916,12 @@ Object.assign(exports.ImportTableOptions.prototype, {
|
|
|
19890
19916
|
setNumberFormats(value) {
|
|
19891
19917
|
this.numberFormats = value;
|
|
19892
19918
|
},
|
|
19919
|
+
getStyles() {
|
|
19920
|
+
return this.styles;
|
|
19921
|
+
},
|
|
19922
|
+
setStyles(value) {
|
|
19923
|
+
this.styles = value;
|
|
19924
|
+
},
|
|
19893
19925
|
getIsFormulas() {
|
|
19894
19926
|
return this.isFormulas;
|
|
19895
19927
|
},
|
|
@@ -21669,6 +21701,12 @@ Object.assign(exports.HtmlSaveOptions.prototype, {
|
|
|
21669
21701
|
setSheetSet(value) {
|
|
21670
21702
|
this.sheetSet = value;
|
|
21671
21703
|
},
|
|
21704
|
+
getLayoutMode() {
|
|
21705
|
+
return this.layoutMode;
|
|
21706
|
+
},
|
|
21707
|
+
setLayoutMode(value) {
|
|
21708
|
+
this.layoutMode = value;
|
|
21709
|
+
},
|
|
21672
21710
|
getEmbeddedFontType() {
|
|
21673
21711
|
return this.embeddedFontType;
|
|
21674
21712
|
},
|
|
@@ -27344,6 +27382,12 @@ Object.assign(exports.CustomProperty.prototype, {
|
|
|
27344
27382
|
},
|
|
27345
27383
|
setValue(value) {
|
|
27346
27384
|
this.value = value;
|
|
27385
|
+
},
|
|
27386
|
+
getBinaryValue() {
|
|
27387
|
+
return this.binaryValue;
|
|
27388
|
+
},
|
|
27389
|
+
setBinaryValue(value) {
|
|
27390
|
+
this.binaryValue = value;
|
|
27347
27391
|
}
|
|
27348
27392
|
});
|
|
27349
27393
|
|
|
@@ -28068,6 +28112,30 @@ Object.assign(exports.FilterColumn.prototype, {
|
|
|
28068
28112
|
setFilterType(value) {
|
|
28069
28113
|
this.filterType = value;
|
|
28070
28114
|
},
|
|
28115
|
+
getMultipleFilters() {
|
|
28116
|
+
return this.multipleFilters;
|
|
28117
|
+
},
|
|
28118
|
+
setMultipleFilters(value) {
|
|
28119
|
+
this.multipleFilters = value;
|
|
28120
|
+
},
|
|
28121
|
+
getCustomFilters() {
|
|
28122
|
+
return this.customFilters;
|
|
28123
|
+
},
|
|
28124
|
+
setCustomFilters(value) {
|
|
28125
|
+
this.customFilters = value;
|
|
28126
|
+
},
|
|
28127
|
+
getColorFilter() {
|
|
28128
|
+
return this.colorFilter;
|
|
28129
|
+
},
|
|
28130
|
+
getDynamicFilter() {
|
|
28131
|
+
return this.dynamicFilter;
|
|
28132
|
+
},
|
|
28133
|
+
getIconFilter() {
|
|
28134
|
+
return this.iconFilter;
|
|
28135
|
+
},
|
|
28136
|
+
getTop10Filter() {
|
|
28137
|
+
return this.top10Filter;
|
|
28138
|
+
},
|
|
28071
28139
|
getFieldIndex() {
|
|
28072
28140
|
return this.fieldIndex;
|
|
28073
28141
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose.cells.node",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.11.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.11.0",
|
|
39
|
+
"aspose.cells.node.linux.x64": "~25.11.0",
|
|
40
|
+
"aspose.cells.node.linux.arm64": "~25.11.0",
|
|
41
|
+
"aspose.cells.node.darwin.x64": "~25.11.0",
|
|
42
|
+
"aspose.cells.node.darwin.arm64": "~25.11.0"
|
|
43
43
|
}
|
|
44
44
|
}
|