@sapui5/ts-types 1.97.2 → 1.100.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +0 -4
  3. package/types/sap.apf.d.ts +2 -2
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +2 -240
  8. package/types/sap.f.d.ts +263 -636
  9. package/types/sap.fe.common.d.ts +2 -6
  10. package/types/sap.fe.core.d.ts +399 -305
  11. package/types/sap.fe.macros.d.ts +567 -36
  12. package/types/sap.fe.navigation.d.ts +1 -1
  13. package/types/sap.fe.templates.d.ts +5 -1
  14. package/types/sap.fe.test.d.ts +19 -14
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +827 -12
  17. package/types/sap.landvisz.d.ts +49 -1
  18. package/types/sap.m.d.ts +4111 -397
  19. package/types/sap.makit.d.ts +1 -1
  20. package/types/sap.me.d.ts +1 -1
  21. package/types/sap.ndc.d.ts +38 -3
  22. package/types/sap.ovp.d.ts +1 -1
  23. package/types/sap.rules.ui.d.ts +1 -1
  24. package/types/sap.sac.grid.d.ts +3 -1
  25. package/types/sap.suite.ui.commons.d.ts +1 -1
  26. package/types/sap.suite.ui.generic.template.d.ts +29 -7
  27. package/types/sap.suite.ui.microchart.d.ts +5 -5
  28. package/types/sap.tnt.d.ts +31 -1
  29. package/types/sap.ui.codeeditor.d.ts +1 -1
  30. package/types/sap.ui.commons.d.ts +1 -1
  31. package/types/sap.ui.comp.d.ts +313 -46
  32. package/types/sap.ui.core.d.ts +2094 -799
  33. package/types/sap.ui.dt.d.ts +1 -1
  34. package/types/sap.ui.export.d.ts +3 -3
  35. package/types/sap.ui.fl.d.ts +17 -5
  36. package/types/sap.ui.generic.app.d.ts +4 -3
  37. package/types/sap.ui.generic.template.d.ts +1 -1
  38. package/types/sap.ui.integration.d.ts +49 -13
  39. package/types/sap.ui.layout.d.ts +7 -4
  40. package/types/sap.ui.mdc.d.ts +24 -6
  41. package/types/sap.ui.richtexteditor.d.ts +7 -1
  42. package/types/sap.ui.rta.d.ts +1 -1
  43. package/types/sap.ui.suite.d.ts +1 -1
  44. package/types/sap.ui.support.d.ts +6 -12
  45. package/types/sap.ui.table.d.ts +24 -2
  46. package/types/sap.ui.testrecorder.d.ts +1 -1
  47. package/types/sap.ui.unified.d.ts +1 -1
  48. package/types/sap.ui.ux3.d.ts +1 -1
  49. package/types/sap.ui.vbm.d.ts +1 -3
  50. package/types/sap.ui.vk.d.ts +124 -31
  51. package/types/sap.ui.vtm.d.ts +4 -4
  52. package/types/sap.uiext.inbox.d.ts +2 -2
  53. package/types/sap.ushell.d.ts +4999 -5059
  54. package/types/sap.ushell_abap.d.ts +1 -495
  55. package/types/sap.uxap.d.ts +1 -1
  56. package/types/sap.viz.d.ts +105 -231
  57. package/types/sap.webanalytics.core.d.ts +1 -1
  58. package/types/sap.zen.commons.d.ts +1 -1
  59. package/types/sap.zen.crosstab.d.ts +1 -1
  60. package/types/sap.zen.dsh.d.ts +2 -6
  61. package/types/sap.fe.placeholder.d.ts +0 -3
  62. package/types/sap.fe.plugins.d.ts +0 -3
  63. package/types/sap.fe.semantics.d.ts +0 -3
  64. package/types/sap.fe.tools.d.ts +0 -3
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.97.0
1
+ // For Library Version: 1.100.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -19609,6 +19609,8 @@ declare namespace sap {
19609
19609
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
19610
19610
 
19611
19611
  /**
19612
+ * @deprecated (since 1.97) - **Note:**With the new implementation, this property won't have any effect.
19613
+ *
19612
19614
  * Delay in milliseconds for the marker popover to show up
19613
19615
  */
19614
19616
  markerPopoverDelay?:
