asposeslidescloud 22.4.0 → 22.8.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/model.d.ts CHANGED
@@ -332,6 +332,18 @@ export declare namespace Axis {
332
332
  None
333
333
  }
334
334
  }
335
+ /**
336
+ * Defines axis type.
337
+ */
338
+ /**
339
+ * Defines axis type.
340
+ */
341
+ export declare enum AxisType {
342
+ 'HorizontalAxis',
343
+ 'VerticalAxis',
344
+ 'SecondaryHorizontalAxis',
345
+ 'SecondaryVerticalAxis'
346
+ }
335
347
  /**
336
348
  * Represents blur effect
337
349
  */
@@ -487,6 +499,143 @@ export declare class ChartLinesFormat {
487
499
  */
488
500
  lineFormat?: LineFormat;
489
501
  }
502
+ /**
503
+ * Chart series group. Defines common properties for a group of series.
504
+ */
505
+ export declare class ChartSeriesGroup {
506
+ /**
507
+ * Returns a type of this series group.
508
+ */
509
+ type?: ChartSeriesGroup.TypeEnum;
510
+ /**
511
+ * Specifies the space between bar or column clusters, as a percentage of the bar or column width.
512
+ */
513
+ gapWidth?: number;
514
+ /**
515
+ * Returns or sets the distance, as a percentage of the marker width, between the data series in a 3D chart.
516
+ */
517
+ gapDepth?: number;
518
+ /**
519
+ * Gets or sets the angle of the first pie or doughnut chart slice, in degrees (clockwise from up, from 0 to 360 degrees).
520
+ */
521
+ firstSliceAngle?: number;
522
+ /**
523
+ * Specifies that each data marker in the series has a different color.
524
+ */
525
+ isColorVaried?: boolean;
526
+ /**
527
+ * True if chart has series lines. Applied to stacked bar and OfPie charts.
528
+ */
529
+ hasSeriesLines?: boolean;
530
+ /**
531
+ * Specifies how much bars and columns shall overlap on 2-D charts (from -100 to 100).
532
+ */
533
+ overlap?: number;
534
+ /**
535
+ * Specifies the size of the second pie or bar of a pie-of-pie chart or a bar-of-pie chart, as a percentage of the size of the first pie (can be between 5 and 200 percents).
536
+ */
537
+ secondPieSize?: number;
538
+ /**
539
+ * Specifies a value that shall be used to determine which data points are in the second pie or bar on a pie-of-pie or bar-of-pie chart. Is used together with PieSplitBy property.
540
+ */
541
+ pieSplitPosition?: number;
542
+ /**
543
+ * Specifies how to determine which data points are in the second pie or bar on a pie-of-pie or bar-of-pie chart.
544
+ */
545
+ pieSplitBy?: ChartSeriesGroup.PieSplitByEnum;
546
+ /**
547
+ * Specifies the size of the hole in a doughnut chart (can be between 10 and 90 percents of the size of the plot area.).
548
+ */
549
+ doughnutHoleSize?: number;
550
+ /**
551
+ * Specifies the scale factor for the bubble chart (can be between 0 and 300 percents of the default size). Read/write Int32.
552
+ */
553
+ bubbleSizeScale?: number;
554
+ /**
555
+ * Specifies HiLowLines format. HiLowLines applied with HiLowClose, OpenHiLowClose, VolumeHiLowClose and VolumeOpenHiLowClose chart types.
556
+ */
557
+ hiLowLinesFormat?: ChartLinesFormat;
558
+ /**
559
+ * Specifies how the bubble size values are represented on the bubble chart. Read/write BubbleSizeRepresentationType.
560
+ */
561
+ bubbleSizeRepresentation?: ChartSeriesGroup.BubbleSizeRepresentationEnum;
562
+ }
563
+ export declare namespace ChartSeriesGroup {
564
+ enum TypeEnum {
565
+ BarOfPieChart,
566
+ PieOfPieChart,
567
+ DoughnutChart,
568
+ PieChart,
569
+ AreaChartArea,
570
+ AreaChartPercentsStackedArea,
571
+ AreaChartStackedArea,
572
+ BarChartHorizClustered,
573
+ BarChartHorizStacked,
574
+ BarChartHorizPercentsStacked,
575
+ BarChartVertClustered,
576
+ BarChartVertStacked,
577
+ BarChartVertPercentsStacked,
578
+ LineChartLine,
579
+ LineChartStackedLine,
580
+ LineChartPercentsStackedLine,
581
+ RadarChart,
582
+ FilledRadarChart,
583
+ StockHighLowClose,
584
+ StockOpenHighLowClose,
585
+ StockVolumeHighLowClose,
586
+ StockVolumeOpenHighLowClose,
587
+ ScatterStraightMarker,
588
+ ScatterSmoothMarker,
589
+ AreaChartArea3D,
590
+ AreaChartStackedArea3D,
591
+ AreaChartPercentsStackedArea3D,
592
+ Line3DChart,
593
+ Pie3DChart,
594
+ Bar3DChartVert,
595
+ Bar3DChartVertClustered,
596
+ Bar3DChartVertPercentsStackedColumn3D,
597
+ Bar3DChartVertPercentsStackedCone,
598
+ Bar3DChartVertPercentsStackedCylinder,
599
+ Bar3DChartVertPercentsStackedPyramid,
600
+ Bar3DChartVertStackedColumn3D,
601
+ Bar3DChartVertStackedCone,
602
+ Bar3DChartVertStackedCylinder,
603
+ Bar3DChartVertStackedPyramid,
604
+ Bar3DChartHorizClustered,
605
+ Bar3DChartHorizStackedBar3D,
606
+ Bar3DChartHorizStackedCone,
607
+ Bar3DChartHorizStackedCylinder,
608
+ Bar3DChartHorizStackedPyramid,
609
+ Bar3DChartHorizPercentsStackedBar3D,
610
+ Bar3DChartHorizPercentsStackedCone,
611
+ Bar3DChartHorizPercentsStackedCylinder,
612
+ Bar3DChartHorizPercentsStackedPyramid,
613
+ SurfaceChartContour,
614
+ SurfaceChartWireframeContour,
615
+ SurfaceChartSurface3D,
616
+ SurfaceChartWireframeSurface3D,
617
+ BubbleChart,
618
+ HistogramChart,
619
+ ParetoLineChart,
620
+ BoxAndWhiskerChart,
621
+ WaterfallChart,
622
+ FunnelChart,
623
+ TreemapChart,
624
+ MapChart,
625
+ SunburstChart
626
+ }
627
+ enum PieSplitByEnum {
628
+ Default,
629
+ Custom,
630
+ ByPercentage,
631
+ ByPos,
632
+ ByValue
633
+ }
634
+ enum BubbleSizeRepresentationEnum {
635
+ Area,
636
+ Width
637
+ }
638
+ }
490
639
  /**
491
640
  * Represents chart title
492
641
  */
