aspose.cells.node 25.9.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 +109 -14
- package/package.json +6 -6
- package/types.d.ts +1698 -1232
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,
|
|
@@ -629,6 +634,12 @@ exports.SqlScriptOperatorType = {
|
|
|
629
634
|
Delete : 2,
|
|
630
635
|
};
|
|
631
636
|
|
|
637
|
+
exports.SignificantDigitsType = {
|
|
638
|
+
Digits15 : 0,
|
|
639
|
+
G17 : 1,
|
|
640
|
+
Rounding17 : 2,
|
|
641
|
+
};
|
|
642
|
+
|
|
632
643
|
exports.Cells.prototype.importCSVAsync = async function(...args) {
|
|
633
644
|
return new Promise((resolve, reject) => {
|
|
634
645
|
queueMicrotask(() => {
|
|
@@ -7377,6 +7388,12 @@ Object.assign(exports.EbookSaveOptions.prototype, {
|
|
|
7377
7388
|
setSheetSet(value) {
|
|
7378
7389
|
this.sheetSet = value;
|
|
7379
7390
|
},
|
|
7391
|
+
getLayoutMode() {
|
|
7392
|
+
return this.layoutMode;
|
|
7393
|
+
},
|
|
7394
|
+
setLayoutMode(value) {
|
|
7395
|
+
this.layoutMode = value;
|
|
7396
|
+
},
|
|
7380
7397
|
getEmbeddedFontType() {
|
|
7381
7398
|
return this.embeddedFontType;
|
|
7382
7399
|
},
|
|
@@ -12963,6 +12980,18 @@ Object.assign(exports.MarkdownSaveOptions.prototype, {
|
|
|
12963
12980
|
setAlignColumnPadding(value) {
|
|
12964
12981
|
this.alignColumnPadding = value;
|
|
12965
12982
|
},
|
|
12983
|
+
getSplitTablesByBlankRow() {
|
|
12984
|
+
return this.splitTablesByBlankRow;
|
|
12985
|
+
},
|
|
12986
|
+
setSplitTablesByBlankRow(value) {
|
|
12987
|
+
this.splitTablesByBlankRow = value;
|
|
12988
|
+
},
|
|
12989
|
+
getOfficeMathOutputType() {
|
|
12990
|
+
return this.officeMathOutputType;
|
|
12991
|
+
},
|
|
12992
|
+
setOfficeMathOutputType(value) {
|
|
12993
|
+
this.officeMathOutputType = value;
|
|
12994
|
+
},
|
|
12966
12995
|
getSaveFormat() {
|
|
12967
12996
|
return this.saveFormat;
|
|
12968
12997
|
},
|
|
@@ -13776,6 +13805,12 @@ Object.assign(exports.WorkbookSettings.prototype, {
|
|
|
13776
13805
|
setHidePivotFieldList(value) {
|
|
13777
13806
|
this.hidePivotFieldList = value;
|
|
13778
13807
|
},
|
|
13808
|
+
getMaxUniqueItemsPerField() {
|
|
13809
|
+
return this.maxUniqueItemsPerField;
|
|
13810
|
+
},
|
|
13811
|
+
setMaxUniqueItemsPerField(value) {
|
|
13812
|
+
this.maxUniqueItemsPerField = value;
|
|
13813
|
+
},
|
|
13779
13814
|
getUpdateLinksType() {
|
|
13780
13815
|
return this.updateLinksType;
|
|
13781
13816
|
},
|
|
@@ -13872,11 +13907,11 @@ Object.assign(exports.WorkbookSettings.prototype, {
|
|
|
13872
13907
|
setUpdateAdjacentCellsBorder(value) {
|
|
13873
13908
|
this.updateAdjacentCellsBorder = value;
|
|
13874
13909
|
},
|
|
13875
|
-
|
|
13876
|
-
return this.
|
|
13910
|
+
getSignificantDigitsType() {
|
|
13911
|
+
return this.significantDigitsType;
|
|
13877
13912
|
},
|
|
13878
|
-
|
|
13879
|
-
this.
|
|
13913
|
+
setSignificantDigitsType(value) {
|
|
13914
|
+
this.significantDigitsType = value;
|
|
13880
13915
|
},
|
|
13881
13916
|
getCheckCompatibility() {
|
|
13882
13917
|
return this.checkCompatibility;
|
|
@@ -14784,12 +14819,6 @@ Object.assign(exports.PivotField.prototype, {
|
|
|
14784
14819
|
setCurrentPageItem(value) {
|
|
14785
14820
|
this.currentPageItem = value;
|
|
14786
14821
|
},
|
|
14787
|
-
getNumber() {
|
|
14788
|
-
return this.number;
|
|
14789
|
-
},
|
|
14790
|
-
setNumber(value) {
|
|
14791
|
-
this.number = value;
|
|
14792
|
-
},
|
|
14793
14822
|
getInsertBlankRow() {
|
|
14794
14823
|
return this.insertBlankRow;
|
|
14795
14824
|
},
|
|
@@ -14808,6 +14837,12 @@ Object.assign(exports.PivotField.prototype, {
|
|
|
14808
14837
|
setShowInOutlineForm(value) {
|
|
14809
14838
|
this.showInOutlineForm = value;
|
|
14810
14839
|
},
|
|
14840
|
+
getNumber() {
|
|
14841
|
+
return this.number;
|
|
14842
|
+
},
|
|
14843
|
+
setNumber(value) {
|
|
14844
|
+
this.number = value;
|
|
14845
|
+
},
|
|
14811
14846
|
get_NumberFormat() {
|
|
14812
14847
|
return this.numberFormat;
|
|
14813
14848
|
},
|
|
@@ -14868,6 +14903,9 @@ Object.assign(exports.PivotTable.prototype, {
|
|
|
14868
14903
|
getDataField() {
|
|
14869
14904
|
return this.dataField;
|
|
14870
14905
|
},
|
|
14906
|
+
getValuesField() {
|
|
14907
|
+
return this.valuesField;
|
|
14908
|
+
},
|
|
14871
14909
|
getBaseFields() {
|
|
14872
14910
|
return this.baseFields;
|
|
14873
14911
|
},
|
|
@@ -16701,6 +16739,15 @@ Object.assign(exports.CalculationOptions.prototype, {
|
|
|
16701
16739
|
setRecursive(value) {
|
|
16702
16740
|
this.recursive = value;
|
|
16703
16741
|
},
|
|
16742
|
+
getUserSpecifiedRefreshDynamicArrayFormula() {
|
|
16743
|
+
return this.userSpecifiedRefreshDynamicArrayFormula;
|
|
16744
|
+
},
|
|
16745
|
+
getRefreshDynamicArrayFormula() {
|
|
16746
|
+
return this.refreshDynamicArrayFormula;
|
|
16747
|
+
},
|
|
16748
|
+
setRefreshDynamicArrayFormula(value) {
|
|
16749
|
+
this.refreshDynamicArrayFormula = value;
|
|
16750
|
+
},
|
|
16704
16751
|
getCustomEngine() {
|
|
16705
16752
|
return this.customEngine;
|
|
16706
16753
|
},
|
|
@@ -19200,6 +19247,12 @@ Object.assign(exports.ListObject.prototype, {
|
|
|
19200
19247
|
getDataSourceType() {
|
|
19201
19248
|
return this.dataSourceType;
|
|
19202
19249
|
},
|
|
19250
|
+
getHasAutoFilter() {
|
|
19251
|
+
return this.hasAutoFilter;
|
|
19252
|
+
},
|
|
19253
|
+
setHasAutoFilter(value) {
|
|
19254
|
+
this.hasAutoFilter = value;
|
|
19255
|
+
},
|
|
19203
19256
|
getAutoFilter() {
|
|
19204
19257
|
return this.autoFilter;
|
|
19205
19258
|
},
|
|
@@ -19863,6 +19916,12 @@ Object.assign(exports.ImportTableOptions.prototype, {
|
|
|
19863
19916
|
setNumberFormats(value) {
|
|
19864
19917
|
this.numberFormats = value;
|
|
19865
19918
|
},
|
|
19919
|
+
getStyles() {
|
|
19920
|
+
return this.styles;
|
|
19921
|
+
},
|
|
19922
|
+
setStyles(value) {
|
|
19923
|
+
this.styles = value;
|
|
19924
|
+
},
|
|
19866
19925
|
getIsFormulas() {
|
|
19867
19926
|
return this.isFormulas;
|
|
19868
19927
|
},
|
|
@@ -21642,6 +21701,12 @@ Object.assign(exports.HtmlSaveOptions.prototype, {
|
|
|
21642
21701
|
setSheetSet(value) {
|
|
21643
21702
|
this.sheetSet = value;
|
|
21644
21703
|
},
|
|
21704
|
+
getLayoutMode() {
|
|
21705
|
+
return this.layoutMode;
|
|
21706
|
+
},
|
|
21707
|
+
setLayoutMode(value) {
|
|
21708
|
+
this.layoutMode = value;
|
|
21709
|
+
},
|
|
21645
21710
|
getEmbeddedFontType() {
|
|
21646
21711
|
return this.embeddedFontType;
|
|
21647
21712
|
},
|
|
@@ -27317,6 +27382,12 @@ Object.assign(exports.CustomProperty.prototype, {
|
|
|
27317
27382
|
},
|
|
27318
27383
|
setValue(value) {
|
|
27319
27384
|
this.value = value;
|
|
27385
|
+
},
|
|
27386
|
+
getBinaryValue() {
|
|
27387
|
+
return this.binaryValue;
|
|
27388
|
+
},
|
|
27389
|
+
setBinaryValue(value) {
|
|
27390
|
+
this.binaryValue = value;
|
|
27320
27391
|
}
|
|
27321
27392
|
});
|
|
27322
27393
|
|
|
@@ -28041,6 +28112,30 @@ Object.assign(exports.FilterColumn.prototype, {
|
|
|
28041
28112
|
setFilterType(value) {
|
|
28042
28113
|
this.filterType = value;
|
|
28043
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
|
+
},
|
|
28044
28139
|
getFieldIndex() {
|
|
28045
28140
|
return this.fieldIndex;
|
|
28046
28141
|
},
|
|
@@ -29103,11 +29198,11 @@ Object.assign(exports.GroupShape.prototype, {
|
|
|
29103
29198
|
});
|
|
29104
29199
|
|
|
29105
29200
|
Object.assign(exports.CellsHelper, {
|
|
29106
|
-
|
|
29107
|
-
return exports.CellsHelper.
|
|
29201
|
+
getSignificantDigitsType() {
|
|
29202
|
+
return exports.CellsHelper.significantDigitsType;
|
|
29108
29203
|
},
|
|
29109
|
-
|
|
29110
|
-
exports.CellsHelper.
|
|
29204
|
+
setSignificantDigitsType(value) {
|
|
29205
|
+
exports.CellsHelper.significantDigitsType = value;
|
|
29111
29206
|
},
|
|
29112
29207
|
getDPI() {
|
|
29113
29208
|
return exports.CellsHelper.dPI;
|
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
|
}
|