aspose.cells.node 25.7.0 → 25.9.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 +297 -4
- package/package.json +6 -6
- package/types.d.ts +698 -43
package/aspose.cells.js
CHANGED
|
@@ -61,11 +61,37 @@ exports.AutoFitWrappedTextType = {
|
|
|
61
61
|
Paragraph : 1,
|
|
62
62
|
};
|
|
63
63
|
|
|
64
|
+
exports.ChartColorPaletteType = {
|
|
65
|
+
MonochromaticPalette1 : 1,
|
|
66
|
+
MonochromaticPalette2 : 2,
|
|
67
|
+
MonochromaticPalette3 : 3,
|
|
68
|
+
MonochromaticPalette4 : 4,
|
|
69
|
+
MonochromaticPalette5 : 5,
|
|
70
|
+
MonochromaticPalette6 : 6,
|
|
71
|
+
MonochromaticPalette7 : 7,
|
|
72
|
+
MonochromaticPalette8 : 8,
|
|
73
|
+
MonochromaticPalette9 : 9,
|
|
74
|
+
MonochromaticPalette10 : 10,
|
|
75
|
+
MonochromaticPalette11 : 11,
|
|
76
|
+
MonochromaticPalette12 : 12,
|
|
77
|
+
MonochromaticPalette13 : 13,
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
exports.HtmlEmbeddedFontType = {
|
|
81
|
+
None : 0,
|
|
82
|
+
Woff : 1,
|
|
83
|
+
};
|
|
84
|
+
|
|
64
85
|
exports.SvgEmbeddedFontType = {
|
|
65
86
|
None : 0,
|
|
66
87
|
Woff : 1,
|
|
67
88
|
};
|
|
68
89
|
|
|
90
|
+
exports.ShapePathPointValueType = {
|
|
91
|
+
Position : 0,
|
|
92
|
+
Angle : 1,
|
|
93
|
+
};
|
|
94
|
+
|
|
69
95
|
exports.FontFileFormatType = {
|
|
70
96
|
Unknown : 0,
|
|
71
97
|
Ttf : 1,
|
|
@@ -358,6 +384,11 @@ exports.MergeEmptyTdType = {
|
|
|
358
384
|
MergeForcely : 2,
|
|
359
385
|
};
|
|
360
386
|
|
|
387
|
+
exports.SaveElementType = {
|
|
388
|
+
All : 251658239,
|
|
389
|
+
Chart : 256,
|
|
390
|
+
};
|
|
391
|
+
|
|
361
392
|
exports.PdfFontEncoding = {
|
|
362
393
|
Identity : 0,
|
|
363
394
|
AnsiPrefer : 1,
|
|
@@ -1675,10 +1706,10 @@ exports.MirrorType = {
|
|
|
1675
1706
|
};
|
|
1676
1707
|
|
|
1677
1708
|
exports.ShapePathType = {
|
|
1678
|
-
LineTo :
|
|
1679
|
-
CubicBezierCurveTo :
|
|
1680
|
-
MoveTo :
|
|
1681
|
-
Close :
|
|
1709
|
+
LineTo : 1,
|
|
1710
|
+
CubicBezierCurveTo : 3,
|
|
1711
|
+
MoveTo : 0,
|
|
1712
|
+
Close : 128,
|
|
1682
1713
|
End : 4,
|
|
1683
1714
|
Escape : 5,
|
|
1684
1715
|
ArcTo : 6,
|
|
@@ -3442,6 +3473,7 @@ exports.FileFormatType = {
|
|
|
3442
3473
|
Json : 513,
|
|
3443
3474
|
SqlScript : 514,
|
|
3444
3475
|
Dbf : 515,
|
|
3476
|
+
FlatOpc : 516,
|
|
3445
3477
|
XHtml : 771,
|
|
3446
3478
|
OneNote : 772,
|
|
3447
3479
|
MicrosoftCabinet : 773,
|
|
@@ -7344,6 +7376,12 @@ Object.assign(exports.EbookSaveOptions.prototype, {
|
|
|
7344
7376
|
},
|
|
7345
7377
|
setSheetSet(value) {
|
|
7346
7378
|
this.sheetSet = value;
|
|
7379
|
+
},
|
|
7380
|
+
getEmbeddedFontType() {
|
|
7381
|
+
return this.embeddedFontType;
|
|
7382
|
+
},
|
|
7383
|
+
setEmbeddedFontType(value) {
|
|
7384
|
+
this.embeddedFontType = value;
|
|
7347
7385
|
}
|
|
7348
7386
|
});
|
|
7349
7387
|
|
|
@@ -11955,6 +11993,165 @@ Object.assign(exports.AbstractTextLoadOptions.prototype, {
|
|
|
11955
11993
|
}
|
|
11956
11994
|
});
|
|
11957
11995
|
|
|
11996
|
+
Object.assign(exports.MarkdownLoadOptions.prototype, {
|
|
11997
|
+
getHasFormula() {
|
|
11998
|
+
return this.hasFormula;
|
|
11999
|
+
},
|
|
12000
|
+
setHasFormula(value) {
|
|
12001
|
+
this.hasFormula = value;
|
|
12002
|
+
},
|
|
12003
|
+
getLoadFormat() {
|
|
12004
|
+
return this.loadFormat;
|
|
12005
|
+
},
|
|
12006
|
+
getPassword() {
|
|
12007
|
+
return this.password;
|
|
12008
|
+
},
|
|
12009
|
+
setPassword(value) {
|
|
12010
|
+
this.password = value;
|
|
12011
|
+
},
|
|
12012
|
+
getParsingFormulaOnOpen() {
|
|
12013
|
+
return this.parsingFormulaOnOpen;
|
|
12014
|
+
},
|
|
12015
|
+
setParsingFormulaOnOpen(value) {
|
|
12016
|
+
this.parsingFormulaOnOpen = value;
|
|
12017
|
+
},
|
|
12018
|
+
getParsingPivotCachedRecords() {
|
|
12019
|
+
return this.parsingPivotCachedRecords;
|
|
12020
|
+
},
|
|
12021
|
+
setParsingPivotCachedRecords(value) {
|
|
12022
|
+
this.parsingPivotCachedRecords = value;
|
|
12023
|
+
},
|
|
12024
|
+
getLanguageCode() {
|
|
12025
|
+
return this.languageCode;
|
|
12026
|
+
},
|
|
12027
|
+
setLanguageCode(value) {
|
|
12028
|
+
this.languageCode = value;
|
|
12029
|
+
},
|
|
12030
|
+
getRegion() {
|
|
12031
|
+
return this.region;
|
|
12032
|
+
},
|
|
12033
|
+
setRegion(value) {
|
|
12034
|
+
this.region = value;
|
|
12035
|
+
},
|
|
12036
|
+
getDefaultStyleSettings() {
|
|
12037
|
+
return this.defaultStyleSettings;
|
|
12038
|
+
},
|
|
12039
|
+
getInterruptMonitor() {
|
|
12040
|
+
return this.interruptMonitor;
|
|
12041
|
+
},
|
|
12042
|
+
setInterruptMonitor(value) {
|
|
12043
|
+
this.interruptMonitor = value;
|
|
12044
|
+
},
|
|
12045
|
+
getIgnoreNotPrinted() {
|
|
12046
|
+
return this.ignoreNotPrinted;
|
|
12047
|
+
},
|
|
12048
|
+
setIgnoreNotPrinted(value) {
|
|
12049
|
+
this.ignoreNotPrinted = value;
|
|
12050
|
+
},
|
|
12051
|
+
getCheckDataValid() {
|
|
12052
|
+
return this.checkDataValid;
|
|
12053
|
+
},
|
|
12054
|
+
setCheckDataValid(value) {
|
|
12055
|
+
this.checkDataValid = value;
|
|
12056
|
+
},
|
|
12057
|
+
getCheckExcelRestriction() {
|
|
12058
|
+
return this.checkExcelRestriction;
|
|
12059
|
+
},
|
|
12060
|
+
setCheckExcelRestriction(value) {
|
|
12061
|
+
this.checkExcelRestriction = value;
|
|
12062
|
+
},
|
|
12063
|
+
getKeepUnparsedData() {
|
|
12064
|
+
return this.keepUnparsedData;
|
|
12065
|
+
},
|
|
12066
|
+
setKeepUnparsedData(value) {
|
|
12067
|
+
this.keepUnparsedData = value;
|
|
12068
|
+
},
|
|
12069
|
+
getLoadFilter() {
|
|
12070
|
+
return this.loadFilter;
|
|
12071
|
+
},
|
|
12072
|
+
setLoadFilter(value) {
|
|
12073
|
+
this.loadFilter = value;
|
|
12074
|
+
},
|
|
12075
|
+
getLightCellsDataHandler() {
|
|
12076
|
+
return this.lightCellsDataHandler;
|
|
12077
|
+
},
|
|
12078
|
+
setLightCellsDataHandler(value) {
|
|
12079
|
+
this.lightCellsDataHandler = value;
|
|
12080
|
+
},
|
|
12081
|
+
getMemorySetting() {
|
|
12082
|
+
return this.memorySetting;
|
|
12083
|
+
},
|
|
12084
|
+
setMemorySetting(value) {
|
|
12085
|
+
this.memorySetting = value;
|
|
12086
|
+
},
|
|
12087
|
+
setWarningCallback(value) {
|
|
12088
|
+
this.warningCallback = value;
|
|
12089
|
+
},
|
|
12090
|
+
getWarningCallback() {
|
|
12091
|
+
return this.warningCallback;
|
|
12092
|
+
},
|
|
12093
|
+
getAutoFitterOptions() {
|
|
12094
|
+
return this.autoFitterOptions;
|
|
12095
|
+
},
|
|
12096
|
+
setAutoFitterOptions(value) {
|
|
12097
|
+
this.autoFitterOptions = value;
|
|
12098
|
+
},
|
|
12099
|
+
getAutoFilter() {
|
|
12100
|
+
return this.autoFilter;
|
|
12101
|
+
},
|
|
12102
|
+
setAutoFilter(value) {
|
|
12103
|
+
this.autoFilter = value;
|
|
12104
|
+
},
|
|
12105
|
+
getFontConfigs() {
|
|
12106
|
+
return this.fontConfigs;
|
|
12107
|
+
},
|
|
12108
|
+
setFontConfigs(value) {
|
|
12109
|
+
this.fontConfigs = value;
|
|
12110
|
+
},
|
|
12111
|
+
getIgnoreUselessShapes() {
|
|
12112
|
+
return this.ignoreUselessShapes;
|
|
12113
|
+
},
|
|
12114
|
+
setIgnoreUselessShapes(value) {
|
|
12115
|
+
this.ignoreUselessShapes = value;
|
|
12116
|
+
},
|
|
12117
|
+
getPreservePaddingSpacesInFormula() {
|
|
12118
|
+
return this.preservePaddingSpacesInFormula;
|
|
12119
|
+
},
|
|
12120
|
+
setPreservePaddingSpacesInFormula(value) {
|
|
12121
|
+
this.preservePaddingSpacesInFormula = value;
|
|
12122
|
+
},
|
|
12123
|
+
getEncoding() {
|
|
12124
|
+
return this.encoding;
|
|
12125
|
+
},
|
|
12126
|
+
setEncoding(value) {
|
|
12127
|
+
this.encoding = value;
|
|
12128
|
+
},
|
|
12129
|
+
getLoadStyleStrategy() {
|
|
12130
|
+
return this.loadStyleStrategy;
|
|
12131
|
+
},
|
|
12132
|
+
setLoadStyleStrategy(value) {
|
|
12133
|
+
this.loadStyleStrategy = value;
|
|
12134
|
+
},
|
|
12135
|
+
getConvertNumericData() {
|
|
12136
|
+
return this.convertNumericData;
|
|
12137
|
+
},
|
|
12138
|
+
setConvertNumericData(value) {
|
|
12139
|
+
this.convertNumericData = value;
|
|
12140
|
+
},
|
|
12141
|
+
getConvertDateTimeData() {
|
|
12142
|
+
return this.convertDateTimeData;
|
|
12143
|
+
},
|
|
12144
|
+
setConvertDateTimeData(value) {
|
|
12145
|
+
this.convertDateTimeData = value;
|
|
12146
|
+
},
|
|
12147
|
+
getKeepPrecision() {
|
|
12148
|
+
return this.keepPrecision;
|
|
12149
|
+
},
|
|
12150
|
+
setKeepPrecision(value) {
|
|
12151
|
+
this.keepPrecision = value;
|
|
12152
|
+
}
|
|
12153
|
+
});
|
|
12154
|
+
|
|
11958
12155
|
Object.assign(exports.OdsLoadOptions.prototype, {
|
|
11959
12156
|
getApplyExcelDefaultStyleToHyperlink() {
|
|
11960
12157
|
return this.applyExcelDefaultStyleToHyperlink;
|
|
@@ -12484,6 +12681,24 @@ Object.assign(exports.DocxSaveOptions.prototype, {
|
|
|
12484
12681
|
setSaveAsEditableShapes(value) {
|
|
12485
12682
|
this.saveAsEditableShapes = value;
|
|
12486
12683
|
},
|
|
12684
|
+
getEmbedXlsxAsChartDataSource() {
|
|
12685
|
+
return this.embedXlsxAsChartDataSource;
|
|
12686
|
+
},
|
|
12687
|
+
setEmbedXlsxAsChartDataSource(value) {
|
|
12688
|
+
this.embedXlsxAsChartDataSource = value;
|
|
12689
|
+
},
|
|
12690
|
+
getAsFlatOpc() {
|
|
12691
|
+
return this.asFlatOpc;
|
|
12692
|
+
},
|
|
12693
|
+
setAsFlatOpc(value) {
|
|
12694
|
+
this.asFlatOpc = value;
|
|
12695
|
+
},
|
|
12696
|
+
getSaveElementType() {
|
|
12697
|
+
return this.saveElementType;
|
|
12698
|
+
},
|
|
12699
|
+
setSaveElementType(value) {
|
|
12700
|
+
this.saveElementType = value;
|
|
12701
|
+
},
|
|
12487
12702
|
getAsNormalView() {
|
|
12488
12703
|
return this.asNormalView;
|
|
12489
12704
|
},
|
|
@@ -12736,6 +12951,18 @@ Object.assign(exports.MarkdownSaveOptions.prototype, {
|
|
|
12736
12951
|
setCalculateFormula(value) {
|
|
12737
12952
|
this.calculateFormula = value;
|
|
12738
12953
|
},
|
|
12954
|
+
getExportHyperlinkAsReference() {
|
|
12955
|
+
return this.exportHyperlinkAsReference;
|
|
12956
|
+
},
|
|
12957
|
+
setExportHyperlinkAsReference(value) {
|
|
12958
|
+
this.exportHyperlinkAsReference = value;
|
|
12959
|
+
},
|
|
12960
|
+
getAlignColumnPadding() {
|
|
12961
|
+
return this.alignColumnPadding;
|
|
12962
|
+
},
|
|
12963
|
+
setAlignColumnPadding(value) {
|
|
12964
|
+
this.alignColumnPadding = value;
|
|
12965
|
+
},
|
|
12739
12966
|
getSaveFormat() {
|
|
12740
12967
|
return this.saveFormat;
|
|
12741
12968
|
},
|
|
@@ -12820,6 +13047,18 @@ Object.assign(exports.PptxSaveOptions.prototype, {
|
|
|
12820
13047
|
setIgnoreHiddenRows(value) {
|
|
12821
13048
|
this.ignoreHiddenRows = value;
|
|
12822
13049
|
},
|
|
13050
|
+
getSaveAsEditableShapes() {
|
|
13051
|
+
return this.saveAsEditableShapes;
|
|
13052
|
+
},
|
|
13053
|
+
setSaveAsEditableShapes(value) {
|
|
13054
|
+
this.saveAsEditableShapes = value;
|
|
13055
|
+
},
|
|
13056
|
+
getEmbedXlsxAsChartDataSource() {
|
|
13057
|
+
return this.embedXlsxAsChartDataSource;
|
|
13058
|
+
},
|
|
13059
|
+
setEmbedXlsxAsChartDataSource(value) {
|
|
13060
|
+
this.embedXlsxAsChartDataSource = value;
|
|
13061
|
+
},
|
|
12823
13062
|
getAdjustFontSizeForRowType() {
|
|
12824
13063
|
return this.adjustFontSizeForRowType;
|
|
12825
13064
|
},
|
|
@@ -12832,6 +13071,12 @@ Object.assign(exports.PptxSaveOptions.prototype, {
|
|
|
12832
13071
|
setExportViewType(value) {
|
|
12833
13072
|
this.exportViewType = value;
|
|
12834
13073
|
},
|
|
13074
|
+
getAsFlatOpc() {
|
|
13075
|
+
return this.asFlatOpc;
|
|
13076
|
+
},
|
|
13077
|
+
setAsFlatOpc(value) {
|
|
13078
|
+
this.asFlatOpc = value;
|
|
13079
|
+
},
|
|
12835
13080
|
getSaveFormat() {
|
|
12836
13081
|
return this.saveFormat;
|
|
12837
13082
|
},
|
|
@@ -13543,6 +13788,9 @@ Object.assign(exports.WorkbookSettings.prototype, {
|
|
|
13543
13788
|
getMaxColumn() {
|
|
13544
13789
|
return this.maxColumn;
|
|
13545
13790
|
},
|
|
13791
|
+
getSmartTagOptions() {
|
|
13792
|
+
return this.smartTagOptions;
|
|
13793
|
+
},
|
|
13546
13794
|
getDefaultStyleSettings() {
|
|
13547
13795
|
return this.defaultStyleSettings;
|
|
13548
13796
|
},
|
|
@@ -17718,6 +17966,33 @@ Object.assign(exports.ShapePathPoint.prototype, {
|
|
|
17718
17966
|
},
|
|
17719
17967
|
setY(value) {
|
|
17720
17968
|
this.y = value;
|
|
17969
|
+
},
|
|
17970
|
+
getXPixel() {
|
|
17971
|
+
return this.xPixel;
|
|
17972
|
+
},
|
|
17973
|
+
setXPixel(value) {
|
|
17974
|
+
this.xPixel = value;
|
|
17975
|
+
},
|
|
17976
|
+
getYPixel() {
|
|
17977
|
+
return this.yPixel;
|
|
17978
|
+
},
|
|
17979
|
+
setYPixel(value) {
|
|
17980
|
+
this.yPixel = value;
|
|
17981
|
+
},
|
|
17982
|
+
getXAngle() {
|
|
17983
|
+
return this.xAngle;
|
|
17984
|
+
},
|
|
17985
|
+
setXAngle(value) {
|
|
17986
|
+
this.xAngle = value;
|
|
17987
|
+
},
|
|
17988
|
+
getYAngle() {
|
|
17989
|
+
return this.yAngle;
|
|
17990
|
+
},
|
|
17991
|
+
setYAngle(value) {
|
|
17992
|
+
this.yAngle = value;
|
|
17993
|
+
},
|
|
17994
|
+
getType() {
|
|
17995
|
+
return this.type;
|
|
17721
17996
|
}
|
|
17722
17997
|
});
|
|
17723
17998
|
|
|
@@ -21367,6 +21642,12 @@ Object.assign(exports.HtmlSaveOptions.prototype, {
|
|
|
21367
21642
|
setSheetSet(value) {
|
|
21368
21643
|
this.sheetSet = value;
|
|
21369
21644
|
},
|
|
21645
|
+
getEmbeddedFontType() {
|
|
21646
|
+
return this.embeddedFontType;
|
|
21647
|
+
},
|
|
21648
|
+
setEmbeddedFontType(value) {
|
|
21649
|
+
this.embeddedFontType = value;
|
|
21650
|
+
},
|
|
21370
21651
|
getSaveFormat() {
|
|
21371
21652
|
return this.saveFormat;
|
|
21372
21653
|
},
|
|
@@ -21631,6 +21912,12 @@ Object.assign(exports.PasteOptions.prototype, {
|
|
|
21631
21912
|
setSkipBlanks(value) {
|
|
21632
21913
|
this.skipBlanks = value;
|
|
21633
21914
|
},
|
|
21915
|
+
getKeepOldTables() {
|
|
21916
|
+
return this.keepOldTables;
|
|
21917
|
+
},
|
|
21918
|
+
setKeepOldTables(value) {
|
|
21919
|
+
this.keepOldTables = value;
|
|
21920
|
+
},
|
|
21634
21921
|
getOnlyVisibleCells() {
|
|
21635
21922
|
return this.onlyVisibleCells;
|
|
21636
21923
|
},
|
|
@@ -36718,6 +37005,12 @@ Object.assign(exports.XlsSaveOptions.prototype, {
|
|
|
36718
37005
|
});
|
|
36719
37006
|
|
|
36720
37007
|
Object.assign(exports.OoxmlSaveOptions.prototype, {
|
|
37008
|
+
getAsFlatOpc() {
|
|
37009
|
+
return this.asFlatOpc;
|
|
37010
|
+
},
|
|
37011
|
+
setAsFlatOpc(value) {
|
|
37012
|
+
this.asFlatOpc = value;
|
|
37013
|
+
},
|
|
36721
37014
|
getExportCellName() {
|
|
36722
37015
|
return this.exportCellName;
|
|
36723
37016
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose.cells.node",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.9.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.9.0",
|
|
39
|
+
"aspose.cells.node.linux.x64": "~25.9.0",
|
|
40
|
+
"aspose.cells.node.linux.arm64": "~25.9.0",
|
|
41
|
+
"aspose.cells.node.darwin.x64": "~25.9.0",
|
|
42
|
+
"aspose.cells.node.darwin.arm64": "~25.9.0"
|
|
43
43
|
}
|
|
44
44
|
}
|