aspose.cells.node 25.2.1 → 25.3.1
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 +26 -5
- package/package.json +5 -5
- package/types.d.ts +58492 -57022
package/aspose.cells.js
CHANGED
|
@@ -69,6 +69,13 @@ exports.AutoFitWrappedTextType = {
|
|
|
69
69
|
Paragraph : 1,
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
+
exports.FontFileFormatType = {
|
|
73
|
+
Unknown : 0,
|
|
74
|
+
Ttf : 1,
|
|
75
|
+
Otf : 2,
|
|
76
|
+
Ttc : 3,
|
|
77
|
+
};
|
|
78
|
+
|
|
72
79
|
exports.ChartTextDirectionType = {
|
|
73
80
|
Horizontal : 0,
|
|
74
81
|
Vertical : 1,
|
|
@@ -231,6 +238,12 @@ exports.ExternalConnectionClassType = {
|
|
|
231
238
|
Unkown : 4,
|
|
232
239
|
};
|
|
233
240
|
|
|
241
|
+
exports.MarkdownTableHeaderType = {
|
|
242
|
+
FirstRow : 0,
|
|
243
|
+
ColumnHeader : 1,
|
|
244
|
+
Empty : 2,
|
|
245
|
+
};
|
|
246
|
+
|
|
234
247
|
exports.PowerQueryFormulaType = {
|
|
235
248
|
Formula : 0,
|
|
236
249
|
Function : 1,
|
|
@@ -2560,6 +2573,7 @@ exports.LookInType = {
|
|
|
2560
2573
|
Comments : 3,
|
|
2561
2574
|
OnlyFormulas : 4,
|
|
2562
2575
|
OriginalValues : 5,
|
|
2576
|
+
FormattedValues : 6,
|
|
2563
2577
|
};
|
|
2564
2578
|
|
|
2565
2579
|
exports.ArcShape.prototype.toImageAsync = async function(...args) {
|
|
@@ -2870,14 +2884,18 @@ exports.Bar3DShapeType = {
|
|
|
2870
2884
|
};
|
|
2871
2885
|
|
|
2872
2886
|
exports.BorderType = {
|
|
2873
|
-
BottomBorder : 8,
|
|
2874
|
-
DiagonalDown : 16,
|
|
2875
|
-
DiagonalUp : 32,
|
|
2876
2887
|
LeftBorder : 1,
|
|
2877
2888
|
RightBorder : 2,
|
|
2878
2889
|
TopBorder : 4,
|
|
2879
|
-
|
|
2890
|
+
BottomBorder : 8,
|
|
2891
|
+
DiagonalDown : 16,
|
|
2892
|
+
DiagonalUp : 32,
|
|
2880
2893
|
Vertical : 64,
|
|
2894
|
+
Horizontal : 128,
|
|
2895
|
+
SideBorders : 15,
|
|
2896
|
+
Diagonal : 48,
|
|
2897
|
+
DynamicStyleBorders : 192,
|
|
2898
|
+
None : 0,
|
|
2881
2899
|
};
|
|
2882
2900
|
|
|
2883
2901
|
exports.BubbleSizeRepresents = {
|
|
@@ -4156,9 +4174,11 @@ exports.StyleModifyFlag = {
|
|
|
4156
4174
|
BottomBorder : 2048,
|
|
4157
4175
|
DiagonalDownBorder : 4096,
|
|
4158
4176
|
DiagonalUpBorder : 8192,
|
|
4159
|
-
Diagonal : 12288,
|
|
4160
4177
|
HorizontalBorder : 32,
|
|
4161
4178
|
VerticalBorder : 64,
|
|
4179
|
+
SideBorders : 3840,
|
|
4180
|
+
Diagonal : 12288,
|
|
4181
|
+
DynamicStyleBorders : 96,
|
|
4162
4182
|
Borders : 16224,
|
|
4163
4183
|
NumberFormat : 16384,
|
|
4164
4184
|
HorizontalAlignment : 32768,
|
|
@@ -4198,6 +4218,7 @@ exports.StyleModifyFlag = {
|
|
|
4198
4218
|
FontVerticalText : 19,
|
|
4199
4219
|
Font : 31,
|
|
4200
4220
|
All : 234881023,
|
|
4221
|
+
None : 0,
|
|
4201
4222
|
};
|
|
4202
4223
|
|
|
4203
4224
|
exports.TableDataSourceType = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose.cells.node",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.3.1",
|
|
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,9 +35,9 @@
|
|
|
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.darwin.x64": "~25.
|
|
41
|
-
"aspose.cells.node.darwin.arm64": "~25.
|
|
38
|
+
"aspose.cells.node.win32.x64": "~25.3.0",
|
|
39
|
+
"aspose.cells.node.linux.x64": "~25.3.0",
|
|
40
|
+
"aspose.cells.node.darwin.x64": "~25.3.0",
|
|
41
|
+
"aspose.cells.node.darwin.arm64": "~25.3.0"
|
|
42
42
|
}
|
|
43
43
|
}
|