@sapui5/ts-types 1.98.0 → 1.100.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +2 -2
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.esh.search.ui.d.ts +2 -652
  7. package/types/sap.f.d.ts +156 -64
  8. package/types/sap.fe.common.d.ts +2 -6
  9. package/types/sap.fe.core.d.ts +299 -333
  10. package/types/sap.fe.macros.d.ts +567 -36
  11. package/types/sap.fe.navigation.d.ts +1 -1
  12. package/types/sap.fe.templates.d.ts +1 -1
  13. package/types/sap.fe.test.d.ts +11 -12
  14. package/types/sap.feedback.ui.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +779 -12
  16. package/types/sap.landvisz.d.ts +1 -1
  17. package/types/sap.m.d.ts +1479 -145
  18. package/types/sap.makit.d.ts +1 -1
  19. package/types/sap.me.d.ts +1 -1
  20. package/types/sap.ndc.d.ts +1 -1
  21. package/types/sap.ovp.d.ts +1 -1
  22. package/types/sap.rules.ui.d.ts +1 -1
  23. package/types/sap.sac.grid.d.ts +1 -1
  24. package/types/sap.suite.ui.commons.d.ts +1 -1
  25. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  26. package/types/sap.suite.ui.microchart.d.ts +5 -5
  27. package/types/sap.tnt.d.ts +1 -1
  28. package/types/sap.ui.codeeditor.d.ts +1 -1
  29. package/types/sap.ui.commons.d.ts +1 -1
  30. package/types/sap.ui.comp.d.ts +247 -38
  31. package/types/sap.ui.core.d.ts +1370 -695
  32. package/types/sap.ui.dt.d.ts +1 -1
  33. package/types/sap.ui.export.d.ts +3 -3
  34. package/types/sap.ui.fl.d.ts +11 -5
  35. package/types/sap.ui.generic.app.d.ts +4 -3
  36. package/types/sap.ui.generic.template.d.ts +1 -1
  37. package/types/sap.ui.integration.d.ts +29 -11
  38. package/types/sap.ui.layout.d.ts +4 -1
  39. package/types/sap.ui.mdc.d.ts +13 -1
  40. package/types/sap.ui.richtexteditor.d.ts +1 -1
  41. package/types/sap.ui.rta.d.ts +1 -1
  42. package/types/sap.ui.suite.d.ts +1 -1
  43. package/types/sap.ui.support.d.ts +6 -12
  44. package/types/sap.ui.table.d.ts +2 -9
  45. package/types/sap.ui.testrecorder.d.ts +1 -1
  46. package/types/sap.ui.unified.d.ts +1 -1
  47. package/types/sap.ui.ux3.d.ts +1 -1
  48. package/types/sap.ui.vbm.d.ts +1 -1
  49. package/types/sap.ui.vk.d.ts +101 -12
  50. package/types/sap.ui.vtm.d.ts +4 -4
  51. package/types/sap.uiext.inbox.d.ts +2 -2
  52. package/types/sap.ushell.d.ts +4998 -5037
  53. package/types/sap.ushell_abap.d.ts +1 -495
  54. package/types/sap.uxap.d.ts +1 -1
  55. package/types/sap.viz.d.ts +105 -231
  56. package/types/sap.webanalytics.core.d.ts +1 -1
  57. package/types/sap.zen.commons.d.ts +1 -1
  58. package/types/sap.zen.crosstab.d.ts +1 -1
  59. package/types/sap.zen.dsh.d.ts +2 -2
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.98.0
1
+ // For Library Version: 1.100.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -19728,7 +19728,8 @@ declare namespace sap {
19728
19728
 
19729
19729
  /**
19730
19730
  * A list of base shapes to switch between. Only one of these shapes will be rendered based on the `activeShape`
19731
- * property.
19731
+ * property. Incase if aggregation is bound to listbinding,this aggregation will includes only active shape
19732
+ * instance.
19732
19733
  */
19733
19734
  shapes?:
19734
19735
  | sap.gantt.simple.BaseShape[]
@@ -20199,6 +20200,20 @@ declare namespace sap {
20199
20200
  | sap.gantt.ValueSVGPaintServer
20200
20201
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
20201
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
+
20202
20217
  /**
20203
20218
  * Enables alignment of the shape. The shape can be aligned to the top, middle or bottom. By default, this
20204
20219
  * property is set to Middle. **Note:** Alignment is not possible for BaseLine and BasePath. It will be
@@ -20221,6 +20236,40 @@ declare namespace sap {
20221
20236
  * The titleSpacing property defines the space between the start of the shape and the shape title in pixels
20222
20237
  */
20223
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;
20224
20273
  }
20225
20274
 
