asposeslidescloud 24.1.0 → 24.3.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/README.md +17 -0
- package/api.d.ts +23 -0
- package/api.js +79 -0
- package/internal/requestHelper.js +1 -1
- package/model.d.ts +162 -113
- package/model.js +102 -55
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,6 +27,23 @@ You may want to check out Aspose free [Powerpoint to PDF](https://products.aspos
|
|
|
27
27
|
**Web:** HTML/HTML5
|
|
28
28
|
**Other:** MPEG4, SWF (export whole presentations)
|
|
29
29
|
|
|
30
|
+
## Enhancements in Version 24.3
|
|
31
|
+
|
|
32
|
+
* Added Markdown (**Md**) to the list of allowed export formats.
|
|
33
|
+
* Added **DeletePictureCroppedAreas** method to delete cropped areas of pictures.
|
|
34
|
+
* Added **SlidesLayoutOptions** property to **PdfExportOptions**, **HtmlExportOptions**, **TiffExportOptions** and **ImageExportOptions** classes. You can use it to specify handout or notes/comments layouting options.
|
|
35
|
+
* Added **AnimateTextType** enum property to **Effect** class.
|
|
36
|
+
* Added **NotesCommentsLayouting** property to **Html5ExportOptions** class.
|
|
37
|
+
* Added **BwConversionMode** property to **TiffExportOptions** class.
|
|
38
|
+
* Added **EmbedImages** boolean property to **Html5ExportOptions** class.
|
|
39
|
+
* Added **ShowMediaControls** boolean property to **SlideShowProperties** class.
|
|
40
|
+
* Added **IsDecorative** boolean property to **ShapeBase** class.
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
## Enhancements in Version 24.2
|
|
44
|
+
|
|
45
|
+
* Added **GetCommentAuthors** method to get list of comment authors.
|
|
46
|
+
|
|
30
47
|
## Enhancements in Version 24.1
|
|
31
48
|
|
|
32
49
|
* Added **GetAvailableFonts** method to get list of installed system & custom fonts.
|
package/api.d.ts
CHANGED
|
@@ -894,6 +894,18 @@ export declare class SlidesApi {
|
|
|
894
894
|
response: http.ServerResponse;
|
|
895
895
|
body: model.Paragraphs;
|
|
896
896
|
}>;
|
|
897
|
+
/**
|
|
898
|
+
* Deletes cropped areas of a pictire.
|
|
899
|
+
* @param name Document name.
|
|
900
|
+
* @param slideIndex Slide index.
|
|
901
|
+
* @param shapeIndex Shape index (must refer to a picture frame).
|
|
902
|
+
* @param password Document password.
|
|
903
|
+
* @param folder Document folder.
|
|
904
|
+
* @param storage Presentation storage.
|
|
905
|
+
*/
|
|
906
|
+
deletePictureCroppedAreas(name: string, slideIndex: number, shapeIndex: number, password: string, folder: string, storage?: string): Promise<{
|
|
907
|
+
response: http.ServerResponse;
|
|
908
|
+
}>;
|
|
897
909
|
/**
|
|
898
910
|
* Remove a portion.
|
|
899
911
|
* @param name Document name.
|
|
@@ -1677,6 +1689,17 @@ export declare class SlidesApi {
|
|
|
1677
1689
|
response: http.ServerResponse;
|
|
1678
1690
|
body: model.ColorScheme;
|
|
1679
1691
|
}>;
|
|
1692
|
+
/**
|
|
1693
|
+
* Lists comment authors.
|
|
1694
|
+
* @param name Document name.
|
|
1695
|
+
* @param password Document password.
|
|
1696
|
+
* @param folder Document folder.
|
|
1697
|
+
* @param storage Document storage.
|
|
1698
|
+
*/
|
|
1699
|
+
getCommentAuthors(name: string, password?: string, folder?: string, storage?: string): Promise<{
|
|
1700
|
+
response: http.ServerResponse;
|
|
1701
|
+
body: model.CommentAuthors;
|
|
1702
|
+
}>;
|
|
1680
1703
|
/**
|
|
1681
1704
|
* Get disc usage
|
|
1682
1705
|
* @param storageName Storage name
|
package/api.js
CHANGED
|
@@ -2898,6 +2898,55 @@ class SlidesApi {
|
|
|
2898
2898
|
return Promise.resolve({ body: result, response });
|
|
2899
2899
|
});
|
|
2900
2900
|
}
|
|
2901
|
+
/**
|
|
2902
|
+
* Deletes cropped areas of a pictire.
|
|
2903
|
+
* @param name Document name.
|
|
2904
|
+
* @param slideIndex Slide index.
|
|
2905
|
+
* @param shapeIndex Shape index (must refer to a picture frame).
|
|
2906
|
+
* @param password Document password.
|
|
2907
|
+
* @param folder Document folder.
|
|
2908
|
+
* @param storage Presentation storage.
|
|
2909
|
+
*/
|
|
2910
|
+
deletePictureCroppedAreas(name, slideIndex, shapeIndex, password, folder, storage = null) {
|
|
2911
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2912
|
+
// verify required parameter 'name' is not null or undefined
|
|
2913
|
+
if (name === null || name === undefined) {
|
|
2914
|
+
throw new Error('The required parameter "name" was null or undefined when calling deletePictureCroppedAreas.');
|
|
2915
|
+
}
|
|
2916
|
+
// verify required parameter 'slideIndex' is not null or undefined
|
|
2917
|
+
if (slideIndex === null || slideIndex === undefined) {
|
|
2918
|
+
throw new Error('The required parameter "slideIndex" was null or undefined when calling deletePictureCroppedAreas.');
|
|
2919
|
+
}
|
|
2920
|
+
// verify required parameter 'shapeIndex' is not null or undefined
|
|
2921
|
+
if (shapeIndex === null || shapeIndex === undefined) {
|
|
2922
|
+
throw new Error('The required parameter "shapeIndex" was null or undefined when calling deletePictureCroppedAreas.');
|
|
2923
|
+
}
|
|
2924
|
+
// verify required parameter 'password' is not null or undefined
|
|
2925
|
+
if (password === null || password === undefined) {
|
|
2926
|
+
throw new Error('The required parameter "password" was null or undefined when calling deletePictureCroppedAreas.');
|
|
2927
|
+
}
|
|
2928
|
+
// verify required parameter 'folder' is not null or undefined
|
|
2929
|
+
if (folder === null || folder === undefined) {
|
|
2930
|
+
throw new Error('The required parameter "folder" was null or undefined when calling deletePictureCroppedAreas.');
|
|
2931
|
+
}
|
|
2932
|
+
let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/slides/{slideIndex}/shapes/{shapeIndex}/pictureCroppedAreas";
|
|
2933
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
|
|
2934
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "slideIndex", objectSerializer_1.ObjectSerializer.toString(slideIndex));
|
|
2935
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "shapeIndex", objectSerializer_1.ObjectSerializer.toString(shapeIndex));
|
|
2936
|
+
const queryParameters = {};
|
|
2937
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "folder", folder);
|
|
2938
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "storage", storage);
|
|
2939
|
+
const requestOptions = {
|
|
2940
|
+
method: "DELETE",
|
|
2941
|
+
headers: {},
|
|
2942
|
+
url: localVarPath,
|
|
2943
|
+
params: queryParameters
|
|
2944
|
+
};
|
|
2945
|
+
(0, requestHelper_1.addHeaderParameter)(requestOptions.headers, "password", password);
|
|
2946
|
+
const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, this.configuration);
|
|
2947
|
+
return Promise.resolve({ response });
|
|
2948
|
+
});
|
|
2949
|
+
}
|
|
2901
2950
|
/**
|
|
2902
2951
|
* Remove a portion.
|
|
2903
2952
|
* @param name Document name.
|
|
@@ -5525,6 +5574,36 @@ class SlidesApi {
|
|
|
5525
5574
|
return Promise.resolve({ body: result, response });
|
|
5526
5575
|
});
|
|
5527
5576
|
}
|
|
5577
|
+
/**
|
|
5578
|
+
* Lists comment authors.
|
|
5579
|
+
* @param name Document name.
|
|
5580
|
+
* @param password Document password.
|
|
5581
|
+
* @param folder Document folder.
|
|
5582
|
+
* @param storage Document storage.
|
|
5583
|
+
*/
|
|
5584
|
+
getCommentAuthors(name, password = null, folder = null, storage = null) {
|
|
5585
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
5586
|
+
// verify required parameter 'name' is not null or undefined
|
|
5587
|
+
if (name === null || name === undefined) {
|
|
5588
|
+
throw new Error('The required parameter "name" was null or undefined when calling getCommentAuthors.');
|
|
5589
|
+
}
|
|
5590
|
+
let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/comments/authors";
|
|
5591
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
|
|
5592
|
+
const queryParameters = {};
|
|
5593
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "folder", folder);
|
|
5594
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "storage", storage);
|
|
5595
|
+
const requestOptions = {
|
|
5596
|
+
method: "GET",
|
|
5597
|
+
headers: {},
|
|
5598
|
+
url: localVarPath,
|
|
5599
|
+
params: queryParameters
|
|
5600
|
+
};
|
|
5601
|
+
(0, requestHelper_1.addHeaderParameter)(requestOptions.headers, "password", password);
|
|
5602
|
+
const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, this.configuration);
|
|
5603
|
+
const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "CommentAuthors");
|
|
5604
|
+
return Promise.resolve({ body: result, response });
|
|
5605
|
+
});
|
|
5606
|
+
}
|
|
5528
5607
|
/**
|
|
5529
5608
|
* Get disc usage
|
|
5530
5609
|
* @param storageName Storage name
|
|
@@ -157,7 +157,7 @@ function invokeApiMethodInternal(requestOptions, configuration, notApplyAuthToRe
|
|
|
157
157
|
if (!requestOptions.headers) {
|
|
158
158
|
requestOptions.headers = {};
|
|
159
159
|
}
|
|
160
|
-
requestOptions.headers["x-aspose-client"] = "nodejs sdk v24.
|
|
160
|
+
requestOptions.headers["x-aspose-client"] = "nodejs sdk v24.3.0";
|
|
161
161
|
if (configuration.timeout) {
|
|
162
162
|
requestOptions.headers["x-aspose-timeout"] = configuration.timeout;
|
|
163
163
|
}
|
package/model.d.ts
CHANGED
|
@@ -456,6 +456,10 @@ export declare class ShapeBase extends ResourceBase {
|
|
|
456
456
|
* Gets or sets a value indicating whether this ShapeBase is hidden.
|
|
457
457
|
*/
|
|
458
458
|
hidden?: boolean;
|
|
459
|
+
/**
|
|
460
|
+
* Gets or sets 'Mark as decorative' option.
|
|
461
|
+
*/
|
|
462
|
+
isDecorative?: boolean;
|
|
459
463
|
/**
|
|
460
464
|
* Gets or sets the X
|
|
461
465
|
*/
|
|
@@ -2066,6 +2070,29 @@ export declare class ColorScheme extends ResourceBase {
|
|
|
2066
2070
|
*/
|
|
2067
2071
|
light2?: string;
|
|
2068
2072
|
}
|
|
2073
|
+
/**
|
|
2074
|
+
* Represents a comment author
|
|
2075
|
+
*/
|
|
2076
|
+
export declare class CommentAuthor {
|
|
2077
|
+
/**
|
|
2078
|
+
* Name
|
|
2079
|
+
*/
|
|
2080
|
+
name?: string;
|
|
2081
|
+
/**
|
|
2082
|
+
* Initials
|
|
2083
|
+
*/
|
|
2084
|
+
initials?: string;
|
|
2085
|
+
}
|
|
2086
|
+
/**
|
|
2087
|
+
* Represents comments collection of slide
|
|
2088
|
+
*/
|
|
2089
|
+
export declare class CommentAuthors extends ResourceBase {
|
|
2090
|
+
constructor();
|
|
2091
|
+
/**
|
|
2092
|
+
* Slide comment list.
|
|
2093
|
+
*/
|
|
2094
|
+
list?: Array<CommentAuthor>;
|
|
2095
|
+
}
|
|
2069
2096
|
/**
|
|
2070
2097
|
* Slide view properties.
|
|
2071
2098
|
*/
|
|
@@ -2305,6 +2332,10 @@ export declare class Effect {
|
|
|
2305
2332
|
* Preset class type.
|
|
2306
2333
|
*/
|
|
2307
2334
|
presetClassType?: Effect.PresetClassTypeEnum;
|
|
2335
|
+
/**
|
|
2336
|
+
* Preset class type.
|
|
2337
|
+
*/
|
|
2338
|
+
animateTextType?: Effect.AnimateTextTypeEnum;
|
|
2308
2339
|
/**
|
|
2309
2340
|
* Shape index.
|
|
2310
2341
|
*/
|
|
@@ -2596,6 +2627,11 @@ export declare namespace Effect {
|
|
|
2596
2627
|
MediaCall,
|
|
2597
2628
|
OLEActionVerbs
|
|
2598
2629
|
}
|
|
2630
|
+
enum AnimateTextTypeEnum {
|
|
2631
|
+
AllAtOnce,
|
|
2632
|
+
ByWord,
|
|
2633
|
+
ByLetter
|
|
2634
|
+
}
|
|
2599
2635
|
enum TriggerTypeEnum {
|
|
2600
2636
|
AfterPrevious,
|
|
2601
2637
|
OnClick,
|
|
@@ -2704,7 +2740,8 @@ export declare enum ExportFormat {
|
|
|
2704
2740
|
'Bmp',
|
|
2705
2741
|
'Fodp',
|
|
2706
2742
|
'Xaml',
|
|
2707
|
-
'Mpeg4'
|
|
2743
|
+
'Mpeg4',
|
|
2744
|
+
'Md'
|
|
2708
2745
|
}
|
|
2709
2746
|
/**
|
|
2710
2747
|
* Represents export options for whole presentation.
|
|
@@ -3220,6 +3257,53 @@ export declare namespace GroupingCharacterElement {
|
|
|
3220
3257
|
Bottom
|
|
3221
3258
|
}
|
|
3222
3259
|
}
|
|
3260
|
+
/**
|
|
3261
|
+
* Slides layouting options.
|
|
3262
|
+
*/
|
|
3263
|
+
export declare class SlidesLayoutOptions {
|
|
3264
|
+
layoutType?: SlidesLayoutOptions.LayoutTypeEnum;
|
|
3265
|
+
}
|
|
3266
|
+
export declare namespace SlidesLayoutOptions {
|
|
3267
|
+
enum LayoutTypeEnum {
|
|
3268
|
+
NotesComments,
|
|
3269
|
+
Handout
|
|
3270
|
+
}
|
|
3271
|
+
}
|
|
3272
|
+
/**
|
|
3273
|
+
* Handout layouting options
|
|
3274
|
+
*/
|
|
3275
|
+
export declare class HandoutLayoutingOptions extends SlidesLayoutOptions {
|
|
3276
|
+
constructor();
|
|
3277
|
+
/**
|
|
3278
|
+
* Specified how many pages and in what sequence will be placed on the page.
|
|
3279
|
+
*/
|
|
3280
|
+
handout?: HandoutLayoutingOptions.HandoutEnum;
|
|
3281
|
+
/**
|
|
3282
|
+
* True to print the displayed slide numbers.
|
|
3283
|
+
*/
|
|
3284
|
+
printSlideNumbers?: boolean;
|
|
3285
|
+
/**
|
|
3286
|
+
* True to display comments on slide.
|
|
3287
|
+
*/
|
|
3288
|
+
printComments?: boolean;
|
|
3289
|
+
/**
|
|
3290
|
+
* True to draw frames around the displayed slides.
|
|
3291
|
+
*/
|
|
3292
|
+
printFrameSlide?: boolean;
|
|
3293
|
+
}
|
|
3294
|
+
export declare namespace HandoutLayoutingOptions {
|
|
3295
|
+
enum HandoutEnum {
|
|
3296
|
+
Handouts1,
|
|
3297
|
+
Handouts2,
|
|
3298
|
+
Handouts3,
|
|
3299
|
+
Handouts4Horizontal,
|
|
3300
|
+
Handouts4Vertical,
|
|
3301
|
+
Handouts6Horizontal,
|
|
3302
|
+
Handouts6Vertical,
|
|
3303
|
+
Handouts9Horizontal,
|
|
3304
|
+
Handouts9Vertical
|
|
3305
|
+
}
|
|
3306
|
+
}
|
|
3223
3307
|
/**
|
|
3224
3308
|
* Represents header/footer info of slide
|
|
3225
3309
|
*/
|
|
@@ -3279,6 +3363,14 @@ export declare class Html5ExportOptions extends ExportOptions {
|
|
|
3279
3363
|
* Gets or sets shapes animation option.
|
|
3280
3364
|
*/
|
|
3281
3365
|
animateShapes?: boolean;
|
|
3366
|
+
/**
|
|
3367
|
+
* Gets or sets embed images option.
|
|
3368
|
+
*/
|
|
3369
|
+
embedImages?: boolean;
|
|
3370
|
+
/**
|
|
3371
|
+
* Slides layouting options
|
|
3372
|
+
*/
|
|
3373
|
+
notesCommentsLayouting?: NotesCommentsLayoutingOptions;
|
|
3282
3374
|
}
|
|
3283
3375
|
/**
|
|
3284
3376
|
* Provides options that control how a presentation is saved in Html format.
|
|
@@ -3314,25 +3406,9 @@ export declare class HtmlExportOptions extends ExportOptions {
|
|
|
3314
3406
|
*/
|
|
3315
3407
|
deletePicturesCroppedAreas?: boolean;
|
|
3316
3408
|
/**
|
|
3317
|
-
*
|
|
3409
|
+
* Slides layouting options
|
|
3318
3410
|
*/
|
|
3319
|
-
|
|
3320
|
-
/**
|
|
3321
|
-
* Gets or sets the position of the comments on the page.
|
|
3322
|
-
*/
|
|
3323
|
-
commentsPosition?: HtmlExportOptions.CommentsPositionEnum;
|
|
3324
|
-
/**
|
|
3325
|
-
* Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
|
|
3326
|
-
*/
|
|
3327
|
-
commentsAreaWidth?: number;
|
|
3328
|
-
/**
|
|
3329
|
-
* Gets or sets the color of comments area (Applies only if comments are displayed on the right).
|
|
3330
|
-
*/
|
|
3331
|
-
commentsAreaColor?: string;
|
|
3332
|
-
/**
|
|
3333
|
-
* True if comments that have no author are displayed. (Applies only if comments are displayed).
|
|
3334
|
-
*/
|
|
3335
|
-
showCommentsByNoAuthor?: boolean;
|
|
3411
|
+
slidesLayoutOptions?: SlidesLayoutOptions;
|
|
3336
3412
|
}
|
|
3337
3413
|
export declare namespace HtmlExportOptions {
|
|
3338
3414
|
enum PicturesCompressionEnum {
|
|
@@ -3343,16 +3419,6 @@ export declare namespace HtmlExportOptions {
|
|
|
3343
3419
|
Dpi72,
|
|
3344
3420
|
DocumentResolution
|
|
3345
3421
|
}
|
|
3346
|
-
enum NotesPositionEnum {
|
|
3347
|
-
None,
|
|
3348
|
-
BottomFull,
|
|
3349
|
-
BottomTruncated
|
|
3350
|
-
}
|
|
3351
|
-
enum CommentsPositionEnum {
|
|
3352
|
-
None,
|
|
3353
|
-
Bottom,
|
|
3354
|
-
Right
|
|
3355
|
-
}
|
|
3356
3422
|
}
|
|
3357
3423
|
/**
|
|
3358
3424
|
* Hyperlink
|
|
@@ -3468,38 +3534,14 @@ export declare enum ImageExportFormat {
|
|
|
3468
3534
|
*/
|
|
3469
3535
|
export declare class ImageExportOptions extends ImageExportOptionsBase {
|
|
3470
3536
|
constructor();
|
|
3471
|
-
/**
|
|
3472
|
-
* Gets or sets the position of the notes on the page.
|
|
3473
|
-
*/
|
|
3474
|
-
notesPosition?: ImageExportOptions.NotesPositionEnum;
|
|
3475
|
-
/**
|
|
3476
|
-
* Gets or sets the position of the comments on the page.
|
|
3477
|
-
*/
|
|
3478
|
-
commentsPosition?: ImageExportOptions.CommentsPositionEnum;
|
|
3479
|
-
/**
|
|
3480
|
-
* Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
|
|
3481
|
-
*/
|
|
3482
|
-
commentsAreaWidth?: number;
|
|
3483
|
-
/**
|
|
3484
|
-
* Gets or sets the color of comments area (Applies only if comments are displayed on the right).
|
|
3485
|
-
*/
|
|
3486
|
-
commentsAreaColor?: string;
|
|
3487
3537
|
/**
|
|
3488
3538
|
* Show hidden slides. If true, hidden are exported.
|
|
3489
3539
|
*/
|
|
3490
3540
|
showHiddenSlides?: boolean;
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
BottomFull,
|
|
3496
|
-
BottomTruncated
|
|
3497
|
-
}
|
|
3498
|
-
enum CommentsPositionEnum {
|
|
3499
|
-
None,
|
|
3500
|
-
Bottom,
|
|
3501
|
-
Right
|
|
3502
|
-
}
|
|
3541
|
+
/**
|
|
3542
|
+
* Slides layouting options
|
|
3543
|
+
*/
|
|
3544
|
+
slidesLayoutOptions?: SlidesLayoutOptions;
|
|
3503
3545
|
}
|
|
3504
3546
|
/**
|
|
3505
3547
|
* List of images.
|
|
@@ -4175,6 +4217,44 @@ export declare class NormalViewRestoredProperties {
|
|
|
4175
4217
|
*/
|
|
4176
4218
|
dimensionSize?: number;
|
|
4177
4219
|
}
|
|
4220
|
+
/**
|
|
4221
|
+
* Notes & comments layouting options.
|
|
4222
|
+
*/
|
|
4223
|
+
export declare class NotesCommentsLayoutingOptions extends SlidesLayoutOptions {
|
|
4224
|
+
constructor();
|
|
4225
|
+
/**
|
|
4226
|
+
* Gets or sets the position of the notes on the page.
|
|
4227
|
+
*/
|
|
4228
|
+
notesPosition?: NotesCommentsLayoutingOptions.NotesPositionEnum;
|
|
4229
|
+
/**
|
|
4230
|
+
* Gets or sets the position of the comments on the page.
|
|
4231
|
+
*/
|
|
4232
|
+
commentsPosition?: NotesCommentsLayoutingOptions.CommentsPositionEnum;
|
|
4233
|
+
/**
|
|
4234
|
+
* Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
|
|
4235
|
+
*/
|
|
4236
|
+
commentsAreaWidth?: number;
|
|
4237
|
+
/**
|
|
4238
|
+
* Gets or sets the color of comments area (Applies only if comments are displayed on the right).
|
|
4239
|
+
*/
|
|
4240
|
+
commentsAreaColor?: string;
|
|
4241
|
+
/**
|
|
4242
|
+
* True if comments that have no author are displayed. (Applies only if comments are displayed).
|
|
4243
|
+
*/
|
|
4244
|
+
showCommentsByNoAuthor?: boolean;
|
|
4245
|
+
}
|
|
4246
|
+
export declare namespace NotesCommentsLayoutingOptions {
|
|
4247
|
+
enum NotesPositionEnum {
|
|
4248
|
+
None,
|
|
4249
|
+
BottomFull,
|
|
4250
|
+
BottomTruncated
|
|
4251
|
+
}
|
|
4252
|
+
enum CommentsPositionEnum {
|
|
4253
|
+
None,
|
|
4254
|
+
Bottom,
|
|
4255
|
+
Right
|
|
4256
|
+
}
|
|
4257
|
+
}
|
|
4178
4258
|
/**
|
|
4179
4259
|
* Represents notes slide DTO.
|
|
4180
4260
|
*/
|
|
@@ -5006,25 +5086,9 @@ export declare class PdfExportOptions extends ExportOptions {
|
|
|
5006
5086
|
*/
|
|
5007
5087
|
additionalCommonFontFamilies?: Array<string>;
|
|
5008
5088
|
/**
|
|
5009
|
-
*
|
|
5010
|
-
*/
|
|
5011
|
-
notesPosition?: PdfExportOptions.NotesPositionEnum;
|
|
5012
|
-
/**
|
|
5013
|
-
* Gets or sets the position of the comments on the page.
|
|
5014
|
-
*/
|
|
5015
|
-
commentsPosition?: PdfExportOptions.CommentsPositionEnum;
|
|
5016
|
-
/**
|
|
5017
|
-
* Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
|
|
5018
|
-
*/
|
|
5019
|
-
commentsAreaWidth?: number;
|
|
5020
|
-
/**
|
|
5021
|
-
* Gets or sets the color of comments area (Applies only if comments are displayed on the right).
|
|
5022
|
-
*/
|
|
5023
|
-
commentsAreaColor?: string;
|
|
5024
|
-
/**
|
|
5025
|
-
* True if comments that have no author are displayed. (Applies only if comments are displayed).
|
|
5089
|
+
* Slides layouting options
|
|
5026
5090
|
*/
|
|
5027
|
-
|
|
5091
|
+
slidesLayoutOptions?: SlidesLayoutOptions;
|
|
5028
5092
|
/**
|
|
5029
5093
|
* Image transparent color.
|
|
5030
5094
|
*/
|
|
@@ -5056,16 +5120,6 @@ export declare namespace PdfExportOptions {
|
|
|
5056
5120
|
PdfUa,
|
|
5057
5121
|
PdfA2u
|
|
5058
5122
|
}
|
|
5059
|
-
enum NotesPositionEnum {
|
|
5060
|
-
None,
|
|
5061
|
-
BottomFull,
|
|
5062
|
-
BottomTruncated
|
|
5063
|
-
}
|
|
5064
|
-
enum CommentsPositionEnum {
|
|
5065
|
-
None,
|
|
5066
|
-
Bottom,
|
|
5067
|
-
Right
|
|
5068
|
-
}
|
|
5069
5123
|
}
|
|
5070
5124
|
/**
|
|
5071
5125
|
* Picture fill.
|
|
@@ -6098,7 +6152,8 @@ export declare namespace Save {
|
|
|
6098
6152
|
Bmp,
|
|
6099
6153
|
Fodp,
|
|
6100
6154
|
Xaml,
|
|
6101
|
-
Mpeg4
|
|
6155
|
+
Mpeg4,
|
|
6156
|
+
Md
|
|
6102
6157
|
}
|
|
6103
6158
|
}
|
|
6104
6159
|
/**
|
|
@@ -6187,7 +6242,8 @@ export declare namespace SaveSlide {
|
|
|
6187
6242
|
Svg,
|
|
6188
6243
|
Fodp,
|
|
6189
6244
|
Xaml,
|
|
6190
|
-
Html5
|
|
6245
|
+
Html5,
|
|
6246
|
+
Md
|
|
6191
6247
|
}
|
|
6192
6248
|
}
|
|
6193
6249
|
/**
|
|
@@ -6643,7 +6699,8 @@ export declare enum SlideExportFormat {
|
|
|
6643
6699
|
'Svg',
|
|
6644
6700
|
'Fodp',
|
|
6645
6701
|
'Xaml',
|
|
6646
|
-
'Html5'
|
|
6702
|
+
'Html5',
|
|
6703
|
+
'Md'
|
|
6647
6704
|
}
|
|
6648
6705
|
/**
|
|
6649
6706
|
* Represents modern comment of slide
|
|
@@ -6770,6 +6827,10 @@ export declare class SlideShowProperties extends ResourceBase {
|
|
|
6770
6827
|
* Show narrration.
|
|
6771
6828
|
*/
|
|
6772
6829
|
showNarration?: boolean;
|
|
6830
|
+
/**
|
|
6831
|
+
* Show media controls.
|
|
6832
|
+
*/
|
|
6833
|
+
showMediaControls?: boolean;
|
|
6773
6834
|
/**
|
|
6774
6835
|
* Use timings.
|
|
6775
6836
|
*/
|
|
@@ -8193,25 +8254,13 @@ export declare class TiffExportOptions extends ImageExportOptionsBase {
|
|
|
8193
8254
|
*/
|
|
8194
8255
|
pixelFormat?: TiffExportOptions.PixelFormatEnum;
|
|
8195
8256
|
/**
|
|
8196
|
-
*
|
|
8257
|
+
* Slides layouting options
|
|
8197
8258
|
*/
|
|
8198
|
-
|
|
8259
|
+
slidesLayoutOptions?: SlidesLayoutOptions;
|
|
8199
8260
|
/**
|
|
8200
|
-
*
|
|
8261
|
+
* Specifies the algorithm for converting a color image into a black and white image. This option will applied only if Aspose.Slides.Export.TiffOptions.CompressionType is set to Aspose.Slides.Export.TiffCompressionTypes.CCITT4 or Aspose.Slides.Export.TiffCompressionTypes.CCITT3.
|
|
8201
8262
|
*/
|
|
8202
|
-
|
|
8203
|
-
/**
|
|
8204
|
-
* Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
|
|
8205
|
-
*/
|
|
8206
|
-
commentsAreaWidth?: number;
|
|
8207
|
-
/**
|
|
8208
|
-
* Gets or sets the color of comments area (Applies only if comments are displayed on the right).
|
|
8209
|
-
*/
|
|
8210
|
-
commentsAreaColor?: string;
|
|
8211
|
-
/**
|
|
8212
|
-
* True if comments that have no author are displayed. (Applies only if comments are displayed).
|
|
8213
|
-
*/
|
|
8214
|
-
showCommentsByNoAuthor?: boolean;
|
|
8263
|
+
bwConversionMode?: TiffExportOptions.BwConversionModeEnum;
|
|
8215
8264
|
}
|
|
8216
8265
|
export declare namespace TiffExportOptions {
|
|
8217
8266
|
enum CompressionEnum {
|
|
@@ -8229,15 +8278,15 @@ export declare namespace TiffExportOptions {
|
|
|
8229
8278
|
Format24bppRgb,
|
|
8230
8279
|
Format32bppArgb
|
|
8231
8280
|
}
|
|
8232
|
-
enum
|
|
8233
|
-
|
|
8234
|
-
|
|
8235
|
-
|
|
8236
|
-
|
|
8237
|
-
|
|
8238
|
-
|
|
8239
|
-
|
|
8240
|
-
|
|
8281
|
+
enum BwConversionModeEnum {
|
|
8282
|
+
Default,
|
|
8283
|
+
Dithering,
|
|
8284
|
+
DitheringFloydSteinberg,
|
|
8285
|
+
Auto,
|
|
8286
|
+
AutoOtsu,
|
|
8287
|
+
Threshold25,
|
|
8288
|
+
Threshold50,
|
|
8289
|
+
Threshold75
|
|
8241
8290
|
}
|
|
8242
8291
|
}
|
|
8243
8292
|
/**
|
package/model.js
CHANGED
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
*/
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.ChartWall = exports.ChartTitle = exports.ChartSeriesGroup = exports.ChartLinesFormat = exports.ChartCategory = exports.Chart = exports.Camera = exports.BubbleSeries = exports.XYSeries = exports.Series = exports.BubbleChartDataPoint = exports.ScatterChartDataPoint = exports.DataPoint = exports.BoxElement = exports.BorderBoxElement = exports.BlurImageEffect = exports.BlurEffect = exports.BlockElement = exports.BiLevelEffect = exports.Base64InputFile = exports.InputFile = exports.BarElement = exports.AxisType = exports.Axis = exports.Axes = exports.AudioFrame = exports.GeometryShape = exports.ShapeBase = exports.ResourceBase = exports.ArrowHeadProperties = exports.ArrayElement = exports.ArcToPathSegment = exports.PathSegment = exports.ApiInfo = exports.AlphaReplaceEffect = exports.AlphaModulateFixedEffect = exports.AlphaModulateEffect = exports.AlphaInverseEffect = exports.AlphaFloorEffect = exports.AlphaCeilingEffect = exports.AlphaBiLevelEffect = exports.ImageTransformEffect = exports.AddSlide = exports.AddShape = exports.AddMasterSlide = exports.AddLayoutSlide = exports.Task = exports.AccessPermissions = exports.AccentElement = exports.MathElement = void 0;
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.ZoomFrame = void 0;
|
|
27
|
+
exports.GraphicalObject = exports.GradientFillStop = exports.GradientFill = exports.GlowEffect = exports.GifExportOptions = exports.ImageExportOptionsBase = exports.GeometryPaths = exports.GeometryPath = exports.FunctionElement = exports.FractionElement = exports.FormatScheme = exports.FontsData = exports.FontSubstRule = exports.FontSet = exports.FontScheme = exports.FontFallbackRule = exports.FontData = exports.FillOverlayImageEffect = exports.FillOverlayEffect = exports.FillFormat = exports.FilesUploadResult = exports.FilesList = exports.FileVersions = exports.FileVersion = exports.StorageFile = exports.ExportOptions = exports.ExportFormat = exports.ErrorDetails = exports.EntityExists = exports.EffectFormat = exports.Effect = exports.DuotoneEffect = exports.DocumentReplaceResult = exports.DocumentProperty = exports.DocumentProperties = exports.Document = exports.DiscUsage = exports.DelimiterElement = exports.DataSource = exports.CustomDashPattern = exports.CubicBezierToPathSegment = exports.Connector = exports.CommonSlideViewProperties = exports.CommentAuthors = exports.CommentAuthor = exports.ColorScheme = exports.ColorReplaceEffect = exports.ColorChangeEffect = exports.ClosePathSegment = exports.ChartWallType = void 0;
|
|
28
|
+
exports.OrderedMergeRequest = exports.OperationProgress = exports.Operation = exports.OneValueSeries = exports.OneValueChartDataPoint = exports.OleObjectFrame = exports.ObjectExist = exports.NotesSlideHeaderFooter = exports.NotesSlideExportFormat = exports.NotesSlide = exports.NotesCommentsLayoutingOptions = exports.NormalViewRestoredProperties = exports.NoFill = exports.NaryOperatorElement = exports.MoveToPathSegment = exports.ModelError = exports.MergingSource = exports.Merge = exports.MatrixElement = exports.MathParagraph = exports.MasterSlides = exports.MasterSlide = exports.LuminanceEffect = exports.Literals = exports.LineToPathSegment = exports.LineFormat = exports.LimitElement = exports.LightRig = exports.Legend = exports.LeftSubSuperscriptElement = exports.LayoutSlides = exports.LayoutSlide = exports.InteractiveSequence = exports.Input = exports.InnerShadowEffect = exports.Images = exports.ImageExportOptions = exports.ImageExportFormat = exports.Image = exports.IShapeExportOptions = exports.Hyperlink = exports.HtmlExportOptions = exports.Html5ExportOptions = exports.HslEffect = exports.HeaderFooter = exports.HandoutLayoutingOptions = exports.SlidesLayoutOptions = exports.GroupingCharacterElement = exports.GroupShape = exports.GrayScaleEffect = void 0;
|
|
29
|
+
exports.ShapeType = exports.ShapeThumbnailBounds = exports.ShapeImageExportOptions = exports.ShapeExportFormat = exports.ShapeBevel = exports.Shape = exports.SeriesMarker = exports.Sections = exports.SectionZoomFrame = exports.ZoomObject = exports.Section = exports.ScatterSeries = exports.SaveSlide = exports.SaveShape = exports.Save = exports.RightSubSuperscriptElement = exports.ResponseOutputFile = exports.ResourceUri = exports.ResetSlide = exports.RequestInputFile = exports.ReplaceText = exports.ReorderSlide = exports.RemoveSlide = exports.RemoveShape = exports.ReflectionEffect = exports.RadicalElement = exports.QuadraticBezierToPathSegment = exports.ProtectionProperties = exports.PresetShadowEffect = exports.PresentationsMergeRequest = exports.PresentationToMerge = exports.PptxExportOptions = exports.Portions = exports.PortionFormat = exports.Portion = exports.PlotArea = exports.Placeholders = exports.Placeholder = exports.Pipeline = exports.PictureFrame = exports.PictureFill = exports.PdfExportOptions = exports.PatternFill = exports.PathOutputFile = exports.PathInputFile = exports.Paragraphs = exports.ParagraphFormat = exports.Paragraph = exports.OutputFile = exports.OuterShadowEffect = void 0;
|
|
30
|
+
exports.VideoExportOptions = exports.VbaReference = exports.VbaProject = exports.VbaModule = exports.UpdateShape = exports.UpdateBackground = exports.TintEffect = exports.TiffExportOptions = exports.ThreeDFormat = exports.Theme = exports.TextItems = exports.TextItem = exports.TextFrameFormat = exports.TextElement = exports.TextBounds = exports.TableRow = exports.TableColumn = exports.TableCellSplitType = exports.TableCellMergeOptions = exports.TableCell = exports.Table = exports.SwfExportOptions = exports.SvgExportOptions = exports.SuperscriptElement = exports.SummaryZoomSection = exports.SummaryZoomFrame = exports.SubscriptElement = exports.StorageExist = exports.SplitDocumentResult = exports.SpecialSlideType = exports.SolidFill = exports.SoftEdgeEffect = exports.SmartArtShape = exports.SmartArtNode = exports.SmartArt = exports.Slides = exports.SlideShowTransition = exports.SlideShowProperties = exports.SlideReplaceResult = exports.SlideProperties = exports.SlideModernComment = exports.SlideExportFormat = exports.SlideComments = exports.SlideComment = exports.SlideCommentBase = exports.SlideBackground = exports.SlideAnimation = exports.Slide = exports.ShapesAlignmentType = exports.Shapes = void 0;
|
|
31
|
+
exports.ZoomFrame = exports.XpsExportOptions = exports.XamlExportOptions = exports.Workbook = exports.ViewProperties = exports.VideoFrame = void 0;
|
|
32
32
|
/**
|
|
33
33
|
* Math element.
|
|
34
34
|
*/
|
|
@@ -1289,6 +1289,21 @@ class ColorScheme extends ResourceBase {
|
|
|
1289
1289
|
}
|
|
1290
1290
|
}
|
|
1291
1291
|
exports.ColorScheme = ColorScheme;
|
|
1292
|
+
/**
|
|
1293
|
+
* Represents a comment author
|
|
1294
|
+
*/
|
|
1295
|
+
class CommentAuthor {
|
|
1296
|
+
}
|
|
1297
|
+
exports.CommentAuthor = CommentAuthor;
|
|
1298
|
+
/**
|
|
1299
|
+
* Represents comments collection of slide
|
|
1300
|
+
*/
|
|
1301
|
+
class CommentAuthors extends ResourceBase {
|
|
1302
|
+
constructor() {
|
|
1303
|
+
super();
|
|
1304
|
+
}
|
|
1305
|
+
}
|
|
1306
|
+
exports.CommentAuthors = CommentAuthors;
|
|
1292
1307
|
/**
|
|
1293
1308
|
* Slide view properties.
|
|
1294
1309
|
*/
|
|
@@ -1630,6 +1645,12 @@ exports.Effect = Effect;
|
|
|
1630
1645
|
PresetClassTypeEnum[PresetClassTypeEnum["MediaCall"] = 'MediaCall'] = "MediaCall";
|
|
1631
1646
|
PresetClassTypeEnum[PresetClassTypeEnum["OLEActionVerbs"] = 'OLEActionVerbs'] = "OLEActionVerbs";
|
|
1632
1647
|
})(PresetClassTypeEnum = Effect.PresetClassTypeEnum || (Effect.PresetClassTypeEnum = {}));
|
|
1648
|
+
let AnimateTextTypeEnum;
|
|
1649
|
+
(function (AnimateTextTypeEnum) {
|
|
1650
|
+
AnimateTextTypeEnum[AnimateTextTypeEnum["AllAtOnce"] = 'AllAtOnce'] = "AllAtOnce";
|
|
1651
|
+
AnimateTextTypeEnum[AnimateTextTypeEnum["ByWord"] = 'ByWord'] = "ByWord";
|
|
1652
|
+
AnimateTextTypeEnum[AnimateTextTypeEnum["ByLetter"] = 'ByLetter'] = "ByLetter";
|
|
1653
|
+
})(AnimateTextTypeEnum = Effect.AnimateTextTypeEnum || (Effect.AnimateTextTypeEnum = {}));
|
|
1633
1654
|
let TriggerTypeEnum;
|
|
1634
1655
|
(function (TriggerTypeEnum) {
|
|
1635
1656
|
TriggerTypeEnum[TriggerTypeEnum["AfterPrevious"] = 'AfterPrevious'] = "AfterPrevious";
|
|
@@ -1702,6 +1723,7 @@ var ExportFormat;
|
|
|
1702
1723
|
ExportFormat[ExportFormat["Fodp"] = 'Fodp'] = "Fodp";
|
|
1703
1724
|
ExportFormat[ExportFormat["Xaml"] = 'Xaml'] = "Xaml";
|
|
1704
1725
|
ExportFormat[ExportFormat["Mpeg4"] = 'Mpeg4'] = "Mpeg4";
|
|
1726
|
+
ExportFormat[ExportFormat["Md"] = 'Md'] = "Md";
|
|
1705
1727
|
})(ExportFormat = exports.ExportFormat || (exports.ExportFormat = {}));
|
|
1706
1728
|
/**
|
|
1707
1729
|
* Represents export options for whole presentation.
|
|
@@ -2017,6 +2039,43 @@ exports.GroupingCharacterElement = GroupingCharacterElement;
|
|
|
2017
2039
|
VerticalJustificationEnum[VerticalJustificationEnum["Bottom"] = 'Bottom'] = "Bottom";
|
|
2018
2040
|
})(VerticalJustificationEnum = GroupingCharacterElement.VerticalJustificationEnum || (GroupingCharacterElement.VerticalJustificationEnum = {}));
|
|
2019
2041
|
})(GroupingCharacterElement = exports.GroupingCharacterElement || (exports.GroupingCharacterElement = {}));
|
|
2042
|
+
/**
|
|
2043
|
+
* Slides layouting options.
|
|
2044
|
+
*/
|
|
2045
|
+
class SlidesLayoutOptions {
|
|
2046
|
+
}
|
|
2047
|
+
exports.SlidesLayoutOptions = SlidesLayoutOptions;
|
|
2048
|
+
(function (SlidesLayoutOptions) {
|
|
2049
|
+
let LayoutTypeEnum;
|
|
2050
|
+
(function (LayoutTypeEnum) {
|
|
2051
|
+
LayoutTypeEnum[LayoutTypeEnum["NotesComments"] = 'NotesComments'] = "NotesComments";
|
|
2052
|
+
LayoutTypeEnum[LayoutTypeEnum["Handout"] = 'Handout'] = "Handout";
|
|
2053
|
+
})(LayoutTypeEnum = SlidesLayoutOptions.LayoutTypeEnum || (SlidesLayoutOptions.LayoutTypeEnum = {}));
|
|
2054
|
+
})(SlidesLayoutOptions = exports.SlidesLayoutOptions || (exports.SlidesLayoutOptions = {}));
|
|
2055
|
+
/**
|
|
2056
|
+
* Handout layouting options
|
|
2057
|
+
*/
|
|
2058
|
+
class HandoutLayoutingOptions extends SlidesLayoutOptions {
|
|
2059
|
+
constructor() {
|
|
2060
|
+
super();
|
|
2061
|
+
this.layoutType = HandoutLayoutingOptions.LayoutTypeEnum.Handout;
|
|
2062
|
+
}
|
|
2063
|
+
}
|
|
2064
|
+
exports.HandoutLayoutingOptions = HandoutLayoutingOptions;
|
|
2065
|
+
(function (HandoutLayoutingOptions) {
|
|
2066
|
+
let HandoutEnum;
|
|
2067
|
+
(function (HandoutEnum) {
|
|
2068
|
+
HandoutEnum[HandoutEnum["Handouts1"] = 'Handouts1'] = "Handouts1";
|
|
2069
|
+
HandoutEnum[HandoutEnum["Handouts2"] = 'Handouts2'] = "Handouts2";
|
|
2070
|
+
HandoutEnum[HandoutEnum["Handouts3"] = 'Handouts3'] = "Handouts3";
|
|
2071
|
+
HandoutEnum[HandoutEnum["Handouts4Horizontal"] = 'Handouts4Horizontal'] = "Handouts4Horizontal";
|
|
2072
|
+
HandoutEnum[HandoutEnum["Handouts4Vertical"] = 'Handouts4Vertical'] = "Handouts4Vertical";
|
|
2073
|
+
HandoutEnum[HandoutEnum["Handouts6Horizontal"] = 'Handouts6Horizontal'] = "Handouts6Horizontal";
|
|
2074
|
+
HandoutEnum[HandoutEnum["Handouts6Vertical"] = 'Handouts6Vertical'] = "Handouts6Vertical";
|
|
2075
|
+
HandoutEnum[HandoutEnum["Handouts9Horizontal"] = 'Handouts9Horizontal'] = "Handouts9Horizontal";
|
|
2076
|
+
HandoutEnum[HandoutEnum["Handouts9Vertical"] = 'Handouts9Vertical'] = "Handouts9Vertical";
|
|
2077
|
+
})(HandoutEnum = HandoutLayoutingOptions.HandoutEnum || (HandoutLayoutingOptions.HandoutEnum = {}));
|
|
2078
|
+
})(HandoutLayoutingOptions = exports.HandoutLayoutingOptions || (exports.HandoutLayoutingOptions = {}));
|
|
2020
2079
|
/**
|
|
2021
2080
|
* Represents header/footer info of slide
|
|
2022
2081
|
*/
|
|
@@ -2066,18 +2125,6 @@ exports.HtmlExportOptions = HtmlExportOptions;
|
|
|
2066
2125
|
PicturesCompressionEnum[PicturesCompressionEnum["Dpi72"] = 'Dpi72'] = "Dpi72";
|
|
2067
2126
|
PicturesCompressionEnum[PicturesCompressionEnum["DocumentResolution"] = 'DocumentResolution'] = "DocumentResolution";
|
|
2068
2127
|
})(PicturesCompressionEnum = HtmlExportOptions.PicturesCompressionEnum || (HtmlExportOptions.PicturesCompressionEnum = {}));
|
|
2069
|
-
let NotesPositionEnum;
|
|
2070
|
-
(function (NotesPositionEnum) {
|
|
2071
|
-
NotesPositionEnum[NotesPositionEnum["None"] = 'None'] = "None";
|
|
2072
|
-
NotesPositionEnum[NotesPositionEnum["BottomFull"] = 'BottomFull'] = "BottomFull";
|
|
2073
|
-
NotesPositionEnum[NotesPositionEnum["BottomTruncated"] = 'BottomTruncated'] = "BottomTruncated";
|
|
2074
|
-
})(NotesPositionEnum = HtmlExportOptions.NotesPositionEnum || (HtmlExportOptions.NotesPositionEnum = {}));
|
|
2075
|
-
let CommentsPositionEnum;
|
|
2076
|
-
(function (CommentsPositionEnum) {
|
|
2077
|
-
CommentsPositionEnum[CommentsPositionEnum["None"] = 'None'] = "None";
|
|
2078
|
-
CommentsPositionEnum[CommentsPositionEnum["Bottom"] = 'Bottom'] = "Bottom";
|
|
2079
|
-
CommentsPositionEnum[CommentsPositionEnum["Right"] = 'Right'] = "Right";
|
|
2080
|
-
})(CommentsPositionEnum = HtmlExportOptions.CommentsPositionEnum || (HtmlExportOptions.CommentsPositionEnum = {}));
|
|
2081
2128
|
})(HtmlExportOptions = exports.HtmlExportOptions || (exports.HtmlExportOptions = {}));
|
|
2082
2129
|
/**
|
|
2083
2130
|
* Hyperlink
|
|
@@ -2150,20 +2197,6 @@ class ImageExportOptions extends ImageExportOptionsBase {
|
|
|
2150
2197
|
}
|
|
2151
2198
|
}
|
|
2152
2199
|
exports.ImageExportOptions = ImageExportOptions;
|
|
2153
|
-
(function (ImageExportOptions) {
|
|
2154
|
-
let NotesPositionEnum;
|
|
2155
|
-
(function (NotesPositionEnum) {
|
|
2156
|
-
NotesPositionEnum[NotesPositionEnum["None"] = 'None'] = "None";
|
|
2157
|
-
NotesPositionEnum[NotesPositionEnum["BottomFull"] = 'BottomFull'] = "BottomFull";
|
|
2158
|
-
NotesPositionEnum[NotesPositionEnum["BottomTruncated"] = 'BottomTruncated'] = "BottomTruncated";
|
|
2159
|
-
})(NotesPositionEnum = ImageExportOptions.NotesPositionEnum || (ImageExportOptions.NotesPositionEnum = {}));
|
|
2160
|
-
let CommentsPositionEnum;
|
|
2161
|
-
(function (CommentsPositionEnum) {
|
|
2162
|
-
CommentsPositionEnum[CommentsPositionEnum["None"] = 'None'] = "None";
|
|
2163
|
-
CommentsPositionEnum[CommentsPositionEnum["Bottom"] = 'Bottom'] = "Bottom";
|
|
2164
|
-
CommentsPositionEnum[CommentsPositionEnum["Right"] = 'Right'] = "Right";
|
|
2165
|
-
})(CommentsPositionEnum = ImageExportOptions.CommentsPositionEnum || (ImageExportOptions.CommentsPositionEnum = {}));
|
|
2166
|
-
})(ImageExportOptions = exports.ImageExportOptions || (exports.ImageExportOptions = {}));
|
|
2167
2200
|
/**
|
|
2168
2201
|
* List of images.
|
|
2169
2202
|
*/
|
|
@@ -2562,6 +2595,30 @@ exports.NoFill = NoFill;
|
|
|
2562
2595
|
class NormalViewRestoredProperties {
|
|
2563
2596
|
}
|
|
2564
2597
|
exports.NormalViewRestoredProperties = NormalViewRestoredProperties;
|
|
2598
|
+
/**
|
|
2599
|
+
* Notes & comments layouting options.
|
|
2600
|
+
*/
|
|
2601
|
+
class NotesCommentsLayoutingOptions extends SlidesLayoutOptions {
|
|
2602
|
+
constructor() {
|
|
2603
|
+
super();
|
|
2604
|
+
this.layoutType = NotesCommentsLayoutingOptions.LayoutTypeEnum.NotesComments;
|
|
2605
|
+
}
|
|
2606
|
+
}
|
|
2607
|
+
exports.NotesCommentsLayoutingOptions = NotesCommentsLayoutingOptions;
|
|
2608
|
+
(function (NotesCommentsLayoutingOptions) {
|
|
2609
|
+
let NotesPositionEnum;
|
|
2610
|
+
(function (NotesPositionEnum) {
|
|
2611
|
+
NotesPositionEnum[NotesPositionEnum["None"] = 'None'] = "None";
|
|
2612
|
+
NotesPositionEnum[NotesPositionEnum["BottomFull"] = 'BottomFull'] = "BottomFull";
|
|
2613
|
+
NotesPositionEnum[NotesPositionEnum["BottomTruncated"] = 'BottomTruncated'] = "BottomTruncated";
|
|
2614
|
+
})(NotesPositionEnum = NotesCommentsLayoutingOptions.NotesPositionEnum || (NotesCommentsLayoutingOptions.NotesPositionEnum = {}));
|
|
2615
|
+
let CommentsPositionEnum;
|
|
2616
|
+
(function (CommentsPositionEnum) {
|
|
2617
|
+
CommentsPositionEnum[CommentsPositionEnum["None"] = 'None'] = "None";
|
|
2618
|
+
CommentsPositionEnum[CommentsPositionEnum["Bottom"] = 'Bottom'] = "Bottom";
|
|
2619
|
+
CommentsPositionEnum[CommentsPositionEnum["Right"] = 'Right'] = "Right";
|
|
2620
|
+
})(CommentsPositionEnum = NotesCommentsLayoutingOptions.CommentsPositionEnum || (NotesCommentsLayoutingOptions.CommentsPositionEnum = {}));
|
|
2621
|
+
})(NotesCommentsLayoutingOptions = exports.NotesCommentsLayoutingOptions || (exports.NotesCommentsLayoutingOptions = {}));
|
|
2565
2622
|
/**
|
|
2566
2623
|
* Represents notes slide DTO.
|
|
2567
2624
|
*/
|
|
@@ -3050,18 +3107,6 @@ exports.PdfExportOptions = PdfExportOptions;
|
|
|
3050
3107
|
ComplianceEnum[ComplianceEnum["PdfUa"] = 'PdfUa'] = "PdfUa";
|
|
3051
3108
|
ComplianceEnum[ComplianceEnum["PdfA2u"] = 'PdfA2u'] = "PdfA2u";
|
|
3052
3109
|
})(ComplianceEnum = PdfExportOptions.ComplianceEnum || (PdfExportOptions.ComplianceEnum = {}));
|
|
3053
|
-
let NotesPositionEnum;
|
|
3054
|
-
(function (NotesPositionEnum) {
|
|
3055
|
-
NotesPositionEnum[NotesPositionEnum["None"] = 'None'] = "None";
|
|
3056
|
-
NotesPositionEnum[NotesPositionEnum["BottomFull"] = 'BottomFull'] = "BottomFull";
|
|
3057
|
-
NotesPositionEnum[NotesPositionEnum["BottomTruncated"] = 'BottomTruncated'] = "BottomTruncated";
|
|
3058
|
-
})(NotesPositionEnum = PdfExportOptions.NotesPositionEnum || (PdfExportOptions.NotesPositionEnum = {}));
|
|
3059
|
-
let CommentsPositionEnum;
|
|
3060
|
-
(function (CommentsPositionEnum) {
|
|
3061
|
-
CommentsPositionEnum[CommentsPositionEnum["None"] = 'None'] = "None";
|
|
3062
|
-
CommentsPositionEnum[CommentsPositionEnum["Bottom"] = 'Bottom'] = "Bottom";
|
|
3063
|
-
CommentsPositionEnum[CommentsPositionEnum["Right"] = 'Right'] = "Right";
|
|
3064
|
-
})(CommentsPositionEnum = PdfExportOptions.CommentsPositionEnum || (PdfExportOptions.CommentsPositionEnum = {}));
|
|
3065
3110
|
})(PdfExportOptions = exports.PdfExportOptions || (exports.PdfExportOptions = {}));
|
|
3066
3111
|
/**
|
|
3067
3112
|
* Picture fill.
|
|
@@ -3586,6 +3631,7 @@ exports.Save = Save;
|
|
|
3586
3631
|
FormatEnum[FormatEnum["Fodp"] = 'Fodp'] = "Fodp";
|
|
3587
3632
|
FormatEnum[FormatEnum["Xaml"] = 'Xaml'] = "Xaml";
|
|
3588
3633
|
FormatEnum[FormatEnum["Mpeg4"] = 'Mpeg4'] = "Mpeg4";
|
|
3634
|
+
FormatEnum[FormatEnum["Md"] = 'Md'] = "Md";
|
|
3589
3635
|
})(FormatEnum = Save.FormatEnum || (Save.FormatEnum = {}));
|
|
3590
3636
|
})(Save = exports.Save || (exports.Save = {}));
|
|
3591
3637
|
/**
|
|
@@ -3645,6 +3691,7 @@ exports.SaveSlide = SaveSlide;
|
|
|
3645
3691
|
FormatEnum[FormatEnum["Fodp"] = 'Fodp'] = "Fodp";
|
|
3646
3692
|
FormatEnum[FormatEnum["Xaml"] = 'Xaml'] = "Xaml";
|
|
3647
3693
|
FormatEnum[FormatEnum["Html5"] = 'Html5'] = "Html5";
|
|
3694
|
+
FormatEnum[FormatEnum["Md"] = 'Md'] = "Md";
|
|
3648
3695
|
})(FormatEnum = SaveSlide.FormatEnum || (SaveSlide.FormatEnum = {}));
|
|
3649
3696
|
})(SaveSlide = exports.SaveSlide || (exports.SaveSlide = {}));
|
|
3650
3697
|
/**
|
|
@@ -3951,6 +3998,7 @@ var SlideExportFormat;
|
|
|
3951
3998
|
SlideExportFormat[SlideExportFormat["Fodp"] = 'Fodp'] = "Fodp";
|
|
3952
3999
|
SlideExportFormat[SlideExportFormat["Xaml"] = 'Xaml'] = "Xaml";
|
|
3953
4000
|
SlideExportFormat[SlideExportFormat["Html5"] = 'Html5'] = "Html5";
|
|
4001
|
+
SlideExportFormat[SlideExportFormat["Md"] = 'Md'] = "Md";
|
|
3954
4002
|
})(SlideExportFormat = exports.SlideExportFormat || (exports.SlideExportFormat = {}));
|
|
3955
4003
|
/**
|
|
3956
4004
|
* Represents modern comment of slide
|
|
@@ -4911,18 +4959,17 @@ exports.TiffExportOptions = TiffExportOptions;
|
|
|
4911
4959
|
PixelFormatEnum[PixelFormatEnum["Format24bppRgb"] = 'Format24bppRgb'] = "Format24bppRgb";
|
|
4912
4960
|
PixelFormatEnum[PixelFormatEnum["Format32bppArgb"] = 'Format32bppArgb'] = "Format32bppArgb";
|
|
4913
4961
|
})(PixelFormatEnum = TiffExportOptions.PixelFormatEnum || (TiffExportOptions.PixelFormatEnum = {}));
|
|
4914
|
-
let
|
|
4915
|
-
(function (
|
|
4916
|
-
|
|
4917
|
-
|
|
4918
|
-
|
|
4919
|
-
|
|
4920
|
-
|
|
4921
|
-
|
|
4922
|
-
|
|
4923
|
-
|
|
4924
|
-
|
|
4925
|
-
})(CommentsPositionEnum = TiffExportOptions.CommentsPositionEnum || (TiffExportOptions.CommentsPositionEnum = {}));
|
|
4962
|
+
let BwConversionModeEnum;
|
|
4963
|
+
(function (BwConversionModeEnum) {
|
|
4964
|
+
BwConversionModeEnum[BwConversionModeEnum["Default"] = 'Default'] = "Default";
|
|
4965
|
+
BwConversionModeEnum[BwConversionModeEnum["Dithering"] = 'Dithering'] = "Dithering";
|
|
4966
|
+
BwConversionModeEnum[BwConversionModeEnum["DitheringFloydSteinberg"] = 'DitheringFloydSteinberg'] = "DitheringFloydSteinberg";
|
|
4967
|
+
BwConversionModeEnum[BwConversionModeEnum["Auto"] = 'Auto'] = "Auto";
|
|
4968
|
+
BwConversionModeEnum[BwConversionModeEnum["AutoOtsu"] = 'AutoOtsu'] = "AutoOtsu";
|
|
4969
|
+
BwConversionModeEnum[BwConversionModeEnum["Threshold25"] = 'Threshold25'] = "Threshold25";
|
|
4970
|
+
BwConversionModeEnum[BwConversionModeEnum["Threshold50"] = 'Threshold50'] = "Threshold50";
|
|
4971
|
+
BwConversionModeEnum[BwConversionModeEnum["Threshold75"] = 'Threshold75'] = "Threshold75";
|
|
4972
|
+
})(BwConversionModeEnum = TiffExportOptions.BwConversionModeEnum || (TiffExportOptions.BwConversionModeEnum = {}));
|
|
4926
4973
|
})(TiffExportOptions = exports.TiffExportOptions || (exports.TiffExportOptions = {}));
|
|
4927
4974
|
/**
|
|
4928
4975
|
* Represents a Tint effect.
|