@sapui5/types 1.120.11 → 1.120.13

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.
Files changed (55) hide show
  1. package/LICENSE.txt +13 -10
  2. package/README.md +1 -1
  3. package/package.json +1 -1
  4. package/types/sap.chart.d.ts +58 -6
  5. package/types/sap.esh.search.ui.d.ts +16 -2
  6. package/types/sap.f.d.ts +372 -54
  7. package/types/sap.fe.core.d.ts +11 -3
  8. package/types/sap.fe.macros.d.ts +96 -12
  9. package/types/sap.fe.navigation.d.ts +1 -1
  10. package/types/sap.fe.placeholder.d.ts +1 -1
  11. package/types/sap.fe.templates.d.ts +1 -1
  12. package/types/sap.fe.test.d.ts +1 -1
  13. package/types/sap.fe.tools.d.ts +1 -1
  14. package/types/sap.gantt.d.ts +1001 -139
  15. package/types/sap.insights.d.ts +4 -2
  16. package/types/sap.m.d.ts +3123 -276
  17. package/types/sap.makit.d.ts +115 -14
  18. package/types/sap.me.d.ts +84 -7
  19. package/types/sap.ndc.d.ts +22 -2
  20. package/types/sap.ovp.d.ts +1 -1
  21. package/types/sap.sac.df.d.ts +294 -44
  22. package/types/sap.suite.ui.commons.d.ts +1148 -118
  23. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  24. package/types/sap.suite.ui.microchart.d.ts +184 -28
  25. package/types/sap.tnt.d.ts +40 -8
  26. package/types/sap.ui.codeeditor.d.ts +16 -2
  27. package/types/sap.ui.commons.d.ts +756 -90
  28. package/types/sap.ui.comp.d.ts +884 -50
  29. package/types/sap.ui.core.d.ts +1112 -135
  30. package/types/sap.ui.dt.d.ts +1 -1
  31. package/types/sap.ui.export.d.ts +19 -4
  32. package/types/sap.ui.fl.d.ts +44 -3
  33. package/types/sap.ui.integration.d.ts +144 -6
  34. package/types/sap.ui.layout.d.ts +166 -41
  35. package/types/sap.ui.mdc.d.ts +430 -38
  36. package/types/sap.ui.richtexteditor.d.ts +28 -2
  37. package/types/sap.ui.rta.d.ts +1 -1
  38. package/types/sap.ui.suite.d.ts +27 -3
  39. package/types/sap.ui.support.d.ts +1 -1
  40. package/types/sap.ui.table.d.ts +222 -19
  41. package/types/sap.ui.testrecorder.d.ts +1 -1
  42. package/types/sap.ui.unified.d.ts +431 -35
  43. package/types/sap.ui.ux3.d.ts +524 -31
  44. package/types/sap.ui.vbm.d.ts +6427 -3308
  45. package/types/sap.ui.webc.common.d.ts +7 -1
  46. package/types/sap.ui.webc.fiori.d.ts +351 -29
  47. package/types/sap.ui.webc.main.d.ts +1035 -83
  48. package/types/sap.uiext.inbox.d.ts +124 -13
  49. package/types/sap.ushell.d.ts +147 -12
  50. package/types/sap.ushell_abap.d.ts +1 -1
  51. package/types/sap.uxap.d.ts +118 -18
  52. package/types/sap.viz.d.ts +2619 -130
  53. package/types/sap.zen.commons.d.ts +104 -23
  54. package/types/sap.zen.crosstab.d.ts +96 -16
  55. package/types/sap.zen.dsh.d.ts +255 -149
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.3
1
+ // For Library Version: 1.120.4
2
2
 
3
3
  declare module "sap/gantt/library" {
4
4
  import ChartScheme from "sap/gantt/config/ChartScheme";
@@ -1475,7 +1475,11 @@ declare module "sap/gantt/AdhocLine" {
1475
1475
  sTimeStamp: string
1476
1476
  ): this;
1477
1477
  }
1478
-
1478
+ /**
1479
+ * Describes the settings that can be provided to the AdhocLine constructor.
1480
+ *
1481
+ * @deprecated (since 1.84) - {@link sap.gantt.simple.AdhocLine} should be used instead.
1482
+ */
1479
1483
  export interface $AdhocLineSettings extends $ElementSettings {
1480
1484
  /**
1481
1485
  * Standard SVG 'stroke' attribute. You can provide the stroke attribute with HTML colors and the URL reference
@@ -2278,7 +2282,9 @@ declare module "sap/gantt/axistime/AxisTimeStrategyBase" {
2278
2282
  iZoomFactor: number
2279
2283
  ): void;
2280
2284
  }
2281
-
2285
+ /**
2286
+ * Describes the settings that can be provided to the AxisTimeStrategyBase constructor.
2287
+ */
2282
2288
  export interface $AxisTimeStrategyBaseSettings extends $ElementSettings {
2283
2289
  /**
2284
2290
  * Defines granularity levels, labelling formats, and range of the time line.
@@ -2524,7 +2530,9 @@ declare module "sap/gantt/axistime/FullScreenStrategy" {
2524
2530
  */
2525
2531
  static getMetadata(): ElementMetadata;
2526
2532
  }
2527
-
2533
+ /**
2534
+ * Describes the settings that can be provided to the FullScreenStrategy constructor.
2535
+ */
2528
2536
  export interface $FullScreenStrategySettings
2529
2537
  extends $AxisTimeStrategyBaseSettings {}
2530
2538
  }
@@ -2614,7 +2622,9 @@ declare module "sap/gantt/axistime/ProportionZoomStrategy" {
2614
2622
  */
2615
2623
  static getMetadata(): ElementMetadata;
2616
2624
  }
2617
-
2625
+ /**
2626
+ * Describes the settings that can be provided to the ProportionZoomStrategy constructor.
2627
+ */
2618
2628
  export interface $ProportionZoomStrategySettings
2619
2629
  extends $AxisTimeStrategyBaseSettings {}
2620
2630
  }
@@ -2799,7 +2809,9 @@ declare module "sap/gantt/axistime/StepwiseZoomStrategy" {
2799
2809
  oStopInfo: object
2800
2810
  ): this;
2801
2811
  }
2802
-
2812
+ /**
2813
+ * Describes the settings that can be provided to the StepwiseZoomStrategy constructor.
2814
+ */
2803
2815
  export interface $StepwiseZoomStrategySettings
2804
2816
  extends $AxisTimeStrategyBaseSettings {}
2805
2817
  }
@@ -2912,7 +2924,11 @@ declare module "sap/gantt/config/BirdEyeGroup" {
2912
2924
  sBirdEyeRange?: string
2913
2925
  ): this;
2914
2926
  }