@@ -533,6 +682,17 @@ export declare namespace ChartWall {
533
682
  NotDefined
534
683
  }
535
684
  }
685
+ /**
686
+ * 3D chart wall type
687
+ */
688
+ /**
689
+ * 3D chart wall type
690
+ */
691
+ export declare enum ChartWallType {
692
+ 'Floor',
693
+ 'SideWall',
694
+ 'BackWall'
695
+ }
536
696
  /**
537
697
  * Slide view properties.
538
698
  */
@@ -1039,6 +1199,19 @@ export declare namespace FillOverlayEffect {
1039
1199
  Screen
1040
1200
  }
1041
1201
  }
1202
+ /**
1203
+ * Represents font info.
1204
+ */
1205
+ export declare class FontData {
1206
+ /**
1207
+ * Font name
1208
+ */
1209
+ fontName?: string;
1210
+ /**
1211
+ * Returns true if font is embedded.
1212
+ */
1213
+ isEmbedded?: boolean;
1214
+ }
1042
1215
  /**
1043
1216
  * Represents font fallback rule.
1044
1217
  */
@@ -1073,6 +1246,15 @@ export declare class FontSet {
1073
1246
  */
1074
1247
  latin?: string;
1075
1248
  }
1249
+ /**
1250
+ * List of fonts data
1251
+ */
1252
+ export declare class FontsData {
1253
+ /**
1254
+ * Fonts data list.
1255
+ */
1256
+ list?: Array<FontData>;
1257
+ }
1076
1258
  /**
1077
1259
  * Represents GeometryPath of the shape
1078
1260
  */
@@ -1222,6 +1404,33 @@ export declare enum ImageExportFormat {
1222
1404
  'Bmp',
1223
1405
  'Tiff'
1224
1406
  }