@@ -19726,7 +19728,8 @@ declare namespace sap {
19726
19728
 
19727
19729
  /**
19728
19730
  * A list of base shapes to switch between. Only one of these shapes will be rendered based on the `activeShape`
19729
- * property.
19731
+ * property. Incase if aggregation is bound to listbinding,this aggregation will includes only active shape
19732
+ * instance.
19730
19733
  */
19731
19734
  shapes?:
19732
19735
  | sap.gantt.simple.BaseShape[]
@@ -20197,6 +20200,20 @@ declare namespace sap {
20197
20200
  | sap.gantt.ValueSVGPaintServer
20198
20201
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
20199
20202
 
20203
+ /**
20204
+ * @SINCE 1.100
20205
+ *
20206
+ * The fontSize property refers to the size of the font
20207
+ */
20208
+ fontSize?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
20209
+
20210
+ /**
20211
+ * @SINCE 1.100
20212
+ *
20213
+ * The fontWeight property refers to the font weight that gets used to render the text in the shape.
20214
+ */
20215
+ fontWeight?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
20216
+
20200
20217
  /**
20201
20218
  * Enables alignment of the shape. The shape can be aligned to the top, middle or bottom. By default, this
20202
20219
  * property is set to Middle. **Note:** Alignment is not possible for BaseLine and BasePath. It will be
@@ -20219,6 +20236,40 @@ declare namespace sap {
20219
20236
  * The titleSpacing property defines the space between the start of the shape and the shape title in pixels
20220
20237
  */
20221
20238
  titleSpacing?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
20239
+
20240
+ /**
20241
+ * @SINCE 1.99
20242
+ *
20243
+ * The selectedFill property defines the color (or any SVG paint servers like gradients or patterns) of
20244
+ * the shape when it is selected.
20245
+ */
20246
+ selectedFill?:
20247
+ | sap.gantt.ValueSVGPaintServer
20248
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
20249
+
20250
+ /**
20251
+ * @SINCE 1.99
20252
+ *
20253
+ * The selectedTitleColor property defines the color (or any SVG paint servers like gradients or patterns)
20254
+ * of the shape's title when it is selected.
20255
+ */
20256
+ selectedTitleColor?:
20257
+ | sap.gantt.ValueSVGPaintServer
20258
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
20259
+
20260
+ /**
20261
+ * @SINCE 1.100
20262
+ *
20263
+ * Whether the shape is highlightable
20264
+ */
20265
+ highlightable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
20266
+
20267
+ /**
20268
+ * @SINCE 1.100
20269
+ *
20270
+ * Whether the shape is highlighted
20271
+ */
20272
+ highlighted?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
20222
20273
  }
20223
20274
 
20224
20275
  interface $BaseTextSettings extends sap.gantt.simple.$BaseShapeSettings {
@@ -20415,6 +20466,15 @@ declare namespace sap {
20415
20466
  | boolean
20416
20467
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
20417
20468
 
20469
+ /**
20470
+ * @SINCE 1.100
20471
+ *
20472
+ * Flag to show or hide Find and Select search button
20473
+ */
20474
+ showSearchButton?:
20475
+ | boolean
20476
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
20477
+
20418
20478
  /**
20419
20479
  * The additional setting items in Setting Dialog
20420
20480
  */
@@ -20442,6 +20502,13 @@ declare namespace sap {
20442
20502
  * Fired when a different display type is selected in the display type menu.
20443
20503
  */
20444
20504
  displayTypeChange?: (oEvent: sap.ui.base.Event) => void;
20505
+
20506
+ /**
20507
+ * @SINCE 1.100
20508
+ *
20509
+ * Fired to invoke Gantt search side panel
20510
+ */
20511
+ ganttSidePanel?: (oEvent: sap.ui.base.Event) => void;
20445
20512
  }
20446
20513
 
20447
20514
  interface $ContainerToolbarPlaceholderSettings
@@ -20528,6 +20595,8 @@ declare namespace sap {
20528
20595
  visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
20529
20596
 
20530
20597
  /**
20598
+ * @deprecated (since 1.97) - **Note:**With the new implementation, this property won't have any effect.
20599
+ *
20531
20600
  * Visibility of the Delta Line
20532
20601
  */
20533
20602
  timeDelay?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
@@ -20817,6 +20886,15 @@ declare namespace sap {
20817
20886
  */
20818
20887
  _enableRTA?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
20819
20888
 
20889
+ /**
20890
+ * @SINCE 1.100
20891
+ *
20892
+ * Flag to enable and disable search side panel.
20893
+ */
20894
+ showSearchSidePanel?:
20895
+ | boolean
20896
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
20897
+
20820
20898
  /**
20821
20899
  * Toolbar of the container.
20822
20900
  */
@@ -20848,6 +20926,13 @@ declare namespace sap {
20848
20926
  */
20849
20927
  variantHandler?: sap.gantt.simple.CustomVariantHandler;
20850
20928
 
20929
+ /**
20930
+ * @SINCE 1.100
20931
+ *
20932
+ * Side panel to display search results of Find and Select operation in the chart area
20933
+ */
20934
+ searchSidePanel?: /* was: sap.gantt.simple.GanttSearchSidePanel */ any;
20935
+
20851
20936
  /**
20852
20937
  * Event fired when the custom settings value is changed.
20853
20938
  *
@@ -20926,6 +21011,27 @@ declare namespace sap {
20926
21011
  | object
20927
21012
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
20928
21013
 
21014
+ /**
21015
+ * @SINCE 1.100
21016
+ *
21017
+ * A JSON object containing the shapeHighlightSettings that is used to configure shape highlight styles.
21018
+ * If nothing is specified, then the default highlight styles (2px dashed black border) is set. Below
21019
+ * you can find a brief example
21020
+ * ```javascript
21021
+ *
21022
+ * {
21023
+ * color: "#808080",
21024
+ * strokeWidth: 2,
21025
+ * strokeDasharray: "5,1"
21026
+ * shapeColor: null,
21027
+ * fillOpacity: 0
21028
+ * }
21029
+ * ```
21030
+ */
21031
+ shapeHighlightSettings?:
21032
+ | object
21033
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
21034
+
20929
21035
  /**
20930
21036
  * Flag whether to show or hide the cursor line when moving your mouse cursor
20931
21037
  */
@@ -21277,6 +21383,29 @@ declare namespace sap {
21277
21383
  | sap.gantt.simple.relationshipShapeSize
21278
21384
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
21279
21385
 
21386
+ /**
21387
+ * @EXPERIMENTAL (since 1.98)
21388
+ *
21389
+ * Determines if only tasks need to be used for rendering the expanded shapes. Subtasks are not required.
21390
+ */
21391
+ useParentShapeOnExpand?:
21392
+ | boolean
21393
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
21394
+
21395
+ /**
21396
+ * @SINCE 1.100
21397
+ *
21398
+ * Defines the property names for which findAll method should search in different entities
21399
+ */
21400
+ findBy?: string[] | sap.ui.base.ManagedObject.PropertyBindingInfo;
21401
+
21402
+ /**
21403
+ * @SINCE 1.100
21404
+ *
21405
+ * Defines relationship between the operator and the property names using the findAll method
21406
+ */
21407
+ findByOperator?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
21408
+
21280
21409
  /**
21281
21410
  * Table of the Gantt Chart
21282
21411
  *
@@ -21379,6 +21508,13 @@ declare namespace sap {
21379
21508
  */
21380
21509
  shapeSelectionChange?: (oEvent: sap.ui.base.Event) => void;
21381
21510
 
21511
+ /**
21512
+ * @SINCE 1.100
21513
+ *
21514
+ * Fired when the shape's highlight has been changed
21515
+ */
21516
+ shapeHighlightChange?: (oEvent: sap.ui.base.Event) => void;
21517
+
21382
21518
  /**
21383
21519
  * Fired when a shape is resized.
21384
21520
  */
@@ -21430,6 +21566,13 @@ declare namespace sap {
21430
21566
  * This event is fired when the visible horizon is changed.
21431
21567
  */
21432
21568
  visibleHorizonUpdate?: (oEvent: sap.ui.base.Event) => void;
21569
+
21570
+ /**
21571
+ * @SINCE 1.100
21572
+ *
21573
+ * This event is fired when Gantt chart is rendered completely.
21574
+ */
21575
+ renderingComplete?: (oEvent: sap.ui.base.Event) => void;
21433
21576
  }
21434
21577
 
21435
21578
  interface $GanttPrintingSettings extends sap.ui.core.$ElementSettings {
@@ -21900,6 +22043,15 @@ declare namespace sap {
21900
22043
  */
21901
22044
  maxValue?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
21902
22045
 
22046
+ /**
22047
+ * @SINCE 1.100.0
22048
+ *
22049
+ * Property to enable Compact View.
22050
+ */
22051
+ showCompactView?:
22052
+ | boolean
22053
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
22054
+
21903
22055
  /**
21904
22056
  * Dimensions of the Stock Chart
21905
22057
  */
@@ -22791,6 +22943,8 @@ declare namespace sap {
22791
22943
  */
22792
22944
  getDraggable(): boolean;
22793
22945
  /**
22946
+ * @deprecated (since 1.97) - **Note:**With the new implementation, this property won't have any effect.
22947
+ *
22794
22948
  * Gets current value of property {@link #getMarkerPopoverDelay markerPopoverDelay}.
22795
22949
  *
22796
22950
  * Delay in milliseconds for the marker popover to show up
@@ -22945,6 +23099,8 @@ declare namespace sap {
22945
23099
  bDraggable?: boolean
22946
23100
  ): this;
22947
23101
  /**
23102
+ * @deprecated (since 1.97) - **Note:**With the new implementation, this property won't have any effect.
23103
+ *
22948
23104
  * Sets a new value for property {@link #getMarkerPopoverDelay markerPopoverDelay}.
22949
23105
  *
22950
23106
  * Delay in milliseconds for the marker popover to show up
@@ -23358,17 +23514,19 @@ declare namespace sap {
23358
23514
  */
23359
23515
  oShape: sap.gantt.simple.BaseShape
23360
23516
  ): this;
23517
+ /**
23518
+ * Overrides the clone method for creating active shape instance. This method overrides clone from managed
23519
+ * object so as to instantiate only active shape.
23520
+ */
23521
+ clone(): this;
23361
23522
  /**
23362
23523
  * Destroys all the shapes in the aggregation {@link #getShapes shapes}.
23363
23524
  */
23364
23525
  destroyShapes(): this;
23365
23526
  /**
23366
- * Gets current value of property {@link #getActiveShape activeShape}.
23367
- *
23368
- * Defines which shape from the `shapes` aggregation is visible. If you specify a negative value or a value
23369
- * that is greater than the number of shapes defined, no shape will be rendered.
23370
- *
23371
- * Default value is `0`.
23527
+ * Gets current value of property activeShape. Defines which shape from the shapes aggregation is visible.
23528
+ * If you specify a negative value or a value that is greater than the number of shapes defined, no shape
23529
+ * will be rendered. Default value is 0.
23372
23530
  */
23373
23531
  getActiveShape(): int;
23374
23532
  /**
@@ -23379,7 +23537,8 @@ declare namespace sap {
23379
23537
  * Gets content of aggregation {@link #getShapes shapes}.
23380
23538
  *
23381
23539
  * A list of base shapes to switch between. Only one of these shapes will be rendered based on the `activeShape`
23382
- * property.
23540
+ * property. Incase if aggregation is bound to listbinding,this aggregation will includes only active shape
23541
+ * instance.
23383
23542
  */
23384
23543
  getShapes(): sap.gantt.simple.BaseShape[];
23385
23544
  /**
@@ -25037,6 +25196,46 @@ declare namespace sap {
25037
25196
  * Default value is `"Arial"`.
25038
25197
  */
25039
25198
  getFontFamily(): string;
25199
+ /**
25200
+ * @SINCE 1.100
25201
+ *
25202
+ * Gets current value of property {@link #getFontSize fontSize}.
25203
+ *
25204
+ * The fontSize property refers to the size of the font
25205
+ *
25206
+ * Default value is `13`.
25207
+ */
25208
+ getFontSize(): int;
25209
+ /**
25210
+ * @SINCE 1.100
25211
+ *
25212
+ * Gets current value of property {@link #getFontWeight fontWeight}.
25213
+ *
25214
+ * The fontWeight property refers to the font weight that gets used to render the text in the shape.
25215
+ *
25216
+ * Default value is `"normal"`.
25217
+ */
25218
+ getFontWeight(): string;
25219
+ /**
25220
+ * @SINCE 1.100
25221
+ *
25222
+ * Gets current value of property {@link #getHighlightable highlightable}.
25223
+ *
25224
+ * Whether the shape is highlightable
25225
+ *
25226
+ * Default value is `false`.
25227
+ */
25228
+ getHighlightable(): boolean;
25229
+ /**
25230
+ * @SINCE 1.100
25231
+ *
25232
+ * Gets current value of property {@link #getHighlighted highlighted}.
25233
+ *
25234
+ * Whether the shape is highlighted
25235
+ *
25236
+ * Default value is `false`.
25237
+ */
25238
+ getHighlighted(): boolean;
25040
25239
  /**
25041
25240
  * @SINCE 1.86
25042
25241
  *
@@ -25118,6 +25317,24 @@ declare namespace sap {
25118
25317
  * Default value is `false`.
25119
25318
  */
25120
25319
  getSelected(): boolean;
25320
+ /**
25321
+ * @SINCE 1.99
25322
+ *
25323
+ * Gets current value of property {@link #getSelectedFill selectedFill}.
25324
+ *
25325
+ * The selectedFill property defines the color (or any SVG paint servers like gradients or patterns) of
25326
+ * the shape when it is selected.
25327
+ */
25328
+ getSelectedFill(): sap.gantt.ValueSVGPaintServer;
25329
+ /**
25330
+ * @SINCE 1.99
25331
+ *
25332
+ * Gets current value of property {@link #getSelectedTitleColor selectedTitleColor}.
25333
+ *
25334
+ * The selectedTitleColor property defines the color (or any SVG paint servers like gradients or patterns)
25335
+ * of the shape's title when it is selected.
25336
+ */
25337
+ getSelectedTitleColor(): sap.gantt.ValueSVGPaintServer;
25121
25338
  /**
25122
25339
  * Gets current value of property {@link #getShapeId shapeId}.
25123
25340
  *
@@ -25480,6 +25697,72 @@ declare namespace sap {
25480
25697
  */
25481
25698
  sFontFamily?: string
25482
25699
  ): this;
25700
+ /**
25701
+ * @SINCE 1.100
25702
+ *
25703
+ * Sets a new value for property {@link #getFontSize fontSize}.
25704
+ *
25705
+ * The fontSize property refers to the size of the font
25706
+ *
25707
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
25708
+ *
25709
+ * Default value is `13`.
25710
+ */
25711
+ setFontSize(
25712
+ /**
25713
+ * New value for property `fontSize`
25714
+ */
25715
+ iFontSize?: int
25716
+ ): this;
25717
+ /**
25718
+ * @SINCE 1.100
25719
+ *
25720
+ * Sets a new value for property {@link #getFontWeight fontWeight}.
25721
+ *
25722
+ * The fontWeight property refers to the font weight that gets used to render the text in the shape.
25723
+ *
25724
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
25725
+ *
25726
+ * Default value is `"normal"`.
25727
+ */
25728
+ setFontWeight(
25729
+ /**
25730
+ * New value for property `fontWeight`
25731
+ */
25732
+ sFontWeight?: string
25733
+ ): this;
25734
+ /**
25735
+ * @SINCE 1.100
25736
+ *
25737
+ * Sets a new value for property {@link #getHighlightable highlightable}.
25738
+ *
25739
+ * Whether the shape is highlightable
25740
+ *
25741
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
25742
+ *
25743
+ * Default value is `false`.
25744
+ */
25745
+ setHighlightable(
25746
+ /**
25747
+ * New value for property `highlightable`
25748
+ */
25749
+ bHighlightable?: boolean
25750
+ ): this;
25751
+ /**
25752
+ * @SINCE 1.100
25753
+ *
25754
+ * Set highlight property and mark the shape highlighted in Highlight Model
25755
+ */
25756
+ setHighlighted(
25757
+ /**
25758
+ * Flag to higlight shape.
25759
+ */
25760
+ bHighlighted: Boolean,
25761
+ /**
25762
+ * Flag to suppress re-rendering of the control.
25763
+ */
25764
+ bSuppressInvalidate: Boolean
25765
+ ): void;
25483
25766
  /**
25484
25767
  * @SINCE 1.86
25485
25768
  *
@@ -25624,6 +25907,38 @@ declare namespace sap {
25624
25907
  */
25625
25908
  bSelected?: boolean
25626
25909
  ): this;
25910
+ /**
25911
+ * @SINCE 1.99
25912
+ *
25913
+ * Sets a new value for property {@link #getSelectedFill selectedFill}.
25914
+ *
25915
+ * The selectedFill property defines the color (or any SVG paint servers like gradients or patterns) of
25916
+ * the shape when it is selected.
25917
+ *
25918
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
25919
+ */
25920
+ setSelectedFill(
25921
+ /**
25922
+ * New value for property `selectedFill`
25923
+ */
25924
+ sSelectedFill: sap.gantt.ValueSVGPaintServer
25925
+ ): this;
25926
+ /**
25927
+ * @SINCE 1.99
25928
+ *
25929
+ * Sets a new value for property {@link #getSelectedTitleColor selectedTitleColor}.
25930
+ *
25931
+ * The selectedTitleColor property defines the color (or any SVG paint servers like gradients or patterns)
25932
+ * of the shape's title when it is selected.
25933
+ *
25934
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
25935
+ */
25936
+ setSelectedTitleColor(
25937
+ /**
25938
+ * New value for property `selectedTitleColor`
25939
+ */
25940
+ sSelectedTitleColor: sap.gantt.ValueSVGPaintServer
25941
+ ): this;
25627
25942
  /**
25628
25943
  * Sets a new value for property {@link #getShapeId shapeId}.
25629
25944
  *
@@ -26699,6 +27014,53 @@ declare namespace sap {
26699
27014
  */
26700
27015
  oListener?: object
26701
27016
  ): this;
27017
+ /**
27018
+ * @SINCE 1.100
27019
+ *
27020
+ * Attaches event handler `fnFunction` to the {@link #event:ganttSidePanel ganttSidePanel} event of this
27021
+ * `sap.gantt.simple.ContainerToolbar`.
27022
+ *
27023
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
27024
+ * otherwise it will be bound to this `sap.gantt.simple.ContainerToolbar` itself.
27025
+ *
27026
+ * Fired to invoke Gantt search side panel
27027
+ */
27028
+ attachGanttSidePanel(
27029
+ /**
27030
+ * An application-specific payload object that will be passed to the event handler along with the event
27031
+ * object when firing the event
27032
+ */
27033
+ oData: object,
27034
+ /**
27035
+ * The function to be called when the event occurs
27036
+ */
27037
+ fnFunction: (p1: sap.ui.base.Event) => void,
27038
+ /**
27039
+ * Context object to call the event handler with. Defaults to this `sap.gantt.simple.ContainerToolbar` itself
27040
+ */
27041
+ oListener?: object
27042
+ ): this;
27043
+ /**
27044
+ * @SINCE 1.100
27045
+ *
27046
+ * Attaches event handler `fnFunction` to the {@link #event:ganttSidePanel ganttSidePanel} event of this
27047
+ * `sap.gantt.simple.ContainerToolbar`.
27048
+ *
27049
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
27050
+ * otherwise it will be bound to this `sap.gantt.simple.ContainerToolbar` itself.
27051
+ *
27052
+ * Fired to invoke Gantt search side panel
27053
+ */
27054
+ attachGanttSidePanel(
27055
+ /**
27056
+ * The function to be called when the event occurs
27057
+ */
27058
+ fnFunction: (p1: sap.ui.base.Event) => void,
27059
+ /**
27060
+ * Context object to call the event handler with. Defaults to this `sap.gantt.simple.ContainerToolbar` itself
27061
+ */
27062
+ oListener?: object
27063
+ ): this;
26702
27064
  /**
26703
27065
  * Attaches event handler `fnFunction` to the {@link #event:zoomStopChange zoomStopChange} event of this
26704
27066
  * `sap.gantt.simple.ContainerToolbar`.
@@ -26782,6 +27144,24 @@ declare namespace sap {
26782
27144
  */
26783
27145
  oListener?: object
26784
27146
  ): this;
27147
+ /**
27148
+ * @SINCE 1.100
27149
+ *
27150
+ * Detaches event handler `fnFunction` from the {@link #event:ganttSidePanel ganttSidePanel} event of this
27151
+ * `sap.gantt.simple.ContainerToolbar`.
27152
+ *
27153
+ * The passed function and listener object must match the ones used for event registration.
27154
+ */
27155
+ detachGanttSidePanel(
27156
+ /**
27157
+ * The function to be called, when the event occurs
27158
+ */
27159
+ fnFunction: (p1: sap.ui.base.Event) => void,
27160
+ /**
27161
+ * Context object on which the given function had to be called
27162
+ */
27163
+ oListener?: object
27164
+ ): this;
26785
27165
  /**
26786
27166
  * Detaches event handler `fnFunction` from the {@link #event:zoomStopChange zoomStopChange} event of this
26787
27167
  * `sap.gantt.simple.ContainerToolbar`.
@@ -26818,6 +27198,19 @@ declare namespace sap {
26818
27198
  displayType?: sap.gantt.simple.GanttChartWithTableDisplayType;
26819
27199
  }
26820
27200
  ): this;
27201
+ /**
27202
+ * @SINCE 1.100
27203
+ *
27204
+ * Fires event {@link #event:ganttSidePanel ganttSidePanel} to attached listeners.
27205
+ */
27206
+ fireGanttSidePanel(
27207
+ /**
27208
+ * Parameters to pass along with the event
27209
+ */
27210
+ mParameters?: {
27211
+ updateSidePanelState?: object;
27212
+ }
27213
+ ): this;
26821
27214
  /**
26822
27215
  * Fires event {@link #event:zoomStopChange zoomStopChange} to attached listeners.
26823
27216
  */
@@ -26889,6 +27282,16 @@ declare namespace sap {
26889
27282
  * Default value is `false`.
26890
27283
  */
26891
27284
  getShowLegendButton(): boolean;
27285
+ /**
27286
+ * @SINCE 1.100
27287
+ *
27288
+ * Gets current value of property {@link #getShowSearchButton showSearchButton}.
27289
+ *
27290
+ * Flag to show or hide Find and Select search button
27291
+ *
27292
+ * Default value is `false`.
27293
+ */
27294
+ getShowSearchButton(): boolean;
26892
27295
  /**
26893
27296
  * Gets current value of property {@link #getShowSettingButton showSettingButton}.
26894
27297
  *
@@ -27063,6 +27466,23 @@ declare namespace sap {
27063
27466
  */
27064
27467
  bShowLegendButton?: boolean
27065
27468
  ): this;
27469
+ /**
27470
+ * @SINCE 1.100
27471
+ *
27472
+ * Sets a new value for property {@link #getShowSearchButton showSearchButton}.
27473
+ *
27474
+ * Flag to show or hide Find and Select search button
27475
+ *
27476
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
27477
+ *
27478
+ * Default value is `false`.
27479
+ */
27480
+ setShowSearchButton(
27481
+ /**
27482
+ * New value for property `showSearchButton`
27483
+ */
27484
+ bShowSearchButton?: boolean
27485
+ ): this;
27066
27486
  /**
27067
27487
  * Sets a new value for property {@link #getShowSettingButton showSettingButton}.
27068
27488
  *
@@ -28023,6 +28443,8 @@ declare namespace sap {
28023
28443
  */
28024
28444
  getStrokeOpacity(): float;
28025
28445
  /**
28446
+ * @deprecated (since 1.97) - **Note:**With the new implementation, this property won't have any effect.
28447
+ *
28026
28448
  * Gets current value of property {@link #getTimeDelay timeDelay}.
28027
28449
  *
28028
28450
  * Visibility of the Delta Line
@@ -28295,6 +28717,8 @@ declare namespace sap {
28295
28717
  fStrokeOpacity?: float
28296
28718
  ): this;
28297
28719
  /**
28720
+ * @deprecated (since 1.97) - **Note:**With the new implementation, this property won't have any effect.
28721
+ *
28298
28722
  * Sets a new value for property {@link #getTimeDelay timeDelay}.
28299
28723
  *
28300
28724
  * Visibility of the Delta Line
@@ -28745,6 +29169,12 @@ declare namespace sap {
28745
29169
  * Destroys all the ganttCharts in the aggregation {@link #getGanttCharts ganttCharts}.
28746
29170
  */
28747
29171
  destroyGanttCharts(): this;
29172
+ /**
29173
+ * @SINCE 1.100
29174
+ *
29175
+ * Destroys the searchSidePanel in the aggregation {@link #getSearchSidePanel searchSidePanel}.
29176
+ */
29177
+ destroySearchSidePanel(): this;
28748
29178
  /**
28749
29179
  * Destroys the statusBar in the aggregation {@link #getStatusBar statusBar}.
28750
29180
  */
@@ -28976,6 +29406,24 @@ declare namespace sap {
28976
29406
  * Default value is `Vertical`.
28977
29407
  */
28978
29408
  getLayoutOrientation(): sap.ui.core.Orientation;
29409
+ /**
29410
+ * @SINCE 1.100
29411
+ *
29412
+ * Gets content of aggregation {@link #getSearchSidePanel searchSidePanel}.
29413
+ *
29414
+ * Side panel to display search results of Find and Select operation in the chart area
29415
+ */
29416
+ getSearchSidePanel(): /* was: sap.gantt.simple.GanttSearchSidePanel */ any;
29417
+ /**
29418
+ * @SINCE 1.100
29419
+ *
29420
+ * Gets current value of property {@link #getShowSearchSidePanel showSearchSidePanel}.
29421
+ *
29422
+ * Flag to enable and disable search side panel.
29423
+ *
29424
+ * Default value is `false`.
29425
+ */
29426
+ getShowSearchSidePanel(): boolean;
28979
29427
  /**
28980
29428
  * Gets content of aggregation {@link #getStatusBar statusBar}.
28981
29429
  *
@@ -29326,6 +29774,34 @@ declare namespace sap {
29326
29774
  */
29327
29775
  sLayoutOrientation?: sap.ui.core.Orientation
29328
29776
  ): this;
29777
+ /**
29778
+ * @SINCE 1.100
29779
+ *
29780
+ * Sets the aggregated {@link #getSearchSidePanel searchSidePanel}.
29781
+ */
29782
+ setSearchSidePanel(
29783
+ /**
29784
+ * The searchSidePanel to set
29785
+ */
29786
+ oSearchSidePanel: /* was: sap.gantt.simple.GanttSearchSidePanel */ any
29787
+ ): this;
29788
+ /**
29789
+ * @SINCE 1.100
29790
+ *
29791
+ * Sets a new value for property {@link #getShowSearchSidePanel showSearchSidePanel}.
29792
+ *
29793
+ * Flag to enable and disable search side panel.
29794
+ *
29795
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
29796
+ *
29797
+ * Default value is `false`.
29798
+ */
29799
+ setShowSearchSidePanel(
29800
+ /**
29801
+ * New value for property `showSearchSidePanel`
29802
+ */
29803
+ bShowSearchSidePanel?: boolean
29804
+ ): this;
29329
29805
  /**
29330
29806
  * Sets the aggregated {@link #getStatusBar statusBar}.
29331
29807
  */
@@ -29485,6 +29961,17 @@ declare namespace sap {
29485
29961
  * Returns a metadata object for class sap.gantt.simple.GanttChartWithTable.
29486
29962
  */
29487
29963
  static getMetadata(): sap.ui.core.ElementMetadata;
29964
+ /**
29965
+ * @SINCE 1.100
29966
+ *
29967
+ * fireShapeHighlightChange event is fired if there is change in highlighted shape.
29968
+ */
29969
+ _onHighlightChanged(
29970
+ /**
29971
+ * fired on the highlighted shape by navigation
29972
+ */
29973
+ oEvent: Event
29974
+ ): void;
29488
29975
  /**
29489
29976
  * @deprecated (since 1.84) - use {@link sap.gantt.simple.AdhocLine} instead.
29490
29977
  *
@@ -29581,6 +30068,55 @@ declare namespace sap {
29581
30068
  */
29582
30069
  oListener?: object
29583
30070
  ): this;
30071
+ /**
30072
+ * @SINCE 1.100
30073
+ *
30074
+ * Attaches event handler `fnFunction` to the {@link #event:renderingComplete renderingComplete} event of
30075
+ * this `sap.gantt.simple.GanttChartWithTable`.
30076
+ *
30077
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
30078
+ * otherwise it will be bound to this `sap.gantt.simple.GanttChartWithTable` itself.
30079
+ *
30080
+ * This event is fired when Gantt chart is rendered completely.
30081
+ */
30082
+ attachRenderingComplete(
30083
+ /**
30084
+ * An application-specific payload object that will be passed to the event handler along with the event
30085
+ * object when firing the event
30086
+ */
30087
+ oData: object,
30088
+ /**
30089
+ * The function to be called when the event occurs
30090
+ */
30091
+ fnFunction: (p1: sap.ui.base.Event) => void,
30092
+ /**
30093
+ * Context object to call the event handler with. Defaults to this `sap.gantt.simple.GanttChartWithTable`
30094
+ * itself
30095
+ */
30096
+ oListener?: object
30097
+ ): this;
30098
+ /**
30099
+ * @SINCE 1.100
30100
+ *
30101
+ * Attaches event handler `fnFunction` to the {@link #event:renderingComplete renderingComplete} event of
30102
+ * this `sap.gantt.simple.GanttChartWithTable`.
30103
+ *
30104
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
30105
+ * otherwise it will be bound to this `sap.gantt.simple.GanttChartWithTable` itself.
30106
+ *
30107
+ * This event is fired when Gantt chart is rendered completely.
30108
+ */
30109
+ attachRenderingComplete(
30110
+ /**
30111
+ * The function to be called when the event occurs
30112
+ */
30113
+ fnFunction: (p1: sap.ui.base.Event) => void,
30114
+ /**
30115
+ * Context object to call the event handler with. Defaults to this `sap.gantt.simple.GanttChartWithTable`
30116
+ * itself
30117
+ */
30118
+ oListener?: object
30119
+ ): this;
29584
30120
  /**
29585
30121
  * Attaches event handler `fnFunction` to the {@link #event:shapeConnect shapeConnect} event of this `sap.gantt.simple.GanttChartWithTable`.
29586
30122
  *
@@ -29757,6 +30293,55 @@ declare namespace sap {
29757
30293
  */
29758
30294
  oListener?: object
29759
30295
  ): this;
30296
+ /**
30297
+ * @SINCE 1.100
30298
+ *
30299
+ * Attaches event handler `fnFunction` to the {@link #event:shapeHighlightChange shapeHighlightChange} event
30300
+ * of this `sap.gantt.simple.GanttChartWithTable`.
30301
+ *
30302
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
30303
+ * otherwise it will be bound to this `sap.gantt.simple.GanttChartWithTable` itself.
30304
+ *
30305
+ * Fired when the shape's highlight has been changed
30306
+ */
30307
+ attachShapeHighlightChange(
30308
+ /**
30309
+ * An application-specific payload object that will be passed to the event handler along with the event
30310
+ * object when firing the event
30311
+ */
30312
+ oData: object,
30313
+ /**
30314
+ * The function to be called when the event occurs
30315
+ */
30316
+ fnFunction: (p1: sap.ui.base.Event) => void,
30317
+ /**
30318
+ * Context object to call the event handler with. Defaults to this `sap.gantt.simple.GanttChartWithTable`
30319
+ * itself
30320
+ */
30321
+ oListener?: object
30322
+ ): this;
30323
+ /**
30324
+ * @SINCE 1.100
30325
+ *
30326
+ * Attaches event handler `fnFunction` to the {@link #event:shapeHighlightChange shapeHighlightChange} event
30327
+ * of this `sap.gantt.simple.GanttChartWithTable`.
30328
+ *
30329
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
30330
+ * otherwise it will be bound to this `sap.gantt.simple.GanttChartWithTable` itself.
30331
+ *
30332
+ * Fired when the shape's highlight has been changed
30333
+ */
30334
+ attachShapeHighlightChange(
30335
+ /**
30336
+ * The function to be called when the event occurs
30337
+ */
30338
+ fnFunction: (p1: sap.ui.base.Event) => void,
30339
+ /**
30340
+ * Context object to call the event handler with. Defaults to this `sap.gantt.simple.GanttChartWithTable`
30341
+ * itself
30342
+ */
30343
+ oListener?: object
30344
+ ): this;
29760
30345
  /**
29761
30346
  * Attaches event handler `fnFunction` to the {@link #event:shapeMouseEnter shapeMouseEnter} event of this
29762
30347
  * `sap.gantt.simple.GanttChartWithTable`.
@@ -30181,6 +30766,24 @@ declare namespace sap {
30181
30766
  */
30182
30767
  oListener?: object
30183
30768
  ): this;
30769
+ /**
30770
+ * @SINCE 1.100
30771
+ *
30772
+ * Detaches event handler `fnFunction` from the {@link #event:renderingComplete renderingComplete} event
30773
+ * of this `sap.gantt.simple.GanttChartWithTable`.
30774
+ *
30775
+ * The passed function and listener object must match the ones used for event registration.
30776
+ */
30777
+ detachRenderingComplete(
30778
+ /**
30779
+ * The function to be called, when the event occurs
30780
+ */
30781
+ fnFunction: (p1: sap.ui.base.Event) => void,
30782
+ /**
30783
+ * Context object on which the given function had to be called
30784
+ */
30785
+ oListener?: object
30786
+ ): this;
30184
30787
  /**
30185
30788
  * Detaches event handler `fnFunction` from the {@link #event:shapeConnect shapeConnect} event of this `sap.gantt.simple.GanttChartWithTable`.
30186
30789
  *
@@ -30243,6 +30846,24 @@ declare namespace sap {
30243
30846
  */
30244
30847
  oListener?: object
30245
30848
  ): this;
30849
+ /**
30850
+ * @SINCE 1.100
30851
+ *
30852
+ * Detaches event handler `fnFunction` from the {@link #event:shapeHighlightChange shapeHighlightChange}
30853
+ * event of this `sap.gantt.simple.GanttChartWithTable`.
30854
+ *
30855
+ * The passed function and listener object must match the ones used for event registration.
30856
+ */
30857
+ detachShapeHighlightChange(
30858
+ /**
30859
+ * The function to be called, when the event occurs
30860
+ */
30861
+ fnFunction: (p1: sap.ui.base.Event) => void,
30862
+ /**
30863
+ * Context object on which the given function had to be called
30864
+ */
30865
+ oListener?: object
30866
+ ): this;
30246
30867
  /**
30247
30868
  * Detaches event handler `fnFunction` from the {@link #event:shapeMouseEnter shapeMouseEnter} event of
30248
30869
  * this `sap.gantt.simple.GanttChartWithTable`.
@@ -30375,10 +30996,10 @@ declare namespace sap {
30375
30996
  */
30376
30997
  propertyValue: string,
30377
30998
  /**
30378
- * property to search in (optional parameter)
30999
+ * property names or name to search in (optional parameter)
30379
31000
  */
30380
- propertyName: string
30381
- ): undefined;
31001
+ aPropertyNames: string[] | string
31002
+ ): Object[];
30382
31003
  /**
30383
31004
  * @SINCE 1.89
30384
31005
  *
@@ -30465,6 +31086,17 @@ declare namespace sap {
30465
31086
  cursorDateTime?: object;
30466
31087
  }
30467
31088
  ): this;
31089
+ /**
31090
+ * @SINCE 1.100
31091
+ *
31092
+ * Fires event {@link #event:renderingComplete renderingComplete} to attached listeners.
31093
+ */
31094
+ fireRenderingComplete(
31095
+ /**
31096
+ * Parameters to pass along with the event
31097
+ */
31098
+ mParameters?: object
31099
+ ): this;
30468
31100
  /**
30469
31101
  * Fires event {@link #event:shapeConnect shapeConnect} to attached listeners.
30470
31102
  */
