aspose.cells.node 25.12.1 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright (c) 2001-2025 Aspose Pty Ltd. All Rights Reserved.
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,
@@ -1528,12 +1541,6 @@ exports.SlicerCacheCrossFilterType = {
1528
1541
  ShowItemsWithNoData : 2,
1529
1542
  };
1530
1543
 
1531
- exports.SlicerCacheItemSortType = {
1532
- Natural : 0,
1533
- Ascending : 1,
1534
- Descending : 2,
1535
- };
1536
-
1537
1544
  exports.SlicerStyleType = {
1538
1545
  SlicerStyleLight1 : 0,
1539
1546
  SlicerStyleLight2 : 1,
@@ -6227,6 +6234,12 @@ Object.assign(exports.EbookLoadOptions.prototype, {
6227
6234
  },
6228
6235
  getTableLoadOptions() {
6229
6236
  return this.tableLoadOptions;
6237
+ },
6238
+ getDetectLaTeX() {
6239
+ return this.detectLaTeX;
6240
+ },
6241
+ setDetectLaTeX(value) {
6242
+ this.detectLaTeX = value;
6230
6243
  }
6231
6244
  });
6232
6245
 
@@ -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
 
@@ -7986,6 +8002,12 @@ Object.assign(exports.HtmlLoadOptions.prototype, {
7986
8002
  getTableLoadOptions() {
7987
8003
  return this.tableLoadOptions;
7988
8004
  },
8005
+ getDetectLaTeX() {
8006
+ return this.detectLaTeX;
8007
+ },
8008
+ setDetectLaTeX(value) {
8009
+ this.detectLaTeX = value;
8010
+ },
7989
8011
  getLoadFormat() {
7990
8012
  return this.loadFormat;
7991
8013
  },
@@ -12423,6 +12445,48 @@ Object.assign(exports.TwoColorGradient.prototype, {
12423
12445
  });
12424
12446
 
12425
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
+ },
12426
12490
  getCaption() {
12427
12491
  return this.caption;
12428
12492
  },
@@ -14027,6 +14091,12 @@ Object.assign(exports.WorkbookSettings.prototype, {
14027
14091
  },
14028
14092
  setDefaultImageResolution(value) {
14029
14093
  this.defaultImageResolution = value;
14094
+ },
14095
+ getWpsCompatibility() {
14096
+ return this.wpsCompatibility;
14097
+ },
14098
+ setWpsCompatibility(value) {
14099
+ this.wpsCompatibility = value;
14030
14100
  }
14031
14101
  });
14032
14102
 
@@ -14613,6 +14683,15 @@ Object.assign(exports.TextOptions.prototype, {
14613
14683
  setSpacing(value) {
14614
14684
  this.spacing = value;
14615
14685
  },
14686
+ setIsNormalizeHeights(value) {
14687
+ this.isNormalizeHeights = value;
14688
+ },
14689
+ getCapsType() {
14690
+ return this.capsType;
14691
+ },
14692
+ setCapsType(value) {
14693
+ this.capsType = value;
14694
+ },
14616
14695
  getCharset() {
14617
14696
  return this.charset;
14618
14697
  },
@@ -14625,12 +14704,6 @@ Object.assign(exports.TextOptions.prototype, {
14625
14704
  setIsBold(value) {
14626
14705
  this.isBold = value;
14627
14706
  },
14628
- getCapsType() {
14629
- return this.capsType;
14630
- },
14631
- setCapsType(value) {
14632
- this.capsType = value;
14633
- },
14634
14707
  getStrikeType() {
14635
14708
  return this.strikeType;
14636
14709
  },
@@ -14688,9 +14761,6 @@ Object.assign(exports.TextOptions.prototype, {
14688
14761
  setArgbColor(value) {
14689
14762
  this.argbColor = value;
14690
14763
  },
14691
- setIsNormalizeHeights(value) {
14692
- this.isNormalizeHeights = value;
14693
- },
14694
14764
  getSchemeType() {
14695
14765
  return this.schemeType;
14696
14766
  },
@@ -19083,6 +19153,30 @@ Object.assign(exports.SlicerCacheItemCollection.prototype, {
19083
19153
  });
19084
19154
 
19085
19155
  Object.assign(exports.Slicer.prototype, {
19156
+ getSortOrderType() {
19157
+ return this.sortOrderType;
19158
+ },
19159
+ setSortOrderType(value) {
19160
+ this.sortOrderType = value;
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
+ },
19086
19180
  getTitle() {
19087
19181
  return this.title;
19088
19182
  },
@@ -19128,6 +19222,9 @@ Object.assign(exports.Slicer.prototype, {
19128
19222
  getParent() {
19129
19223
  return this.parent;
19130
19224
  },
19225
+ getWorksheet() {
19226
+ return this.worksheet;
19227
+ },
19131
19228
  getStyleType() {
19132
19229
  return this.styleType;
19133
19230
  },
@@ -19146,12 +19243,24 @@ Object.assign(exports.Slicer.prototype, {
19146
19243
  setCaption(value) {
19147
19244
  this.caption = value;
19148
19245
  },
19246
+ getFirstItemIndex() {
19247
+ return this.firstItemIndex;
19248
+ },
19249
+ setFirstItemIndex(value) {
19250
+ this.firstItemIndex = value;
19251
+ },
19149
19252
  getCaptionVisible() {
19150
19253
  return this.captionVisible;
19151
19254
  },
19152
19255
  setCaptionVisible(value) {
19153
19256
  this.captionVisible = value;
19154
19257
  },
19258
+ getShowCaption() {
19259
+ return this.showCaption;
19260
+ },
19261
+ setShowCaption(value) {
19262
+ this.showCaption = value;
19263
+ },
19155
19264
  getNumberOfColumns() {
19156
19265
  return this.numberOfColumns;
19157
19266
  },
@@ -22020,6 +22129,12 @@ Object.assign(exports.PasteOptions.prototype, {
22020
22129
  setPasteType(value) {
22021
22130
  this.pasteType = value;
22022
22131
  },
22132
+ getShiftFormulasOfShapes() {
22133
+ return this.shiftFormulasOfShapes;
22134
+ },
22135
+ setShiftFormulasOfShapes(value) {
22136
+ this.shiftFormulasOfShapes = value;
22137
+ },
22023
22138
  getSkipBlanks() {
22024
22139
  return this.skipBlanks;
22025
22140
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aspose.cells.node",
3
- "version": "25.12.1",
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": "~25.12.1",
39
- "aspose.cells.node.linux.x64": "~25.12.1",
40
- "aspose.cells.node.linux.arm64": "~25.12.1",
41
- "aspose.cells.node.darwin.x64": "~25.12.1",
42
- "aspose.cells.node.darwin.arm64": "~25.12.1"
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
  }