20226
20275
  interface $BaseTextSettings extends sap.gantt.simple.$BaseShapeSettings {
@@ -20417,6 +20466,15 @@ declare namespace sap {
20417
20466
  | boolean
20418
20467
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
20419
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
+
20420
20478
  /**
20421
20479
  * The additional setting items in Setting Dialog
20422
20480
  */
@@ -20444,6 +20502,13 @@ declare namespace sap {
20444
20502
  * Fired when a different display type is selected in the display type menu.
20445
20503
  */
20446
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;
20447
20512
  }
20448
20513
 
20449
20514
  interface $ContainerToolbarPlaceholderSettings
@@ -20821,6 +20886,15 @@ declare namespace sap {
20821
20886
  */
20822
20887
  _enableRTA?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
20823
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
+
20824
20898
  /**
20825
20899
  * Toolbar of the container.
20826
20900
  */
@@ -20852,6 +20926,13 @@ declare namespace sap {
20852
20926
  */
20853
20927
  variantHandler?: sap.gantt.simple.CustomVariantHandler;
20854
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
+
20855
20936
  /**
20856
20937
  * Event fired when the custom settings value is changed.
20857
20938
  *
@@ -20930,6 +21011,27 @@ declare namespace sap {
20930
21011
  | object
20931
21012
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
20932
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
+
20933
21035
  /**
20934
21036
  * Flag whether to show or hide the cursor line when moving your mouse cursor
20935
21037
  */
@@ -21290,6 +21392,20 @@ declare namespace sap {
21290
21392
  | boolean
21291
21393
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
21292
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
+
21293
21409
  /**
21294
21410
  * Table of the Gantt Chart
21295
21411
  *
@@ -21392,6 +21508,13 @@ declare namespace sap {
21392
21508
  */
21393
21509
  shapeSelectionChange?: (oEvent: sap.ui.base.Event) => void;
21394
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
+
21395
21518
  /**
21396
21519
  * Fired when a shape is resized.
21397
21520
  */
@@ -21443,6 +21566,13 @@ declare namespace sap {
21443
21566
  * This event is fired when the visible horizon is changed.
21444
21567
  */
21445
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;
21446
21576
  }
21447
21577
 
21448
21578
  interface $GanttPrintingSettings extends sap.ui.core.$ElementSettings {
@@ -21913,6 +22043,15 @@ declare namespace sap {
21913
22043
  */
21914
22044
  maxValue?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
21915
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
+
21916
22055
  /**
21917
22056
  * Dimensions of the Stock Chart
21918
22057
  */
@@ -23375,17 +23514,19 @@ declare namespace sap {
23375
23514
  */
23376
23515
  oShape: sap.gantt.simple.BaseShape
23377
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;
23378
23522
  /**
23379
23523
  * Destroys all the shapes in the aggregation {@link #getShapes shapes}.
23380
23524
  */
23381
23525
  destroyShapes(): this;
23382
23526
  /**
23383
- * Gets current value of property {@link #getActiveShape activeShape}.
23384
- *
23385
- * Defines which shape from the `shapes` aggregation is visible. If you specify a negative value or a value
23386
- * that is greater than the number of shapes defined, no shape will be rendered.
23387
- *
23388
- * 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.
23389
23530
  */
23390
23531
  getActiveShape(): int;
23391
23532
  /**
@@ -23396,7 +23537,8 @@ declare namespace sap {
23396
23537
  * Gets content of aggregation {@link #getShapes shapes}.
23397
23538
  *
23398
23539
  * A list of base shapes to switch between. Only one of these shapes will be rendered based on the `activeShape`
23399
- * property.
23540
+ * property. Incase if aggregation is bound to listbinding,this aggregation will includes only active shape
23541
+ * instance.
23400
23542
  */
23401
23543
  getShapes(): sap.gantt.simple.BaseShape[];
23402
23544
  /**
@@ -25054,6 +25196,46 @@ declare namespace sap {
25054
25196
  * Default value is `"Arial"`.
25055
25197
  */
25056
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;
25057
25239
  /**
25058
25240
  * @SINCE 1.86
25059
25241
  *
@@ -25135,6 +25317,24 @@ declare namespace sap {
25135
25317
  * Default value is `false`.
25136
25318
  */
25137
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;
25138
25338
  /**
25139
25339
  * Gets current value of property {@link #getShapeId shapeId}.
25140
25340
  *
@@ -25497,6 +25697,72 @@ declare namespace sap {
25497
25697
  */
25498
25698
  sFontFamily?: string
25499
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;
25500
25766
  /**
25501
25767
  * @SINCE 1.86
25502
25768
  *
@@ -25641,6 +25907,38 @@ declare namespace sap {
25641
25907
  */
25642
25908
  bSelected?: boolean
25643
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;
25644
25942
  /**
25645
25943
  * Sets a new value for property {@link #getShapeId shapeId}.
25646
25944
  *
@@ -26716,6 +27014,53 @@ declare namespace sap {
26716
27014
  */
26717
27015
  oListener?: object
26718
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;
26719
27064
  /**
26720
27065
  * Attaches event handler `fnFunction` to the {@link #event:zoomStopChange zoomStopChange} event of this
26721
27066
  * `sap.gantt.simple.ContainerToolbar`.
@@ -26799,6 +27144,24 @@ declare namespace sap {
26799
27144
  */
26800
27145
  oListener?: object
26801
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;
26802
27165
  /**
26803
27166
  * Detaches event handler `fnFunction` from the {@link #event:zoomStopChange zoomStopChange} event of this
26804
27167
  * `sap.gantt.simple.ContainerToolbar`.
@@ -26835,6 +27198,19 @@ declare namespace sap {
26835
27198
  displayType?: sap.gantt.simple.GanttChartWithTableDisplayType;
26836
27199
  }
26837
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;
26838
27214
  /**
26839
27215
  * Fires event {@link #event:zoomStopChange zoomStopChange} to attached listeners.
26840
27216
  */
@@ -26906,6 +27282,16 @@ declare namespace sap {
26906
27282
  * Default value is `false`.
26907
27283
  */
26908
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;
26909
27295
  /**
26910
27296
  * Gets current value of property {@link #getShowSettingButton showSettingButton}.
26911
27297
  *
@@ -27080,6 +27466,23 @@ declare namespace sap {
27080
27466
  */
27081
27467
  bShowLegendButton?: boolean
27082
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;
27083
27486
  /**
27084
27487
  * Sets a new value for property {@link #getShowSettingButton showSettingButton}.
27085
27488
  *
@@ -28766,6 +29169,12 @@ declare namespace sap {
28766
29169
  * Destroys all the ganttCharts in the aggregation {@link #getGanttCharts ganttCharts}.
28767
29170
  */
28768
29171
  destroyGanttCharts(): this;
29172
+ /**
29173
+ * @SINCE 1.100
29174
+ *
29175
+ * Destroys the searchSidePanel in the aggregation {@link #getSearchSidePanel searchSidePanel}.
29176
+ */
29177
+ destroySearchSidePanel(): this;
28769
29178
  /**
28770
29179
  * Destroys the statusBar in the aggregation {@link #getStatusBar statusBar}.
28771
29180
  */
@@ -28997,6 +29406,24 @@ declare namespace sap {
28997
29406
  * Default value is `Vertical`.
28998
29407
  */
28999
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;
29000
29427
  /**
29001
29428
  * Gets content of aggregation {@link #getStatusBar statusBar}.
29002
29429
  *
@@ -29347,6 +29774,34 @@ declare namespace sap {
29347
29774
  */
29348
29775
  sLayoutOrientation?: sap.ui.core.Orientation
29349
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;
29350
29805
  /**
29351
29806
  * Sets the aggregated {@link #getStatusBar statusBar}.
29352
29807
  */
@@ -29506,6 +29961,17 @@ declare namespace sap {
29506
29961
  * Returns a metadata object for class sap.gantt.simple.GanttChartWithTable.
29507
29962
  */
29508
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;
29509
29975
  /**
29510
29976
  * @deprecated (since 1.84) - use {@link sap.gantt.simple.AdhocLine} instead.
29511
29977
  *
@@ -29602,6 +30068,55 @@ declare namespace sap {
29602
30068
  */
29603
30069
  oListener?: object
29604
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;
29605
30120
  /**
29606
30121
  * Attaches event handler `fnFunction` to the {@link #event:shapeConnect shapeConnect} event of this `sap.gantt.simple.GanttChartWithTable`.
29607
30122
  *
@@ -29778,6 +30293,55 @@ declare namespace sap {
29778
30293
  */
29779
30294
  oListener?: object
29780
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;
29781
30345
  /**
29782
30346
  * Attaches event handler `fnFunction` to the {@link #event:shapeMouseEnter shapeMouseEnter} event of this
29783
30347
  * `sap.gantt.simple.GanttChartWithTable`.
@@ -30202,6 +30766,24 @@ declare namespace sap {
30202
30766
  */
30203
30767
  oListener?: object
30204
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;
30205
30787
  /**
30206
30788
  * Detaches event handler `fnFunction` from the {@link #event:shapeConnect shapeConnect} event of this `sap.gantt.simple.GanttChartWithTable`.
30207
30789
  *
@@ -30264,6 +30846,24 @@ declare namespace sap {
30264
30846
  */
30265
30847
  oListener?: object
30266
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;
30267
30867
  /**
30268
30868
  * Detaches event handler `fnFunction` from the {@link #event:shapeMouseEnter shapeMouseEnter} event of
30269
30869
  * this `sap.gantt.simple.GanttChartWithTable`.
@@ -30396,10 +30996,10 @@ declare namespace sap {
30396
30996
  */
30397
30997
  propertyValue: string,
30398
30998
  /**
30399
- * property to search in (optional parameter)
30999
+ * property names or name to search in (optional parameter)
30400
31000
  */
30401
- propertyName: string
30402
- ): undefined;
31001
+ aPropertyNames: string[] | string
31002
+ ): Object[];
30403
31003
  /**
30404
31004
  * @SINCE 1.89
30405
31005
  *
@@ -30486,6 +31086,17 @@ declare namespace sap {
30486
31086
  cursorDateTime?: object;
30487
31087
  }
30488
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;
30489
31100
  /**
30490
31101
  * Fires event {@link #event:shapeConnect shapeConnect} to attached listeners.
30491
31102
  */
@@ -30627,6 +31238,22 @@ declare namespace sap {
30627
31238
  targetShape?: sap.gantt.simple.BaseShape;
30628
31239
  }
30629
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;
30630
31257
  /**
30631
31258
  * Fires event {@link #event:shapeMouseEnter shapeMouseEnter} to attached listeners.
30632
31259
  */
@@ -30750,6 +31377,10 @@ declare namespace sap {
30750
31377
  * Specifies how the update was initiated.
30751
31378
  */
30752
31379
  type?: sap.gantt.simple.VisibleHorizonUpdateType;
31380
+ /**
31381
+ * Provides subType information about the type.
31382
+ */
31383
+ subType?: sap.gantt.simple.VisibleHorizonUpdateSubType;
30753
31384
  /**
30754
31385
  * Value of the visible horizon before the current update. Some types of this event don't have this value.
30755
31386
  */
@@ -31037,6 +31668,26 @@ declare namespace sap {
31037
31668
  * Property to define the height of an expanded row in pixels.
31038
31669
  */
31039
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;
31040
31691
  /**
31041
31692
  * @SINCE 1.90
31042
31693
  *
@@ -31063,6 +31714,10 @@ declare namespace sap {
31063
31714
  * Default value is `"100%"`.
31064
31715
  */
31065
31716
  getHeight(): sap.ui.core.CSSSize;
31717
+ /**
31718
+ * Get the highlighted shape in gantt chart
31719
+ */
31720
+ getHighlightedShapeUid(): Object[];
31066
31721
  /**
31067
31722
  * Gets content of aggregation {@link #getLocale locale}.
31068
31723
  *
@@ -31133,6 +31788,26 @@ declare namespace sap {
31133
31788
  * Default value is `false`.
31134
31789
  */
31135
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;
31136
31811
  /**
31137
31812
  * @SINCE 1.76
31138
31813
  *
@@ -32038,6 +32713,40 @@ declare namespace sap {
32038
32713
  */
32039
32714
  iExpandedRowHeight: int
32040
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;
32041
32750
  /**
32042
32751
  * Sets a new value for property {@link #getGhostAlignment ghostAlignment}.
32043
32752
  *
@@ -32516,6 +33225,21 @@ declare namespace sap {
32516
33225
  * Unbinds aggregation {@link #getSimpleAdhocLines simpleAdhocLines} from model data.
32517
33226
  */
32518
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;
32519
33243
  }
32520
33244
  /**
32521
33245
  * @SINCE 1.66
@@ -35447,6 +36171,16 @@ declare namespace sap {
35447
36171
  * Default value is `50`.
35448
36172
  */
35449
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;
35450
36184
  /**
35451
36185
  * Gets current value of property {@link #getShowMiddleLine showMiddleLine}.
35452
36186
  *
@@ -35564,6 +36298,23 @@ declare namespace sap {
35564
36298
  */
35565
36299
  fRelativeMiddleLinePoint?: float
35566
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;
35567
36318
  /**
35568
36319
  * Sets a new value for property {@link #getShowMiddleLine showMiddleLine}.
35569
36320
  *
@@ -36894,6 +37645,16 @@ declare namespace sap {
36894
37645
  */
36895
37646
  VariantManagement = "VariantManagement",
36896
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
+ }
36897
37658
  /**
36898
37659
  * Gantt chart display types.
36899
37660
  */
@@ -37025,6 +37786,12 @@ declare namespace sap {
37025
37786
  */
37026
37787
  Top = "Top",
37027
37788
  }
37789
+ /**
37790
+ * @SINCE 1.100
37791
+ *
37792
+ * This specifies the sub reason detailing why the visible horizon is changing
37793
+ */
37794
+ enum VisibleHorizonUpdateSubType {}
37028
37795
  /**
37029
37796
  * @SINCE 1.68
37030
37797
  *