@@ -30606,6 +31238,22 @@ declare namespace sap {
30606
31238
  targetShape?: sap.gantt.simple.BaseShape;
30607
31239
  }
30608
31240
  ): this;
31241
+ /**
31242
+ * @SINCE 1.100
31243
+ *
31244
+ * Fires event {@link #event:shapeHighlightChange shapeHighlightChange} to attached listeners.
31245
+ */
31246
+ fireShapeHighlightChange(
31247
+ /**
31248
+ * Parameters to pass along with the event
31249
+ */
31250
+ mParameters?: {
31251
+ /**
31252
+ * all highlighted shape UID.
31253
+ */
31254
+ shapeUids?: string[];
31255
+ }
31256
+ ): this;
30609
31257
  /**
30610
31258
  * Fires event {@link #event:shapeMouseEnter shapeMouseEnter} to attached listeners.
30611
31259
  */
@@ -30729,6 +31377,10 @@ declare namespace sap {
30729
31377
  * Specifies how the update was initiated.
30730
31378
  */
30731
31379
  type?: sap.gantt.simple.VisibleHorizonUpdateType;
31380
+ /**
31381
+ * Provides subType information about the type.
31382
+ */
31383
+ subType?: sap.gantt.simple.VisibleHorizonUpdateSubType;
30732
31384
  /**
30733
31385
  * Value of the visible horizon before the current update. Some types of this event don't have this value.
30734
31386
  */
@@ -31016,6 +31668,26 @@ declare namespace sap {
31016
31668
  * Property to define the height of an expanded row in pixels.
31017
31669
  */
31018
31670
  getExpandedRowHeight(): int;
31671
+ /**
31672
+ * @SINCE 1.100
31673
+ *
31674
+ * Gets current value of property {@link #getFindBy findBy}.
31675
+ *
31676
+ * Defines the property names for which findAll method should search in different entities
31677
+ *
31678
+ * Default value is `[]`.
31679
+ */
31680
+ getFindBy(): string[];
31681
+ /**
31682
+ * @SINCE 1.100
31683
+ *
31684
+ * Gets current value of property {@link #getFindByOperator findByOperator}.
31685
+ *
31686
+ * Defines relationship between the operator and the property names using the findAll method
31687
+ *
31688
+ * Default value is `library.simple.findByOperator.OR`.
31689
+ */
31690
+ getFindByOperator(): string;
31019
31691
  /**
31020
31692
  * @SINCE 1.90
31021
31693
  *
@@ -31042,6 +31714,10 @@ declare namespace sap {
31042
31714
  * Default value is `"100%"`.
31043
31715
  */
31044
31716
  getHeight(): sap.ui.core.CSSSize;
31717
+ /**
31718
+ * Get the highlighted shape in gantt chart
31719
+ */
31720
+ getHighlightedShapeUid(): Object[];
31045
31721
  /**
31046
31722
  * Gets content of aggregation {@link #getLocale locale}.
31047
31723
  *
@@ -31112,6 +31788,26 @@ declare namespace sap {
31112
31788
  * Default value is `false`.
31113
31789
  */
31114
31790
  getSelectOnlyGraphicalShape(): boolean;
31791
+ /**
31792
+ * @SINCE 1.100
31793
+ *
31794
+ * Gets current value of property {@link #getShapeHighlightSettings shapeHighlightSettings}.
31795
+ *
31796
+ * A JSON object containing the shapeHighlightSettings that is used to configure shape highlight styles.
31797
+ * If nothing is specified, then the default highlight styles (2px dashed black border) is set. Below
31798
+ * you can find a brief example
31799
+ * ```javascript
31800
+ *
31801
+ * {
31802
+ * color: "#808080",
31803
+ * strokeWidth: 2,
31804
+ * strokeDasharray: "5,1"
31805
+ * shapeColor: null,
31806
+ * fillOpacity: 0
31807
+ * }
31808
+ * ```
31809
+ */
31810
+ getShapeHighlightSettings(): object;
31115
31811
  /**
31116
31812
  * @SINCE 1.76
31117
31813
  *
@@ -31322,6 +32018,16 @@ declare namespace sap {
31322
32018
  * Default value is `library.config.DEFAULT_TIME_PATTERN`.
31323
32019
  */
31324
32020
  getTimePattern(): string;
32021
+ /**
32022
+ * @EXPERIMENTAL (since 1.98)
32023
+ *
32024
+ * Gets current value of property {@link #getUseParentShapeOnExpand useParentShapeOnExpand}.
32025
+ *
32026
+ * Determines if only tasks need to be used for rendering the expanded shapes. Subtasks are not required.
32027
+ *
32028
+ * Default value is `false`.
32029
+ */
32030
+ getUseParentShapeOnExpand(): boolean;
31325
32031
  /**
31326
32032
  * Gets current value of property {@link #getWidth width}.
31327
32033
  *
@@ -32007,6 +32713,40 @@ declare namespace sap {
32007
32713
  */
32008
32714
  iExpandedRowHeight: int
32009
32715
  ): this;
32716
+ /**
32717
+ * @SINCE 1.100
32718
+ *
32719
+ * Sets a new value for property {@link #getFindBy findBy}.
32720
+ *
32721
+ * Defines the property names for which findAll method should search in different entities
32722
+ *
32723
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
32724
+ *
32725
+ * Default value is `[]`.
32726
+ */
32727
+ setFindBy(
32728
+ /**
32729
+ * New value for property `findBy`
32730
+ */
32731
+ sFindBy?: string[]
32732
+ ): this;
32733
+ /**
32734
+ * @SINCE 1.100
32735
+ *
32736
+ * Sets a new value for property {@link #getFindByOperator findByOperator}.
32737
+ *
32738
+ * Defines relationship between the operator and the property names using the findAll method
32739
+ *
32740
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
32741
+ *
32742
+ * Default value is `library.simple.findByOperator.OR`.
32743
+ */
32744
+ setFindByOperator(
32745
+ /**
32746
+ * New value for property `findByOperator`
32747
+ */
32748
+ sFindByOperator?: string
32749
+ ): this;
32010
32750
  /**
32011
32751
  * Sets a new value for property {@link #getGhostAlignment ghostAlignment}.
32012
32752
  *
@@ -32411,6 +33151,23 @@ declare namespace sap {
32411
33151
  */
32412
33152
  sTimePattern?: string
32413
33153
  ): this;