1407
+ /**
1408
+ * Image transform effect
1409
+ */
1410
+ export declare class ImageTransformEffect {
1411
+ type?: ImageTransformEffect.TypeEnum;
1412
+ }
1413
+ export declare namespace ImageTransformEffect {
1414
+ enum TypeEnum {
1415
+ AlphaBiLevel,
1416
+ AlphaCeiling,
1417
+ AlphaFloor,
1418
+ AlphaInverse,
1419
+ AlphaModulate,
1420
+ AlphaModulateFixed,
1421
+ AlphaReplace,
1422
+ BiLevel,
1423
+ Blur,
1424
+ ColorChange,
1425
+ ColorReplace,
1426
+ Duotone,
1427
+ FillOverlay,
1428
+ GrayScale,
1429
+ Hsl,
1430
+ Luminance,
1431
+ Tint
1432
+ }
1433
+ }
1225
1434
  /**
1226
1435
  * Represents inner shadow effect
1227
1436
  */
@@ -1622,7 +1831,25 @@ export declare enum NotesSlideExportFormat {
1622
1831
  'Png',
1623
1832
  'Gif',
1624
1833
  'Bmp',
1625
- 'Tiff'
1834
+ 'Tiff',
1835
+ 'Html',
1836
+ 'Pdf',
1837
+ 'Xps',
1838
+ 'Pptx',
1839
+ 'Odp',
1840
+ 'Otp',
1841
+ 'Ppt',
1842
+ 'Pps',
1843
+ 'Ppsx',
1844
+ 'Pptm',
1845
+ 'Ppsm',
1846
+ 'Potx',
1847
+ 'Pot',
1848
+ 'Potm',
1849
+ 'Svg',
1850
+ 'Fodp',
1851
+ 'Xaml',
1852
+ 'Html5'
1626
1853
  }
1627
1854
  /**
1628
1855
  * Object exists
@@ -1966,7 +2193,8 @@ export declare class PresentationToMerge {
1966
2193
  export declare namespace PresentationToMerge {
1967
2194
  enum SourceEnum {
1968
2195
  Storage,
1969
- Request
2196
+ Request,
2197
+ Url
1970
2198
  }
1971
2199
  }
1972
2200
  /**
@@ -2135,6 +2363,14 @@ export declare class ResourceUri {
2135
2363
  * Gets or sets the title of link.
2136
2364
  */
2137
2365
  title?: string;
2366
+ /**
2367
+ * Resource slide index.
2368
+ */
2369
+ slideIndex?: number;
2370
+ /**
2371
+ * Resource shape index.
2372
+ */
2373
+ shapeIndex?: number;
2138
2374
  }
2139
2375
  /**
2140
2376
  * A chart series.
@@ -2509,7 +2745,8 @@ export declare enum SlideExportFormat {
2509
2745
  'Potm',
2510
2746
  'Svg',
2511
2747
  'Fodp',
2512
- 'Xaml'
2748
+ 'Xaml',
2749
+ 'Html5'
2513
2750
  }
2514
2751
  /**
2515
2752
  * Smart art node.
@@ -2535,6 +2772,10 @@ export declare class SmartArtNode {
2535
2772
  * Organization chart layout type associated with current node.
2536
2773
  */
2537
2774
  orgChartLayout: SmartArtNode.OrgChartLayoutEnum;
2775
+ /**
2776
+ * Get or sets list to paragraphs list
2777
+ */
2778
+ paragraphs?: ResourceUri;
2538
2779
  }
