aspose.cells.node 25.12.2 → 26.1.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 +107 -10
- package/package.json +6 -6
- package/thirdpartylicenses.Aspose.Cells for Node.js via C++.pdf +0 -0
- package/types.d.ts +850 -160
package/aspose.cells.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright (c) 2001-
|
|
1
|
+
// Copyright (c) 2001-2026 Aspose Pty Ltd. All Rights Reserved.
|
|
2
2
|
// Powered by Aspose.Cells.
|
|
3
3
|
'use strict'
|
|
4
4
|
|
|
@@ -645,6 +645,12 @@ exports.SignificantDigitsType = {
|
|
|
645
645
|
Rounding17 : 2,
|
|
646
646
|
};
|
|
647
647
|
|
|
648
|
+
exports.ItemsWithNoDataShowMode = {
|
|
649
|
+
None : 0,
|
|
650
|
+
Last : 1,
|
|
651
|
+
Natural : 2,
|
|
652
|
+
};
|
|
653
|
+
|
|
648
654
|
exports.Cells.prototype.importCSVAsync = async function(...args) {
|
|
649
655
|
return new Promise((resolve, reject) => {
|
|
650
656
|
queueMicrotask(() => {
|
|
@@ -701,6 +707,13 @@ exports.PageLayoutAlignmentType = {
|
|
|
701
707
|
Top : 4,
|
|
702
708
|
};
|
|
703
709
|
|
|
710
|
+
exports.TimelineLevelType = {
|
|
711
|
+
Year : 0,
|
|
712
|
+
Quarter : 1,
|
|
713
|
+
Month : 2,
|
|
714
|
+
Day : 3,
|
|
715
|
+
};
|
|
716
|
+
|
|
704
717
|
exports.JsonExportHyperlinkType = {
|
|
705
718
|
DisplayString : 0,
|
|
706
719
|
Address : 1,
|
|
@@ -6851,6 +6864,9 @@ Object.assign(exports.PivotTableRefreshOption.prototype, {
|
|
|
6851
6864
|
},
|
|
6852
6865
|
setReserveMissingPivotItemType(value) {
|
|
6853
6866
|
this.reserveMissingPivotItemType = value;
|
|
6867
|
+
},
|
|
6868
|
+
setIsKeepOriginalOrder(value) {
|
|
6869
|
+
this.isKeepOriginalOrder = value;
|
|
6854
6870
|
}
|
|
6855
6871
|
});
|
|
6856
6872
|
|
|
@@ -12429,6 +12445,48 @@ Object.assign(exports.TwoColorGradient.prototype, {
|
|
|
12429
12445
|
});
|
|
12430
12446
|
|
|
12431
12447
|
Object.assign(exports.Timeline.prototype, {
|
|
12448
|
+
getShowHeader() {
|
|
12449
|
+
return this.showHeader;
|
|
12450
|
+
},
|
|
12451
|
+
setShowHeader(value) {
|
|
12452
|
+
this.showHeader = value;
|
|
12453
|
+
},
|
|
12454
|
+
getShowSelectionLabel() {
|
|
12455
|
+
return this.showSelectionLabel;
|
|
12456
|
+
},
|
|
12457
|
+
setShowSelectionLabel(value) {
|
|
12458
|
+
this.showSelectionLabel = value;
|
|
12459
|
+
},
|
|
12460
|
+
getShowTimeLevel() {
|
|
12461
|
+
return this.showTimeLevel;
|
|
12462
|
+
},
|
|
12463
|
+
setShowTimeLevel(value) {
|
|
12464
|
+
this.showTimeLevel = value;
|
|
12465
|
+
},
|
|
12466
|
+
getShowHorizontalScrollbar() {
|
|
12467
|
+
return this.showHorizontalScrollbar;
|
|
12468
|
+
},
|
|
12469
|
+
setShowHorizontalScrollbar(value) {
|
|
12470
|
+
this.showHorizontalScrollbar = value;
|
|
12471
|
+
},
|
|
12472
|
+
getStartDate() {
|
|
12473
|
+
return this.startDate;
|
|
12474
|
+
},
|
|
12475
|
+
setStartDate(value) {
|
|
12476
|
+
this.startDate = value;
|
|
12477
|
+
},
|
|
12478
|
+
getCurrentLevel() {
|
|
12479
|
+
return this.currentLevel;
|
|
12480
|
+
},
|
|
12481
|
+
setCurrentLevel(value) {
|
|
12482
|
+
this.currentLevel = value;
|
|
12483
|
+
},
|
|
12484
|
+
getSelectionLevel() {
|
|
12485
|
+
return this.selectionLevel;
|
|
12486
|
+
},
|
|
12487
|
+
setSelectionLevel(value) {
|
|
12488
|
+
this.selectionLevel = value;
|
|
12489
|
+
},
|
|
12432
12490
|
getCaption() {
|
|
12433
12491
|
return this.caption;
|
|
12434
12492
|
},
|
|
@@ -14033,6 +14091,12 @@ Object.assign(exports.WorkbookSettings.prototype, {
|
|
|
14033
14091
|
},
|
|
14034
14092
|
setDefaultImageResolution(value) {
|
|
14035
14093
|
this.defaultImageResolution = value;
|
|
14094
|
+
},
|
|
14095
|
+
getWpsCompatibility() {
|
|
14096
|
+
return this.wpsCompatibility;
|
|
14097
|
+
},
|
|
14098
|
+
setWpsCompatibility(value) {
|
|
14099
|
+
this.wpsCompatibility = value;
|
|
14036
14100
|
}
|
|
14037
14101
|
});
|
|
14038
14102
|
|
|
@@ -14619,6 +14683,15 @@ Object.assign(exports.TextOptions.prototype, {
|
|
|
14619
14683
|
setSpacing(value) {
|
|
14620
14684
|
this.spacing = value;
|
|
14621
14685
|
},
|
|
14686
|
+
setIsNormalizeHeights(value) {
|
|
14687
|
+
this.isNormalizeHeights = value;
|
|
14688
|
+
},
|
|
14689
|
+
getCapsType() {
|
|
14690
|
+
return this.capsType;
|
|
14691
|
+
},
|
|
14692
|
+
setCapsType(value) {
|
|
14693
|
+
this.capsType = value;
|
|
14694
|
+
},
|
|
14622
14695
|
getCharset() {
|
|
14623
14696
|
return this.charset;
|
|
14624
14697
|
},
|
|
@@ -14631,12 +14704,6 @@ Object.assign(exports.TextOptions.prototype, {
|
|
|
14631
14704
|
setIsBold(value) {
|
|
14632
14705
|
this.isBold = value;
|
|
14633
14706
|
},
|
|
14634
|
-
getCapsType() {
|
|
14635
|
-
return this.capsType;
|
|
14636
|
-
},
|
|
14637
|
-
setCapsType(value) {
|
|
14638
|
-
this.capsType = value;
|
|
14639
|
-
},
|
|
14640
14707
|
getStrikeType() {
|
|
14641
14708
|
return this.strikeType;
|
|
14642
14709
|
},
|
|
@@ -14694,9 +14761,6 @@ Object.assign(exports.TextOptions.prototype, {
|
|
|
14694
14761
|
setArgbColor(value) {
|
|
14695
14762
|
this.argbColor = value;
|
|
14696
14763
|
},
|
|
14697
|
-
setIsNormalizeHeights(value) {
|
|
14698
|
-
this.isNormalizeHeights = value;
|
|
14699
|
-
},
|
|
14700
14764
|
getSchemeType() {
|
|
14701
14765
|
return this.schemeType;
|
|
14702
14766
|
},
|
|
@@ -19095,6 +19159,24 @@ Object.assign(exports.Slicer.prototype, {
|
|
|
19095
19159
|
setSortOrderType(value) {
|
|
19096
19160
|
this.sortOrderType = value;
|
|
19097
19161
|
},
|
|
19162
|
+
getShowMissing() {
|
|
19163
|
+
return this.showMissing;
|
|
19164
|
+
},
|
|
19165
|
+
setShowMissing(value) {
|
|
19166
|
+
this.showMissing = value;
|
|
19167
|
+
},
|
|
19168
|
+
getShowTypeOfItemsWithNoData() {
|
|
19169
|
+
return this.showTypeOfItemsWithNoData;
|
|
19170
|
+
},
|
|
19171
|
+
setShowTypeOfItemsWithNoData(value) {
|
|
19172
|
+
this.showTypeOfItemsWithNoData = value;
|
|
19173
|
+
},
|
|
19174
|
+
getShowAllItems() {
|
|
19175
|
+
return this.showAllItems;
|
|
19176
|
+
},
|
|
19177
|
+
setShowAllItems(value) {
|
|
19178
|
+
this.showAllItems = value;
|
|
19179
|
+
},
|
|
19098
19180
|
getTitle() {
|
|
19099
19181
|
return this.title;
|
|
19100
19182
|
},
|
|
@@ -19140,6 +19222,9 @@ Object.assign(exports.Slicer.prototype, {
|
|
|
19140
19222
|
getParent() {
|
|
19141
19223
|
return this.parent;
|
|
19142
19224
|
},
|
|
19225
|
+
getWorksheet() {
|
|
19226
|
+
return this.worksheet;
|
|
19227
|
+
},
|
|
19143
19228
|
getStyleType() {
|
|
19144
19229
|
return this.styleType;
|
|
19145
19230
|
},
|
|
@@ -19158,12 +19243,24 @@ Object.assign(exports.Slicer.prototype, {
|
|
|
19158
19243
|
setCaption(value) {
|
|
19159
19244
|
this.caption = value;
|
|
19160
19245
|
},
|
|
19246
|
+
getFirstItemIndex() {
|
|
19247
|
+
return this.firstItemIndex;
|
|
19248
|
+
},
|
|
19249
|
+
setFirstItemIndex(value) {
|
|
19250
|
+
this.firstItemIndex = value;
|
|
19251
|
+
},
|
|
19161
19252
|
getCaptionVisible() {
|
|
19162
19253
|
return this.captionVisible;
|
|
19163
19254
|
},
|
|
19164
19255
|
setCaptionVisible(value) {
|
|
19165
19256
|
this.captionVisible = value;
|
|
19166
19257
|
},
|
|
19258
|
+
getShowCaption() {
|
|
19259
|
+
return this.showCaption;
|
|
19260
|
+
},
|
|
19261
|
+
setShowCaption(value) {
|
|
19262
|
+
this.showCaption = value;
|
|
19263
|
+
},
|
|
19167
19264
|
getNumberOfColumns() {
|
|
19168
19265
|
return this.numberOfColumns;
|
|
19169
19266
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose.cells.node",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "26.1.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": "~
|
|
39
|
-
"aspose.cells.node.linux.x64": "~
|
|
40
|
-
"aspose.cells.node.linux.arm64": "~
|
|
41
|
-
"aspose.cells.node.darwin.x64": "~
|
|
42
|
-
"aspose.cells.node.darwin.arm64": "~
|
|
38
|
+
"aspose.cells.node.win32.x64": "~26.1.0",
|
|
39
|
+
"aspose.cells.node.linux.x64": "~26.1.0",
|
|
40
|
+
"aspose.cells.node.linux.arm64": "~26.1.0",
|
|
41
|
+
"aspose.cells.node.darwin.x64": "~26.1.0",
|
|
42
|
+
"aspose.cells.node.darwin.arm64": "~26.1.0"
|
|
43
43
|
}
|
|
44
44
|
}
|
|
Binary file
|