33154
+ /**
33155
+ * @EXPERIMENTAL (since 1.98)
33156
+ *
33157
+ * Sets a new value for property {@link #getUseParentShapeOnExpand useParentShapeOnExpand}.
33158
+ *
33159
+ * Determines if only tasks need to be used for rendering the expanded shapes. Subtasks are not required.
33160
+ *
33161
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
33162
+ *
33163
+ * Default value is `false`.
33164
+ */
33165
+ setUseParentShapeOnExpand(
33166
+ /**
33167
+ * New value for property `useParentShapeOnExpand`
33168
+ */
33169
+ bUseParentShapeOnExpand?: boolean
33170
+ ): this;
32414
33171
  /**
32415
33172
  * Sets a new value for property {@link #getWidth width}.
32416
33173
  *
@@ -32468,6 +33225,21 @@ declare namespace sap {
32468
33225
  * Unbinds aggregation {@link #getSimpleAdhocLines simpleAdhocLines} from model data.
32469
33226
  */
32470
33227
  unbindSimpleAdhocLines(): this;
33228
+ /**
33229
+ * @SINCE 1.100
33230
+ *
33231
+ * De-Emphasize shapes based on the de-emphasized shape Uid
33232
+ */
33233
+ updateShapeHighlights(
33234
+ /**
33235
+ * Shape Uid of the shape to be de-emphasized.
33236
+ */
33237
+ deEmphasizedUid: String,
33238
+ /**
33239
+ * flag to de-emphasize all highlighted shapes.
33240
+ */
33241
+ deEmphasizeAll: Boolean
33242
+ ): void;
32471
33243
  }