2539
2780
  export declare namespace SmartArtNode {
2540
2781
  enum OrgChartLayoutEnum {
@@ -2998,6 +3239,74 @@ export declare class AddSlide extends Task {
2998
3239
  }
2999
3240
  export declare namespace AddSlide {
3000
3241
  }
3242
+ /**
3243
+ * Represents an Alpha Bi-Level effect.
3244
+ */
3245
+ export declare class AlphaBiLevelEffect extends ImageTransformEffect {
3246
+ constructor();
3247
+ /**
3248
+ * Returns effect threshold.
3249
+ */
3250
+ threshold: number;
3251
+ }
3252
+ export declare namespace AlphaBiLevelEffect {
3253
+ }
3254
+ /**
3255
+ * Represents an Alpha Ceiling effect.
3256
+ */
3257
+ export declare class AlphaCeilingEffect extends ImageTransformEffect {
3258
+ constructor();
3259
+ }
3260
+ export declare namespace AlphaCeilingEffect {
3261
+ }
3262
+ /**
3263
+ * /// Represents an Alpha Floor effect.
3264
+ */
3265
+ export declare class AlphaFloorEffect extends ImageTransformEffect {
3266
+ constructor();
3267
+ }
3268
+ export declare namespace AlphaFloorEffect {
3269
+ }
3270
+ /**
3271
+ * Represents an Alpha Inverse effect.
3272
+ */
3273
+ export declare class AlphaInverseEffect extends ImageTransformEffect {
3274
+ constructor();
3275
+ }
3276
+ export declare namespace AlphaInverseEffect {
3277
+ }
3278
+ /**
3279
+ * Represents an Alpha Modulate effect.
3280
+ */
3281
+ export declare class AlphaModulateEffect extends ImageTransformEffect {
3282
+ constructor();
3283
+ }
3284
+ export declare namespace AlphaModulateEffect {
3285
+ }
3286
+ /**
3287
+ * Represents an Alpha Modulate Fixed effect.
3288
+ */
3289
+ export declare class AlphaModulateFixedEffect extends ImageTransformEffect {
3290
+ constructor();
3291
+ /**
3292
+ * Returns an amount of effect in percents.
3293
+ */
3294
+ amount: number;
3295
+ }
3296
+ export declare namespace AlphaModulateFixedEffect {
3297
+ }
3298
+ /**
3299
+ * Represents an Alpha Replace Effect effect.
3300
+ */
3301
+ export declare class AlphaReplaceEffect extends ImageTransformEffect {
3302
+ constructor();
3303
+ /**
3304
+ * The new opacity value.
3305
+ */
3306
+ alpha: number;
3307
+ }
3308
+ export declare namespace AlphaReplaceEffect {
3309
+ }
3001
3310
  /**
3002
3311
  * Arc segment of the geometry path
3003
3312
  */
@@ -3100,6 +3409,18 @@ export declare class Base64InputFile extends InputFile {
3100
3409
  }
3101
3410
  export declare namespace Base64InputFile {
3102
3411
  }
3412
+ /**
3413
+ * Represents an BiLevel effect.
3414
+ */
3415
+ export declare class BiLevelEffect extends ImageTransformEffect {
3416
+ constructor();
3417
+ /**
3418
+ * Returns effect threshold.
3419
+ */
3420
+ threshold: number;
3421
+ }
3422
+ export declare namespace BiLevelEffect {
3423
+ }
3103
3424
  /**
3104
3425
  * Specifies an instance of mathematical text that contained within a MathParagraph and starts on its own line.
3105
3426
  */
@@ -3112,6 +3433,22 @@ export declare class BlockElement extends MathElement {
3112
3433
  }
3113
3434
  export declare namespace BlockElement {
3114
3435
  }
3436
+ /**
3437
+ * Represents a Blur effect that is applied to the entire shape, including its fill. All color channels, including alpha, are affected.
3438
+ */
3439
+ export declare class BlurImageEffect extends ImageTransformEffect {
3440
+ constructor();
3441
+ /**
3442
+ * Returns or sets blur radius.
3443
+ */
3444
+ radius: number;
3445
+ /**
3446
+ * Determines whether the bounds of the object should be grown as a result of the blurring. True indicates the bounds are grown while false indicates that they are not.
3447
+ */
3448
+ grow: boolean;
3449
+ }
3450
+ export declare namespace BlurImageEffect {
3451
+ }
3115
3452
  /**
3116
3453
  * Rectangular or some other border around the MathElement.
3117
3454
  */
@@ -3196,6 +3533,34 @@ export declare class ClosePathSegment extends PathSegment {
3196
3533
  }
3197
3534
  export declare namespace ClosePathSegment {
3198
3535
  }
3536
+ /**
3537
+ * Represents a Color Change effect.
3538
+ */
3539
+ export declare class ColorChangeEffect extends ImageTransformEffect {
3540
+ constructor();
3541
+ /**
3542
+ * Color which will be replaced.
3543
+ */
3544
+ fromColor?: string;
3545
+ /**
3546
+ * Color which will replace.
3547
+ */
3548
+ toColor?: string;
3549
+ }
3550
+ export declare namespace ColorChangeEffect {
3551
+ }
3552
+ /**
3553
+ * Represents a Color Replacement effect.
3554
+ */
3555
+ export declare class ColorReplaceEffect extends ImageTransformEffect {
3556
+ constructor();
3557
+ /**
3558
+ * Returns color format which will replace color of every pixel.
3559
+ */
3560
+ color?: string;
3561
+ }
3562
+ export declare namespace ColorReplaceEffect {
3563
+ }
3199
3564
  /**
3200
3565
  * Slide's color scheme DTO
3201
3566
  */
@@ -3376,6 +3741,22 @@ export declare class DocumentProperty extends ResourceBase {
3376
3741
  */
3377
3742
  builtIn: boolean;
3378
3743
  }
3744
+ /**
3745
+ * Represents a Duotone effect.
3746
+ */
3747
+ export declare class DuotoneEffect extends ImageTransformEffect {
3748
+ constructor();
3749
+ /**
3750
+ * Returns target color format for dark pixels.
3751
+ */
3752
+ color1?: string;
3753
+ /**
3754
+ * Returns target color format for light pixels.
3755
+ */
3756
+ color2?: string;
3757
+ }
3758
+ export declare namespace DuotoneEffect {
3759
+ }
3379
3760
  /**
3380
3761
  * File Version
3381
3762
  */
@@ -3390,6 +3771,29 @@ export declare class FileVersion extends StorageFile {
3390
3771
  */
3391
3772
  isLatest: boolean;
3392
3773
  }
3774
+ /**
3775
+ * Represents a Fill Overlay effect. A fill overlay may be used to specify an additional fill for an object and blend the two fills together.
3776
+ */
3777
+ export declare class FillOverlayImageEffect extends ImageTransformEffect {
3778
+ constructor();
3779
+ /**
3780
+ * FillBlendMode.
3781
+ */
3782
+ blend: FillOverlayImageEffect.BlendEnum;
3783
+ /**
3784
+ * Fill format.
3785
+ */
3786
+ fillFormat?: FillFormat;
3787
+ }
3788
+ export declare namespace FillOverlayImageEffect {
3789
+ enum BlendEnum {
3790
+ Darken,
3791
+ Lighten,
3792
+ Multiply,
3793
+ Overlay,
3794
+ Screen
3795
+ }
3796
+ }
3393
3797
  /**
3394
3798
  * Represents font scheme
3395
3799
  */
@@ -3414,21 +3818,21 @@ export declare class FontScheme extends ResourceBase {
3414
3818
  export declare class FormatScheme extends ResourceBase {
3415
3819
  constructor();
3416
3820
  /**
3417
- * Background style links.
3821
+ * Background styles.
3418
3822
  */
3419
- backgroundStyles?: Array<ResourceUri>;
3823
+ backgroundStyles?: Array<FillFormat>;
3420
3824
  /**
3421
- * Effect style links.
3825
+ * Effect styles.
3422
3826
  */
3423
- effectStyles?: Array<ResourceUri>;
3827
+ effectStyles?: Array<EffectFormat>;
3424
3828
  /**
3425
- * Fill style links.
3829
+ * Fill styles.
3426
3830
  */
3427
- fillStyles?: Array<ResourceUri>;
3831
+ fillStyles?: Array<FillFormat>;
3428
3832
  /**
3429
- * Line style links.
3833
+ * Line style.
3430
3834
  */
3431
- lineStyles?: Array<ResourceUri>;
3835
+ lineStyles?: Array<LineFormat>;
3432
3836
  }
3433
3837
  /**
3434
3838
  * Specifies the fraction object, consisting of a numerator and denominator separated by a fraction bar.
@@ -3526,6 +3930,14 @@ export declare namespace GradientFill {
3526
3930
  NotDefined
3527
3931
  }
3528
3932
  }
3933
+ /**
3934
+ * Represents an Gray Scale effect.
3935
+ */
3936
+ export declare class GrayScaleEffect extends ImageTransformEffect {
3937
+ constructor();
3938
+ }
3939
+ export declare namespace GrayScaleEffect {
3940
+ }
3529
3941
  /**
3530
3942
  * Specifies a grouping symbol above or below an expression, usually to highlight the relationship between elements
3531
3943
  */
@@ -3586,6 +3998,26 @@ export declare class HeaderFooter extends ResourceBase {
3586
3998
  */
3587
3999
  isSlideNumberVisible?: boolean;
3588
4000
  }
4001
+ /**
4002
+ * Represents a Hue/Saturation/Luminance effect.
4003
+ */
4004
+ export declare class HslEffect extends ImageTransformEffect {
4005
+ constructor();
4006
+ /**
4007
+ * Hue
4008
+ */
4009
+ hue: number;
4010
+ /**
4011
+ * Saturation
4012
+ */
4013
+ saturation: number;
4014
+ /**
4015
+ * Luminance
4016
+ */
4017
+ luminance: number;
4018
+ }
4019
+ export declare namespace HslEffect {
4020
+ }
3589
4021
  /**
3590
4022
  * Provides options that control how a presentation is saved in Html5 format.
3591
4023
  */
@@ -3844,6 +4276,22 @@ export declare class LineToPathSegment extends PathSegment {
3844
4276
  }
3845
4277
  export declare namespace LineToPathSegment {
3846
4278
  }
4279
+ /**
4280
+ * Represents a Luminance effect.
4281
+ */
4282
+ export declare class LuminanceEffect extends ImageTransformEffect {
4283
+ constructor();
4284
+ /**
4285
+ * Brightness
4286
+ */
4287
+ brightness: number;
4288
+ /**
4289
+ * Contrast
4290
+ */
4291
+ contrast: number;
4292
+ }
4293
+ export declare namespace LuminanceEffect {
4294
+ }
3847
4295
  /**
3848
4296
  * Master slide.
3849
4297
  */
@@ -4070,6 +4518,14 @@ export declare class OneValueChartDataPoint extends DataPoint {
4070
4518
  * Value.
4071
4519
  */
4072
4520
  value: number;
4521
+ /**
4522
+ * SetAsTotal. Applied to Waterfall data points only.
4523
+ */
4524
+ setAsTotal?: boolean;
4525
+ /**
4526
+ * True if the data point shall invert its colors if the value is negative. Applies to bar, column and bubble series.
4527
+ */
4528
+ invertIfNegative?: boolean;
4073
4529
  }
4074
4530
  /**
4075
4531
  * One value series.
@@ -4084,8 +4540,36 @@ export declare class OneValueSeries extends Series {
4084
4540
  * The number format for the series values.
4085
4541
  */
4086
4542
  numberFormatOfValues?: string;
4543
+ /**
4544
+ * True if inner points are shown. Applied to Waterfall series only.
4545
+ */
4546
+ showConnectorLines?: boolean;
4547
+ /**
4548
+ * Quartile method. Applied to BoxAndWhisker series only.
4549
+ */
4550
+ quartileMethod?: OneValueSeries.QuartileMethodEnum;
4551
+ /**
4552
+ * True if inner points are shown. Applied to BoxAndWhisker series only.
4553
+ */
4554
+ showInnerPoints?: boolean;
4555
+ /**
4556
+ * True if mean line is shown. Applied to BoxAndWhisker series only.
4557
+ */
4558
+ showMeanLine?: boolean;
4559
+ /**
4560
+ * True if mean markers are shown. Applied to BoxAndWhisker series only.
4561
+ */
4562
+ showMeanMarkers?: boolean;
4563
+ /**
4564
+ * True if outlier points are shown. Applied to BoxAndWhisker series only.
4565
+ */
4566
+ showOutlierPoints?: boolean;
4087
4567
  }
4088
4568
  export declare namespace OneValueSeries {
4569
+ enum QuartileMethodEnum {
4570
+ Exclusive,
4571
+ Inclusive
4572
+ }
4089
4573
  }
4090
4574
  /**
4091
4575
  * Represents paragraph resource
@@ -4532,6 +5016,10 @@ export declare class PictureFill extends FillFormat {
4532
5016
  * Fill mode.
4533
5017
  */
4534
5018
  pictureFillMode: PictureFill.PictureFillModeEnum;
5019
+ /**
5020
+ * Image transform effects.
5021
+ */
5022
+ imageTransformList?: Array<ImageTransformEffect>;
4535
5023
  }
4536
5024
  export declare namespace PictureFill {
4537
5025
  enum PictureFillModeEnum {
@@ -4826,9 +5314,9 @@ export declare class PptxExportOptions extends ExportOptions {
4826
5314
  }
4827
5315
  export declare namespace PptxExportOptions {
4828
5316
  enum ConformanceEnum {
4829
- Ecma3762006,
4830
- Iso295002008Transitional,
4831
- Iso295002008Strict
5317
+ Ecma376,
5318
+ Iso29500Transitional,
5319
+ Iso29500Strict
4832
5320
  }
4833
5321
  }
4834
5322
  /**
@@ -5157,7 +5645,8 @@ export declare namespace SaveSlide {
5157
5645
  Potm,
5158
5646
  Svg,
5159
5647
  Fodp,
5160
- Xaml
5648
+ Xaml,
5649
+ Html5
5161
5650
  }
5162
5651
  }
5163
5652
  /**
@@ -5758,6 +6247,22 @@ export declare class Theme extends ResourceBase {
5758
6247
  */
5759
6248
  formatScheme?: ResourceUri;
5760
6249
  }
6250
+ /**
6251
+ * Represents a Tint effect.
6252
+ */
6253
+ export declare class TintEffect extends ImageTransformEffect {
6254
+ constructor();
6255
+ /**
6256
+ * Hue
6257
+ */
6258
+ hue: number;
6259
+ /**
6260
+ * Amount
6261
+ */
6262
+ amount: number;
6263
+ }
6264
+ export declare namespace TintEffect {
6265
+ }
5761
6266
  /**
5762
6267
  * Update background task.
5763
6268
  */
@@ -5966,38 +6471,6 @@ export declare class XpsExportOptions extends ExportOptions {
5966
6471
  */
5967
6472
  drawSlidesFrame?: boolean;
5968
6473
  }
5969
- /**
5970
- * One value series.
5971
- */
5972
- export declare class BoxAndWhiskerSeries extends OneValueSeries {
5973
- constructor();
5974
- /**
5975
- * Quartile method.
5976
- */
5977
- quartileMethod?: BoxAndWhiskerSeries.QuartileMethodEnum;
5978
- /**
5979
- * True if inner points are shown.
5980
- */
5981
- showInnerPoints?: boolean;
5982
- /**
5983
- * True if mean line is shown.
5984
- */
5985
- showMeanLine?: boolean;
5986
- /**
5987
- * True if mean markers are shown.
5988
- */
5989
- showMeanMarkers?: boolean;
5990
- /**
5991
- * True if outlier points are shown.
5992
- */
5993
- showOutlierPoints?: boolean;
5994
- }
5995
- export declare namespace BoxAndWhiskerSeries {
5996
- enum QuartileMethodEnum {
5997
- Exclusive,
5998
- Inclusive
5999
- }
6000
- }
6001
6474
  /**
6002
6475
  * Bubble chart data point.
6003
6476
  */
@@ -6073,6 +6546,14 @@ export declare class Chart extends ShapeBase {
6073
6546
  * Gets or sets the plot area.
6074
6547
  */
6075
6548
  plotArea?: PlotArea;
6549
+ /**
6550
+ * Specifies the chart area shall have rounded corners.
6551
+ */
6552
+ hasRoundedCorners?: boolean;
6553
+ /**
6554
+ * Gets groups of series.
6555
+ */
6556
+ seriesGroups?: Array<ChartSeriesGroup>;
6076
6557
  }
6077
6558
  export declare namespace Chart {
6078
6559
  enum ChartTypeEnum {
@@ -6952,28 +7433,6 @@ export declare namespace TiffExportOptions {
6952
7433
  Right
6953
7434
  }
6954
7435
  }
6955
- /**
6956
- * One value chart data point.
6957
- */
6958
- export declare class WaterfallChartDataPoint extends OneValueChartDataPoint {
6959
- constructor();
6960
- /**
6961
- * Value.
6962
- */
6963
- setAsTotal?: boolean;
6964
- }
6965
- /**
6966
- * One value series.
6967
- */
6968
- export declare class WaterfallSeries extends OneValueSeries {
6969
- constructor();
6970
- /**
6971
- * True if inner points are shown.
6972
- */
6973
- showConnectorLines?: boolean;
6974
- }
6975
- export declare namespace WaterfallSeries {
6976
- }
6977
7436
  /**
6978
7437
  * Zoom object.
6979
7438
  */
@@ -7189,6 +7648,10 @@ export declare class VideoFrame extends GeometryShape {
7189
7648
  * Video data encoded in base64.
7190
7649
  */
7191
7650
  base64Data?: string;
7651
+ /**
7652
+ * Picture fill format.
7653
+ */
7654
+ pictureFillFormat?: PictureFill;
7192
7655
  }
7193
7656
  export declare namespace VideoFrame {
7194
7657
  enum PlayModeEnum {