@sapui5/ts-types 1.115.1 → 1.116.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/README.md +4 -14
  2. package/package.json +1 -1
  3. package/types/index.d.ts +9 -3
  4. package/types/sap.apf.d.ts +38 -30
  5. package/types/sap.ca.ui.d.ts +129 -87
  6. package/types/sap.chart.d.ts +3 -48
  7. package/types/sap.collaboration.d.ts +22 -20
  8. package/types/sap.esh.search.ui.d.ts +111 -107
  9. package/types/sap.f.d.ts +70 -248
  10. package/types/sap.fe.core.d.ts +130 -4
  11. package/types/sap.fe.macros.d.ts +21 -47
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.test.d.ts +1 -1
  14. package/types/sap.fe.tools.d.ts +1 -1
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +1074 -1207
  17. package/types/sap.insights.d.ts +3 -3
  18. package/types/sap.landvisz.d.ts +53 -27
  19. package/types/sap.m.d.ts +377 -2599
  20. package/types/sap.makit.d.ts +1 -36
  21. package/types/sap.me.d.ts +6 -63
  22. package/types/sap.ndc.d.ts +22 -25
  23. package/types/sap.ovp.d.ts +19 -6
  24. package/types/sap.rules.ui.d.ts +29 -37
  25. package/types/sap.sac.df.d.ts +7 -5
  26. package/types/sap.suite.ui.commons.d.ts +1012 -1165
  27. package/types/sap.suite.ui.generic.template.d.ts +1 -7
  28. package/types/sap.suite.ui.microchart.d.ts +4 -105
  29. package/types/sap.tnt.d.ts +51 -24
  30. package/types/sap.ui.codeeditor.d.ts +3 -19
  31. package/types/sap.ui.commons.d.ts +39 -415
  32. package/types/sap.ui.comp.d.ts +290 -778
  33. package/types/sap.ui.core.d.ts +253 -845
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +1 -12
  36. package/types/sap.ui.fl.d.ts +4 -78
  37. package/types/sap.ui.generic.app.d.ts +28 -30
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +119 -93
  40. package/types/sap.ui.layout.d.ts +6 -40
  41. package/types/sap.ui.mdc.d.ts +803 -842
  42. package/types/sap.ui.richtexteditor.d.ts +2 -27
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +1 -12
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +21 -187
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +24 -379
  49. package/types/sap.ui.ux3.d.ts +44 -483
  50. package/types/sap.ui.vbm.d.ts +496 -764
  51. package/types/sap.ui.vk.d.ts +1332 -1844
  52. package/types/sap.ui.vtm.d.ts +312 -386
  53. package/types/sap.ui.webc.common.d.ts +1 -1
  54. package/types/sap.ui.webc.fiori.d.ts +731 -308
  55. package/types/sap.ui.webc.main.d.ts +4118 -1173
  56. package/types/sap.uiext.inbox.d.ts +1 -79
  57. package/types/sap.ushell.d.ts +220 -862
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +10 -80
  60. package/types/sap.viz.d.ts +3 -823
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +2 -2
  63. package/types/sap.zen.crosstab.d.ts +2 -2
  64. package/types/sap.zen.dsh.d.ts +127 -157
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace esh {
@@ -10,21 +10,21 @@ declare namespace sap {
10
10
  interface $SearchCompositeControlSettings
11
11
  extends sap.ui.core.$ControlSettings {
12
12
  /**
13
- * @SINCE 1.93.0
13
+ * @since 1.93.0
14
14
  *
15
15
  * An additional CSS class to add to this control
16
16
  */
17
17
  cssClass?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
18
18
 
19
19
  /**
20
- * @SINCE 1.93.0
20
+ * @since 1.93.0
21
21
  *
22
22
  * Defines the initial search term for the search input.
23
23
  */
24
24
  searchTerm?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
25
25
 
26
26
  /**
27
- * @SINCE 1.93.0
27
+ * @since 1.93.0
28
28
  *
29
29
  * Defines if the search composite control will send a search request after loading for the given term,
30
30
  * data source and filter root condition settings.
@@ -35,7 +35,7 @@ declare namespace sap {
35
35
  | `{${string}}`;
36
36
 
37
37
  /**
38
- * @SINCE 1.98.0
38
+ * @since 1.98.0
39
39
  *
40
40
  * Defines the filter root condition of a filter tree which shall be applied to the search request. This
41
41
  * control only allows filter trees which have a the following structure: complex condition (root level)
@@ -49,7 +49,7 @@ declare namespace sap {
49
49
  | `{${string}}`;
50
50
 
51
51
  /**
52
- * @SINCE 1.93.0
52
+ * @since 1.93.0
53
53
  *
54
54
  * Configuration for the Enterprise Search Client API.
55
55
  */
@@ -59,14 +59,14 @@ declare namespace sap {
59
59
  | `{${string}}`;
60
60
 
61
61
  /**
62
- * @SINCE 1.98.0
62
+ * @since 1.98.0
63
63
  *
64
64
  * The id of the data source in which it will search right after initialization.
65
65
  */
66
66
  dataSource?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
67
67
 
68
68
  /**
69
- * @SINCE 1.98.0
69
+ * @since 1.98.0
70
70
  *
71
71
  * Defines selectable search result view types. The value can be set/get in attach event "searchFinished".
72
72
  * Case 1: Search in Apps: result is displayed in a mandatory view type `["appSearchResult"]`, and it is
@@ -82,7 +82,7 @@ declare namespace sap {
82
82
  | `{${string}}`;
83
83
 
84
84
  /**
85
- * @SINCE 1.98.0
85
+ * @since 1.98.0
86
86
  *
87
87
  * Defines active search result view type. The value can be set/get in attach event "searchFinished", and
88
88
  * it must be contained in resultViewTypes. Case 1, Search in Apps: result is displayed in a mandatory view
@@ -98,7 +98,7 @@ declare namespace sap {
98
98
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
99
99
 
100
100
  /**
101
- * @SINCE 1.100.0
101
+ * @since 1.100.0
102
102
  *
103
103
  * Defines a pair of search result view settings. The value is an object of properties `resultViewTypes`
104
104
  * and `resultViewType`. An example: `{resultViewTypes: ["searchResultList", "searchResultTable"], resultViewType:
@@ -112,7 +112,7 @@ declare namespace sap {
112
112
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
113
113
 
114
114
  /**
115
- * @SINCE 1.103.0
115
+ * @since 1.103.0
116
116
  *
117
117
  * Function callback for formatting the datasource tabstrips in the top toolbar. To the callback function
118
118
  * a list of datasources is passed. The callback functions return a modified list of datasources to be displayed
@@ -143,7 +143,7 @@ declare namespace sap {
143
143
  | `{${string}}`;
144
144
 
145
145
  /**
146
- * @SINCE 1.114.0
146
+ * @since 1.114.0
147
147
  *
148
148
  * In case folderMode is set to true this boolean indicates whether for the initial search the folder mode
149
149
  * is enabled.
@@ -154,7 +154,7 @@ declare namespace sap {
154
154
  | `{${string}}`;
155
155
 
156
156
  /**
157
- * @SINCE 1.106.0
157
+ * @since 1.106.0
158
158
  *
159
159
  * In case folder mode is active: Automatically switch result view type to list in search mode and to table
160
160
  * in folder mode.
@@ -165,7 +165,7 @@ declare namespace sap {
165
165
  | `{${string}}`;
166
166
 
167
167
  /**
168
- * @SINCE 1.107.0
168
+ * @since 1.107.0
169
169
  *
170
170
  * Enables the query language for the hana_odata provider. With query language it is possible for the end
171
171
  * user to enter complex search queries with logical operators.
@@ -176,7 +176,7 @@ declare namespace sap {
176
176
  | `{${string}}`;
177
177
 
178
178
  /**
179
- * @SINCE 1.108.0
179
+ * @since 1.108.0
180
180
  *
181
181
  * Relevant for SAP partners and SAP, the "Application Component" you expect customers to create incidents.
182
182
  */
@@ -185,7 +185,7 @@ declare namespace sap {
185
185
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
186
186
 
187
187
  /**
188
- * @SINCE 1.108.0
188
+ * @since 1.108.0
189
189
  *
190
190
  * Display a splitter bar to resize the left hand panel, containing all facets and filter criteria.
191
191
  */
@@ -195,7 +195,7 @@ declare namespace sap {
195
195
  | `{${string}}`;
196
196
 
197
197
  /**
198
- * @SINCE 1.108.0
198
+ * @since 1.108.0
199
199
  *
200
200
  * Default size (percent) of the left hand panel, containing all facets and filter criteria. If "facetPanelResizable"
201
201
  * is true, the width of the facet panel can be changed by the user.
@@ -206,7 +206,7 @@ declare namespace sap {
206
206
  | `{${string}}`;
207
207
 
208
208
  /**
209
- * @SINCE 1.94.0
209
+ * @since 1.94.0
210
210
  *
211
211
  * Whenever a search has no results, a 'No Results Page' is displayed. You can provide a custom page to
212
212
  * be more specific and add some hints, links, buttons or other content.
@@ -217,7 +217,7 @@ declare namespace sap {
217
217
  | `{${string}}`;
218
218
 
219
219
  /**
220
- * @SINCE 1.93.0
220
+ * @since 1.93.0
221
221
  *
222
222
  * Shall the window title be overwritten by this control? If true, the control will set the current search
223
223
  * condition as window title. If false, it will not set or update the window title.
@@ -228,7 +228,7 @@ declare namespace sap {
228
228
  | `{${string}}`;
229
229
 
230
230
  /**
231
- * @SINCE 1.93.0
231
+ * @since 1.93.0
232
232
  *
233
233
  * Data source id which is set when the UI is loaded or filter is reset. If dataSource is also set, dataSource
234
234
  * will be used during UI load and this parameter will used only after filter is reset.
@@ -238,7 +238,7 @@ declare namespace sap {
238
238
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
239
239
 
240
240
  /**
241
- * @SINCE 1.111.0
241
+ * @since 1.111.0
242
242
  *
243
243
  * The layout is optimized for object selection / value help (narrow view w/o facet panel).
244
244
  */
@@ -248,7 +248,7 @@ declare namespace sap {
248
248
  | `{${string}}`;
249
249
 
250
250
  /**
251
- * @SINCE 1.112.0
251
+ * @since 1.112.0
252
252
  *
253
253
  * Callback for filtering the datasources displayed in the datasource dropdown listbox. The callback gets
254
254
  * a list of datsources and returns the filtered list of datasources.
@@ -259,7 +259,7 @@ declare namespace sap {
259
259
  | `{${string}}`;
260
260
 
261
261
  /**
262
- * @SINCE 1.113.0
262
+ * @since 1.113.0
263
263
  *
264
264
  * A boolean which indicates whether the facet panel is initially openend or closed. This affects only the
265
265
  * initial state of the facet panel. When not setting facetVisibility the initial state of the facet panel
@@ -271,7 +271,7 @@ declare namespace sap {
271
271
  | `{${string}}`;
272
272
 
273
273
  /**
274
- * @SINCE 1.113.0
274
+ * @since 1.113.0
275
275
  *
276
276
  * A boolean for enabling (business) object suggestions.
277
277
  */
@@ -281,7 +281,7 @@ declare namespace sap {
281
281
  | `{${string}}`;
282
282
 
283
283
  /**
284
- * @SINCE 1.113.0
284
+ * @since 1.113.0
285
285
  *
286
286
  * When set to true the facet panel is displayed also in case there are no search results.
287
287
  */
@@ -291,7 +291,7 @@ declare namespace sap {
291
291
  | `{${string}}`;
292
292
 
293
293
  /**
294
- * @SINCE 1.113.0
294
+ * @since 1.113.0
295
295
  *
296
296
  * A boolean indicating that the search state is written to the URL.
297
297
  */
@@ -301,7 +301,7 @@ declare namespace sap {
301
301
  | `{${string}}`;
302
302
 
303
303
  /**
304
- * @SINCE 1.113.0
304
+ * @since 1.113.0
305
305
  *
306
306
  * A callback for rendering the search URL. The callback gets a list of url encoded parameters and returns
307
307
  * the URL string. Typically you need to register this callback in case updateUrl=true.
@@ -312,7 +312,7 @@ declare namespace sap {
312
312
  | `{${string}}`;
313
313
 
314
314
  /**
315
- * @SINCE 1.113.0
315
+ * @since 1.113.0
316
316
  *
317
317
  * A callback for checking whether a URL is a search URL. The callback receives a URL and returns true in
318
318
  * case the URL is a search URL. Typically you need to register this callback in case updateUrl=true.
@@ -323,7 +323,7 @@ declare namespace sap {
323
323
  | `{${string}}`;
324
324
 
325
325
  /**
326
- * @SINCE 1.113.0
326
+ * @since 1.113.0
327
327
  *
328
328
  * A callback for parsing URL parameters. The callback receices URL parameters and returns modified URL
329
329
  * parameters. This is an optional callback. Also in case you set updateUrl=true typcically this callback
@@ -335,7 +335,7 @@ declare namespace sap {
335
335
  | `{${string}}`;
336
336
 
337
337
  /**
338
- * @SINCE 1.113.0
338
+ * @since 1.113.0
339
339
  *
340
340
  * A list of datasources to be displayed in the facet panel in the collection area.
341
341
  */
@@ -345,7 +345,7 @@ declare namespace sap {
345
345
  | `{${string}}`;
346
346
 
347
347
  /**
348
- * @SINCE 1.113.0
348
+ * @since 1.113.0
349
349
  *
350
350
  * A callback which is called whenever the selection of result list items changes.
351
351
  */
@@ -355,7 +355,7 @@ declare namespace sap {
355
355
  | `{${string}}`;
356
356
 
357
357
  /**
358
- * @SINCE 1.113.0
358
+ * @since 1.113.0
359
359
  *
360
360
  * A callback which is called after the initialization of the search composite control.
361
361
  */
@@ -365,7 +365,7 @@ declare namespace sap {
365
365
  | `{${string}}`;
366
366
 
367
367
  /**
368
- * @SINCE 1.96.0
368
+ * @since 1.96.0
369
369
  *
370
370
  * Enables the multiselection mode of search result items. A checkbox is provided for each result item if
371
371
  * the value is true.
@@ -376,7 +376,7 @@ declare namespace sap {
376
376
  | `{${string}}`;
377
377
 
378
378
  /**
379
- * @SINCE 1.96.0
379
+ * @since 1.96.0
380
380
  *
381
381
  * The maximal count of search result items displayed on a page after a search. By clicking Show More button,
382
382
  * another page of result items of the same count (if available) will be displayed.
@@ -406,12 +406,12 @@ declare namespace sap {
406
406
  searchFinished?: (oEvent: sap.ui.base.Event) => void;
407
407
  }
408
408
 
409
- interface $SearchCompositeControlSearchFinishedEventParameters {}
409
+ interface SearchCompositeControl$SearchFinishedEventParameters {}
410
410
 
411
- interface $SearchCompositeControlSearchStartedEventParameters {}
411
+ interface SearchCompositeControl$SearchStartedEventParameters {}
412
412
 
413
413
  /**
414
- * @SINCE 1.93.0
414
+ * @since 1.93.0
415
415
  *
416
416
  * This is the SAPUI5 composite control by the Enterprise Search Team which helps to make full use of the
417
417
  * Enterprise Search Engine features built into ABAP and HANA. It includes a search input box including
@@ -631,7 +631,7 @@ declare namespace sap {
631
631
  oListener?: object
632
632
  ): this;
633
633
  /**
634
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
634
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
635
635
  *
636
636
  * Fires event {@link #event:searchFinished searchFinished} to attached listeners.
637
637
  *
@@ -644,7 +644,7 @@ declare namespace sap {
644
644
  mParameters?: object
645
645
  ): this;
646
646
  /**
647
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
647
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
648
648
  *
649
649
  * Fires event {@link #event:searchStarted searchStarted} to attached listeners.
650
650
  *
@@ -657,7 +657,7 @@ declare namespace sap {
657
657
  mParameters?: object
658
658
  ): this;
659
659
  /**
660
- * @SINCE 1.108.0
660
+ * @since 1.108.0
661
661
  *
662
662
  * Gets current value of property {@link #getApplicationComponent applicationComponent}.
663
663
  *
@@ -669,7 +669,7 @@ declare namespace sap {
669
669
  */
670
670
  getApplicationComponent(): string;
671
671
  /**
672
- * @SINCE 1.106.0
672
+ * @since 1.106.0
673
673
  *
674
674
  * Gets current value of property {@link #getAutoAdjustResultViewTypeInFolderMode autoAdjustResultViewTypeInFolderMode}.
675
675
  *
@@ -682,7 +682,7 @@ declare namespace sap {
682
682
  */
683
683
  getAutoAdjustResultViewTypeInFolderMode(): boolean;
684
684
  /**
685
- * @SINCE 1.113.0
685
+ * @since 1.113.0
686
686
  *
687
687
  * Gets current value of property {@link #getBoSuggestions boSuggestions}.
688
688
  *
@@ -700,7 +700,7 @@ declare namespace sap {
700
700
  */
701
701
  getContent(): sap.ui.core.Control[];
702
702
  /**
703
- * @SINCE 1.93.0
703
+ * @since 1.93.0
704
704
  *
705
705
  * Gets current value of property {@link #getCssClass cssClass}.
706
706
  *
@@ -710,7 +710,7 @@ declare namespace sap {
710
710
  */
711
711
  getCssClass(): string;
712
712
  /**
713
- * @SINCE 1.98.0
713
+ * @since 1.98.0
714
714
  *
715
715
  * Gets current value of property {@link #getDataSource dataSource}.
716
716
  *
@@ -720,7 +720,7 @@ declare namespace sap {
720
720
  */
721
721
  getDataSource(): string;
722
722
  /**
723
- * @SINCE 1.93.0
723
+ * @since 1.93.0
724
724
  *
725
725
  * Gets current value of property {@link #getDefaultDataSource defaultDataSource}.
726
726
  *
@@ -731,7 +731,7 @@ declare namespace sap {
731
731
  */
732
732
  getDefaultDataSource(): string;
733
733
  /**
734
- * @SINCE 1.113.0
734
+ * @since 1.113.0
735
735
  *
736
736
  * Gets current value of property {@link #getDisplayFacetPanelInCaseOfNoResults displayFacetPanelInCaseOfNoResults}.
737
737
  *
@@ -743,7 +743,7 @@ declare namespace sap {
743
743
  */
744
744
  getDisplayFacetPanelInCaseOfNoResults(): boolean;
745
745
  /**
746
- * @SINCE 1.96.0
746
+ * @since 1.96.0
747
747
  *
748
748
  * Gets current value of property {@link #getEnableMultiSelectionResultItems enableMultiSelectionResultItems}.
749
749
  *
@@ -756,7 +756,7 @@ declare namespace sap {
756
756
  */
757
757
  getEnableMultiSelectionResultItems(): boolean;
758
758
  /**
759
- * @SINCE 1.107.0
759
+ * @since 1.107.0
760
760
  *
761
761
  * Gets current value of property {@link #getEnableQueryLanguage enableQueryLanguage}.
762
762
  *
@@ -769,7 +769,7 @@ declare namespace sap {
769
769
  */
770
770
  getEnableQueryLanguage(): boolean;
771
771
  /**
772
- * @SINCE 1.108.0
772
+ * @since 1.108.0
773
773
  *
774
774
  * Gets current value of property {@link #getFacetPanelResizable facetPanelResizable}.
775
775
  *
@@ -781,7 +781,7 @@ declare namespace sap {
781
781
  */
782
782
  getFacetPanelResizable(): boolean;
783
783
  /**
784
- * @SINCE 1.108.0
784
+ * @since 1.108.0
785
785
  *
786
786
  * Gets current value of property {@link #getFacetPanelWidthInPercent facetPanelWidthInPercent}.
787
787
  *
@@ -794,7 +794,7 @@ declare namespace sap {
794
794
  */
795
795
  getFacetPanelWidthInPercent(): float;
796
796
  /**
797
- * @SINCE 1.113.0
797
+ * @since 1.113.0
798
798
  *
799
799
  * Gets current value of property {@link #getFacetVisibility facetVisibility}.
800
800
  *
@@ -806,7 +806,7 @@ declare namespace sap {
806
806
  */
807
807
  getFacetVisibility(): boolean;
808
808
  /**
809
- * @SINCE 1.112.0
809
+ * @since 1.112.0
810
810
  *
811
811
  * Gets current value of property {@link #getFilterDataSources filterDataSources}.
812
812
  *
@@ -817,7 +817,7 @@ declare namespace sap {
817
817
  */
818
818
  getFilterDataSources(): Function;
819
819
  /**
820
- * @SINCE 1.98.0
820
+ * @since 1.98.0
821
821
  *
822
822
  * Gets current value of property {@link #getFilterRootCondition filterRootCondition}.
823
823
  *
@@ -831,7 +831,7 @@ declare namespace sap {
831
831
  */
832
832
  getFilterRootCondition(): object;
833
833
  /**
834
- * @SINCE 1.106.0
834
+ * @since 1.106.0
835
835
  *
836
836
  * Gets current value of property {@link #getFolderMode folderMode}.
837
837
  *
@@ -852,7 +852,7 @@ declare namespace sap {
852
852
  */
853
853
  getFolderMode(): boolean;
854
854
  /**
855
- * @SINCE 1.114.0
855
+ * @since 1.114.0
856
856
  *
857
857
  * Gets current value of property {@link #getFolderModeForInitialSearch folderModeForInitialSearch}.
858
858
  *
@@ -865,7 +865,7 @@ declare namespace sap {
865
865
  */
866
866
  getFolderModeForInitialSearch(): boolean;
867
867
  /**
868
- * @SINCE 1.94.0
868
+ * @since 1.94.0
869
869
  *
870
870
  * Gets current value of property {@link #getGetCustomNoResultScreen getCustomNoResultScreen}.
871
871
  *
@@ -876,7 +876,7 @@ declare namespace sap {
876
876
  */
877
877
  getGetCustomNoResultScreen(): Function;
878
878
  /**
879
- * @SINCE 1.113.0
879
+ * @since 1.113.0
880
880
  *
881
881
  * Gets current value of property {@link #getInitAsync initAsync}.
882
882
  *
@@ -886,7 +886,7 @@ declare namespace sap {
886
886
  */
887
887
  getInitAsync(): Function;
888
888
  /**
889
- * @SINCE 1.113.0
889
+ * @since 1.113.0
890
890
  *
891
891
  * Gets current value of property {@link #getIsSearchUrl isSearchUrl}.
892
892
  *
@@ -897,7 +897,7 @@ declare namespace sap {
897
897
  */
898
898
  getIsSearchUrl(): Function;
899
899
  /**
900
- * @SINCE 1.111.0
900
+ * @since 1.111.0
901
901
  *
902
902
  * Gets current value of property {@link #getOptimizeForValueHelp optimizeForValueHelp}.
903
903
  *
@@ -907,7 +907,7 @@ declare namespace sap {
907
907
  */
908
908
  getOptimizeForValueHelp(): boolean;
909
909
  /**
910
- * @SINCE 1.93.0
910
+ * @since 1.93.0
911
911
  *
912
912
  * Gets current value of property {@link #getOverwriteBrowserTitle overwriteBrowserTitle}.
913
913
  *
@@ -918,7 +918,7 @@ declare namespace sap {
918
918
  */
919
919
  getOverwriteBrowserTitle(): boolean;
920
920
  /**
921
- * @SINCE 1.96.0
921
+ * @since 1.96.0
922
922
  *
923
923
  * Gets current value of property {@link #getPageSize pageSize}.
924
924
  *
@@ -931,7 +931,7 @@ declare namespace sap {
931
931
  */
932
932
  getPageSize(): int;
933
933
  /**
934
- * @SINCE 1.113.0
934
+ * @since 1.113.0
935
935
  *
936
936
  * Gets current value of property {@link #getParseSearchUrlParameters parseSearchUrlParameters}.
937
937
  *
@@ -943,7 +943,7 @@ declare namespace sap {
943
943
  */
944
944
  getParseSearchUrlParameters(): Function;
945
945
  /**
946
- * @SINCE 1.113.0
946
+ * @since 1.113.0
947
947
  *
948
948
  * Gets current value of property {@link #getQuickSelectDataSources quickSelectDataSources}.
949
949
  *
@@ -953,7 +953,7 @@ declare namespace sap {
953
953
  */
954
954
  getQuickSelectDataSources(): object;
955
955
  /**
956
- * @SINCE 1.113.0
956
+ * @since 1.113.0
957
957
  *
958
958
  * Gets current value of property {@link #getRenderSearchUrl renderSearchUrl}.
959
959
  *
@@ -964,7 +964,7 @@ declare namespace sap {
964
964
  */
965
965
  getRenderSearchUrl(): Function;
966
966
  /**
967
- * @SINCE 1.100.0
967
+ * @since 1.100.0
968
968
  *
969
969
  * Gets current value of property {@link #getResultViewSettings resultViewSettings}.
970
970
  *
@@ -981,7 +981,7 @@ declare namespace sap {
981
981
  */
982
982
  getResultViewSettings(): string;
983
983
  /**
984
- * @SINCE 1.98.0
984
+ * @since 1.98.0
985
985
  *
986
986
  * Gets current value of property {@link #getResultViewType resultViewType}.
987
987
  *
@@ -1000,7 +1000,7 @@ declare namespace sap {
1000
1000
  */
1001
1001
  getResultViewType(): string;
1002
1002
  /**
1003
- * @SINCE 1.98.0
1003
+ * @since 1.98.0
1004
1004
  *
1005
1005
  * Gets current value of property {@link #getResultViewTypes resultViewTypes}.
1006
1006
  *
@@ -1018,7 +1018,7 @@ declare namespace sap {
1018
1018
  */
1019
1019
  getResultViewTypes(): string[];
1020
1020
  /**
1021
- * @SINCE 1.93.0
1021
+ * @since 1.93.0
1022
1022
  *
1023
1023
  * Gets current value of property {@link #getSearchOnStart searchOnStart}.
1024
1024
  *
@@ -1031,7 +1031,7 @@ declare namespace sap {
1031
1031
  */
1032
1032
  getSearchOnStart(): boolean;
1033
1033
  /**
1034
- * @SINCE 1.93.0
1034
+ * @since 1.93.0
1035
1035
  *
1036
1036
  * Gets current value of property {@link #getSearchTerm searchTerm}.
1037
1037
  *
@@ -1043,7 +1043,7 @@ declare namespace sap {
1043
1043
  */
1044
1044
  getSearchTerm(): string;
1045
1045
  /**
1046
- * @SINCE 1.113.0
1046
+ * @since 1.113.0
1047
1047
  *
1048
1048
  * Gets current value of property {@link #getSelectionChange selectionChange}.
1049
1049
  *
@@ -1053,7 +1053,7 @@ declare namespace sap {
1053
1053
  */
1054
1054
  getSelectionChange(): Function;
1055
1055
  /**
1056
- * @SINCE 1.93.0
1056
+ * @since 1.93.0
1057
1057
  *
1058
1058
  * Gets current value of property {@link #getSinaConfiguration sinaConfiguration}.
1059
1059
  *
@@ -1063,7 +1063,7 @@ declare namespace sap {
1063
1063
  */
1064
1064
  getSinaConfiguration(): object;
1065
1065
  /**
1066
- * @SINCE 1.103.0
1066
+ * @since 1.103.0
1067
1067
  *
1068
1068
  * Gets current value of property {@link #getTabStripsFormatter tabStripsFormatter}.
1069
1069
  *
@@ -1075,7 +1075,7 @@ declare namespace sap {
1075
1075
  */
1076
1076
  getTabStripsFormatter(): Function;
1077
1077
  /**
1078
- * @SINCE 1.113.0
1078
+ * @since 1.113.0
1079
1079
  *
1080
1080
  * Gets current value of property {@link #getUpdateUrl updateUrl}.
1081
1081
  *
@@ -1135,7 +1135,7 @@ declare namespace sap {
1135
1135
  vContent: int | string | sap.ui.core.Control
1136
1136
  ): sap.ui.core.Control | null;
1137
1137
  /**
1138
- * @SINCE 1.108.0
1138
+ * @since 1.108.0
1139
1139
  *
1140
1140
  * Sets a new value for property {@link #getApplicationComponent applicationComponent}.
1141
1141
  *
@@ -1154,7 +1154,7 @@ declare namespace sap {
1154
1154
  sApplicationComponent?: string
1155
1155
  ): this;
1156
1156
  /**
1157
- * @SINCE 1.106.0
1157
+ * @since 1.106.0
1158
1158
  *
1159
1159
  * Sets a new value for property {@link #getAutoAdjustResultViewTypeInFolderMode autoAdjustResultViewTypeInFolderMode}.
1160
1160
  *
@@ -1174,7 +1174,7 @@ declare namespace sap {
1174
1174
  bAutoAdjustResultViewTypeInFolderMode?: boolean
1175
1175
  ): this;
1176
1176
  /**
1177
- * @SINCE 1.113.0
1177
+ * @since 1.113.0
1178
1178
  *
1179
1179
  * Sets a new value for property {@link #getBoSuggestions boSuggestions}.
1180
1180
  *
@@ -1193,7 +1193,7 @@ declare namespace sap {
1193
1193
  bBoSuggestions?: boolean
1194
1194
  ): this;
1195
1195
  /**
1196
- * @SINCE 1.93.0
1196
+ * @since 1.93.0
1197
1197
  *
1198
1198
  * Sets a new value for property {@link #getCssClass cssClass}.
1199
1199
  *
@@ -1210,7 +1210,7 @@ declare namespace sap {
1210
1210
  sCssClass: string
1211
1211
  ): this;
1212
1212
  /**
1213
- * @SINCE 1.98.0
1213
+ * @since 1.98.0
1214
1214
  *
1215
1215
  * Sets a new value for property {@link #getDataSource dataSource}.
1216
1216
  *
@@ -1227,7 +1227,7 @@ declare namespace sap {
1227
1227
  sDataSource: string
1228
1228
  ): this;
1229
1229
  /**
1230
- * @SINCE 1.93.0
1230
+ * @since 1.93.0
1231
1231
  *
1232
1232
  * Sets a new value for property {@link #getDefaultDataSource defaultDataSource}.
1233
1233
  *
@@ -1245,7 +1245,7 @@ declare namespace sap {
1245
1245
  sDefaultDataSource: string
1246
1246
  ): this;
1247
1247
  /**
1248
- * @SINCE 1.113.0
1248
+ * @since 1.113.0
1249
1249
  *
1250
1250
  * Sets a new value for property {@link #getDisplayFacetPanelInCaseOfNoResults displayFacetPanelInCaseOfNoResults}.
1251
1251
  *
@@ -1264,7 +1264,7 @@ declare namespace sap {
1264
1264
  bDisplayFacetPanelInCaseOfNoResults?: boolean
1265
1265
  ): this;
1266
1266
  /**
1267
- * @SINCE 1.96.0
1267
+ * @since 1.96.0
1268
1268
  *
1269
1269
  * Sets a new value for property {@link #getEnableMultiSelectionResultItems enableMultiSelectionResultItems}.
1270
1270
  *
@@ -1284,7 +1284,7 @@ declare namespace sap {
1284
1284
  bEnableMultiSelectionResultItems?: boolean
1285
1285
  ): this;
1286
1286
  /**
1287
- * @SINCE 1.107.0
1287
+ * @since 1.107.0
1288
1288
  *
1289
1289
  * Sets a new value for property {@link #getEnableQueryLanguage enableQueryLanguage}.
1290
1290
  *
@@ -1304,7 +1304,7 @@ declare namespace sap {
1304
1304
  bEnableQueryLanguage?: boolean
1305
1305
  ): this;
1306
1306
  /**
1307
- * @SINCE 1.108.0
1307
+ * @since 1.108.0
1308
1308
  *
1309
1309
  * Sets a new value for property {@link #getFacetPanelResizable facetPanelResizable}.
1310
1310
  *
@@ -1323,7 +1323,7 @@ declare namespace sap {
1323
1323
  bFacetPanelResizable?: boolean
1324
1324
  ): this;
1325
1325
  /**
1326
- * @SINCE 1.108.0
1326
+ * @since 1.108.0
1327
1327
  *
1328
1328
  * Sets a new value for property {@link #getFacetPanelWidthInPercent facetPanelWidthInPercent}.
1329
1329
  *
@@ -1343,7 +1343,7 @@ declare namespace sap {
1343
1343
  fFacetPanelWidthInPercent?: float
1344
1344
  ): this;
1345
1345
  /**
1346
- * @SINCE 1.113.0
1346
+ * @since 1.113.0
1347
1347
  *
1348
1348
  * Sets a new value for property {@link #getFacetVisibility facetVisibility}.
1349
1349
  *
@@ -1362,7 +1362,7 @@ declare namespace sap {
1362
1362
  bFacetVisibility: boolean
1363
1363
  ): this;
1364
1364
  /**
1365
- * @SINCE 1.112.0
1365
+ * @since 1.112.0
1366
1366
  *
1367
1367
  * Sets a new value for property {@link #getFilterDataSources filterDataSources}.
1368
1368
  *
@@ -1380,7 +1380,7 @@ declare namespace sap {
1380
1380
  fnFilterDataSources: Function
1381
1381
  ): this;
1382
1382
  /**
1383
- * @SINCE 1.98.0
1383
+ * @since 1.98.0
1384
1384
  *
1385
1385
  * Sets a new value for property {@link #getFilterRootCondition filterRootCondition}.
1386
1386
  *
@@ -1401,7 +1401,7 @@ declare namespace sap {
1401
1401
  oFilterRootCondition: object
1402
1402
  ): this;
1403
1403
  /**
1404
- * @SINCE 1.106.0
1404
+ * @since 1.106.0
1405
1405
  *
1406
1406
  * Sets a new value for property {@link #getFolderMode folderMode}.
1407
1407
  *
@@ -1427,7 +1427,7 @@ declare namespace sap {
1427
1427
  bFolderMode?: boolean
1428
1428
  ): this;
1429
1429
  /**
1430
- * @SINCE 1.114.0
1430
+ * @since 1.114.0
1431
1431
  *
1432
1432
  * Sets a new value for property {@link #getFolderModeForInitialSearch folderModeForInitialSearch}.
1433
1433
  *
@@ -1447,7 +1447,7 @@ declare namespace sap {
1447
1447
  bFolderModeForInitialSearch?: boolean
1448
1448
  ): this;
1449
1449
  /**
1450
- * @SINCE 1.94.0
1450
+ * @since 1.94.0
1451
1451
  *
1452
1452
  * Sets a new value for property {@link #getGetCustomNoResultScreen getCustomNoResultScreen}.
1453
1453
  *
@@ -1465,7 +1465,7 @@ declare namespace sap {
1465
1465
  fnGetCustomNoResultScreen: Function
1466
1466
  ): this;
1467
1467
  /**
1468
- * @SINCE 1.113.0
1468
+ * @since 1.113.0
1469
1469
  *
1470
1470
  * Sets a new value for property {@link #getInitAsync initAsync}.
1471
1471
  *
@@ -1482,7 +1482,7 @@ declare namespace sap {
1482
1482
  fnInitAsync: Function
1483
1483
  ): this;
1484
1484
  /**
1485
- * @SINCE 1.113.0
1485
+ * @since 1.113.0
1486
1486
  *
1487
1487
  * Sets a new value for property {@link #getIsSearchUrl isSearchUrl}.
1488
1488
  *
@@ -1500,7 +1500,7 @@ declare namespace sap {
1500
1500
  fnIsSearchUrl: Function
1501
1501
  ): this;
1502
1502
  /**
1503
- * @SINCE 1.111.0
1503
+ * @since 1.111.0
1504
1504
  *
1505
1505
  * Sets a new value for property {@link #getOptimizeForValueHelp optimizeForValueHelp}.
1506
1506
  *
@@ -1517,7 +1517,7 @@ declare namespace sap {
1517
1517
  bOptimizeForValueHelp: boolean
1518
1518
  ): this;
1519
1519
  /**
1520
- * @SINCE 1.93.0
1520
+ * @since 1.93.0
1521
1521
  *
1522
1522
  * Sets a new value for property {@link #getOverwriteBrowserTitle overwriteBrowserTitle}.
1523
1523
  *
@@ -1535,7 +1535,7 @@ declare namespace sap {
1535
1535
  bOverwriteBrowserTitle: boolean
1536
1536
  ): this;
1537
1537
  /**
1538
- * @SINCE 1.96.0
1538
+ * @since 1.96.0
1539
1539
  *
1540
1540
  * Sets a new value for property {@link #getPageSize pageSize}.
1541
1541
  *
@@ -1555,7 +1555,7 @@ declare namespace sap {
1555
1555
  iPageSize?: int
1556
1556
  ): this;
1557
1557
  /**
1558
- * @SINCE 1.113.0
1558
+ * @since 1.113.0
1559
1559
  *
1560
1560
  * Sets a new value for property {@link #getParseSearchUrlParameters parseSearchUrlParameters}.
1561
1561
  *
@@ -1574,7 +1574,7 @@ declare namespace sap {
1574
1574
  fnParseSearchUrlParameters: Function
1575
1575
  ): this;
1576
1576
  /**
1577
- * @SINCE 1.113.0
1577
+ * @since 1.113.0
1578
1578
  *
1579
1579
  * Sets a new value for property {@link #getQuickSelectDataSources quickSelectDataSources}.
1580
1580
  *
@@ -1591,7 +1591,7 @@ declare namespace sap {
1591
1591
  oQuickSelectDataSources: object
1592
1592
  ): this;
1593
1593
  /**
1594
- * @SINCE 1.113.0
1594
+ * @since 1.113.0
1595
1595
  *
1596
1596
  * Sets a new value for property {@link #getRenderSearchUrl renderSearchUrl}.
1597
1597
  *
@@ -1609,7 +1609,7 @@ declare namespace sap {
1609
1609
  fnRenderSearchUrl: Function
1610
1610
  ): this;
1611
1611
  /**
1612
- * @SINCE 1.100.0
1612
+ * @since 1.100.0
1613
1613
  *
1614
1614
  * Sets a new value for property {@link #getResultViewSettings resultViewSettings}.
1615
1615
  *
@@ -1633,7 +1633,7 @@ declare namespace sap {
1633
1633
  sResultViewSettings?: string
1634
1634
  ): this;
1635
1635
  /**
1636
- * @SINCE 1.98.0
1636
+ * @since 1.98.0
1637
1637
  *
1638
1638
  * Sets a new value for property {@link #getResultViewType resultViewType}.
1639
1639
  *
@@ -1659,7 +1659,7 @@ declare namespace sap {
1659
1659
  sResultViewType?: string
1660
1660
  ): this;
1661
1661
  /**
1662
- * @SINCE 1.98.0
1662
+ * @since 1.98.0
1663
1663
  *
1664
1664
  * Sets a new value for property {@link #getResultViewTypes resultViewTypes}.
1665
1665
  *
@@ -1684,7 +1684,7 @@ declare namespace sap {
1684
1684
  sResultViewTypes?: string[]
1685
1685
  ): this;
1686
1686
  /**
1687
- * @SINCE 1.93.0
1687
+ * @since 1.93.0
1688
1688
  *
1689
1689
  * Sets a new value for property {@link #getSearchOnStart searchOnStart}.
1690
1690
  *
@@ -1704,7 +1704,7 @@ declare namespace sap {
1704
1704
  bSearchOnStart?: boolean
1705
1705
  ): this;
1706
1706
  /**
1707
- * @SINCE 1.93.0
1707
+ * @since 1.93.0
1708
1708
  *
1709
1709
  * Sets a new value for property {@link #getSearchTerm searchTerm}.
1710
1710
  *
@@ -1723,7 +1723,7 @@ declare namespace sap {
1723
1723
  sSearchTerm?: string
1724
1724
  ): this;
1725
1725
  /**
1726
- * @SINCE 1.113.0
1726
+ * @since 1.113.0
1727
1727
  *
1728
1728
  * Sets a new value for property {@link #getSelectionChange selectionChange}.
1729
1729
  *
@@ -1740,7 +1740,7 @@ declare namespace sap {
1740
1740
  fnSelectionChange: Function
1741
1741
  ): this;
1742
1742
  /**
1743
- * @SINCE 1.93.0
1743
+ * @since 1.93.0
1744
1744
  *
1745
1745
  * Sets a new value for property {@link #getSinaConfiguration sinaConfiguration}.
1746
1746
  *
@@ -1757,7 +1757,7 @@ declare namespace sap {
1757
1757
  oSinaConfiguration: object
1758
1758
  ): this;
1759
1759
  /**
1760
- * @SINCE 1.103.0
1760
+ * @since 1.103.0
1761
1761
  *
1762
1762
  * Sets a new value for property {@link #getTabStripsFormatter tabStripsFormatter}.
1763
1763
  *
@@ -1776,7 +1776,7 @@ declare namespace sap {
1776
1776
  fnTabStripsFormatter: Function
1777
1777
  ): this;
1778
1778
  /**
1779
- * @SINCE 1.113.0
1779
+ * @since 1.113.0
1780
1780
  *
1781
1781
  * Sets a new value for property {@link #getUpdateUrl updateUrl}.
1782
1782
  *
@@ -1795,6 +1795,10 @@ declare namespace sap {
1795
1795
  bUpdateUrl?: boolean
1796
1796
  ): this;
1797
1797
  }
1798
+
1799
+ type SearchCompositeControl$SearchFinishedEvent = sap.ui.base.Event<SearchCompositeControl$SearchFinishedEventParameters>;
1800
+
1801
+ type SearchCompositeControl$SearchStartedEvent = sap.ui.base.Event<SearchCompositeControl$SearchStartedEventParameters>;
1798
1802
  }
1799
1803
  }
1800
1804
  }