32472
33244
  /**
32473
33245
  * @SINCE 1.66
@@ -35399,6 +36171,16 @@ declare namespace sap {
35399
36171
  * Default value is `50`.
35400
36172
  */
35401
36173
  getRelativeMiddleLinePoint(): float;
36174
+ /**
36175
+ * @SINCE 1.100.0
36176
+ *
36177
+ * Gets current value of property {@link #getShowCompactView showCompactView}.
36178
+ *
36179
+ * Property to enable Compact View.
36180
+ *
36181
+ * Default value is `true`.
36182
+ */
36183
+ getShowCompactView(): boolean;
35402
36184
  /**
35403
36185
  * Gets current value of property {@link #getShowMiddleLine showMiddleLine}.
35404
36186
  *
@@ -35516,6 +36298,23 @@ declare namespace sap {
35516
36298
  */
35517
36299
  fRelativeMiddleLinePoint?: float
35518
36300
  ): this;
36301
+ /**
36302
+ * @SINCE 1.100.0
36303
+ *
36304
+ * Sets a new value for property {@link #getShowCompactView showCompactView}.
36305
+ *
36306
+ * Property to enable Compact View.
36307
+ *
36308
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
36309
+ *
36310
+ * Default value is `true`.
36311
+ */
36312
+ setShowCompactView(
36313
+ /**
36314
+ * New value for property `showCompactView`
36315
+ */
36316
+ bShowCompactView?: boolean
36317
+ ): this;
35519
36318
  /**
35520
36319
  * Sets a new value for property {@link #getShowMiddleLine showMiddleLine}.
35521
36320
  *
@@ -36846,6 +37645,16 @@ declare namespace sap {
36846
37645
  */
36847
37646
  VariantManagement = "VariantManagement",
36848
37647
  }
37648
+ /**
37649
+ * @SINCE 1.100
37650
+ *
37651
+ * Defines the relationship between the operator and the property names using the findAll method
37652
+ */
37653
+ enum findByOperator {
37654
+ AND = "AND",
37655
+
37656
+ OR = "OR",
37657
+ }
36849
37658
  /**
36850
37659
  * Gantt chart display types.
36851
37660
  */
@@ -36977,6 +37786,12 @@ declare namespace sap {
36977
37786
  */
36978
37787
  Top = "Top",
36979
37788
  }
37789
+ /**
37790
+ * @SINCE 1.100
37791
+ *
37792
+ * This specifies the sub reason detailing why the visible horizon is changing
37793
+ */
37794
+ enum VisibleHorizonUpdateSubType {}
36980
37795
  /**
36981
37796
  * @SINCE 1.68
36982
37797
  *