2915
-
2927
+ /**
2928
+ * Describes the settings that can be provided to the BirdEyeGroup constructor.
2929
+ *
2930
+ * @deprecated (since 1.64)
2931
+ */
2916
2932
  export interface $BirdEyeGroupSettings extends $ToolbarGroupSettings {
2917
2933
  /**
2918
2934
  * Specify the data range that bird eye use to calculte the suitable visible horizon By default the bird
@@ -3251,7 +3267,11 @@ declare module "sap/gantt/config/ChartScheme" {
3251
3267
  sShapeKeys?: string[]
3252
3268
  ): this;
3253
3269
  }
3254
-
3270
+ /**
3271
+ * Describes the settings that can be provided to the ChartScheme constructor.
3272
+ *
3273
+ * @deprecated (since 1.64)
3274
+ */
3255
3275
  export interface $ChartSchemeSettings extends $ElementSettings {
3256
3276
  /**
3257
3277
  * Unique key of the Chart scheme
@@ -3427,7 +3447,11 @@ declare module "sap/gantt/config/ColumnAttribute" {
3427
3447
  sObjectTypeKey?: string
3428
3448
  ): this;
3429
3449
  }
3430
-
3450
+ /**
3451
+ * Describes the settings that can be provided to the ColumnAttribute constructor.
3452
+ *
3453
+ * @deprecated (since 1.64)
3454
+ */
3431
3455
  export interface $ColumnAttributeSettings extends $ElementSettings {
3432
3456
  /**
3433
3457
  * Key of {@link sap.gantt.config.ObjectType}
@@ -3723,7 +3747,11 @@ declare module "sap/gantt/config/ContainerLayout" {
3723
3747
  sToolbarSchemeKey?: string
3724
3748
  ): this;
3725
3749
  }
3726
-
3750
+ /**
3751
+ * Describes the settings that can be provided to the ContainerLayout constructor.
3752
+ *
3753
+ * @deprecated (since 1.64)
3754
+ */
3727
3755
  export interface $ContainerLayoutSettings extends $ElementSettings {
3728
3756
  /**
3729
3757
  * Unique key of the container layout
@@ -3921,7 +3949,11 @@ declare module "sap/gantt/config/ExpandChart" {
3921
3949
  bIsExpand?: boolean
3922
3950
  ): this;
3923
3951
  }
3924
-
3952
+ /**
3953
+ * Describes the settings that can be provided to the ExpandChart constructor.
3954
+ *
3955
+ * @deprecated (since 1.64)
3956
+ */
3925
3957
  export interface $ExpandChartSettings extends $ElementSettings {
3926
3958
  /**
3927
3959
  * URL of the icon of the expand chart
@@ -4101,7 +4133,11 @@ declare module "sap/gantt/config/ExpandChartGroup" {
4101
4133
  bShowArrowText: boolean
4102
4134
  ): this;
4103
4135
  }
4104
-
4136
+ /**
4137
+ * Describes the settings that can be provided to the ExpandChartGroup constructor.
4138
+ *
4139
+ * @deprecated (since 1.64)
4140
+ */
4105
4141
  export interface $ExpandChartGroupSettings extends $ToolbarGroupSettings {
4106
4142
  /**
4107
4143
  * Array of {@link sap.gantt.config.ExpandChart}
@@ -4283,7 +4319,11 @@ declare module "sap/gantt/config/GanttChartLayout" {
4283
4319
  sHierarchyKey?: string
4284
4320
  ): this;
4285
4321
  }
4286
-
4322
+ /**
4323
+ * Describes the settings that can be provided to the GanttChartLayout constructor.
4324
+ *
4325
+ * @deprecated (since 1.64)
4326
+ */
4287
4327
  export interface $GanttChartLayoutSettings extends $ElementSettings {
4288
4328
  /**
4289
4329
  * CSS Size of the Gantt chart. See {@link sap.ui.core.CSSSize}
@@ -4562,7 +4602,11 @@ declare module "sap/gantt/config/Hierarchy" {
4562
4602
  sToolbarSchemeKey?: string
4563
4603
  ): this;
4564
4604
  }
4565
-
4605
+ /**
4606
+ * Describes the settings that can be provided to the Hierarchy constructor.
4607
+ *
4608
+ * @deprecated (since 1.64)
4609
+ */
4566
4610
  export interface $HierarchySettings extends $ElementSettings {
4567
4611
  /**
4568
4612
  * Unique key of the hierarchy
@@ -4890,7 +4934,11 @@ declare module "sap/gantt/config/HierarchyColumn" {
4890
4934
  sWidth: CSSSize
4891
4935
  ): this;
4892
4936
  }
4893
-
4937
+ /**
4938
+ * Describes the settings that can be provided to the HierarchyColumn constructor.
4939
+ *
4940
+ * @deprecated (since 1.64)
4941
+ */
4894
4942
  export interface $HierarchyColumnSettings extends $ElementSettings {
4895
4943
  /**
4896
4944
  * Unique key of the hierarchy column
@@ -5047,7 +5095,11 @@ declare module "sap/gantt/config/LayoutGroup" {
5047
5095
  bEnableRichStyle?: boolean
5048
5096
  ): this;
5049
5097
  }
5050
-
5098
+ /**
5099
+ * Describes the settings that can be provided to the LayoutGroup constructor.
5100
+ *
5101
+ * @deprecated (since 1.64)
5102
+ */
5051
5103
  export interface $LayoutGroupSettings extends $ToolbarGroupSettings {
5052
5104
  /**
5053
5105
  * Determines the button type. See {@link sap.m.ButtonType} true stands for {@link sap.m.ButtonType.Emphasized }
@@ -5245,7 +5297,9 @@ declare module "sap/gantt/config/Locale" {
5245
5297
  sUtcsign?: string
5246
5298
  ): this;
5247
5299
  }
5248
-
5300
+ /**
5301
+ * Describes the settings that can be provided to the Locale constructor.
5302
+ */
5249
5303
  export interface $LocaleSettings extends $ElementSettings {
5250
5304
  /**
5251
5305
  * Custom timezone for Gantt. The configured time zone is considered as the default time zone for the locale,
@@ -5456,7 +5510,11 @@ declare module "sap/gantt/config/Mode" {
5456
5510
  sText?: string
5457
5511
  ): this;
5458
5512
  }
5459
-
5513
+ /**
5514
+ * Describes the settings that can be provided to the Mode constructor.
5515
+ *
5516
+ * @deprecated (since 1.64)
5517
+ */
5460
5518
  export interface $ModeSettings extends $ElementSettings {
5461
5519
  /**
5462
5520
  * Unique key of the mode
@@ -5588,7 +5646,11 @@ declare module "sap/gantt/config/ModeGroup" {
5588
5646
  sModeKeys?: string[]
5589
5647
  ): this;
5590
5648
  }
5591
-
5649
+ /**
5650
+ * Describes the settings that can be provided to the ModeGroup constructor.
5651
+ *
5652
+ * @deprecated (since 1.64)
5653
+ */
5592
5654
  export interface $ModeGroupSettings extends $ToolbarGroupSettings {
5593
5655
  /**
5594
5656
  * Array of key of {@link sap.gantt.config.Mode}
@@ -5781,7 +5843,11 @@ declare module "sap/gantt/config/ObjectType" {
5781
5843
  sMainChartSchemeKey?: string
5782
5844
  ): this;
5783
5845
  }
5784
-
5846
+ /**
5847
+ * Describes the settings that can be provided to the ObjectType constructor.
5848
+ *
5849
+ * @deprecated (since 1.64)
5850
+ */
5785
5851
  export interface $ObjectTypeSettings extends $ElementSettings {
5786
5852
  /**
5787
5853
  * Unique Key of the object type
@@ -5918,7 +5984,11 @@ declare module "sap/gantt/config/SettingGroup" {
5918
5984
  sItems?: object[]
5919
5985
  ): this;
5920
5986
  }
5921
-
5987
+ /**
5988
+ * Describes the settings that can be provided to the SettingGroup constructor.
5989
+ *
5990
+ * @deprecated (since 1.64)
5991
+ */
5922
5992
  export interface $SettingGroupSettings extends $ToolbarGroupSettings {
5923
5993
  /**
5924
5994
  * Association to the setting item. See {@link sap.gantt.config.SettingItem} We recommend that you set the
@@ -6083,7 +6153,9 @@ declare module "sap/gantt/config/SettingItem" {
6083
6153
  sKey?: string
6084
6154
  ): this;
6085
6155
  }
6086
-
6156
+ /**
6157
+ * Describes the settings that can be provided to the SettingItem constructor.
6158
+ */
6087
6159
  export interface $SettingItemSettings extends $ElementSettings {
6088
6160
  /**
6089
6161
  * Indicates whether the checkbox is selected or not
@@ -6559,7 +6631,11 @@ declare module "sap/gantt/config/Shape" {
6559
6631
  sSwitchOfCheckBox?: string
6560
6632
  ): this;
6561
6633
  }
6562
-
6634
+ /**
6635
+ * Describes the settings that can be provided to the Shape constructor.
6636
+ *
6637
+ * @deprecated (since 1.64)
6638
+ */
6563
6639
  export interface $ShapeSettings extends $ElementSettings {
6564
6640
  /**
6565
6641
  * Primary key of the shape configuration. This property can be referenced from other configuration object,
@@ -6924,7 +7000,11 @@ declare module "sap/gantt/config/TimeAxis" {
6924
7000
  oZoomStrategy?: object
6925
7001
  ): this;
6926
7002
  }
6927
-
7003
+ /**
7004
+ * Describes the settings that can be provided to the TimeAxis constructor.
7005
+ *
7006
+ * @deprecated (since 1.44) - replaced by sap.gantt.axistime.AxisTimeStrategy
7007
+ */
6928
7008
  export interface $TimeAxisSettings extends $ElementSettings {
6929
7009
  /**
6930
7010
  * Whole time horizon of the Gantt chart We recommend that you set the type of this argument to `sap.gantt.config.TimeHorizon`.
@@ -7116,7 +7196,9 @@ declare module "sap/gantt/config/TimeHorizon" {
7116
7196
  sStartTime?: string
7117
7197
  ): this;
7118
7198
  }
7119
-
7199
+ /**
7200
+ * Describes the settings that can be provided to the TimeHorizon constructor.
7201
+ */
7120
7202
  export interface $TimeHorizonSettings extends $ElementSettings {
7121
7203
  /**
7122
7204
  * Start time of the time horizon in this format: YYYYMMDDHHMMSS. If the type of `startTime` is `Object`,
@@ -7364,7 +7446,11 @@ declare module "sap/gantt/config/TimeZoomGroup" {
7364
7446
  | keyof typeof config.ZoomControlType
7365
7447
  ): this;
7366
7448
  }
7367
-
7449
+ /**
7450
+ * Describes the settings that can be provided to the TimeZoomGroup constructor.
7451
+ *
7452
+ * @deprecated (since 1.64)
7453
+ */
7368
7454
  export interface $TimeZoomGroupSettings extends $ToolbarGroupSettings {
7369
7455
  /**
7370
7456
  * Enables the Slider control for the time zooming function.
@@ -7569,7 +7655,11 @@ declare module "sap/gantt/config/ToolbarGroup" {
7569
7655
  sPosition?: string
7570
7656
  ): this;
7571
7657
  }
7572
-
7658
+ /**
7659
+ * Describes the settings that can be provided to the ToolbarGroup constructor.
7660
+ *
7661
+ * @deprecated (since 1.64)
7662
+ */
7573
7663
  export interface $ToolbarGroupSettings extends $ElementSettings {
7574
7664
  /**
7575
7665
  * Specifies the position of the toolbar group. Note that all toolbar groups must be put into the Gantt
@@ -7995,7 +8085,11 @@ declare module "sap/gantt/config/ToolbarScheme" {
7995
8085
  sToolbarDesign?: string
7996
8086
  ): this;
7997
8087
  }
7998
-
8088
+ /**
8089
+ * Describes the settings that can be provided to the ToolbarScheme constructor.
8090
+ *
8091
+ * @deprecated (since 1.64)
8092
+ */
7999
8093
  export interface $ToolbarSchemeSettings extends $ElementSettings {
8000
8094
  /**
8001
8095
  * Unique key of the toolbar scheme
@@ -8211,7 +8305,11 @@ declare module "sap/gantt/control/Cell" {
8211
8305
  oColumnConfig: object
8212
8306
  ): this;
8213
8307
  }
8214
-
8308
+ /**
8309
+ * Describes the settings that can be provided to the Cell constructor.
8310
+ *
8311
+ * @deprecated (since 1.64)
8312
+ */
8215
8313
  export interface $CellSettings extends $ControlSettings {
8216
8314
  /**
8217
8315
  * Cell callback function that returns the specific control instance which is rendered in a table.
@@ -8468,7 +8566,9 @@ declare module "sap/gantt/def/cal/Calendar" {
8468
8566
  */
8469
8567
  unbindTimeIntervals(): this;
8470
8568
  }
8471
-
8569
+ /**
8570
+ * Describes the settings that can be provided to the Calendar constructor.
8571
+ */
8472
8572
  export interface $CalendarSettings extends $DefBaseSettings {
8473
8573
  /**
8474
8574
  * Key of the calendar. Note that this value is used to generate the referencing string of the calendar
@@ -9110,7 +9210,9 @@ declare module "sap/gantt/def/cal/CalendarDefs" {
9110
9210
  */
9111
9211
  unbindDefs5(): this;
9112
9212
  }
9113
-
9213
+ /**
9214
+ * Describes the settings that can be provided to the CalendarDefs constructor.
9215
+ */
9114
9216
  export interface $CalendarDefsSettings extends $SvgDefsSettings {
9115
9217
  /**
9116
9218
  * @since 1.91
@@ -9267,7 +9369,9 @@ declare module "sap/gantt/def/cal/TimeInterval" {
9267
9369
  sStartTime?: string
9268
9370
  ): this;
9269
9371
  }
9270
-
9372
+ /**
9373
+ * Describes the settings that can be provided to the TimeInterval constructor.
9374
+ */
9271
9375
  export interface $TimeIntervalSettings extends $DefBaseSettings {
9272
9376
  /**
9273
9377
  * Start Time of timeHorizon. Format: YYYYMMDDHHMMSS. If the type of startTime is object, the value is converted
@@ -9422,7 +9526,9 @@ declare module "sap/gantt/def/DefBase" {
9422
9526
  sRefString?: string
9423
9527
  ): this;
9424
9528
  }
9425
-
9529
+ /**
9530
+ * Describes the settings that can be provided to the DefBase constructor.
9531
+ */
9426
9532
  export interface $DefBaseSettings extends $ElementSettings {
9427
9533
  /**
9428
9534
  * Definition string. Subclasses can implement their own getters of this property to override the one in
@@ -9614,7 +9720,9 @@ declare module "sap/gantt/def/filter/MorphologyFilter" {
9614
9720
  sRadius?: string
9615
9721
  ): this;
9616
9722
  }
9617
-
9723
+ /**
9724
+ * Describes the settings that can be provided to the MorphologyFilter constructor.
9725
+ */
9618
9726
  export interface $MorphologyFilterSettings extends $DefBaseSettings {
9619
9727
  /**
9620
9728
  * Atrribute of SVG tag 'feMorphology'. Possible values are in {@link sap.gantt.def.filter.MorphologyOperator}.
@@ -9906,7 +10014,9 @@ declare module "sap/gantt/def/gradient/LinearGradient" {
9906
10014
  sY2?: string
9907
10015
  ): this;
9908
10016
  }
9909
-
10017
+ /**
10018
+ * Describes the settings that can be provided to the LinearGradient constructor.
10019
+ */
9910
10020
  export interface $LinearGradientSettings extends $DefBaseSettings {
9911
10021
  /**
9912
10022
  * Attribute 'x1' of SVG tag 'linearGradient'.
@@ -10236,7 +10346,9 @@ declare module "sap/gantt/def/gradient/RadialGradient" {
10236
10346
  fR?: float
10237
10347
  ): this;
10238
10348
  }
10239
-
10349
+ /**
10350
+ * Describes the settings that can be provided to the RadialGradient constructor.
10351
+ */
10240
10352
  export interface $RadialGradientSettings extends $DefBaseSettings {
10241
10353
  /**
10242
10354
  * Attribute 'cx' of SVG tag 'radialGradient'.
@@ -10404,7 +10516,9 @@ declare module "sap/gantt/def/gradient/Stop" {
10404
10516
  sStopColor?: ValueSVGPaintServer
10405
10517
  ): this;
10406
10518
  }
10407
-
10519
+ /**
10520
+ * Describes the settings that can be provided to the Stop constructor.
10521
+ */
10408
10522
  export interface $StopSettings extends $DefBaseSettings {
10409
10523
  /**
10410
10524
  * Attribute 'offset' of SVG tag 'stop'.
@@ -10583,7 +10697,9 @@ declare module "sap/gantt/def/pattern/BackSlashPattern" {
10583
10697
  iStrokeWidth?: int
10584
10698
  ): this;
10585
10699
  }
10586
-
10700
+ /**
10701
+ * Describes the settings that can be provided to the BackSlashPattern constructor.
10702
+ */
10587
10703
  export interface $BackSlashPatternSettings extends $PatternBaseSettings {
10588
10704
  /**
10589
10705
  * Value of the d attribute in Path element. The value is affected by property `tileWidth` and `tileHeight`.
@@ -10800,7 +10916,9 @@ declare module "sap/gantt/def/pattern/PatternBase" {
10800
10916
  iTileWidth?: int
10801
10917
  ): this;
10802
10918
  }
10803
-
10919
+ /**
10920
+ * Describes the settings that can be provided to the PatternBase constructor.
10921
+ */
10804
10922
  export interface $PatternBaseSettings extends $DefBaseSettings {
10805
10923
  /**
10806
10924
  * Width of the pattern tile.
@@ -10989,7 +11107,9 @@ declare module "sap/gantt/def/pattern/SlashPattern" {
10989
11107
  iStrokeWidth?: int
10990
11108
  ): this;
10991
11109
  }
10992
-
11110
+ /**
11111
+ * Describes the settings that can be provided to the SlashPattern constructor.
11112
+ */
10993
11113
  export interface $SlashPatternSettings extends $PatternBaseSettings {
10994
11114
  /**
10995
11115
  * Value of d attribute in Path element. The value is influenced by property `tileWidth` and `tileHeight`.
@@ -11199,7 +11319,9 @@ declare module "sap/gantt/def/SvgDefs" {
11199
11319
  */
11200
11320
  unbindDefs(): this;
11201
11321
  }
11202
-
11322
+ /**
11323
+ * Describes the settings that can be provided to the SvgDefs constructor.
11324
+ */
11203
11325
  export interface $SvgDefsSettings extends $ManagedObjectSettings {
11204
11326
  /**
11205
11327
  * SVG definition instances.
@@ -11320,7 +11442,11 @@ declare module "sap/gantt/GanttChart" {
11320
11442
  iRowIndex: int
11321
11443
  ): GanttChart;
11322
11444
  }
11323
-
11445
+ /**
11446
+ * Describes the settings that can be provided to the GanttChart constructor.
11447
+ *
11448
+ * @deprecated (since 1.64) - {@link sap.gantt.simple.GanttChartWithTable} should be used instead.
11449
+ */
11324
11450
  export interface $GanttChartSettings extends $GanttChartBaseSettings {}
11325
11451
  }
11326
11452
 
@@ -14546,7 +14672,11 @@ declare module "sap/gantt/GanttChartBase" {
14546
14672
  */
14547
14673
  unbindRows(): this;
14548
14674
  }
14549
-
14675
+ /**
14676
+ * Describes the settings that can be provided to the GanttChartBase constructor.
14677
+ *
14678
+ * @deprecated (since 1.64)
14679
+ */
14550
14680
  export interface $GanttChartBaseSettings extends $ControlSettings {
14551
14681
  /**
14552
14682
  * Width of the control.
@@ -14946,6 +15076,9 @@ declare module "sap/gantt/GanttChartBase" {
14946
15076
  shapeMouseLeave?: (oEvent: GanttChartBase$ShapeMouseLeaveEvent) => void;
14947
15077
  }
14948
15078
 
15079
+ /**
15080
+ * Parameters of the GanttChartBase#chartClick event.
15081
+ */
14949
15082
  export interface GanttChartBase$ChartClickEventParameters {
14950
15083
  /**
14951
15084
  * Row object information of the current mouse point.
@@ -14984,11 +15117,17 @@ declare module "sap/gantt/GanttChartBase" {
14984
15117
  originEvent?: object;
14985
15118
  }
14986
15119
 
15120
+ /**
15121
+ * Event object of the GanttChartBase#chartClick event.
15122
+ */
14987
15123
  export type GanttChartBase$ChartClickEvent = Event<
14988
15124
  GanttChartBase$ChartClickEventParameters,
14989
15125
  GanttChartBase
14990
15126
  >;
14991
15127
 
15128
+ /**
15129
+ * Parameters of the GanttChartBase#chartDoubleClick event.
15130
+ */
14992
15131
  export interface GanttChartBase$ChartDoubleClickEventParameters {
14993
15132
  /**
14994
15133
  * Row object information of the current mouse point.
@@ -15027,31 +15166,49 @@ declare module "sap/gantt/GanttChartBase" {
15027
15166
  originEvent?: object;
15028
15167
  }
15029
15168
 
15169
+ /**
15170
+ * Event object of the GanttChartBase#chartDoubleClick event.
15171
+ */
15030
15172
  export type GanttChartBase$ChartDoubleClickEvent = Event<
15031
15173
  GanttChartBase$ChartDoubleClickEventParameters,
15032
15174
  GanttChartBase
15033
15175
  >;
15034
15176
 
15177
+ /**
15178
+ * Parameters of the GanttChartBase#chartDragEnter event.
15179
+ */
15035
15180
  export interface GanttChartBase$ChartDragEnterEventParameters {
15036
15181
  originEvent?: object;
15037
15182
  }
15038
15183
 
15184
+ /**
15185
+ * Event object of the GanttChartBase#chartDragEnter event.
15186
+ */
15039
15187
  export type GanttChartBase$ChartDragEnterEvent = Event<
15040
15188
  GanttChartBase$ChartDragEnterEventParameters,
15041
15189
  GanttChartBase
15042
15190
  >;
15043
15191
 
15192
+ /**
15193
+ * Parameters of the GanttChartBase#chartDragLeave event.
15194
+ */
15044
15195
  export interface GanttChartBase$ChartDragLeaveEventParameters {
15045
15196
  originEvent?: object;
15046
15197
 
15047
15198
  draggingSource?: object;
15048
15199
  }
15049
15200
 
15201
+ /**
15202
+ * Event object of the GanttChartBase#chartDragLeave event.
15203
+ */
15050
15204
  export type GanttChartBase$ChartDragLeaveEvent = Event<
15051
15205
  GanttChartBase$ChartDragLeaveEventParameters,
15052
15206
  GanttChartBase
15053
15207
  >;
15054
15208
 
15209
+ /**
15210
+ * Parameters of the GanttChartBase#chartMouseOver event.
15211
+ */
15055
15212
  export interface GanttChartBase$ChartMouseOverEventParameters {
15056
15213
  /**
15057
15214
  * Row object information of the current mouse point.
@@ -15090,11 +15247,17 @@ declare module "sap/gantt/GanttChartBase" {
15090
15247
  originEvent?: object;
15091
15248
  }
15092
15249
 
15250
+ /**
15251
+ * Event object of the GanttChartBase#chartMouseOver event.
15252
+ */
15093
15253
  export type GanttChartBase$ChartMouseOverEvent = Event<
15094
15254
  GanttChartBase$ChartMouseOverEventParameters,
15095
15255
  GanttChartBase
15096
15256
  >;
15097
15257
 
15258
+ /**
15259
+ * Parameters of the GanttChartBase#chartRightClick event.
15260
+ */
15098
15261
  export interface GanttChartBase$ChartRightClickEventParameters {
15099
15262
  /**
15100
15263
  * Row object information of the current mouse point.
@@ -15133,11 +15296,17 @@ declare module "sap/gantt/GanttChartBase" {
15133
15296
  originEvent?: object;
15134
15297
  }
15135
15298
 
15299
+ /**
15300
+ * Event object of the GanttChartBase#chartRightClick event.
15301
+ */
15136
15302
  export type GanttChartBase$ChartRightClickEvent = Event<
15137
15303
  GanttChartBase$ChartRightClickEventParameters,
15138
15304
  GanttChartBase
15139
15305
  >;
15140
15306
 
15307
+ /**
15308
+ * Parameters of the GanttChartBase#ganttChartSwitchRequested event.
15309
+ */
15141
15310
  export interface GanttChartBase$GanttChartSwitchRequestedEventParameters {
15142
15311
  /**
15143
15312
  * Target hierarchy key.
@@ -15145,11 +15314,19 @@ declare module "sap/gantt/GanttChartBase" {
15145
15314
  hierarchyKey?: string;
15146
15315
  }
15147
15316
 
15317
+ /**
15318
+ * Event object of the GanttChartBase#ganttChartSwitchRequested event.
15319
+ */
15148
15320
  export type GanttChartBase$GanttChartSwitchRequestedEvent = Event<
15149
15321
  GanttChartBase$GanttChartSwitchRequestedEventParameters,
15150
15322
  GanttChartBase
15151
15323
  >;
15152
15324
 
15325
+ /**
15326
+ * Parameters of the GanttChartBase#horizontalScroll event.
15327
+ *
15328
+ * @deprecated (since 1.44)
15329
+ */
15153
15330
  export interface GanttChartBase$HorizontalScrollEventParameters {
15154
15331
  /**
15155
15332
  * Scroll steps.
@@ -15167,11 +15344,19 @@ declare module "sap/gantt/GanttChartBase" {
15167
15344
  endTime?: string;
15168
15345
  }
15169
15346
 
15347
+ /**
15348
+ * Event object of the GanttChartBase#horizontalScroll event.
15349
+ *
15350
+ * @deprecated (since 1.44)
15351
+ */
15170
15352
  export type GanttChartBase$HorizontalScrollEvent = Event<
15171
15353
  GanttChartBase$HorizontalScrollEventParameters,
15172
15354
  GanttChartBase
15173
15355
  >;
15174
15356
 
15357
+ /**
15358
+ * Parameters of the GanttChartBase#relationshipSelectionChange event.
15359
+ */
15175
15360
  export interface GanttChartBase$RelationshipSelectionChangeEventParameters {
15176
15361
  /**
15177
15362
  * Original JQuery event object.
@@ -15179,11 +15364,17 @@ declare module "sap/gantt/GanttChartBase" {
15179
15364
  originEvent?: object;
15180
15365
  }
15181
15366
 
15367
+ /**
15368
+ * Event object of the GanttChartBase#relationshipSelectionChange event.
15369
+ */
15182
15370
  export type GanttChartBase$RelationshipSelectionChangeEvent = Event<
15183
15371
  GanttChartBase$RelationshipSelectionChangeEventParameters,
15184
15372
  GanttChartBase
15185
15373
  >;
15186
15374
 
15375
+ /**
15376
+ * Parameters of the GanttChartBase#rowSelectionChange event.
15377
+ */
15187
15378
  export interface GanttChartBase$RowSelectionChangeEventParameters {
15188
15379
  /**
15189
15380
  * Original JQuery event object.
@@ -15191,11 +15382,17 @@ declare module "sap/gantt/GanttChartBase" {
15191
15382
  originEvent?: object;
15192
15383
  }
15193
15384
 
15385
+ /**
15386
+ * Event object of the GanttChartBase#rowSelectionChange event.
15387
+ */
15194
15388
  export type GanttChartBase$RowSelectionChangeEvent = Event<
15195
15389
  GanttChartBase$RowSelectionChangeEventParameters,
15196
15390
  GanttChartBase
15197
15391
  >;
15198
15392
 
15393
+ /**
15394
+ * Parameters of the GanttChartBase#shapeDragEnd event.
15395
+ */
15199
15396
  export interface GanttChartBase$ShapeDragEndEventParameters {
15200
15397
  /**
15201
15398
  * Original JQuery event object.
@@ -15230,11 +15427,17 @@ declare module "sap/gantt/GanttChartBase" {
15230
15427
  targetSvgId?: string;
15231
15428
  }
15232
15429
 
15430
+ /**
15431
+ * Event object of the GanttChartBase#shapeDragEnd event.
15432
+ */
15233
15433
  export type GanttChartBase$ShapeDragEndEvent = Event<
15234
15434
  GanttChartBase$ShapeDragEndEventParameters,
15235
15435
  GanttChartBase
15236
15436
  >;
15237
15437
 
15438
+ /**
15439
+ * Parameters of the GanttChartBase#shapeMouseEnter event.
15440
+ */
15238
15441
  export interface GanttChartBase$ShapeMouseEnterEventParameters {
15239
15442
  /**
15240
15443
  * The data of the shape which fires this event.
@@ -15257,11 +15460,17 @@ declare module "sap/gantt/GanttChartBase" {
15257
15460
  originEvent?: object;
15258
15461
  }
15259
15462
 
15463
+ /**
15464
+ * Event object of the GanttChartBase#shapeMouseEnter event.
15465
+ */
15260
15466
  export type GanttChartBase$ShapeMouseEnterEvent = Event<
15261
15467
  GanttChartBase$ShapeMouseEnterEventParameters,
15262
15468
  GanttChartBase
15263
15469
  >;
15264
15470
 
15471
+ /**
15472
+ * Parameters of the GanttChartBase#shapeMouseLeave event.
15473
+ */
15265
15474
  export interface GanttChartBase$ShapeMouseLeaveEventParameters {
15266
15475
  /**
15267
15476
  * The data of the shape which fires this event.
@@ -15274,11 +15483,17 @@ declare module "sap/gantt/GanttChartBase" {
15274
15483
  originEvent?: object;
15275
15484
  }
15276
15485
 
15486
+ /**
15487
+ * Event object of the GanttChartBase#shapeMouseLeave event.
15488
+ */
15277
15489
  export type GanttChartBase$ShapeMouseLeaveEvent = Event<
15278
15490
  GanttChartBase$ShapeMouseLeaveEventParameters,
15279
15491
  GanttChartBase
15280
15492
  >;
15281
15493
 
15494
+ /**
15495
+ * Parameters of the GanttChartBase#shapeResizeEnd event.
15496
+ */
15282
15497
  export interface GanttChartBase$ShapeResizeEndEventParameters {
15283
15498
  /**
15284
15499
  * UID of the resized shape.
@@ -15301,11 +15516,17 @@ declare module "sap/gantt/GanttChartBase" {
15301
15516
  newTime?: string[];
15302
15517
  }
15303
15518
 
15519
+ /**
15520
+ * Event object of the GanttChartBase#shapeResizeEnd event.
15521
+ */
15304
15522
  export type GanttChartBase$ShapeResizeEndEvent = Event<
15305
15523
  GanttChartBase$ShapeResizeEndEventParameters,
15306
15524
  GanttChartBase
15307
15525
  >;
15308
15526
 
15527
+ /**
15528
+ * Parameters of the GanttChartBase#shapeSelectionChange event.
15529
+ */
15309
15530
  export interface GanttChartBase$ShapeSelectionChangeEventParameters {
15310
15531
  /**
15311
15532
  * Original JQuery event object.
@@ -15313,11 +15534,17 @@ declare module "sap/gantt/GanttChartBase" {
15313
15534
  originEvent?: object;
15314
15535
  }
15315
15536
 
15537
+ /**
15538
+ * Event object of the GanttChartBase#shapeSelectionChange event.
15539
+ */
15316
15540
  export type GanttChartBase$ShapeSelectionChangeEvent = Event<
15317
15541
  GanttChartBase$ShapeSelectionChangeEventParameters,
15318
15542
  GanttChartBase
15319
15543
  >;
15320
15544
 
15545
+ /**
15546
+ * Parameters of the GanttChartBase#splitterResize event.
15547
+ */
15321
15548
  export interface GanttChartBase$SplitterResizeEventParameters {
15322
15549
  /**
15323
15550
  * ID of the source control.
@@ -15358,11 +15585,17 @@ declare module "sap/gantt/GanttChartBase" {
15358
15585
  zoomInfo?: object;
15359
15586
  }
15360
15587
 
15588
+ /**
15589
+ * Event object of the GanttChartBase#splitterResize event.
15590
+ */
15361
15591
  export type GanttChartBase$SplitterResizeEvent = Event<
15362
15592
  GanttChartBase$SplitterResizeEventParameters,
15363
15593
  GanttChartBase
15364
15594
  >;
15365
15595
 
15596
+ /**
15597
+ * Parameters of the GanttChartBase#treeTableToggleEvent event.
15598
+ */
15366
15599
  export interface GanttChartBase$TreeTableToggleEventEventParameters {
15367
15600
  /**
15368
15601
  * The index of the expanded/collapsed row.
@@ -15380,11 +15613,19 @@ declare module "sap/gantt/GanttChartBase" {
15380
15613
  expanded?: boolean;
15381
15614
  }
15382
15615
 
15616
+ /**
15617
+ * Event object of the GanttChartBase#treeTableToggleEvent event.
15618
+ */
15383
15619
  export type GanttChartBase$TreeTableToggleEventEvent = Event<
15384
15620
  GanttChartBase$TreeTableToggleEventEventParameters,
15385
15621
  GanttChartBase
15386
15622
  >;
15387
15623
 
15624
+ /**
15625
+ * Parameters of the GanttChartBase#verticalScroll event.
15626
+ *
15627
+ * @deprecated (since 1.44)
15628
+ */
15388
15629
  export interface GanttChartBase$VerticalScrollEventParameters {
15389
15630
  /**
15390
15631
  * Scroll steps.
@@ -15392,6 +15633,11 @@ declare module "sap/gantt/GanttChartBase" {
15392
15633
  scrollSteps?: int;
15393
15634
  }
15394
15635
 
15636
+ /**
15637
+ * Event object of the GanttChartBase#verticalScroll event.
15638
+ *
15639
+ * @deprecated (since 1.44)
15640
+ */
15395
15641
  export type GanttChartBase$VerticalScrollEvent = Event<
15396
15642
  GanttChartBase$VerticalScrollEventParameters,
15397
15643
  GanttChartBase
@@ -16715,7 +16961,11 @@ declare module "sap/gantt/GanttChartContainer" {
16715
16961
  */
16716
16962
  unbindGanttCharts(): this;
16717
16963
  }
16718
-
16964
+ /**
16965
+ * Describes the settings that can be provided to the GanttChartContainer constructor.
16966
+ *
16967
+ * @deprecated (since 1.64) - {@link sap.gantt.simple.GanttChartContainer} should be used instead.
16968
+ */
16719
16969
  export interface $GanttChartContainerSettings extends $ControlSettings {
16720
16970
  /**
16721
16971
  * Width of the control
@@ -16904,6 +17154,9 @@ declare module "sap/gantt/GanttChartContainer" {
16904
17154
  ) => void;
16905
17155
  }
16906
17156
 
17157
+ /**
17158
+ * Parameters of the GanttChartContainer#customSettingChange event.
17159
+ */
16907
17160
  export interface GanttChartContainer$CustomSettingChangeEventParameters {
16908
17161
  /**
16909
17162
  * ID of the custom setting
@@ -16916,11 +17169,17 @@ declare module "sap/gantt/GanttChartContainer" {
16916
17169
  value?: boolean;
16917
17170
  }
16918
17171
 
17172
+ /**
17173
+ * Event object of the GanttChartContainer#customSettingChange event.
17174
+ */
16919
17175
  export type GanttChartContainer$CustomSettingChangeEvent = Event<
16920
17176
  GanttChartContainer$CustomSettingChangeEventParameters,
16921
17177
  GanttChartContainer
16922
17178
  >;
16923
17179
 
17180
+ /**
17181
+ * Parameters of the GanttChartContainer#ganttChartChangeRequested event.
17182
+ */
16924
17183
  export interface GanttChartContainer$GanttChartChangeRequestedEventParameters {
16925
17184
  /**
16926
17185
  * Action that caused the change.
@@ -16954,11 +17213,17 @@ declare module "sap/gantt/GanttChartContainer" {
16954
17213
  containerLayoutKey?: string;
16955
17214
  }
16956
17215
 
17216
+ /**
17217
+ * Event object of the GanttChartContainer#ganttChartChangeRequested event.
17218
+ */
16957
17219
  export type GanttChartContainer$GanttChartChangeRequestedEvent = Event<
16958
17220
  GanttChartContainer$GanttChartChangeRequestedEventParameters,
16959
17221
  GanttChartContainer
16960
17222
  >;
16961
17223
 
17224
+ /**
17225
+ * Parameters of the GanttChartContainer#treeTableToggleEvent event.
17226
+ */
16962
17227
  export interface GanttChartContainer$TreeTableToggleEventEventParameters {
16963
17228
  /**
16964
17229
  * The index of the expanded/collapsed row.
@@ -16976,6 +17241,9 @@ declare module "sap/gantt/GanttChartContainer" {
16976
17241
  expanded?: boolean;
16977
17242
  }
16978
17243
 
17244
+ /**
17245
+ * Event object of the GanttChartContainer#treeTableToggleEvent event.
17246
+ */
16979
17247
  export type GanttChartContainer$TreeTableToggleEventEvent = Event<
16980
17248
  GanttChartContainer$TreeTableToggleEventEventParameters,
16981
17249
  GanttChartContainer
@@ -17419,7 +17687,11 @@ declare module "sap/gantt/GanttChartWithTable" {
17419
17687
  oSelectionPlugin: SelectionPlugin
17420
17688
  ): void;
17421
17689
  }
17422
-
17690
+ /**
17691
+ * Describes the settings that can be provided to the GanttChartWithTable constructor.
17692
+ *
17693
+ * @deprecated (since 1.64) - {@link sap.gantt.simple.GanttChartWithTable} should be used instead.
17694
+ */
17423
17695
  export interface $GanttChartWithTableSettings
17424
17696
  extends $GanttChartBaseSettings {
17425
17697
  /**
@@ -17757,7 +18029,11 @@ declare module "sap/gantt/legend/DimensionLegend" {
17757
18029
  sYDomain?: any[]
17758
18030
  ): this;
17759
18031
  }
17760
-
18032
+ /**
18033
+ * Describes the settings that can be provided to the DimensionLegend constructor.
18034
+ *
18035
+ * @deprecated (since 1.64)
18036
+ */
17761
18037
  export interface $DimensionLegendSettings extends $LegendBaseSettings {
17762
18038
  /**
17763
18039
  * A Shape instance that contains two sets of data, one for the 'x' dimension and the other for the 'y'
@@ -18026,7 +18302,11 @@ declare module "sap/gantt/legend/LegendBase" {
18026
18302
  sSvgDefs?: SvgDefs
18027
18303
  ): this;
18028
18304
  }
18029
-
18305
+ /**
18306
+ * Describes the settings that can be provided to the LegendBase constructor.
18307
+ *
18308
+ * @deprecated (since 1.64)
18309
+ */
18030
18310
  export interface $LegendBaseSettings extends $ControlSettings {
18031
18311
  /**
18032
18312
  * SVG reusable element definitions.
@@ -18305,7 +18585,11 @@ declare module "sap/gantt/legend/LegendContainer" {
18305
18585
  sWidth?: CSSSize
18306
18586
  ): this;
18307
18587
  }
18308
-
18588
+ /**
18589
+ * Describes the settings that can be provided to the LegendContainer constructor.
18590
+ *
18591
+ * @deprecated (since 1.64)
18592
+ */
18309
18593
  export interface $LegendContainerSettings extends $ControlSettings {
18310
18594
  /**
18311
18595
  * Width of the legend navigation. When the width specified is smaller than a section content, a horizontal
@@ -18519,7 +18803,11 @@ declare module "sap/gantt/legend/ListLegend" {
18519
18803
  sShapes: Shape[]
18520
18804
  ): this;
18521
18805
  }
18522
-
18806
+ /**
18807
+ * Describes the settings that can be provided to the ListLegend constructor.
18808
+ *
18809
+ * @deprecated (since 1.64)
18810
+ */
18523
18811
  export interface $ListLegendSettings extends $LegendBaseSettings {
18524
18812
  /**
18525
18813
  * Shapes for legend items. These shapes are used in the Gantt chart.
@@ -18532,6 +18820,9 @@ declare module "sap/gantt/legend/ListLegend" {
18532
18820
  checkBoxChange?: (oEvent: ListLegend$CheckBoxChangeEvent) => void;
18533
18821
  }
18534
18822
 
18823
+ /**
18824
+ * Parameters of the ListLegend#checkBoxChange event.
18825
+ */
18535
18826
  export interface ListLegend$CheckBoxChangeEventParameters {
18536
18827
  /**
18537
18828
  * The shape that is checked or unchecked.
@@ -18544,6 +18835,9 @@ declare module "sap/gantt/legend/ListLegend" {
18544
18835
  value?: boolean;
18545
18836
  }
18546
18837
 
18838
+ /**
18839
+ * Event object of the ListLegend#checkBoxChange event.
18840
+ */
18547
18841
  export type ListLegend$CheckBoxChangeEvent = Event<
18548
18842
  ListLegend$CheckBoxChangeEventParameters,
18549
18843
  ListLegend
@@ -19390,7 +19684,11 @@ declare module "sap/gantt/overlays/GanttRowOverlay" {
19390
19684
  vStaticOverlay: int | string | Overlay
19391
19685
  ): Overlay | null;
19392
19686
  }
19393
-
19687
+ /**
19688
+ * Describes the settings that can be provided to the GanttRowOverlay constructor.
19689
+ *
19690
+ * @experimental (since 1.120)
19691
+ */
19394
19692
  export interface $GanttRowOverlaySettings extends $ElementSettings {
19395
19693
  /**
19396
19694
  * @since 1.120
@@ -19567,7 +19865,11 @@ declare module "sap/gantt/overlays/Overlay" {
19567
19865
  oShape: BaseShape
19568
19866
  ): this;
19569
19867
  }
19570
-
19868
+ /**
19869
+ * Describes the settings that can be provided to the Overlay constructor.
19870
+ *
19871
+ * @experimental (since 1.120)
19872
+ */
19571
19873
  export interface $OverlaySettings extends $ElementSettings {
19572
19874
  /**
19573
19875
  * @since 1.120
@@ -19881,7 +20183,11 @@ declare module "sap/gantt/shape/cal/Calendar" {
19881
20183
  bIsBulk?: boolean
19882
20184
  ): this;
19883
20185
  }
19884
-
20186
+ /**
20187
+ * Describes the settings that can be provided to the Calendar constructor.
20188
+ *
20189
+ * @deprecated (since 1.64)
20190
+ */
19885
20191
  export interface $CalendarSettings extends $RectangleSettings {
19886
20192
  isBulk?: boolean | PropertyBindingInfo | `{${string}}`;
19887
20193
 
@@ -20110,7 +20416,11 @@ declare module "sap/gantt/shape/Circle" {
20110
20416
  sTag?: string
20111
20417
  ): this;
20112
20418
  }
20113
-
20419
+ /**
20420
+ * Describes the settings that can be provided to the Circle constructor.
20421
+ *
20422
+ * @deprecated (since 1.64)
20423
+ */
20114
20424
  export interface $CircleSettings extends $ShapeSettings {
20115
20425
  tag?: string | PropertyBindingInfo;
20116
20426
 
@@ -20319,7 +20629,11 @@ declare module "sap/gantt/shape/ClipPath" {
20319
20629
  sTag?: string
20320
20630
  ): this;
20321
20631
  }
20322
-
20632
+ /**
20633
+ * Describes the settings that can be provided to the ClipPath constructor.
20634
+ *
20635
+ * @deprecated (since 1.64)
20636
+ */
20323
20637
  export interface $ClipPathSettings extends $ShapeSettings {
20324
20638
  tag?: string | PropertyBindingInfo;
20325
20639
 
@@ -20537,7 +20851,11 @@ declare module "sap/gantt/shape/Definitions" {
20537
20851
  sTag?: string
20538
20852
  ): this;
20539
20853
  }
20540
-
20854
+ /**
20855
+ * Describes the settings that can be provided to the Definitions constructor.
20856
+ *
20857
+ * @deprecated (since 1.64)
20858
+ */
20541
20859
  export interface $DefinitionsSettings extends $ShapeSettings {
20542
20860
  tag?: string | PropertyBindingInfo;
20543
20861
 
@@ -20831,7 +21149,11 @@ declare module "sap/gantt/shape/ext/Chevron" {
20831
21149
  fTailLength?: float
20832
21150
  ): this;
20833
21151
  }
20834
-
21152
+ /**
21153
+ * Describes the settings that can be provided to the Chevron constructor.
21154
+ *
21155
+ * @deprecated (since 1.64)
21156
+ */
20835
21157
  export interface $ChevronSettings extends $PathSettings {
20836
21158
  isClosed?: boolean | PropertyBindingInfo | `{${string}}`;
20837
21159
 
@@ -21092,7 +21414,11 @@ declare module "sap/gantt/shape/ext/Cursor" {
21092
21414
  fWidth?: float
21093
21415
  ): this;
21094
21416
  }
21095
-
21417
+ /**
21418
+ * Describes the settings that can be provided to the Cursor constructor.
21419
+ *
21420
+ * @deprecated (since 1.64)
21421
+ */
21096
21422
  export interface $CursorSettings extends $PathSettings {
21097
21423
  isClosed?: boolean | PropertyBindingInfo | `{${string}}`;
21098
21424
 
@@ -21311,7 +21637,11 @@ declare module "sap/gantt/shape/ext/Diamond" {
21311
21637
  fVerticalDiagonal?: float
21312
21638
  ): this;
21313
21639
  }
21314
-
21640
+ /**
21641
+ * Describes the settings that can be provided to the Diamond constructor.
21642
+ *
21643
+ * @deprecated (since 1.64)
21644
+ */
21315
21645
  export interface $DiamondSettings extends $PathSettings {
21316
21646
  isClosed?: boolean | PropertyBindingInfo | `{${string}}`;
21317
21647
 
@@ -21492,7 +21822,11 @@ declare module "sap/gantt/shape/ext/Iconfont" {
21492
21822
  sName: string
21493
21823
  ): this;
21494
21824
  }
21495
-
21825
+ /**
21826
+ * Describes the settings that can be provided to the Iconfont constructor.
21827
+ *
21828
+ * @deprecated (since 1.64)
21829
+ */
21496
21830
  export interface $IconfontSettings extends $TextSettings {
21497
21831
  name?: string | PropertyBindingInfo;
21498
21832
 
@@ -21679,7 +22013,11 @@ declare module "sap/gantt/shape/ext/Pentangle" {
21679
22013
  fRadius2?: float
21680
22014
  ): this;
21681
22015
  }
21682
-
22016
+ /**
22017
+ * Describes the settings that can be provided to the Pentangle constructor.
22018
+ *
22019
+ * @deprecated (since 1.64)
22020
+ */
21683
22021
  export interface $PentangleSettings extends $PolygonSettings {
21684
22022
  radius?: float | PropertyBindingInfo | `{${string}}`;
21685
22023
 
@@ -22376,7 +22714,11 @@ declare module "sap/gantt/shape/ext/rls/Relationship" {
22376
22714
  | keyof typeof shape.ext.rls.RelationshipType
22377
22715
  ): this;
22378
22716
  }
22379
-
22717
+ /**
22718
+ * Describes the settings that can be provided to the Relationship constructor.
22719
+ *
22720
+ * @deprecated (since 1.64)
22721
+ */
22380
22722
  export interface $RelationshipSettings extends $PathSettings {
22381
22723
  /**
22382
22724
  * CSS class name of the relationship shape
@@ -22670,7 +23012,11 @@ declare module "sap/gantt/shape/ext/rls/SelectedRelationship" {
22670
23012
  iStrokeWidth: int
22671
23013
  ): this;
22672
23014
  }
22673
-
23015
+ /**
23016
+ * Describes the settings that can be provided to the SelectedRelationship constructor.
23017
+ *
23018
+ * @deprecated (since 1.64)
23019
+ */
22674
23020
  export interface $SelectedRelationshipSettings extends $RelationshipSettings {
22675
23021
  /**
22676
23022
  * Line color of the relationship.
@@ -23093,7 +23439,11 @@ declare module "sap/gantt/shape/ext/TextRepeat" {
23093
23439
  fY: float
23094
23440
  ): this;
23095
23441
  }
23096
-
23442
+ /**
23443
+ * Describes the settings that can be provided to the TextRepeat constructor.
23444
+ *
23445
+ * @deprecated (since 1.64)
23446
+ */
23097
23447
  export interface $TextRepeatSettings extends $DefinitionsSettings {
23098
23448
  childTagName?: string | PropertyBindingInfo;
23099
23449
 
@@ -23364,7 +23714,11 @@ declare module "sap/gantt/shape/ext/Triangle" {
23364
23714
  bIsClosed?: boolean
23365
23715
  ): this;
23366
23716
  }
23367
-
23717
+ /**
23718
+ * Describes the settings that can be provided to the Triangle constructor.
23719
+ *
23720
+ * @deprecated (since 1.64)
23721
+ */
23368
23722
  export interface $TriangleSettings extends $PathSettings {
23369
23723
  isClosed?: boolean | PropertyBindingInfo | `{${string}}`;
23370
23724
 
@@ -23523,7 +23877,11 @@ declare module "sap/gantt/shape/ext/ubc/UbcBorderPath" {
23523
23877
  oRowInfo: object
23524
23878
  ): number;
23525
23879
  }
23526
-
23880
+ /**
23881
+ * Describes the settings that can be provided to the UbcBorderPath constructor.
23882
+ *
23883
+ * @deprecated (since 1.64)
23884
+ */
23527
23885
  export interface $UbcBorderPathSettings extends $PathSettings {}
23528
23886
  }
23529
23887
 
@@ -23679,7 +24037,11 @@ declare module "sap/gantt/shape/ext/ubc/UbcOverCapacityZonePolygon" {
23679
24037
  oRowInfo: object
23680
24038
  ): number;
23681
24039
  }
23682
-
24040
+ /**
24041
+ * Describes the settings that can be provided to the UbcOverCapacityZonePolygon constructor.
24042
+ *
24043
+ * @deprecated (since 1.64)
24044
+ */
23683
24045
  export interface $UbcOverCapacityZonePolygonSettings
23684
24046
  extends $UbcPolygonSettings {}
23685
24047
  }
@@ -23775,7 +24137,11 @@ declare module "sap/gantt/shape/ext/ubc/UbcPolygon" {
23775
24137
  oRowInfo: object
23776
24138
  ): boolean;
23777
24139
  }
23778
-
24140
+ /**
24141
+ * Describes the settings that can be provided to the UbcPolygon constructor.
24142
+ *
24143
+ * @deprecated (since 1.64)
24144
+ */
23779
24145
  export interface $UbcPolygonSettings extends $PolygonSettings {}
23780
24146
  }
23781
24147
 
@@ -23930,7 +24296,11 @@ declare module "sap/gantt/shape/ext/ubc/UbcShortageCapacityPolygon" {
23930
24296
  oRowInfo: object
23931
24297
  ): number;
23932
24298
  }
23933
-
24299
+ /**
24300
+ * Describes the settings that can be provided to the UbcShortageCapacityPolygon constructor.
24301
+ *
24302
+ * @deprecated (since 1.64)
24303
+ */
23934
24304
  export interface $UbcShortageCapacityPolygonSettings
23935
24305
  extends $UbcPolygonSettings {}
23936
24306
  }
@@ -24181,7 +24551,11 @@ declare module "sap/gantt/shape/ext/ubc/UbcTooltipRectangle" {
24181
24551
  oRowInfo: object
24182
24552
  ): number;
24183
24553
  }
24184
-
24554
+ /**
24555
+ * Describes the settings that can be provided to the UbcTooltipRectangle constructor.
24556
+ *
24557
+ * @deprecated (since 1.64)
24558
+ */
24185
24559
  export interface $UbcTooltipRectangleSettings extends $RectangleSettings {}
24186
24560
  }
24187
24561
 
@@ -24299,7 +24673,11 @@ declare module "sap/gantt/shape/ext/ubc/UbcUnderCapacityZonePolygon" {
24299
24673
  oRowInfo: object
24300
24674
  ): string;
24301
24675
  }
24302
-
24676
+ /**
24677
+ * Describes the settings that can be provided to the UbcUnderCapacityZonePolygon constructor.
24678
+ *
24679
+ * @deprecated (since 1.64)
24680
+ */
24303
24681
  export interface $UbcUnderCapacityZonePolygonSettings
24304
24682
  extends $UbcPolygonSettings {}
24305
24683
  }
@@ -24417,7 +24795,11 @@ declare module "sap/gantt/shape/ext/ubc/UbcUsedPolygon" {
24417
24795
  oRowInfo: object
24418
24796
  ): string;
24419
24797
  }
24420
-
24798
+ /**
24799
+ * Describes the settings that can be provided to the UbcUsedPolygon constructor.
24800
+ *
24801
+ * @deprecated (since 1.64)
24802
+ */
24421
24803
  export interface $UbcUsedPolygonSettings extends $UbcPolygonSettings {}
24422
24804
  }
24423
24805
 
@@ -24547,7 +24929,11 @@ declare module "sap/gantt/shape/ext/ubc/UtilizationBarChart" {
24547
24929
  oRowInfo: object
24548
24930
  ): boolean;
24549
24931
  }
24550
-
24932
+ /**
24933
+ * Describes the settings that can be provided to the UtilizationBarChart constructor.
24934
+ *
24935
+ * @deprecated (since 1.64)
24936
+ */
24551
24937
  export interface $UtilizationBarChartSettings extends $GroupSettings {}
24552
24938
  }
24553
24939
 
@@ -24677,7 +25063,11 @@ declare module "sap/gantt/shape/ext/ulc/UlcBorderPath" {
24677
25063
  oRowInfo: object
24678
25064
  ): number;
24679
25065
  }
24680
-
25066
+ /**
25067
+ * Describes the settings that can be provided to the UlcBorderPath constructor.
25068
+ *
25069
+ * @deprecated (since 1.64)
25070
+ */
24681
25071
  export interface $UlcBorderPathSettings extends $PathSettings {}
24682
25072
  }
24683
25073
 
@@ -24765,7 +25155,11 @@ declare module "sap/gantt/shape/ext/ulc/UlcClipingPath" {
24765
25155
  oRowInfo: object
24766
25156
  ): string;
24767
25157
  }
24768
-
25158
+ /**
25159
+ * Describes the settings that can be provided to the UlcClipingPath constructor.
25160
+ *
25161
+ * @deprecated (since 1.64)
25162
+ */
24769
25163
  export interface $UlcClipingPathSettings extends $PathSettings {}
24770
25164
  }
24771
25165
 
@@ -24858,7 +25252,11 @@ declare module "sap/gantt/shape/ext/ulc/UlcClipPath" {
24858
25252
  oRowInfo: object
24859
25253
  ): string;
24860
25254
  }
24861
-
25255
+ /**
25256
+ * Describes the settings that can be provided to the UlcClipPath constructor.
25257
+ *
25258
+ * @deprecated (since 1.64)
25259
+ */
24862
25260
  export interface $UlcClipPathSettings extends $ClipPathSettings {}
24863
25261
  }
24864
25262
 
@@ -24937,7 +25335,11 @@ declare module "sap/gantt/shape/ext/ulc/UlcDimension" {
24937
25335
  */
24938
25336
  static getMetadata(): ElementMetadata;
24939
25337
  }
24940
-
25338
+ /**
25339
+ * Describes the settings that can be provided to the UlcDimension constructor.
25340
+ *
25341
+ * @deprecated (since 1.64)
25342
+ */
24941
25343
  export interface $UlcDimensionSettings extends $GroupSettings {}
24942
25344
  }
24943
25345
 
@@ -25155,7 +25557,11 @@ declare module "sap/gantt/shape/ext/ulc/UlcMiddleLine" {
25155
25557
  oRowInfo: object
25156
25558
  ): number;
25157
25559
  }
25158
-
25560
+ /**
25561
+ * Describes the settings that can be provided to the UlcMiddleLine constructor.
25562
+ *
25563
+ * @deprecated (since 1.64)
25564
+ */
25159
25565
  export interface $UlcMiddleLineSettings extends $LineSettings {}
25160
25566
  }
25161
25567
 
@@ -25291,7 +25697,11 @@ declare module "sap/gantt/shape/ext/ulc/UlcOverCapacityZoneRectangle" {
25291
25697
  oRowInfo: object
25292
25698
  ): number;
25293
25699
  }
25294
-
25700
+ /**
25701
+ * Describes the settings that can be provided to the UlcOverCapacityZoneRectangle constructor.
25702
+ *
25703
+ * @deprecated (since 1.64)
25704
+ */
25295
25705
  export interface $UlcOverCapacityZoneRectangleSettings
25296
25706
  extends $UlcRectangleSettings {}
25297
25707
  }
@@ -25410,7 +25820,11 @@ declare module "sap/gantt/shape/ext/ulc/UlcOverClipRectangle" {
25410
25820
  oRowInfo: object
25411
25821
  ): string;
25412
25822
  }
25413
-
25823
+ /**
25824
+ * Describes the settings that can be provided to the UlcOverClipRectangle constructor.
25825
+ *
25826
+ * @deprecated (since 1.64)
25827
+ */
25414
25828
  export interface $UlcOverClipRectangleSettings
25415
25829
  extends $UlcRectangleSettings {}
25416
25830
  }
@@ -25569,7 +25983,11 @@ declare module "sap/gantt/shape/ext/ulc/UlcRectangle" {
25569
25983
  oRowInfo: object
25570
25984
  ): number;
25571
25985
  }
25572
-
25986
+ /**
25987
+ * Describes the settings that can be provided to the UlcRectangle constructor.
25988
+ *
25989
+ * @deprecated (since 1.64)
25990
+ */
25573
25991
  export interface $UlcRectangleSettings extends $RectangleSettings {}
25574
25992
  }
25575
25993
 
@@ -25774,7 +26192,11 @@ declare module "sap/gantt/shape/ext/ulc/UlcTooltipRectangle" {
25774
26192
  oRowInfo: object
25775
26193
  ): number;
25776
26194
  }
25777
-
26195
+ /**
26196
+ * Describes the settings that can be provided to the UlcTooltipRectangle constructor.
26197
+ *
26198
+ * @deprecated (since 1.64)
26199
+ */
25778
26200
  export interface $UlcTooltipRectangleSettings extends $UlcRectangleSettings {}
25779
26201
  }
25780
26202
 
@@ -25966,7 +26388,11 @@ declare module "sap/gantt/shape/ext/ulc/UlcUnderClipRectangle" {
25966
26388
  oRowInfo: object
25967
26389
  ): number;
25968
26390
  }
25969
-
26391
+ /**
26392
+ * Describes the settings that can be provided to the UlcUnderClipRectangle constructor.
26393
+ *
26394
+ * @deprecated (since 1.64)
26395
+ */
25970
26396
  export interface $UlcUnderClipRectangleSettings
25971
26397
  extends $UlcRectangleSettings {}
25972
26398
  }
@@ -26103,7 +26529,11 @@ declare module "sap/gantt/shape/ext/ulc/UtilizationLineChart" {
26103
26529
  oRowInfo: object
26104
26530
  ): boolean;
26105
26531
  }
26106
-
26532
+ /**
26533
+ * Describes the settings that can be provided to the UtilizationLineChart constructor.
26534
+ *
26535
+ * @deprecated (since 1.64)
26536
+ */
26107
26537
  export interface $UtilizationLineChartSettings extends $ShapeSettings {}
26108
26538
  }
26109
26539
 
@@ -26349,7 +26779,11 @@ declare module "sap/gantt/shape/Group" {
26349
26779
  sTag?: string
26350
26780
  ): this;
26351
26781
  }
26352
-
26782
+ /**
26783
+ * Describes the settings that can be provided to the Group constructor.
26784
+ *
26785
+ * @deprecated (since 1.64)
26786
+ */
26353
26787
  export interface $GroupSettings extends $ShapeSettings {
26354
26788
  tag?: string | PropertyBindingInfo;
26355
26789
 
@@ -26641,7 +27075,11 @@ declare module "sap/gantt/shape/Image" {
26641
27075
  fY: float
26642
27076
  ): this;
26643
27077
  }
26644
-
27078
+ /**
27079
+ * Describes the settings that can be provided to the Image constructor.
27080
+ *
27081
+ * @deprecated (since 1.64)
27082
+ */
26645
27083
  export interface $ImageSettings extends $ShapeSettings {
26646
27084
  tag?: string | PropertyBindingInfo;
26647
27085
 
@@ -26947,7 +27385,11 @@ declare module "sap/gantt/shape/Line" {
26947
27385
  fY2: float
26948
27386
  ): this;
26949
27387
  }
26950
-
27388
+ /**
27389
+ * Describes the settings that can be provided to the Line constructor.
27390
+ *
27391
+ * @deprecated (since 1.64)
27392
+ */
26951
27393
  export interface $LineSettings extends $ShapeSettings {
26952
27394
  tag?: string | PropertyBindingInfo;
26953
27395
 
@@ -27178,7 +27620,11 @@ declare module "sap/gantt/shape/Path" {
27178
27620
  sTag?: string
27179
27621
  ): this;
27180
27622
  }
27181
-
27623
+ /**
27624
+ * Describes the settings that can be provided to the Path constructor.
27625
+ *
27626
+ * @deprecated (since 1.64)
27627
+ */
27182
27628
  export interface $PathSettings extends $ShapeSettings {
27183
27629
  tag?: string | PropertyBindingInfo;
27184
27630
 
@@ -27339,7 +27785,11 @@ declare module "sap/gantt/shape/Polygon" {
27339
27785
  sTag?: string
27340
27786
  ): this;
27341
27787
  }
27342
-
27788
+ /**
27789
+ * Describes the settings that can be provided to the Polygon constructor.
27790
+ *
27791
+ * @deprecated (since 1.64)
27792
+ */
27343
27793
  export interface $PolygonSettings extends $ShapeSettings {
27344
27794
  tag?: string | PropertyBindingInfo;
27345
27795
 
@@ -27520,7 +27970,11 @@ declare module "sap/gantt/shape/Polyline" {
27520
27970
  sTag?: string
27521
27971
  ): this;
27522
27972
  }
27523
-
27973
+ /**
27974
+ * Describes the settings that can be provided to the Polyline constructor.
27975
+ *
27976
+ * @deprecated (since 1.64)
27977
+ */
27524
27978
  export interface $PolylineSettings extends $ShapeSettings {
27525
27979
  tag?: string | PropertyBindingInfo;
27526
27980
 
@@ -27892,7 +28346,11 @@ declare module "sap/gantt/shape/Rectangle" {
27892
28346
  fY: float
27893
28347
  ): this;
27894
28348
  }
27895
-
28349
+ /**
28350
+ * Describes the settings that can be provided to the Rectangle constructor.
28351
+ *
28352
+ * @deprecated (since 1.64)
28353
+ */
27896
28354
  export interface $RectangleSettings extends $ShapeSettings {
27897
28355
  tag?: string | PropertyBindingInfo;
27898
28356
 
@@ -28014,7 +28472,11 @@ declare module "sap/gantt/shape/ResizeShadowShape" {
28014
28472
  iHeight?: int
28015
28473
  ): this;
28016
28474
  }
28017
-
28475
+ /**
28476
+ * Describes the settings that can be provided to the ResizeShadowShape constructor.
28477
+ *
28478
+ * @deprecated (since 1.64)
28479
+ */
28018
28480
  export interface $ResizeShadowShapeSettings extends $PathSettings {
28019
28481
  height?: int | PropertyBindingInfo | `{${string}}`;
28020
28482
  }
@@ -28362,7 +28824,11 @@ declare module "sap/gantt/shape/SelectedShape" {
28362
28824
  fStrokeOpacity?: float
28363
28825
  ): this;
28364
28826
  }
28365
-
28827
+ /**
28828
+ * Describes the settings that can be provided to the SelectedShape constructor.
28829
+ *
28830
+ * @deprecated (since 1.64)
28831
+ */
28366
28832
  export interface $SelectedShapeSettings extends $PathSettings {
28367
28833
  fill?: string | PropertyBindingInfo;
28368
28834
 
@@ -29714,7 +30180,11 @@ declare module "sap/gantt/shape/Shape" {
29714
30180
  fYBias?: float
29715
30181
  ): this;
29716
30182
  }
29717
-
30183
+ /**
30184
+ * Describes the settings that can be provided to the Shape constructor.
30185
+ *
30186
+ * @deprecated (since 1.64)
30187
+ */
29718
30188
  export interface $ShapeSettings extends $ElementSettings {
29719
30189
  tag?: string | PropertyBindingInfo;
29720
30190
 
@@ -30221,7 +30691,11 @@ declare module "sap/gantt/shape/Text" {
30221
30691
  fY: float
30222
30692
  ): this;
30223
30693
  }
30224
-
30694
+ /**
30695
+ * Describes the settings that can be provided to the Text constructor.
30696
+ *
30697
+ * @deprecated (since 1.64)
30698
+ */
30225
30699
  export interface $TextSettings extends $ShapeSettings {
30226
30700
  tag?: string | PropertyBindingInfo;
30227
30701
 
@@ -30553,7 +31027,9 @@ declare module "sap/gantt/simple/AdhocDiamond" {
30553
31027
  mParameters?: object
30554
31028
  ): this;
30555
31029
  }
30556
-
31030
+ /**
31031
+ * Describes the settings that can be provided to the AdhocDiamond constructor.
31032
+ */
30557
31033
  export interface $AdhocDiamondSettings extends $BaseDiamondSettings {
30558
31034
  /**
30559
31035
  * Fires when the adhocdiamond is pressed.
@@ -30571,22 +31047,40 @@ declare module "sap/gantt/simple/AdhocDiamond" {
30571
31047
  mouseLeave?: (oEvent: Event) => void;
30572
31048
  }
30573
31049
 
31050
+ /**
31051
+ * Parameters of the AdhocDiamond#mouseEnter event.
31052
+ */
30574
31053
  export interface AdhocDiamond$MouseEnterEventParameters {}
30575
31054
 
31055
+ /**
31056
+ * Event object of the AdhocDiamond#mouseEnter event.
31057
+ */
30576
31058
  export type AdhocDiamond$MouseEnterEvent = Event<
30577
31059
  AdhocDiamond$MouseEnterEventParameters,
30578
31060
  AdhocDiamond
30579
31061
  >;
30580
31062
 
31063
+ /**
31064
+ * Parameters of the AdhocDiamond#mouseLeave event.
31065
+ */
30581
31066
  export interface AdhocDiamond$MouseLeaveEventParameters {}
30582
31067
 
31068
+ /**
31069
+ * Event object of the AdhocDiamond#mouseLeave event.
31070
+ */
30583
31071
  export type AdhocDiamond$MouseLeaveEvent = Event<
30584
31072
  AdhocDiamond$MouseLeaveEventParameters,
30585
31073
  AdhocDiamond
30586
31074
  >;
30587
31075
 
31076
+ /**
31077
+ * Parameters of the AdhocDiamond#press event.
31078
+ */
30588
31079
  export interface AdhocDiamond$PressEventParameters {}
30589
31080
 
31081
+ /**
31082
+ * Event object of the AdhocDiamond#press event.
31083
+ */
30590
31084
  export type AdhocDiamond$PressEvent = Event<
30591
31085
  AdhocDiamond$PressEventParameters,
30592
31086
  AdhocDiamond
@@ -31253,7 +31747,9 @@ declare module "sap/gantt/simple/AdhocLine" {
31253
31747
  bVisible?: boolean
31254
31748
  ): this;
31255
31749
  }
31256
-
31750
+ /**
31751
+ * Describes the settings that can be provided to the AdhocLine constructor.
31752
+ */
31257
31753
  export interface $AdhocLineSettings extends $ElementSettings {
31258
31754
  /**
31259
31755
  * Standard SVG 'stroke' attribute. You can provide the stroke attribute with HTML colors and the URL reference
@@ -31332,33 +31828,57 @@ declare module "sap/gantt/simple/AdhocLine" {
31332
31828
  adhoclineDrop?: (oEvent: AdhocLine$AdhoclineDropEvent) => void;
31333
31829
  }
31334
31830
 
31831
+ /**
31832
+ * Parameters of the AdhocLine#adhoclineDrop event.
31833
+ */
31335
31834
  export interface AdhocLine$AdhoclineDropEventParameters {
31336
31835
  newTimeStamp?: string;
31337
31836
 
31338
31837
  oldTimeStamp?: string;
31339
31838
  }
31340
31839
 
31840
+ /**
31841
+ * Event object of the AdhocLine#adhoclineDrop event.
31842
+ */
31341
31843
  export type AdhocLine$AdhoclineDropEvent = Event<
31342
31844
  AdhocLine$AdhoclineDropEventParameters,
31343
31845
  AdhocLine
31344
31846
  >;
31345
31847
 
31848
+ /**
31849
+ * Parameters of the AdhocLine#markerMouseEnter event.
31850
+ */
31346
31851
  export interface AdhocLine$MarkerMouseEnterEventParameters {}
31347
31852
 
31853
+ /**
31854
+ * Event object of the AdhocLine#markerMouseEnter event.
31855
+ */
31348
31856
  export type AdhocLine$MarkerMouseEnterEvent = Event<
31349
31857
  AdhocLine$MarkerMouseEnterEventParameters,
31350
31858
  AdhocLine
31351
31859
  >;
31352
31860
 
31861
+ /**
31862
+ * Parameters of the AdhocLine#markerMouseLeave event.
31863
+ */
31353
31864
  export interface AdhocLine$MarkerMouseLeaveEventParameters {}
31354
31865
 
31866
+ /**
31867
+ * Event object of the AdhocLine#markerMouseLeave event.
31868
+ */
31355
31869
  export type AdhocLine$MarkerMouseLeaveEvent = Event<
31356
31870
  AdhocLine$MarkerMouseLeaveEventParameters,
31357
31871
  AdhocLine
31358
31872
  >;
31359
31873
 
31874
+ /**
31875
+ * Parameters of the AdhocLine#markerPress event.
31876
+ */
31360
31877
  export interface AdhocLine$MarkerPressEventParameters {}
31361
31878
 
31879
+ /**
31880
+ * Event object of the AdhocLine#markerPress event.
31881
+ */
31362
31882
  export type AdhocLine$MarkerPressEvent = Event<
31363
31883
  AdhocLine$MarkerPressEventParameters,
31364
31884
  AdhocLine
@@ -31504,7 +32024,9 @@ declare module "sap/gantt/simple/BaseCalendar" {
31504
32024
  sCalendarName: string
31505
32025
  ): this;
31506
32026
  }
31507
-
32027
+ /**
32028
+ * Describes the settings that can be provided to the BaseCalendar constructor.
32029
+ */
31508
32030
  export interface $BaseCalendarSettings extends $BaseRectangleSettings {
31509
32031
  /**
31510
32032
  * Calendar name is used to map the base calendar with its calendar definition pattern. Do not set this
@@ -31703,7 +32225,9 @@ declare module "sap/gantt/simple/BaseChevron" {
31703
32225
  sTitle?: string
31704
32226
  ): this;
31705
32227
  }
31706
-
32228
+ /**
32229
+ * Describes the settings that can be provided to the BaseChevron constructor.
32230
+ */
31707
32231
  export interface $BaseChevronSettings extends $BaseRectangleSettings {
31708
32232
  /**
31709
32233
  * The head width of the Chevron
@@ -31961,7 +32485,9 @@ declare module "sap/gantt/simple/BaseConditionalShape" {
31961
32485
  */
31962
32486
  setProperty(): this;
31963
32487
  }
31964
-
32488
+ /**
32489
+ * Describes the settings that can be provided to the BaseConditionalShape constructor.
32490
+ */
31965
32491
  export interface $BaseConditionalShapeSettings extends $BaseShapeSettings {
31966
32492
  /**
31967
32493
  * Defines which shape from the `shapes` aggregation is visible. If you specify a negative value or a value
@@ -32154,7 +32680,9 @@ declare module "sap/gantt/simple/BaseCursor" {
32154
32680
  fWidth?: float
32155
32681
  ): this;
32156
32682
  }
32157
-
32683
+ /**
32684
+ * Describes the settings that can be provided to the BaseCursor constructor.
32685
+ */
32158
32686
  export interface $BaseCursorSettings extends $BaseRectangleSettings {
32159
32687
  /**
32160
32688
  * The horizontal length of a cursor. This property influences generated value `d`.
@@ -32694,7 +33222,9 @@ declare module "sap/gantt/simple/BaseDeltaRectangle" {
32694
33222
  sY: SVGLength
32695
33223
  ): this;
32696
33224
  }
32697
-
33225
+ /**
33226
+ * Describes the settings that can be provided to the BaseDeltaRectangle constructor.
33227
+ */
32698
33228
  export interface $BaseDeltaRectangleSettings extends $BaseShapeSettings {
32699
33229
  /**
32700
33230
  * Defines the X-axis coordinate in the user coordinate system.
@@ -32747,22 +33277,40 @@ declare module "sap/gantt/simple/BaseDeltaRectangle" {
32747
33277
  mouseLeave?: (oEvent: Event) => void;
32748
33278
  }
32749
33279
 
33280
+ /**
33281
+ * Parameters of the BaseDeltaRectangle#mouseEnter event.
33282
+ */
32750
33283
  export interface BaseDeltaRectangle$MouseEnterEventParameters {}
32751
33284
 
33285
+ /**
33286
+ * Event object of the BaseDeltaRectangle#mouseEnter event.
33287
+ */
32752
33288
  export type BaseDeltaRectangle$MouseEnterEvent = Event<
32753
33289
  BaseDeltaRectangle$MouseEnterEventParameters,
32754
33290
  BaseDeltaRectangle
32755
33291
  >;
32756
33292
 
33293
+ /**
33294
+ * Parameters of the BaseDeltaRectangle#mouseLeave event.
33295
+ */
32757
33296
  export interface BaseDeltaRectangle$MouseLeaveEventParameters {}
32758
33297
 
33298
+ /**
33299
+ * Event object of the BaseDeltaRectangle#mouseLeave event.
33300
+ */
32759
33301
  export type BaseDeltaRectangle$MouseLeaveEvent = Event<
32760
33302
  BaseDeltaRectangle$MouseLeaveEventParameters,
32761
33303
  BaseDeltaRectangle
32762
33304
  >;
32763
33305
 
33306
+ /**
33307
+ * Parameters of the BaseDeltaRectangle#press event.
33308
+ */
32764
33309
  export interface BaseDeltaRectangle$PressEventParameters {}
32765
33310
 
33311
+ /**
33312
+ * Event object of the BaseDeltaRectangle#press event.
33313
+ */
32766
33314
  export type BaseDeltaRectangle$PressEvent = Event<
32767
33315
  BaseDeltaRectangle$PressEventParameters,
32768
33316
  BaseDeltaRectangle
@@ -32893,7 +33441,9 @@ declare module "sap/gantt/simple/BaseDiamond" {
32893
33441
  sWidth?: SVGLength
32894
33442
  ): this;
32895
33443
  }
32896
-
33444
+ /**
33445
+ * Describes the settings that can be provided to the BaseDiamond constructor.
33446
+ */
32897
33447
  export interface $BaseDiamondSettings extends $BaseRectangleSettings {
32898
33448
  /**
32899
33449
  * width of Diamond
@@ -33079,7 +33629,9 @@ declare module "sap/gantt/simple/BaseGroup" {
33079
33629
  oGroup: BaseGroup
33080
33630
  ): void;
33081
33631
  }
33082
-
33632
+ /**
33633
+ * Describes the settings that can be provided to the BaseGroup constructor.
33634
+ */
33083
33635
  export interface $BaseGroupSettings extends $BaseShapeSettings {
33084
33636
  /**
33085
33637
  * The shapes of the group
@@ -33292,7 +33844,9 @@ declare module "sap/gantt/simple/BaseImage" {
33292
33844
  sWidth?: SVGLength
33293
33845
  ): this;
33294
33846
  }
33295
-
33847
+ /**
33848
+ * Describes the settings that can be provided to the BaseImage constructor.
33849
+ */
33296
33850
  export interface $BaseImageSettings extends $BaseTextSettings {
33297
33851
  /**
33298
33852
  * Src of the image. If the image is represented by an icon font, then the src is sap-icon://task for instance
@@ -33506,7 +34060,9 @@ declare module "sap/gantt/simple/BaseLine" {
33506
34060
  sY2?: SVGLength
33507
34061
  ): this;
33508
34062
  }
33509
-
34063
+ /**
34064
+ * Describes the settings that can be provided to the BaseLine constructor.
34065
+ */
33510
34066
  export interface $BaseLineSettings extends $BaseShapeSettings {
33511
34067
  /**
33512
34068
  * x1 defines the x-axis coordinate of the line starting point
@@ -33647,7 +34203,9 @@ declare module "sap/gantt/simple/BasePath" {
33647
34203
  sD: string
33648
34204
  ): this;
33649
34205
  }
33650
-
34206
+ /**
34207
+ * Describes the settings that can be provided to the BasePath constructor.
34208
+ */
33651
34209
  export interface $BasePathSettings extends $BaseShapeSettings {
33652
34210
  /**
33653
34211
  * The d property provides a path definition to be drawn.
@@ -33909,7 +34467,9 @@ declare module "sap/gantt/simple/BaseRectangle" {
33909
34467
  sY: SVGLength
33910
34468
  ): this;
33911
34469
  }
33912
-
34470
+ /**
34471
+ * Describes the settings that can be provided to the BaseRectangle constructor.
34472
+ */
33913
34473
  export interface $BaseRectangleSettings extends $BaseShapeSettings {
33914
34474
  /**
33915
34475
  * x defines a x-axis coordinate in the user coordinate system
@@ -35430,7 +35990,9 @@ declare module "sap/gantt/simple/BaseShape" {
35430
35990
  fYBias?: float
35431
35991
  ): this;
35432
35992
  }
35433
-
35993
+ /**
35994
+ * Describes the settings that can be provided to the BaseShape constructor.
35995
+ */
35434
35996
  export interface $BaseShapeSettings extends $ElementSettings {
35435
35997
  /**
35436
35998
  * ID of the shape. shapeId property represents a unique identifier for a business object. This property
@@ -36120,7 +36682,9 @@ declare module "sap/gantt/simple/BaseText" {
36120
36682
  fY: float
36121
36683
  ): this;
36122
36684
  }
36123
-
36685
+ /**
36686
+ * Describes the settings that can be provided to the BaseText constructor.
36687
+ */
36124
36688
  export interface $BaseTextSettings extends $BaseShapeSettings {
36125
36689
  /**
36126
36690
  * Text content
@@ -36611,7 +37175,9 @@ declare module "sap/gantt/simple/BaseTriangle" {
36611
37175
  sWidth?: SVGLength
36612
37176
  ): this;
36613
37177
  }
36614
-
37178
+ /**
37179
+ * Describes the settings that can be provided to the BaseTriangle constructor.
37180
+ */
36615
37181
  export interface $BaseTriangleSettings extends $BaseRectangleSettings {
36616
37182
  /**
36617
37183
  * Standard SVG 'stroke' attribute. You can provide the stroke attribute with HTML colors and URL reference
@@ -36652,22 +37218,40 @@ declare module "sap/gantt/simple/BaseTriangle" {
36652
37218
  mouseLeave?: (oEvent: Event) => void;
36653
37219
  }
36654
37220
 
37221
+ /**
37222
+ * Parameters of the BaseTriangle#mouseEnter event.
37223
+ */
36655
37224
  export interface BaseTriangle$MouseEnterEventParameters {}
36656
37225
 
37226
+ /**
37227
+ * Event object of the BaseTriangle#mouseEnter event.
37228
+ */
36657
37229
  export type BaseTriangle$MouseEnterEvent = Event<
36658
37230
  BaseTriangle$MouseEnterEventParameters,
36659
37231
  BaseTriangle
36660
37232
  >;
36661
37233
 
37234
+ /**
37235
+ * Parameters of the BaseTriangle#mouseLeave event.
37236
+ */
36662
37237
  export interface BaseTriangle$MouseLeaveEventParameters {}
36663
37238
 
37239
+ /**
37240
+ * Event object of the BaseTriangle#mouseLeave event.
37241
+ */
36664
37242
  export type BaseTriangle$MouseLeaveEvent = Event<
36665
37243
  BaseTriangle$MouseLeaveEventParameters,
36666
37244
  BaseTriangle
36667
37245
  >;
36668
37246
 
37247
+ /**
37248
+ * Parameters of the BaseTriangle#press event.
37249
+ */
36669
37250
  export interface BaseTriangle$PressEventParameters {}
36670
37251
 
37252
+ /**
37253
+ * Event object of the BaseTriangle#press event.
37254
+ */
36671
37255
  export type BaseTriangle$PressEvent = Event<
36672
37256
  BaseTriangle$PressEventParameters,
36673
37257
  BaseTriangle
@@ -37904,7 +38488,9 @@ declare module "sap/gantt/simple/ContainerToolbar" {
37904
38488
  iZoomLevel?: int
37905
38489
  ): this;
37906
38490
  }
37907
-
38491
+ /**
38492
+ * Describes the settings that can be provided to the ContainerToolbar constructor.
38493
+ */
37908
38494
  export interface $ContainerToolbarSettings extends $OverflowToolbarSettings {
37909
38495
  /**
37910
38496
  * Flag to show or hide bird eye button on the toolbar
@@ -38054,67 +38640,135 @@ declare module "sap/gantt/simple/ContainerToolbar" {
38054
38640
  closeSidePanelButtonPress?: (oEvent: Event) => void;
38055
38641
  }
38056
38642
 
38643
+ /**
38644
+ * Parameters of the ContainerToolbar#birdEyeButtonPress event.
38645
+ */
38057
38646
  export interface ContainerToolbar$BirdEyeButtonPressEventParameters {}
38058
38647
 
38648
+ /**
38649
+ * Event object of the ContainerToolbar#birdEyeButtonPress event.
38650
+ */
38059
38651
  export type ContainerToolbar$BirdEyeButtonPressEvent = Event<
38060
38652
  ContainerToolbar$BirdEyeButtonPressEventParameters,
38061
38653
  ContainerToolbar
38062
38654
  >;
38063
38655
 
38656
+ /**
38657
+ * Parameters of the ContainerToolbar#closeFindButtonPress event.
38658
+ *
38659
+ * @experimental (since 1.102)
38660
+ */
38064
38661
  export interface ContainerToolbar$CloseFindButtonPressEventParameters {}
38065
38662
 
38663
+ /**
38664
+ * Event object of the ContainerToolbar#closeFindButtonPress event.
38665
+ *
38666
+ * @experimental (since 1.102)
38667
+ */
38066
38668
  export type ContainerToolbar$CloseFindButtonPressEvent = Event<
38067
38669
  ContainerToolbar$CloseFindButtonPressEventParameters,
38068
38670
  ContainerToolbar
38069
38671
  >;
38070
38672
 
38673
+ /**
38674
+ * Parameters of the ContainerToolbar#closeSidePanelButtonPress event.
38675
+ *
38676
+ * @experimental (since 1.102)
38677
+ */
38071
38678
  export interface ContainerToolbar$CloseSidePanelButtonPressEventParameters {}
38072
38679
 
38680
+ /**
38681
+ * Event object of the ContainerToolbar#closeSidePanelButtonPress event.
38682
+ *
38683
+ * @experimental (since 1.102)
38684
+ */
38073
38685
  export type ContainerToolbar$CloseSidePanelButtonPressEvent = Event<
38074
38686
  ContainerToolbar$CloseSidePanelButtonPressEventParameters,
38075
38687
  ContainerToolbar
38076
38688
  >;
38077
38689
 
38690
+ /**
38691
+ * Parameters of the ContainerToolbar#displayTypeChange event.
38692
+ */
38078
38693
  export interface ContainerToolbar$DisplayTypeChangeEventParameters {
38079
38694
  displayType?:
38080
38695
  | simple.GanttChartWithTableDisplayType
38081
38696
  | keyof typeof simple.GanttChartWithTableDisplayType;
38082
38697
  }
38083
38698
 
38699
+ /**
38700
+ * Event object of the ContainerToolbar#displayTypeChange event.
38701
+ */
38084
38702
  export type ContainerToolbar$DisplayTypeChangeEvent = Event<
38085
38703
  ContainerToolbar$DisplayTypeChangeEventParameters,
38086
38704
  ContainerToolbar
38087
38705
  >;
38088
38706
 
38707
+ /**
38708
+ * Parameters of the ContainerToolbar#findButtonPress event.
38709
+ *
38710
+ * @experimental (since 1.102)
38711
+ */
38089
38712
  export interface ContainerToolbar$FindButtonPressEventParameters {}
38090
38713
 
38714
+ /**
38715
+ * Event object of the ContainerToolbar#findButtonPress event.
38716
+ *
38717
+ * @experimental (since 1.102)
38718
+ */
38091
38719
  export type ContainerToolbar$FindButtonPressEvent = Event<
38092
38720
  ContainerToolbar$FindButtonPressEventParameters,
38093
38721
  ContainerToolbar
38094
38722
  >;
38095
38723
 
38724
+ /**
38725
+ * Parameters of the ContainerToolbar#findPopupButtonPress event.
38726
+ *
38727
+ * @experimental (since 1.102)
38728
+ */
38096
38729
  export interface ContainerToolbar$FindPopupButtonPressEventParameters {}
38097
38730
 
38731
+ /**
38732
+ * Event object of the ContainerToolbar#findPopupButtonPress event.
38733
+ *
38734
+ * @experimental (since 1.102)
38735
+ */
38098
38736
  export type ContainerToolbar$FindPopupButtonPressEvent = Event<
38099
38737
  ContainerToolbar$FindPopupButtonPressEventParameters,
38100
38738
  ContainerToolbar
38101
38739
  >;
38102
38740
 
38741
+ /**
38742
+ * Parameters of the ContainerToolbar#ganttSidePanel event.
38743
+ *
38744
+ * @experimental (since 1.100)
38745
+ */
38103
38746
  export interface ContainerToolbar$GanttSidePanelEventParameters {
38104
38747
  updateSidePanelState?: object;
38105
38748
  }
38106
38749
 
38750
+ /**
38751
+ * Event object of the ContainerToolbar#ganttSidePanel event.
38752
+ *
38753
+ * @experimental (since 1.100)
38754
+ */
38107
38755
  export type ContainerToolbar$GanttSidePanelEvent = Event<
38108
38756
  ContainerToolbar$GanttSidePanelEventParameters,
38109
38757
  ContainerToolbar
38110
38758
  >;
38111
38759
 
38760
+ /**
38761
+ * Parameters of the ContainerToolbar#zoomStopChange event.
38762
+ */
38112
38763
  export interface ContainerToolbar$ZoomStopChangeEventParameters {
38113
38764
  index?: int;
38114
38765
 
38115
38766
  selectedItem?: Item;
38116
38767
  }
38117
38768
 
38769
+ /**
38770
+ * Event object of the ContainerToolbar#zoomStopChange event.
38771
+ */
38118
38772
  export type ContainerToolbar$ZoomStopChangeEvent = Event<
38119
38773
  ContainerToolbar$ZoomStopChangeEventParameters,
38120
38774
  ContainerToolbar
@@ -38241,7 +38895,9 @@ declare module "sap/gantt/simple/ContainerToolbarPlaceholder" {
38241
38895
  | keyof typeof simple.ContainerToolbarPlaceholderType
38242
38896
  ): this;
38243
38897
  }
38244
-
38898
+ /**
38899
+ * Describes the settings that can be provided to the ContainerToolbarPlaceholder constructor.
38900
+ */
38245
38901
  export interface $ContainerToolbarPlaceholderSettings
38246
38902
  extends $ControlSettings {
38247
38903
  /**
@@ -38377,7 +39033,9 @@ declare module "sap/gantt/simple/CustomVariantHandler" {
38377
39033
  sDependantControlID?: string[]
38378
39034
  ): this;
38379
39035
  }
38380
-
39036
+ /**
39037
+ * Describes the settings that can be provided to the CustomVariantHandler constructor.
39038
+ */
38381
39039
  export interface $CustomVariantHandlerSettings extends $ElementSettings {
38382
39040
  data?: object | PropertyBindingInfo | `{${string}}`;
38383
39041
 
@@ -39150,7 +39808,9 @@ declare module "sap/gantt/simple/DeltaLine" {
39150
39808
  bVisibleDeltaStartEndLines?: boolean
39151
39809
  ): this;
39152
39810
  }
39153
-
39811
+ /**
39812
+ * Describes the settings that can be provided to the DeltaLine constructor.
39813
+ */
39154
39814
  export interface $DeltaLineSettings extends $ElementSettings {
39155
39815
  /**
39156
39816
  * Standard SVG 'stroke' attribute. You can provide the stroke attribute with HTML colors and URL reference
@@ -39238,6 +39898,9 @@ declare module "sap/gantt/simple/DeltaLine" {
39238
39898
  deltalineResize?: (oEvent: DeltaLine$DeltalineResizeEvent) => void;
39239
39899
  }
39240
39900
 
39901
+ /**
39902
+ * Parameters of the DeltaLine#deltalineDrop event.
39903
+ */
39241
39904
  export interface DeltaLine$DeltalineDropEventParameters {
39242
39905
  newStartTime?: string;
39243
39906
 
@@ -39248,11 +39911,17 @@ declare module "sap/gantt/simple/DeltaLine" {
39248
39911
  oldEndTime?: string;
39249
39912
  }
39250
39913
 
39914
+ /**
39915
+ * Event object of the DeltaLine#deltalineDrop event.
39916
+ */
39251
39917
  export type DeltaLine$DeltalineDropEvent = Event<
39252
39918
  DeltaLine$DeltalineDropEventParameters,
39253
39919
  DeltaLine
39254
39920
  >;
39255
39921
 
39922
+ /**
39923
+ * Parameters of the DeltaLine#deltalineResize event.
39924
+ */
39256
39925
  export interface DeltaLine$DeltalineResizeEventParameters {
39257
39926
  newTimeStamp?: string;
39258
39927
 
@@ -39265,27 +39934,48 @@ declare module "sap/gantt/simple/DeltaLine" {
39265
39934
  deltaline?: DeltaLine;
39266
39935
  }
39267
39936
 
39937
+ /**
39938
+ * Event object of the DeltaLine#deltalineResize event.
39939
+ */
39268
39940
  export type DeltaLine$DeltalineResizeEvent = Event<
39269
39941
  DeltaLine$DeltalineResizeEventParameters,
39270
39942
  DeltaLine
39271
39943
  >;
39272
39944
 
39945
+ /**
39946
+ * Parameters of the DeltaLine#mouseEnter event.
39947
+ */
39273
39948
  export interface DeltaLine$MouseEnterEventParameters {}
39274
39949
 
39950
+ /**
39951
+ * Event object of the DeltaLine#mouseEnter event.
39952
+ */
39275
39953
  export type DeltaLine$MouseEnterEvent = Event<
39276
39954
  DeltaLine$MouseEnterEventParameters,
39277
39955
  DeltaLine
39278
39956
  >;
39279
39957
 
39958
+ /**
39959
+ * Parameters of the DeltaLine#mouseLeave event.
39960
+ */
39280
39961
  export interface DeltaLine$MouseLeaveEventParameters {}
39281
39962
 
39963
+ /**
39964
+ * Event object of the DeltaLine#mouseLeave event.
39965
+ */
39282
39966
  export type DeltaLine$MouseLeaveEvent = Event<
39283
39967
  DeltaLine$MouseLeaveEventParameters,
39284
39968
  DeltaLine
39285
39969
  >;
39286
39970
 
39971
+ /**
39972
+ * Parameters of the DeltaLine#press event.
39973
+ */
39287
39974
  export interface DeltaLine$PressEventParameters {}
39288
39975
 
39976
+ /**
39977
+ * Event object of the DeltaLine#press event.
39978
+ */
39289
39979
  export type DeltaLine$PressEvent = Event<
39290
39980
  DeltaLine$PressEventParameters,
39291
39981
  DeltaLine
@@ -39560,7 +40250,9 @@ declare module "sap/gantt/simple/DimensionLegend" {
39560
40250
  sTitle?: string
39561
40251
  ): this;
39562
40252
  }
39563
-
40253
+ /**
40254
+ * Describes the settings that can be provided to the DimensionLegend constructor.
40255
+ */
39564
40256
  export interface $DimensionLegendSettings extends $ControlSettings {
39565
40257
  /**
39566
40258
  * Title of Legend Page & text of navigation list item (if not set it will be empty)
@@ -40946,7 +41638,9 @@ declare module "sap/gantt/simple/GanttChartContainer" {
40946
41638
  sWidth?: CSSSize
40947
41639
  ): this;
40948
41640
  }
40949
-
41641
+ /**
41642
+ * Describes the settings that can be provided to the GanttChartContainer constructor.
41643
+ */
40950
41644
  export interface $GanttChartContainerSettings extends $ControlSettings {
40951
41645
  /**
40952
41646
  * height of the container.
@@ -41187,6 +41881,11 @@ declare module "sap/gantt/simple/GanttChartContainer" {
41187
41881
  ) => void;
41188
41882
  }
41189
41883
 
41884
+ /**
41885
+ * Parameters of the GanttChartContainer#customGanttSearchResult event.
41886
+ *
41887
+ * @experimental (since 1.106)
41888
+ */
41190
41889
  export interface GanttChartContainer$CustomGanttSearchResultEventParameters {
41191
41890
  /**
41192
41891
  * Array of search results that the application can use to filter results shown on the toolbar and side
@@ -41195,11 +41894,19 @@ declare module "sap/gantt/simple/GanttChartContainer" {
41195
41894
  searchResults?: any[];
41196
41895
  }
41197
41896
 
41897
+ /**
41898
+ * Event object of the GanttChartContainer#customGanttSearchResult event.
41899
+ *
41900
+ * @experimental (since 1.106)
41901
+ */
41198
41902
  export type GanttChartContainer$CustomGanttSearchResultEvent = Event<
41199
41903
  GanttChartContainer$CustomGanttSearchResultEventParameters,
41200
41904
  GanttChartContainer
41201
41905
  >;
41202
41906
 
41907
+ /**
41908
+ * Parameters of the GanttChartContainer#customSettingChange event.
41909
+ */
41203
41910
  export interface GanttChartContainer$CustomSettingChangeEventParameters {
41204
41911
  /**
41205
41912
  * Name of the custom setting
@@ -41212,11 +41919,19 @@ declare module "sap/gantt/simple/GanttChartContainer" {
41212
41919
  value?: boolean;
41213
41920
  }
41214
41921
 
41922
+ /**
41923
+ * Event object of the GanttChartContainer#customSettingChange event.
41924
+ */
41215
41925
  export type GanttChartContainer$CustomSettingChangeEvent = Event<
41216
41926
  GanttChartContainer$CustomSettingChangeEventParameters,
41217
41927
  GanttChartContainer
41218
41928
  >;
41219
41929
 
41930
+ /**
41931
+ * Parameters of the GanttChartContainer#ganttSearchSidePanelList event.
41932
+ *
41933
+ * @experimental (since 1.102)
41934
+ */
41220
41935
  export interface GanttChartContainer$GanttSearchSidePanelListEventParameters {
41221
41936
  /**
41222
41937
  * Array of search results with each result containing data which application can use to customise side
@@ -41225,13 +41940,24 @@ declare module "sap/gantt/simple/GanttChartContainer" {
41225
41940
  searchResults?: any[];
41226
41941
  }
41227
41942
 
41943
+ /**
41944
+ * Event object of the GanttChartContainer#ganttSearchSidePanelList event.
41945
+ *
41946
+ * @experimental (since 1.102)
41947
+ */
41228
41948
  export type GanttChartContainer$GanttSearchSidePanelListEvent = Event<
41229
41949
  GanttChartContainer$GanttSearchSidePanelListEventParameters,
41230
41950
  GanttChartContainer
41231
41951
  >;
41232
41952
 
41953
+ /**
41954
+ * Parameters of the GanttChartContainer#variantApplied event.
41955
+ */
41233
41956
  export interface GanttChartContainer$VariantAppliedEventParameters {}
41234
41957
 
41958
+ /**
41959
+ * Event object of the GanttChartContainer#variantApplied event.
41960
+ */
41235
41961
  export type GanttChartContainer$VariantAppliedEvent = Event<
41236
41962
  GanttChartContainer$VariantAppliedEventParameters,
41237
41963
  GanttChartContainer
@@ -45386,7 +46112,9 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
45386
46112
  deEmphasizeAll: Boolean
45387
46113
  ): void;
45388
46114
  }
45389
-
46115
+ /**
46116
+ * Describes the settings that can be provided to the GanttChartWithTable constructor.
46117
+ */
45390
46118
  export interface $GanttChartWithTableSettings extends $ControlSettings {
45391
46119
  /**
45392
46120
  * Width of the control.
@@ -46086,6 +46814,9 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46086
46814
  renderingComplete?: (oEvent: Event) => void;
46087
46815
  }
46088
46816
 
46817
+ /**
46818
+ * Parameters of the GanttChartWithTable#dragStart event.
46819
+ */
46089
46820
  export interface GanttChartWithTable$DragStartEventParameters {
46090
46821
  /**
46091
46822
  * The source Gantt chart
@@ -46124,18 +46855,30 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46124
46855
  cursorDateTime?: object;
46125
46856
  }
46126
46857
 
46858
+ /**
46859
+ * Event object of the GanttChartWithTable#dragStart event.
46860
+ */
46127
46861
  export type GanttChartWithTable$DragStartEvent = Event<
46128
46862
  GanttChartWithTable$DragStartEventParameters,
46129
46863
  GanttChartWithTable
46130
46864
  >;
46131
46865
 
46866
+ /**
46867
+ * Parameters of the GanttChartWithTable#renderingComplete event.
46868
+ */
46132
46869
  export interface GanttChartWithTable$RenderingCompleteEventParameters {}
46133
46870
 
46871
+ /**
46872
+ * Event object of the GanttChartWithTable#renderingComplete event.
46873
+ */
46134
46874
  export type GanttChartWithTable$RenderingCompleteEvent = Event<
46135
46875
  GanttChartWithTable$RenderingCompleteEventParameters,
46136
46876
  GanttChartWithTable
46137
46877
  >;
46138
46878
 
46879
+ /**
46880
+ * Parameters of the GanttChartWithTable#shapeConnect event.
46881
+ */
46139
46882
  export interface GanttChartWithTable$ShapeConnectEventParameters {
46140
46883
  /**
46141
46884
  * The source shape's shapeUid
@@ -46153,11 +46896,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46153
46896
  type?: simple.RelationshipType | keyof typeof simple.RelationshipType;
46154
46897
  }
46155
46898
 
46899
+ /**
46900
+ * Event object of the GanttChartWithTable#shapeConnect event.
46901
+ */
46156
46902
  export type GanttChartWithTable$ShapeConnectEvent = Event<
46157
46903
  GanttChartWithTable$ShapeConnectEventParameters,
46158
46904
  GanttChartWithTable
46159
46905
  >;
46160
46906
 
46907
+ /**
46908
+ * Parameters of the GanttChartWithTable#shapeConnectorList event.
46909
+ */
46161
46910
  export interface GanttChartWithTable$ShapeConnectorListEventParameters {
46162
46911
  /**
46163
46912
  * The mouse position relative to the left edge of the document.
@@ -46175,11 +46924,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46175
46924
  connectorList?: object;
46176
46925
  }
46177
46926
 
46927
+ /**
46928
+ * Event object of the GanttChartWithTable#shapeConnectorList event.
46929
+ */
46178
46930
  export type GanttChartWithTable$ShapeConnectorListEvent = Event<
46179
46931
  GanttChartWithTable$ShapeConnectorListEventParameters,
46180
46932
  GanttChartWithTable
46181
46933
  >;
46182
46934
 
46935
+ /**
46936
+ * Parameters of the GanttChartWithTable#shapeContextMenu event.
46937
+ */
46183
46938
  export interface GanttChartWithTable$ShapeContextMenuEventParameters {
46184
46939
  /**
46185
46940
  * The mouse position relative to the left edge of the document.
@@ -46207,11 +46962,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46207
46962
  shape?: BaseShape;
46208
46963
  }
46209
46964
 
46965
+ /**
46966
+ * Event object of the GanttChartWithTable#shapeContextMenu event.
46967
+ */
46210
46968
  export type GanttChartWithTable$ShapeContextMenuEvent = Event<
46211
46969
  GanttChartWithTable$ShapeContextMenuEventParameters,
46212
46970
  GanttChartWithTable
46213
46971
  >;
46214
46972
 
46973
+ /**
46974
+ * Parameters of the GanttChartWithTable#shapeDoubleClick event.
46975
+ */
46215
46976
  export interface GanttChartWithTable$ShapeDoubleClickEventParameters {
46216
46977
  /**
46217
46978
  * Offset for an {@link sap.m.Popover} placement on the x axis, in pixels.
@@ -46229,11 +46990,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46229
46990
  shape?: BaseShape;
46230
46991
  }
46231
46992
 
46993
+ /**
46994
+ * Event object of the GanttChartWithTable#shapeDoubleClick event.
46995
+ */
46232
46996
  export type GanttChartWithTable$ShapeDoubleClickEvent = Event<
46233
46997
  GanttChartWithTable$ShapeDoubleClickEventParameters,
46234
46998
  GanttChartWithTable
46235
46999
  >;
46236
47000
 
47001
+ /**
47002
+ * Parameters of the GanttChartWithTable#shapeDrop event.
47003
+ */
46237
47004
  export interface GanttChartWithTable$ShapeDropEventParameters {
46238
47005
  /**
46239
47006
  * The source gantt chart
@@ -46301,11 +47068,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46301
47068
  targetShape?: BaseShape;
46302
47069
  }
46303
47070
 
47071
+ /**
47072
+ * Event object of the GanttChartWithTable#shapeDrop event.
47073
+ */
46304
47074
  export type GanttChartWithTable$ShapeDropEvent = Event<
46305
47075
  GanttChartWithTable$ShapeDropEventParameters,
46306
47076
  GanttChartWithTable
46307
47077
  >;
46308
47078
 
47079
+ /**
47080
+ * Parameters of the GanttChartWithTable#shapeHighlightChange event.
47081
+ */
46309
47082
  export interface GanttChartWithTable$ShapeHighlightChangeEventParameters {
46310
47083
  /**
46311
47084
  * all highlighted shape UID.
@@ -46313,11 +47086,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46313
47086
  shapeUids?: string[];
46314
47087
  }
46315
47088
 
47089
+ /**
47090
+ * Event object of the GanttChartWithTable#shapeHighlightChange event.
47091
+ */
46316
47092
  export type GanttChartWithTable$ShapeHighlightChangeEvent = Event<
46317
47093
  GanttChartWithTable$ShapeHighlightChangeEventParameters,
46318
47094
  GanttChartWithTable
46319
47095
  >;
46320
47096
 
47097
+ /**
47098
+ * Parameters of the GanttChartWithTable#shapeMouseEnter event.
47099
+ */
46321
47100
  export interface GanttChartWithTable$ShapeMouseEnterEventParameters {
46322
47101
  /**
46323
47102
  * The data of the shape which fires this event.
@@ -46335,11 +47114,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46335
47114
  pageY?: int;
46336
47115
  }
46337
47116
 
47117
+ /**
47118
+ * Event object of the GanttChartWithTable#shapeMouseEnter event.
47119
+ */
46338
47120
  export type GanttChartWithTable$ShapeMouseEnterEvent = Event<
46339
47121
  GanttChartWithTable$ShapeMouseEnterEventParameters,
46340
47122
  GanttChartWithTable
46341
47123
  >;
46342
47124
 
47125
+ /**
47126
+ * Parameters of the GanttChartWithTable#shapeMouseLeave event.
47127
+ */
46343
47128
  export interface GanttChartWithTable$ShapeMouseLeaveEventParameters {
46344
47129
  /**
46345
47130
  * which shape element trigger the event.
@@ -46352,11 +47137,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46352
47137
  originEvent?: object;
46353
47138
  }
46354
47139
 
47140
+ /**
47141
+ * Event object of the GanttChartWithTable#shapeMouseLeave event.
47142
+ */
46355
47143
  export type GanttChartWithTable$ShapeMouseLeaveEvent = Event<
46356
47144
  GanttChartWithTable$ShapeMouseLeaveEventParameters,
46357
47145
  GanttChartWithTable
46358
47146
  >;
46359
47147
 
47148
+ /**
47149
+ * Parameters of the GanttChartWithTable#shapePress event.
47150
+ */
46360
47151
  export interface GanttChartWithTable$ShapePressEventParameters {
46361
47152
  /**
46362
47153
  * Offset for an {@link sap.m.Popover} placement on the x axis, in pixels.
@@ -46374,11 +47165,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46374
47165
  shape?: BaseShape;
46375
47166
  }
46376
47167
 
47168
+ /**
47169
+ * Event object of the GanttChartWithTable#shapePress event.
47170
+ */
46377
47171
  export type GanttChartWithTable$ShapePressEvent = Event<
46378
47172
  GanttChartWithTable$ShapePressEventParameters,
46379
47173
  GanttChartWithTable
46380
47174
  >;
46381
47175
 
47176
+ /**
47177
+ * Parameters of the GanttChartWithTable#shapeResize event.
47178
+ */
46382
47179
  export interface GanttChartWithTable$ShapeResizeEventParameters {
46383
47180
  /**
46384
47181
  * UID of the resized shape.
@@ -46406,11 +47203,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46406
47203
  newTime?: string[];
46407
47204
  }
46408
47205
 
47206
+ /**
47207
+ * Event object of the GanttChartWithTable#shapeResize event.
47208
+ */
46409
47209
  export type GanttChartWithTable$ShapeResizeEvent = Event<
46410
47210
  GanttChartWithTable$ShapeResizeEventParameters,
46411
47211
  GanttChartWithTable
46412
47212
  >;
46413
47213
 
47214
+ /**
47215
+ * Parameters of the GanttChartWithTable#shapeSelectionChange event.
47216
+ */
46414
47217
  export interface GanttChartWithTable$ShapeSelectionChangeEventParameters {
46415
47218
  /**
46416
47219
  * all selected shape UID.
@@ -46418,11 +47221,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46418
47221
  shapeUids?: string[];
46419
47222
  }
46420
47223
 
47224
+ /**
47225
+ * Event object of the GanttChartWithTable#shapeSelectionChange event.
47226
+ */
46421
47227
  export type GanttChartWithTable$ShapeSelectionChangeEvent = Event<
46422
47228
  GanttChartWithTable$ShapeSelectionChangeEventParameters,
46423
47229
  GanttChartWithTable
46424
47230
  >;
46425
47231
 
47232
+ /**
47233
+ * Parameters of the GanttChartWithTable#visibleHorizonUpdate event.
47234
+ */
46426
47235
  export interface GanttChartWithTable$VisibleHorizonUpdateEventParameters {
46427
47236
  /**
46428
47237
  * Specifies how the update was initiated.
@@ -46459,6 +47268,9 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
46459
47268
  currentRenderedVisibleHorizon?: TimeHorizon;
46460
47269
  }
46461
47270
 
47271
+ /**
47272
+ * Event object of the GanttChartWithTable#visibleHorizonUpdate event.
47273
+ */
46462
47274
  export type GanttChartWithTable$VisibleHorizonUpdateEvent = Event<
46463
47275
  GanttChartWithTable$VisibleHorizonUpdateEventParameters,
46464
47276
  GanttChartWithTable
@@ -46580,7 +47392,9 @@ declare module "sap/gantt/simple/GanttPrinting" {
46580
47392
  oGanttChart: undefined
46581
47393
  ): this;
46582
47394
  }
46583
-
47395
+ /**
47396
+ * Describes the settings that can be provided to the GanttPrinting constructor.
47397
+ */
46584
47398
  export interface $GanttPrintingSettings extends $ElementSettings {
46585
47399
  /**
46586
47400
  * Gantt chart to be exported as PDF document.
@@ -48089,7 +48903,9 @@ declare module "sap/gantt/simple/GanttRowSettings" {
48089
48903
  sRowId: string
48090
48904
  ): this;
48091
48905
  }
48092
-
48906
+ /**
48907
+ * Describes the settings that can be provided to the GanttRowSettings constructor.
48908
+ */
48093
48909
  export interface $GanttRowSettingsSettings extends $RowSettingsSettings {
48094
48910
  rowId?: string | PropertyBindingInfo;
48095
48911
 
@@ -48383,7 +49199,9 @@ declare module "sap/gantt/simple/LegendColumnConfig" {
48383
49199
  sText: string
48384
49200
  ): this;
48385
49201
  }
48386
-
49202
+ /**
49203
+ * Describes the settings that can be provided to the LegendColumnConfig constructor.
49204
+ */
48387
49205
  export interface $LegendColumnConfigSettings extends $ElementSettings {
48388
49206
  /**
48389
49207
  * Once this property is set, shapes in one vertical line have the same fill color or fill pattern.
@@ -48658,7 +49476,9 @@ declare module "sap/gantt/simple/LegendContainer" {
48658
49476
  sWidth?: CSSSize
48659
49477
  ): this;
48660
49478
  }
48661
-
49479
+ /**
49480
+ * Describes the settings that can be provided to the LegendContainer constructor.
49481
+ */
48662
49482
  export interface $LegendContainerSettings extends $ControlSettings {
48663
49483
  /**
48664
49484
  * Width of the legend navigation. When the width specified is smaller than a section content, a horizontal
@@ -48890,7 +49710,9 @@ declare module "sap/gantt/simple/LegendRowConfig" {
48890
49710
  sText: string
48891
49711
  ): this;
48892
49712
  }
48893
-
49713
+ /**
49714
+ * Describes the settings that can be provided to the LegendRowConfig constructor.
49715
+ */
48894
49716
  export interface $LegendRowConfigSettings extends $ElementSettings {
48895
49717
  /**
48896
49718
  * Specifies the shape class name of dimension legend row It's a full shape module name
@@ -49140,7 +49962,9 @@ declare module "sap/gantt/simple/LegendShapeGroup" {
49140
49962
  sTitle: string
49141
49963
  ): this;
49142
49964
  }
49143
-
49965
+ /**
49966
+ * Describes the settings that can be provided to the LegendShapeGroup constructor.
49967
+ */
49144
49968
  export interface $LegendShapeGroupSettings extends $BaseShapeSettings {
49145
49969
  /**
49146
49970
  * The orientation on the legend
@@ -49368,7 +50192,9 @@ declare module "sap/gantt/simple/ListLegend" {
49368
50192
  sTitle?: string
49369
50193
  ): this;
49370
50194
  }
49371
-
50195
+ /**
50196
+ * Describes the settings that can be provided to the ListLegend constructor.
50197
+ */
49372
50198
  export interface $ListLegendSettings extends $ControlSettings {
49373
50199
  /**
49374
50200
  * Title of Legend. The title is displayed on both the legend page and the legend navigation list. Null
@@ -49715,7 +50541,9 @@ declare module "sap/gantt/simple/ListLegendItem" {
49715
50541
  bVisible?: boolean
49716
50542
  ): this;
49717
50543
  }
49718
-
50544
+ /**
50545
+ * Describes the settings that can be provided to the ListLegendItem constructor.
50546
+ */
49719
50547
  export interface $ListLegendItemSettings extends $ElementSettings {
49720
50548
  legendName?: string | PropertyBindingInfo;
49721
50549
 
@@ -49755,6 +50583,9 @@ declare module "sap/gantt/simple/ListLegendItem" {
49755
50583
  interactiveChange?: (oEvent: ListLegendItem$InteractiveChangeEvent) => void;
49756
50584
  }
49757
50585
 
50586
+ /**
50587
+ * Parameters of the ListLegendItem#interactiveChange event.
50588
+ */
49758
50589
  export interface ListLegendItem$InteractiveChangeEventParameters {
49759
50590
  /**
49760
50591
  * The shape name of legend item.
@@ -49767,6 +50598,9 @@ declare module "sap/gantt/simple/ListLegendItem" {
49767
50598
  value?: boolean;
49768
50599
  }
49769
50600
 
50601
+ /**
50602
+ * Event object of the ListLegendItem#interactiveChange event.
50603
+ */
49770
50604
  export type ListLegendItem$InteractiveChangeEvent = Event<
49771
50605
  ListLegendItem$InteractiveChangeEventParameters,
49772
50606
  ListLegendItem
@@ -50053,7 +50887,9 @@ declare module "sap/gantt/simple/MultiActivityGroup" {
50053
50887
  oTask: BaseShape
50054
50888
  ): this;
50055
50889
  }
50056
-
50890
+ /**
50891
+ * Describes the settings that can be provided to the MultiActivityGroup constructor.
50892
+ */
50057
50893
  export interface $MultiActivityGroupSettings extends $BaseGroupSettings {
50058
50894
  /**
50059
50895
  * The primary shape of the task
@@ -50222,7 +51058,9 @@ declare module "sap/gantt/simple/MultiActivityRowSettings" {
50222
51058
  vTask: int | string | BaseShape
50223
51059
  ): BaseShape | null;
50224
51060
  }
50225
-
51061
+ /**
51062
+ * Describes the settings that can be provided to the MultiActivityRowSettings constructor.
51063
+ */
50226
51064
  export interface $MultiActivityRowSettingsSettings
50227
51065
  extends $GanttRowSettingsSettings {
50228
51066
  /**
@@ -50721,7 +51559,9 @@ declare module "sap/gantt/simple/Relationship" {
50721
51559
  sType: simple.RelationshipType | keyof typeof simple.RelationshipType
50722
51560
  ): this;
50723
51561
  }
50724
-
51562
+ /**
51563
+ * Describes the settings that can be provided to the Relationship constructor.
51564
+ */
50725
51565
  export interface $RelationshipSettings extends $BasePathSettings {
50726
51566
  /**
50727
51567
  * Defines the `Relationship` type.
@@ -51281,7 +52121,9 @@ declare module "sap/gantt/simple/shapes/Shape" {
51281
52121
  sWidth?: SVGLength
51282
52122
  ): this;
51283
52123
  }
51284
-
52124
+ /**
52125
+ * Describes the settings that can be provided to the Shape constructor.
52126
+ */
51285
52127
  export interface $ShapeSettings extends $BaseShapeSettings {
51286
52128
  /**
51287
52129
  * Color to be used for rendering the shape.
@@ -51534,7 +52376,9 @@ declare module "sap/gantt/simple/shapes/Task" {
51534
52376
  bUtilizationDown?: boolean
51535
52377
  ): this;
51536
52378
  }
51537
-
52379
+ /**
52380
+ * Describes the settings that can be provided to the Task constructor.
52381
+ */
51538
52382
  export interface $TaskSettings extends $ShapeSettings {
51539
52383
  /**
51540
52384
  * Type of the task.
@@ -51731,7 +52575,9 @@ declare module "sap/gantt/simple/ShapeScheme" {
51731
52575
  iRowSpan?: int
51732
52576
  ): this;
51733
52577
  }
51734
-
52578
+ /**
52579
+ * Describes the settings that can be provided to the ShapeScheme constructor.
52580
+ */
51735
52581
  export interface $ShapeSchemeSettings extends $ElementSettings {
51736
52582
  /**
51737
52583
  * key of the shape scheme
@@ -52080,7 +52926,9 @@ declare module "sap/gantt/simple/StockChart" {
52080
52926
  bShowMiddleLine?: boolean
52081
52927
  ): this;
52082
52928
  }
52083
-
52929
+ /**
52930
+ * Describes the settings that can be provided to the StockChart constructor.
52931
+ */
52084
52932
  export interface $StockChartSettings extends $UtilizationChartSettings {
52085
52933
  /**
52086
52934
  * Flag to show or hide the middle line in Stock Chart. By default the middle line is a gray dashed line
@@ -52504,7 +53352,9 @@ declare module "sap/gantt/simple/StockChartDimension" {
52504
53352
  sRemainCapacityColorNegative: ValueSVGPaintServer
52505
53353
  ): this;
52506
53354
  }
52507
-
53355
+ /**
53356
+ * Describes the settings that can be provided to the StockChartDimension constructor.
53357
+ */
52508
53358
  export interface $StockChartDimensionSettings extends $ElementSettings {
52509
53359
  /**
52510
53360
  * The name of the Dimension
@@ -52731,7 +53581,9 @@ declare module "sap/gantt/simple/StockChartPeriod" {
52731
53581
  fValue?: float
52732
53582
  ): this;
52733
53583
  }
52734
-
53584
+ /**
53585
+ * Describes the settings that can be provided to the StockChartPeriod constructor.
53586
+ */
52735
53587
  export interface $StockChartPeriodSettings extends $ElementSettings {
52736
53588
  /**
52737
53589
  * from date time of period
@@ -52957,7 +53809,9 @@ declare module "sap/gantt/simple/UtilizationBarChart" {
52957
53809
  sConsumptionColor?: ValueSVGPaintServer
52958
53810
  ): this;
52959
53811
  }
52960
-
53812
+ /**
53813
+ * Describes the settings that can be provided to the UtilizationBarChart constructor.
53814
+ */
52961
53815
  export interface $UtilizationBarChartSettings
52962
53816
  extends $UtilizationChartSettings {
52963
53817
  /**
@@ -53192,7 +54046,9 @@ declare module "sap/gantt/simple/UtilizationChart" {
53192
54046
  sRemainCapacityColor?: ValueSVGPaintServer
53193
54047
  ): this;
53194
54048
  }
53195
-
54049
+ /**
54050
+ * Describes the settings that can be provided to the UtilizationChart constructor.
54051
+ */
53196
54052
  export interface $UtilizationChartSettings extends $BaseShapeSettings {
53197
54053
  /**
53198
54054
  * Defines the `UtilizationLineChart or UtilizationBarChart` height.
@@ -53434,7 +54290,9 @@ declare module "sap/gantt/simple/UtilizationDimension" {
53434
54290
  sName: string
53435
54291
  ): this;
53436
54292
  }
53437
-
54293
+ /**
54294
+ * Describes the settings that can be provided to the UtilizationDimension constructor.
54295
+ */
53438
54296
  export interface $UtilizationDimensionSettings extends $ElementSettings {
53439
54297
  /**
53440
54298
  * The name of the utilization dimension, e.g. Total Weight
@@ -53691,7 +54549,9 @@ declare module "sap/gantt/simple/UtilizationLineChart" {
53691
54549
  bShowMiddleLine?: boolean
53692
54550
  ): this;
53693
54551
  }
53694
-
54552
+ /**
54553
+ * Describes the settings that can be provided to the UtilizationLineChart constructor.
54554
+ */
53695
54555
  export interface $UtilizationLineChartSettings
53696
54556
  extends $UtilizationChartSettings {
53697
54557
  /**
@@ -53934,7 +54794,9 @@ declare module "sap/gantt/simple/UtilizationPeriod" {
53934
54794
  fValue?: float
53935
54795
  ): this;
53936
54796
  }
53937
-
54797
+ /**
54798
+ * Describes the settings that can be provided to the UtilizationPeriod constructor.
54799
+ */
53938
54800
  export interface $UtilizationPeriodSettings extends $ElementSettings {
53939
54801
  /**
53940
54802
  * from date time of period