@sapui5/types 1.120.8 → 1.120.10

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 (49) hide show
  1. package/package.json +1 -1
  2. package/types/sap.chart.d.ts +1 -1
  3. package/types/sap.esh.search.ui.d.ts +243 -227
  4. package/types/sap.f.d.ts +1 -1
  5. package/types/sap.fe.core.d.ts +149 -115
  6. package/types/sap.fe.macros.d.ts +38 -18
  7. package/types/sap.fe.navigation.d.ts +56 -21
  8. package/types/sap.fe.placeholder.d.ts +1 -1
  9. package/types/sap.fe.templates.d.ts +16 -5
  10. package/types/sap.fe.test.d.ts +229 -7
  11. package/types/sap.fe.tools.d.ts +1 -1
  12. package/types/sap.gantt.d.ts +3731 -1701
  13. package/types/sap.insights.d.ts +51 -43
  14. package/types/sap.m.d.ts +14 -3
  15. package/types/sap.makit.d.ts +1 -1
  16. package/types/sap.me.d.ts +1 -1
  17. package/types/sap.ndc.d.ts +1 -1
  18. package/types/sap.ovp.d.ts +9 -7
  19. package/types/sap.suite.ui.commons.d.ts +3007 -999
  20. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  21. package/types/sap.suite.ui.microchart.d.ts +1 -1
  22. package/types/sap.tnt.d.ts +1 -1
  23. package/types/sap.ui.codeeditor.d.ts +1 -1
  24. package/types/sap.ui.commons.d.ts +1 -1
  25. package/types/sap.ui.comp.d.ts +1 -1
  26. package/types/sap.ui.core.d.ts +1 -1
  27. package/types/sap.ui.dt.d.ts +1 -1
  28. package/types/sap.ui.export.d.ts +1 -1
  29. package/types/sap.ui.fl.d.ts +1 -1
  30. package/types/sap.ui.integration.d.ts +1 -1
  31. package/types/sap.ui.layout.d.ts +1 -1
  32. package/types/sap.ui.mdc.d.ts +2 -2
  33. package/types/sap.ui.richtexteditor.d.ts +1 -1
  34. package/types/sap.ui.rta.d.ts +1 -1
  35. package/types/sap.ui.suite.d.ts +1 -1
  36. package/types/sap.ui.support.d.ts +1 -1
  37. package/types/sap.ui.table.d.ts +9 -5
  38. package/types/sap.ui.testrecorder.d.ts +1 -1
  39. package/types/sap.ui.unified.d.ts +1 -1
  40. package/types/sap.ui.ux3.d.ts +1 -1
  41. package/types/sap.ui.vk.d.ts +2655 -738
  42. package/types/sap.ui.webc.common.d.ts +1 -1
  43. package/types/sap.ui.webc.fiori.d.ts +1 -1
  44. package/types/sap.ui.webc.main.d.ts +1 -1
  45. package/types/sap.uiext.inbox.d.ts +1 -1
  46. package/types/sap.ushell.d.ts +1 -1
  47. package/types/sap.ushell_abap.d.ts +1 -1
  48. package/types/sap.uxap.d.ts +1 -1
  49. package/types/sap.viz.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.0
1
+ // For Library Version: 1.120.1
2
2
 
3
3
  declare module "sap/esh/search/ui/library" {}
4
4
 
@@ -15,13 +15,13 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
15
15
  } from "sap/ui/base/ManagedObject";
16
16
 
17
17
  /**
18
- * @since 1.93.0
19
- *
20
18
  * This is the SAPUI5 composite control by the Enterprise Search Team which helps to make full use of the
21
19
  * Enterprise Search Engine features built into ABAP and HANA. It includes a search input box including
22
20
  * a suggestion dropdown, a result list which can have different styles including tiles and table, result
23
21
  * facets and more. This control is ready to use with an enterprise search backend service but also allows
24
22
  * deep modifications to match requirements of adopting applications.
23
+ *
24
+ * @since 1.93.0
25
25
  */
26
26
  export default class SearchCompositeControl extends Control {
27
27
  /**
@@ -59,6 +59,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
59
59
  *
60
60
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
61
61
  *
62
+ *
62
63
  * @returns Created class / constructor function
63
64
  */
64
65
  static extend<T extends Record<string, unknown>>(
@@ -79,12 +80,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
79
80
  /**
80
81
  * Returns a metadata object for class sap.esh.search.ui.SearchCompositeControl.
81
82
  *
83
+ *
82
84
  * @returns Metadata object describing this class
83
85
  */
84
86
  static getMetadata(): ElementMetadata;
85
87
  /**
86
88
  * Adds some content to the aggregation {@link #getContent content}.
87
89
  *
90
+ *
88
91
  * @returns Reference to `this` in order to allow method chaining
89
92
  */
90
93
  addContent(
@@ -102,6 +105,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
102
105
  *
103
106
  * Event is fired when search is finished.
104
107
  *
108
+ *
105
109
  * @returns Reference to `this` in order to allow method chaining
106
110
  */
107
111
  attachSearchFinished(
@@ -129,6 +133,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
129
133
  *
130
134
  * Event is fired when search is finished.
131
135
  *
136
+ *
132
137
  * @returns Reference to `this` in order to allow method chaining
133
138
  */
134
139
  attachSearchFinished(
@@ -150,6 +155,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
150
155
  *
151
156
  * Event is fired when search is started.
152
157
  *
158
+ *
153
159
  * @returns Reference to `this` in order to allow method chaining
154
160
  */
155
161
  attachSearchStarted(
@@ -176,6 +182,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
176
182
  *
177
183
  * Event is fired when search is started.
178
184
  *
185
+ *
179
186
  * @returns Reference to `this` in order to allow method chaining
180
187
  */
181
188
  attachSearchStarted(
@@ -192,6 +199,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
192
199
  /**
193
200
  * Destroys all the content in the aggregation {@link #getContent content}.
194
201
  *
202
+ *
195
203
  * @returns Reference to `this` in order to allow method chaining
196
204
  */
197
205
  destroyContent(): this;
@@ -201,6 +209,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
201
209
  *
202
210
  * The passed function and listener object must match the ones used for event registration.
203
211
  *
212
+ *
204
213
  * @returns Reference to `this` in order to allow method chaining
205
214
  */
206
215
  detachSearchFinished(
@@ -219,6 +228,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
219
228
  *
220
229
  * The passed function and listener object must match the ones used for event registration.
221
230
  *
231
+ *
222
232
  * @returns Reference to `this` in order to allow method chaining
223
233
  */
224
234
  detachSearchStarted(
@@ -232,10 +242,10 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
232
242
  oListener?: object
233
243
  ): this;
234
244
  /**
235
- * @ui5-protected Do not call from applications (only from related classes in the framework)
236
- *
237
245
  * Fires event {@link #event:searchFinished searchFinished} to attached listeners.
238
246
  *
247
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
248
+ *
239
249
  * @returns Reference to `this` in order to allow method chaining
240
250
  */
241
251
  fireSearchFinished(
@@ -245,10 +255,10 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
245
255
  mParameters?: object
246
256
  ): this;
247
257
  /**
248
- * @ui5-protected Do not call from applications (only from related classes in the framework)
249
- *
250
258
  * Fires event {@link #event:searchStarted searchStarted} to attached listeners.
251
259
  *
260
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
261
+ *
252
262
  * @returns Reference to `this` in order to allow method chaining
253
263
  */
254
264
  fireSearchStarted(
@@ -258,20 +268,18 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
258
268
  mParameters?: object
259
269
  ): this;
260
270
  /**
261
- * @since 1.108.0
262
- *
263
271
  * Gets current value of property {@link #getApplicationComponent applicationComponent}.
264
272
  *
265
273
  * Relevant for SAP partners and SAP, the "Application Component" you expect customers to create incidents.
266
274
  *
267
275
  * Default value is `"HAN-AS-INA-UI"`.
268
276
  *
277
+ * @since 1.108.0
278
+ *
269
279
  * @returns Value of property `applicationComponent`
270
280
  */
271
281
  getApplicationComponent(): string;
272
282
  /**
273
- * @since 1.106.0
274
- *
275
283
  * Gets current value of property {@link #getAutoAdjustResultViewTypeInFolderMode autoAdjustResultViewTypeInFolderMode}.
276
284
  *
277
285
  * In case folder mode is active: Automatically switch result view type to list in search mode and to table
@@ -279,18 +287,20 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
279
287
  *
280
288
  * Default value is `false`.
281
289
  *
290
+ * @since 1.106.0
291
+ *
282
292
  * @returns Value of property `autoAdjustResultViewTypeInFolderMode`
283
293
  */
284
294
  getAutoAdjustResultViewTypeInFolderMode(): boolean;
285
295
  /**
286
- * @since 1.113.0
287
- *
288
296
  * Gets current value of property {@link #getBoSuggestions boSuggestions}.
289
297
  *
290
298
  * A boolean for enabling (business) object suggestions.
291
299
  *
292
300
  * Default value is `false`.
293
301
  *
302
+ * @since 1.113.0
303
+ *
294
304
  * @returns Value of property `boSuggestions`
295
305
  */
296
306
  getBoSuggestions(): boolean;
@@ -301,51 +311,49 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
301
311
  */
302
312
  getContent(): Control[];
303
313
  /**
304
- * @since 1.93.0
305
- *
306
314
  * Gets current value of property {@link #getCssClass cssClass}.
307
315
  *
308
316
  * An additional CSS class to add to this control
309
317
  *
318
+ * @since 1.93.0
319
+ *
310
320
  * @returns Value of property `cssClass`
311
321
  */
312
322
  getCssClass(): string;
313
323
  /**
314
- * @since 1.98.0
315
- *
316
324
  * Gets current value of property {@link #getDataSource dataSource}.
317
325
  *
318
326
  * The id of the data source in which it will search right after initialization.
319
327
  *
328
+ * @since 1.98.0
329
+ *
320
330
  * @returns Value of property `dataSource`
321
331
  */
322
332
  getDataSource(): string;
323
333
  /**
324
- * @since 1.93.0
325
- *
326
334
  * Gets current value of property {@link #getDefaultDataSource defaultDataSource}.
327
335
  *
328
336
  * Data source id which is set when the UI is loaded or filter is reset. If dataSource is also set, dataSource
329
337
  * will be used during UI load and this parameter will used only after filter is reset.
330
338
  *
339
+ * @since 1.93.0
340
+ *
331
341
  * @returns Value of property `defaultDataSource`
332
342
  */
333
343
  getDefaultDataSource(): string;
334
344
  /**
335
- * @since 1.113.0
336
- *
337
345
  * Gets current value of property {@link #getDisplayFacetPanelInCaseOfNoResults displayFacetPanelInCaseOfNoResults}.
338
346
  *
339
347
  * When set to true the facet panel is displayed also in case there are no search results.
340
348
  *
341
349
  * Default value is `false`.
342
350
  *
351
+ * @since 1.113.0
352
+ *
343
353
  * @returns Value of property `displayFacetPanelInCaseOfNoResults`
344
354
  */
345
355
  getDisplayFacetPanelInCaseOfNoResults(): boolean;
346
356
  /**
347
- * @since 1.96.0
348
- *
349
357
  * Gets current value of property {@link #getEnableMultiSelectionResultItems enableMultiSelectionResultItems}.
350
358
  *
351
359
  * Enables the multiselection mode of search result items. A checkbox is provided for each result item if
@@ -353,12 +361,12 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
353
361
  *
354
362
  * Default value is `false`.
355
363
  *
364
+ * @since 1.96.0
365
+ *
356
366
  * @returns Value of property `enableMultiSelectionResultItems`
357
367
  */
358
368
  getEnableMultiSelectionResultItems(): boolean;
359
369
  /**
360
- * @since 1.107.0
361
- *
362
370
  * Gets current value of property {@link #getEnableQueryLanguage enableQueryLanguage}.
363
371
  *
364
372
  * Enables the query language for the hana_odata provider. With query language it is possible for the end
@@ -366,34 +374,34 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
366
374
  *
367
375
  * Default value is `false`.
368
376
  *
377
+ * @since 1.107.0
378
+ *
369
379
  * @returns Value of property `enableQueryLanguage`
370
380
  */
371
381
  getEnableQueryLanguage(): boolean;
372
382
  /**
373
- * @since 1.120
374
- *
375
383
  * Gets current value of property {@link #getEventConsumers eventConsumers}.
376
384
  *
377
385
  * Adds a callback function which is called whenever there is a user triggered event.
378
386
  *
387
+ * @since 1.120
388
+ *
379
389
  * @returns Value of property `eventConsumers`
380
390
  */
381
391
  getEventConsumers(): string;
382
392
  /**
383
- * @since 1.108.0
384
- *
385
393
  * Gets current value of property {@link #getFacetPanelResizable facetPanelResizable}.
386
394
  *
387
395
  * Display a splitter bar to resize the left hand panel, containing all facets and filter criteria.
388
396
  *
389
397
  * Default value is `false`.
390
398
  *
399
+ * @since 1.108.0
400
+ *
391
401
  * @returns Value of property `facetPanelResizable`
392
402
  */
393
403
  getFacetPanelResizable(): boolean;
394
404
  /**
395
- * @since 1.108.0
396
- *
397
405
  * Gets current value of property {@link #getFacetPanelWidthInPercent facetPanelWidthInPercent}.
398
406
  *
399
407
  * Default size (percent) of the left hand panel, containing all facets and filter criteria. If "facetPanelResizable"
@@ -401,35 +409,35 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
401
409
  *
402
410
  * Default value is `25`.
403
411
  *
412
+ * @since 1.108.0
413
+ *
404
414
  * @returns Value of property `facetPanelWidthInPercent`
405
415
  */
406
416
  getFacetPanelWidthInPercent(): float;
407
417
  /**
408
- * @since 1.113.0
409
- *
410
418
  * Gets current value of property {@link #getFacetVisibility facetVisibility}.
411
419
  *
412
420
  * A boolean which indicates whether the facet panel is initially openend or closed. This affects only the
413
421
  * initial state of the facet panel. When not setting facetVisibility the initial state of the facet panel
414
422
  * typically is taken from the user personalization storage.
415
423
  *
424
+ * @since 1.113.0
425
+ *
416
426
  * @returns Value of property `facetVisibility`
417
427
  */
418
428
  getFacetVisibility(): boolean;
419
429
  /**
420
- * @since 1.112.0
421
- *
422
430
  * Gets current value of property {@link #getFilterDataSources filterDataSources}.
423
431
  *
424
432
  * Callback for filtering the datasources displayed in the datasource dropdown listbox. The callback gets
425
433
  * a list of datsources and returns the filtered list of datasources.
426
434
  *
435
+ * @since 1.112.0
436
+ *
427
437
  * @returns Value of property `filterDataSources`
428
438
  */
429
439
  getFilterDataSources(): Function;
430
440
  /**
431
- * @since 1.98.0
432
- *
433
441
  * Gets current value of property {@link #getFilterRootCondition filterRootCondition}.
434
442
  *
435
443
  * Defines the filter root condition of a filter tree which shall be applied to the search request. This
@@ -438,12 +446,12 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
438
446
  * which do not follow this structure won't be accepted and an error will be thrown. Please see the below
439
447
  * for a more in-depth example.
440
448
  *
449
+ * @since 1.98.0
450
+ *
441
451
  * @returns Value of property `filterRootCondition`
442
452
  */
443
453
  getFilterRootCondition(): object;
444
454
  /**
445
- * @since 1.106.0
446
- *
447
455
  * Gets current value of property {@link #getFolderMode folderMode}.
448
456
  *
449
457
  * Activates the folder mode. Precondition for folder mode is 1) Search model: In the search model for the
@@ -459,12 +467,12 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
459
467
  * the folder mode is not active the UI uses the search mode: The result list shows direct and not direct
460
468
  * children of a folder.
461
469
  *
470
+ * @since 1.106.0
471
+ *
462
472
  * @returns Value of property `folderMode`
463
473
  */
464
474
  getFolderMode(): boolean;
465
475
  /**
466
- * @since 1.114.0
467
- *
468
476
  * Gets current value of property {@link #getFolderModeForInitialSearch folderModeForInitialSearch}.
469
477
  *
470
478
  * In case folderMode is set to true this boolean indicates whether for the initial search the folder mode
@@ -472,27 +480,29 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
472
480
  *
473
481
  * Default value is `false`.
474
482
  *
483
+ * @since 1.114.0
484
+ *
475
485
  * @returns Value of property `folderModeForInitialSearch`
476
486
  */
477
487
  getFolderModeForInitialSearch(): boolean;
478
488
  /**
479
- * @since 1.120
480
- *
481
489
  * Gets current value of property {@link #getFormatFilterBarText formatFilterBarText}.
482
490
  *
483
491
  * Callback for formatting the filter string to be displayed in the filter bar (for closed facet panel).
484
492
  *
493
+ * @since 1.120
494
+ *
485
495
  * @returns Value of property `formatFilterBarText`
486
496
  */
487
497
  getFormatFilterBarText(): Function;
488
498
  /**
489
- * @since 1.94.0
490
- *
491
499
  * Gets current value of property {@link #getGetCustomNoResultScreen getCustomNoResultScreen}.
492
500
  *
493
501
  * Whenever a search has no results, a 'No Results Page' is displayed. You can provide a custom page to
494
502
  * be more specific and add some hints, links, buttons or other content.
495
503
  *
504
+ * @since 1.94.0
505
+ *
496
506
  * @returns Value of property `getCustomNoResultScreen`
497
507
  */
498
508
  getGetCustomNoResultScreen(): Function;
@@ -502,64 +512,63 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
502
512
  * A callback which returns customized "label" for placeholder text of search box, in case there is no search
503
513
  * term. The placeholder text (en) will be "Search In: ".
504
514
  *
515
+ *
505
516
  * @returns Value of property `getSearchInputPlaceholderLabel`
506
517
  */
507
518
  getGetSearchInputPlaceholderLabel(): Function;
508
519
  /**
509
- * @since 1.113.0
510
- *
511
520
  * Gets current value of property {@link #getInitAsync initAsync}.
512
521
  *
513
522
  * A callback which is called after the initialization of the search composite control.
514
523
  *
524
+ * @since 1.113.0
525
+ *
515
526
  * @returns Value of property `initAsync`
516
527
  */
517
528
  getInitAsync(): Function;
518
529
  /**
519
- * @since 1.120
520
- *
521
530
  * Gets current value of property {@link #getIsFilterBarVisible isFilterBarVisible}.
522
531
  *
523
532
  * Callback for checking whether the filter bar is visible.
524
533
  *
534
+ * @since 1.120
535
+ *
525
536
  * @returns Value of property `isFilterBarVisible`
526
537
  */
527
538
  getIsFilterBarVisible(): Function;
528
539
  /**
529
- * @since 1.113.0
530
- *
531
540
  * Gets current value of property {@link #getIsSearchUrl isSearchUrl}.
532
541
  *
533
542
  * A callback for checking whether a URL is a search URL. The callback receives a URL and returns true in
534
543
  * case the URL is a search URL. Typically you need to register this callback in case updateUrl=true.
535
544
  *
545
+ * @since 1.113.0
546
+ *
536
547
  * @returns Value of property `isSearchUrl`
537
548
  */
538
549
  getIsSearchUrl(): Function;
539
550
  /**
540
- * @since 1.111.0
541
- *
542
551
  * Gets current value of property {@link #getOptimizeForValueHelp optimizeForValueHelp}.
543
552
  *
544
553
  * The layout is optimized for object selection / value help (narrow view w/o facet panel).
545
554
  *
555
+ * @since 1.111.0
556
+ *
546
557
  * @returns Value of property `optimizeForValueHelp`
547
558
  */
548
559
  getOptimizeForValueHelp(): boolean;
549
560
  /**
550
- * @since 1.93.0
551
- *
552
561
  * Gets current value of property {@link #getOverwriteBrowserTitle overwriteBrowserTitle}.
553
562
  *
554
563
  * Shall the window title be overwritten by this control? If true, the control will set the current search
555
564
  * condition as window title. If false, it will not set or update the window title.
556
565
  *
566
+ * @since 1.93.0
567
+ *
557
568
  * @returns Value of property `overwriteBrowserTitle`
558
569
  */
559
570
  getOverwriteBrowserTitle(): boolean;
560
571
  /**
561
- * @since 1.96.0
562
- *
563
572
  * Gets current value of property {@link #getPageSize pageSize}.
564
573
  *
565
574
  * The maximal count of search result items displayed on a page after a search. By clicking Show More button,
@@ -567,45 +576,45 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
567
576
  *
568
577
  * Default value is `10`.
569
578
  *
579
+ * @since 1.96.0
580
+ *
570
581
  * @returns Value of property `pageSize`
571
582
  */
572
583
  getPageSize(): int;
573
584
  /**
574
- * @since 1.113.0
575
- *
576
585
  * Gets current value of property {@link #getParseSearchUrlParameters parseSearchUrlParameters}.
577
586
  *
578
587
  * A callback for parsing URL parameters. The callback receices URL parameters and returns modified URL
579
588
  * parameters. This is an optional callback. Also in case you set updateUrl=true typcically this callback
580
589
  * is not needed.
581
590
  *
591
+ * @since 1.113.0
592
+ *
582
593
  * @returns Value of property `parseSearchUrlParameters`
583
594
  */
584
595
  getParseSearchUrlParameters(): Function;
585
596
  /**
586
- * @since 1.113.0
587
- *
588
597
  * Gets current value of property {@link #getQuickSelectDataSources quickSelectDataSources}.
589
598
  *
590
599
  * A list of datasources to be displayed in the facet panel in the collection area.
591
600
  *
601
+ * @since 1.113.0
602
+ *
592
603
  * @returns Value of property `quickSelectDataSources`
593
604
  */
594
605
  getQuickSelectDataSources(): object;
595
606
  /**
596
- * @since 1.113.0
597
- *
598
607
  * Gets current value of property {@link #getRenderSearchUrl renderSearchUrl}.
599
608
  *
600
609
  * A callback for rendering the search URL. The callback gets a list of url encoded parameters and returns
601
610
  * the URL string. Typically you need to register this callback in case updateUrl=true.
602
611
  *
612
+ * @since 1.113.0
613
+ *
603
614
  * @returns Value of property `renderSearchUrl`
604
615
  */
605
616
  getRenderSearchUrl(): Function;
606
617
  /**
607
- * @since 1.100.0
608
- *
609
618
  * Gets current value of property {@link #getResultViewSettings resultViewSettings}.
610
619
  *
611
620
  * Defines a pair of search result view settings. The value is an object of properties `resultViewTypes`
@@ -617,12 +626,12 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
617
626
  *
618
627
  * Default value is `...see text or source`.
619
628
  *
629
+ * @since 1.100.0
630
+ *
620
631
  * @returns Value of property `resultViewSettings`
621
632
  */
622
633
  getResultViewSettings(): string;
623
634
  /**
624
- * @since 1.98.0
625
- *
626
635
  * Gets current value of property {@link #getResultViewType resultViewType}.
627
636
  *
628
637
  * Defines active search result view type. The value can be set/get in attach event "searchFinished", and
@@ -636,12 +645,12 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
636
645
  *
637
646
  * Default value is `"searchResultList"`.
638
647
  *
648
+ * @since 1.98.0
649
+ *
639
650
  * @returns Value of property `resultViewType`
640
651
  */
641
652
  getResultViewType(): string;
642
653
  /**
643
- * @since 1.98.0
644
- *
645
654
  * Gets current value of property {@link #getResultViewTypes resultViewTypes}.
646
655
  *
647
656
  * Defines selectable search result view types. The value can be set/get in attach event "searchFinished".
@@ -654,12 +663,12 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
654
663
  *
655
664
  * Default value is `["searchResultList", "searchResultTable"]`.
656
665
  *
666
+ * @since 1.98.0
667
+ *
657
668
  * @returns Value of property `resultViewTypes`
658
669
  */
659
670
  getResultViewTypes(): string[];
660
671
  /**
661
- * @since 1.93.0
662
- *
663
672
  * Gets current value of property {@link #getSearchOnStart searchOnStart}.
664
673
  *
665
674
  * Defines if the search composite control will send a search request after loading for the given term,
@@ -667,62 +676,64 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
667
676
  *
668
677
  * Default value is `true`.
669
678
  *
679
+ * @since 1.93.0
680
+ *
670
681
  * @returns Value of property `searchOnStart`
671
682
  */
672
683
  getSearchOnStart(): boolean;
673
684
  /**
674
- * @since 1.93.0
675
- *
676
685
  * Gets current value of property {@link #getSearchTerm searchTerm}.
677
686
  *
678
687
  * Defines the initial search term for the search input.
679
688
  *
680
689
  * Default value is `empty string`.
681
690
  *
691
+ * @since 1.93.0
692
+ *
682
693
  * @returns Value of property `searchTerm`
683
694
  */
684
695
  getSearchTerm(): string;
685
696
  /**
686
- * @since 1.113.0
687
- *
688
697
  * Gets current value of property {@link #getSelectionChange selectionChange}.
689
698
  *
690
699
  * A callback which is called whenever the selection of result list items changes.
691
700
  *
701
+ * @since 1.113.0
702
+ *
692
703
  * @returns Value of property `selectionChange`
693
704
  */
694
705
  getSelectionChange(): Function;
695
706
  /**
696
- * @since 1.93.0
697
- *
698
707
  * Gets current value of property {@link #getSinaConfiguration sinaConfiguration}.
699
708
  *
700
709
  * Configuration for the Enterprise Search Client API.
701
710
  *
711
+ * @since 1.93.0
712
+ *
702
713
  * @returns Value of property `sinaConfiguration`
703
714
  */
704
715
  getSinaConfiguration(): object;
705
716
  /**
706
- * @since 1.103.0
707
- *
708
717
  * Gets current value of property {@link #getTabStripsFormatter tabStripsFormatter}.
709
718
  *
710
719
  * Function callback for formatting the datasource tabstrips in the top toolbar. To the callback function
711
720
  * a list of datasources is passed. The callback functions return a modified list of datasources to be displayed
712
721
  * in the tabstrips.
713
722
  *
723
+ * @since 1.103.0
724
+ *
714
725
  * @returns Value of property `tabStripsFormatter`
715
726
  */
716
727
  getTabStripsFormatter(): Function;
717
728
  /**
718
- * @since 1.113.0
719
- *
720
729
  * Gets current value of property {@link #getUpdateUrl updateUrl}.
721
730
  *
722
731
  * A boolean indicating that the search state is written to the URL.
723
732
  *
724
733
  * Default value is `true`.
725
734
  *
735
+ * @since 1.113.0
736
+ *
726
737
  * @returns Value of property `updateUrl`
727
738
  */
728
739
  getUpdateUrl(): boolean;
@@ -730,6 +741,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
730
741
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
731
742
  * its index if found or -1 otherwise.
732
743
  *
744
+ *
733
745
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
734
746
  */
735
747
  indexOfContent(
@@ -741,6 +753,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
741
753
  /**
742
754
  * Inserts a content into the aggregation {@link #getContent content}.
743
755
  *
756
+ *
744
757
  * @returns Reference to `this` in order to allow method chaining
745
758
  */
746
759
  insertContent(
@@ -760,12 +773,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
760
773
  *
761
774
  * Additionally, it unregisters them from the hosting UIArea.
762
775
  *
776
+ *
763
777
  * @returns An array of the removed elements (might be empty)
764
778
  */
765
779
  removeAllContent(): Control[];
766
780
  /**
767
781
  * Removes a content from the aggregation {@link #getContent content}.
768
782
  *
783
+ *
769
784
  * @returns The removed content or `null`
770
785
  */
771
786
  removeContent(
@@ -775,8 +790,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
775
790
  vContent: int | string | Control
776
791
  ): Control | null;
777
792
  /**
778
- * @since 1.108.0
779
- *
780
793
  * Sets a new value for property {@link #getApplicationComponent applicationComponent}.
781
794
  *
782
795
  * Relevant for SAP partners and SAP, the "Application Component" you expect customers to create incidents.
@@ -785,6 +798,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
785
798
  *
786
799
  * Default value is `"HAN-AS-INA-UI"`.
787
800
  *
801
+ * @since 1.108.0
802
+ *
788
803
  * @returns Reference to `this` in order to allow method chaining
789
804
  */
790
805
  setApplicationComponent(
@@ -794,8 +809,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
794
809
  sApplicationComponent?: string
795
810
  ): this;
796
811
  /**
797
- * @since 1.106.0
798
- *
799
812
  * Sets a new value for property {@link #getAutoAdjustResultViewTypeInFolderMode autoAdjustResultViewTypeInFolderMode}.
800
813
  *
801
814
  * In case folder mode is active: Automatically switch result view type to list in search mode and to table
@@ -805,6 +818,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
805
818
  *
806
819
  * Default value is `false`.
807
820
  *
821
+ * @since 1.106.0
822
+ *
808
823
  * @returns Reference to `this` in order to allow method chaining
809
824
  */
810
825
  setAutoAdjustResultViewTypeInFolderMode(
@@ -814,8 +829,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
814
829
  bAutoAdjustResultViewTypeInFolderMode?: boolean
815
830
  ): this;
816
831
  /**
817
- * @since 1.113.0
818
- *
819
832
  * Sets a new value for property {@link #getBoSuggestions boSuggestions}.
820
833
  *
821
834
  * A boolean for enabling (business) object suggestions.
@@ -824,6 +837,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
824
837
  *
825
838
  * Default value is `false`.
826
839
  *
840
+ * @since 1.113.0
841
+ *
827
842
  * @returns Reference to `this` in order to allow method chaining
828
843
  */
829
844
  setBoSuggestions(
@@ -833,14 +848,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
833
848
  bBoSuggestions?: boolean
834
849
  ): this;
835
850
  /**
836
- * @since 1.93.0
837
- *
838
851
  * Sets a new value for property {@link #getCssClass cssClass}.
839
852
  *
840
853
  * An additional CSS class to add to this control
841
854
  *
842
855
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
843
856
  *
857
+ * @since 1.93.0
858
+ *
844
859
  * @returns Reference to `this` in order to allow method chaining
845
860
  */
846
861
  setCssClass(
@@ -850,14 +865,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
850
865
  sCssClass: string
851
866
  ): this;
852
867
  /**
853
- * @since 1.98.0
854
- *
855
868
  * Sets a new value for property {@link #getDataSource dataSource}.
856
869
  *
857
870
  * The id of the data source in which it will search right after initialization.
858
871
  *
859
872
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
860
873
  *
874
+ * @since 1.98.0
875
+ *
861
876
  * @returns Reference to `this` in order to allow method chaining
862
877
  */
863
878
  setDataSource(
@@ -867,8 +882,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
867
882
  sDataSource: string
868
883
  ): this;
869
884
  /**
870
- * @since 1.93.0
871
- *
872
885
  * Sets a new value for property {@link #getDefaultDataSource defaultDataSource}.
873
886
  *
874
887
  * Data source id which is set when the UI is loaded or filter is reset. If dataSource is also set, dataSource
@@ -876,6 +889,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
876
889
  *
877
890
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
878
891
  *
892
+ * @since 1.93.0
893
+ *
879
894
  * @returns Reference to `this` in order to allow method chaining
880
895
  */
881
896
  setDefaultDataSource(
@@ -885,8 +900,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
885
900
  sDefaultDataSource: string
886
901
  ): this;
887
902
  /**
888
- * @since 1.113.0
889
- *
890
903
  * Sets a new value for property {@link #getDisplayFacetPanelInCaseOfNoResults displayFacetPanelInCaseOfNoResults}.
891
904
  *
892
905
  * When set to true the facet panel is displayed also in case there are no search results.
@@ -895,6 +908,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
895
908
  *
896
909
  * Default value is `false`.
897
910
  *
911
+ * @since 1.113.0
912
+ *
898
913
  * @returns Reference to `this` in order to allow method chaining
899
914
  */
900
915
  setDisplayFacetPanelInCaseOfNoResults(
@@ -904,8 +919,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
904
919
  bDisplayFacetPanelInCaseOfNoResults?: boolean
905
920
  ): this;
906
921
  /**
907
- * @since 1.96.0
908
- *
909
922
  * Sets a new value for property {@link #getEnableMultiSelectionResultItems enableMultiSelectionResultItems}.
910
923
  *
911
924
  * Enables the multiselection mode of search result items. A checkbox is provided for each result item if
@@ -915,6 +928,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
915
928
  *
916
929
  * Default value is `false`.
917
930
  *
931
+ * @since 1.96.0
932
+ *
918
933
  * @returns Reference to `this` in order to allow method chaining
919
934
  */
920
935
  setEnableMultiSelectionResultItems(
@@ -924,8 +939,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
924
939
  bEnableMultiSelectionResultItems?: boolean
925
940
  ): this;
926
941
  /**
927
- * @since 1.107.0
928
- *
929
942
  * Sets a new value for property {@link #getEnableQueryLanguage enableQueryLanguage}.
930
943
  *
931
944
  * Enables the query language for the hana_odata provider. With query language it is possible for the end
@@ -935,6 +948,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
935
948
  *
936
949
  * Default value is `false`.
937
950
  *
951
+ * @since 1.107.0
952
+ *
938
953
  * @returns Reference to `this` in order to allow method chaining
939
954
  */
940
955
  setEnableQueryLanguage(
@@ -944,14 +959,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
944
959
  bEnableQueryLanguage?: boolean
945
960
  ): this;
946
961
  /**
947
- * @since 1.120
948
- *
949
962
  * Sets a new value for property {@link #getEventConsumers eventConsumers}.
950
963
  *
951
964
  * Adds a callback function which is called whenever there is a user triggered event.
952
965
  *
953
966
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
954
967
  *
968
+ * @since 1.120
969
+ *
955
970
  * @returns Reference to `this` in order to allow method chaining
956
971
  */
957
972
  setEventConsumers(
@@ -961,8 +976,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
961
976
  sEventConsumers: string
962
977
  ): this;
963
978
  /**
964
- * @since 1.108.0
965
- *
966
979
  * Sets a new value for property {@link #getFacetPanelResizable facetPanelResizable}.
967
980
  *
968
981
  * Display a splitter bar to resize the left hand panel, containing all facets and filter criteria.
@@ -971,6 +984,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
971
984
  *
972
985
  * Default value is `false`.
973
986
  *
987
+ * @since 1.108.0
988
+ *
974
989
  * @returns Reference to `this` in order to allow method chaining
975
990
  */
976
991
  setFacetPanelResizable(
@@ -980,8 +995,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
980
995
  bFacetPanelResizable?: boolean
981
996
  ): this;
982
997
  /**
983
- * @since 1.108.0
984
- *
985
998
  * Sets a new value for property {@link #getFacetPanelWidthInPercent facetPanelWidthInPercent}.
986
999
  *
987
1000
  * Default size (percent) of the left hand panel, containing all facets and filter criteria. If "facetPanelResizable"
@@ -991,6 +1004,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
991
1004
  *
992
1005
  * Default value is `25`.
993
1006
  *
1007
+ * @since 1.108.0
1008
+ *
994
1009
  * @returns Reference to `this` in order to allow method chaining
995
1010
  */
996
1011
  setFacetPanelWidthInPercent(
@@ -1000,8 +1015,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1000
1015
  fFacetPanelWidthInPercent?: float
1001
1016
  ): this;
1002
1017
  /**
1003
- * @since 1.113.0
1004
- *
1005
1018
  * Sets a new value for property {@link #getFacetVisibility facetVisibility}.
1006
1019
  *
1007
1020
  * A boolean which indicates whether the facet panel is initially openend or closed. This affects only the
@@ -1010,6 +1023,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1010
1023
  *
1011
1024
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1012
1025
  *
1026
+ * @since 1.113.0
1027
+ *
1013
1028
  * @returns Reference to `this` in order to allow method chaining
1014
1029
  */
1015
1030
  setFacetVisibility(
@@ -1019,8 +1034,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1019
1034
  bFacetVisibility: boolean
1020
1035
  ): this;
1021
1036
  /**
1022
- * @since 1.112.0
1023
- *
1024
1037
  * Sets a new value for property {@link #getFilterDataSources filterDataSources}.
1025
1038
  *
1026
1039
  * Callback for filtering the datasources displayed in the datasource dropdown listbox. The callback gets
@@ -1028,6 +1041,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1028
1041
  *
1029
1042
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1030
1043
  *
1044
+ * @since 1.112.0
1045
+ *
1031
1046
  * @returns Reference to `this` in order to allow method chaining
1032
1047
  */
1033
1048
  setFilterDataSources(
@@ -1037,8 +1052,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1037
1052
  fnFilterDataSources: Function
1038
1053
  ): this;
1039
1054
  /**
1040
- * @since 1.98.0
1041
- *
1042
1055
  * Sets a new value for property {@link #getFilterRootCondition filterRootCondition}.
1043
1056
  *
1044
1057
  * Defines the filter root condition of a filter tree which shall be applied to the search request. This
@@ -1049,6 +1062,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1049
1062
  *
1050
1063
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1051
1064
  *
1065
+ * @since 1.98.0
1066
+ *
1052
1067
  * @returns Reference to `this` in order to allow method chaining
1053
1068
  */
1054
1069
  setFilterRootCondition(
@@ -1058,8 +1073,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1058
1073
  oFilterRootCondition: object
1059
1074
  ): this;
1060
1075
  /**
1061
- * @since 1.106.0
1062
- *
1063
1076
  * Sets a new value for property {@link #getFolderMode folderMode}.
1064
1077
  *
1065
1078
  * Activates the folder mode. Precondition for folder mode is 1) Search model: In the search model for the
@@ -1075,6 +1088,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1075
1088
  * the folder mode is not active the UI uses the search mode: The result list shows direct and not direct
1076
1089
  * children of a folder.
1077
1090
  *
1091
+ * @since 1.106.0
1092
+ *
1078
1093
  * @returns Reference to `this` in order to allow method chaining
1079
1094
  */
1080
1095
  setFolderMode(
@@ -1084,8 +1099,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1084
1099
  bFolderMode?: boolean
1085
1100
  ): this;
1086
1101
  /**
1087
- * @since 1.114.0
1088
- *
1089
1102
  * Sets a new value for property {@link #getFolderModeForInitialSearch folderModeForInitialSearch}.
1090
1103
  *
1091
1104
  * In case folderMode is set to true this boolean indicates whether for the initial search the folder mode
@@ -1095,6 +1108,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1095
1108
  *
1096
1109
  * Default value is `false`.
1097
1110
  *
1111
+ * @since 1.114.0
1112
+ *
1098
1113
  * @returns Reference to `this` in order to allow method chaining
1099
1114
  */
1100
1115
  setFolderModeForInitialSearch(
@@ -1104,14 +1119,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1104
1119
  bFolderModeForInitialSearch?: boolean
1105
1120
  ): this;
1106
1121
  /**
1107
- * @since 1.120
1108
- *
1109
1122
  * Sets a new value for property {@link #getFormatFilterBarText formatFilterBarText}.
1110
1123
  *
1111
1124
  * Callback for formatting the filter string to be displayed in the filter bar (for closed facet panel).
1112
1125
  *
1113
1126
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1114
1127
  *
1128
+ * @since 1.120
1129
+ *
1115
1130
  * @returns Reference to `this` in order to allow method chaining
1116
1131
  */
1117
1132
  setFormatFilterBarText(
@@ -1121,8 +1136,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1121
1136
  fnFormatFilterBarText: Function
1122
1137
  ): this;
1123
1138
  /**
1124
- * @since 1.94.0
1125
- *
1126
1139
  * Sets a new value for property {@link #getGetCustomNoResultScreen getCustomNoResultScreen}.
1127
1140
  *
1128
1141
  * Whenever a search has no results, a 'No Results Page' is displayed. You can provide a custom page to
@@ -1130,6 +1143,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1130
1143
  *
1131
1144
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1132
1145
  *
1146
+ * @since 1.94.0
1147
+ *
1133
1148
  * @returns Reference to `this` in order to allow method chaining
1134
1149
  */
1135
1150
  setGetCustomNoResultScreen(
@@ -1146,6 +1161,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1146
1161
  *
1147
1162
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1148
1163
  *
1164
+ *
1149
1165
  * @returns Reference to `this` in order to allow method chaining
1150
1166
  */
1151
1167
  setGetSearchInputPlaceholderLabel(
@@ -1155,14 +1171,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1155
1171
  fnGetSearchInputPlaceholderLabel: Function
1156
1172
  ): this;
1157
1173
  /**
1158
- * @since 1.113.0
1159
- *
1160
1174
  * Sets a new value for property {@link #getInitAsync initAsync}.
1161
1175
  *
1162
1176
  * A callback which is called after the initialization of the search composite control.
1163
1177
  *
1164
1178
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1165
1179
  *
1180
+ * @since 1.113.0
1181
+ *
1166
1182
  * @returns Reference to `this` in order to allow method chaining
1167
1183
  */
1168
1184
  setInitAsync(
@@ -1172,14 +1188,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1172
1188
  fnInitAsync: Function
1173
1189
  ): this;
1174
1190
  /**
1175
- * @since 1.120
1176
- *
1177
1191
  * Sets a new value for property {@link #getIsFilterBarVisible isFilterBarVisible}.
1178
1192
  *
1179
1193
  * Callback for checking whether the filter bar is visible.
1180
1194
  *
1181
1195
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1182
1196
  *
1197
+ * @since 1.120
1198
+ *
1183
1199
  * @returns Reference to `this` in order to allow method chaining
1184
1200
  */
1185
1201
  setIsFilterBarVisible(
@@ -1189,8 +1205,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1189
1205
  fnIsFilterBarVisible: Function
1190
1206
  ): this;
1191
1207
  /**
1192
- * @since 1.113.0
1193
- *
1194
1208
  * Sets a new value for property {@link #getIsSearchUrl isSearchUrl}.
1195
1209
  *
1196
1210
  * A callback for checking whether a URL is a search URL. The callback receives a URL and returns true in
@@ -1198,6 +1212,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1198
1212
  *
1199
1213
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1200
1214
  *
1215
+ * @since 1.113.0
1216
+ *
1201
1217
  * @returns Reference to `this` in order to allow method chaining
1202
1218
  */
1203
1219
  setIsSearchUrl(
@@ -1207,14 +1223,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1207
1223
  fnIsSearchUrl: Function
1208
1224
  ): this;
1209
1225
  /**
1210
- * @since 1.111.0
1211
- *
1212
1226
  * Sets a new value for property {@link #getOptimizeForValueHelp optimizeForValueHelp}.
1213
1227
  *
1214
1228
  * The layout is optimized for object selection / value help (narrow view w/o facet panel).
1215
1229
  *
1216
1230
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1217
1231
  *
1232
+ * @since 1.111.0
1233
+ *
1218
1234
  * @returns Reference to `this` in order to allow method chaining
1219
1235
  */
1220
1236
  setOptimizeForValueHelp(
@@ -1224,8 +1240,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1224
1240
  bOptimizeForValueHelp: boolean
1225
1241
  ): this;
1226
1242
  /**
1227
- * @since 1.93.0
1228
- *
1229
1243
  * Sets a new value for property {@link #getOverwriteBrowserTitle overwriteBrowserTitle}.
1230
1244
  *
1231
1245
  * Shall the window title be overwritten by this control? If true, the control will set the current search
@@ -1233,6 +1247,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1233
1247
  *
1234
1248
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1235
1249
  *
1250
+ * @since 1.93.0
1251
+ *
1236
1252
  * @returns Reference to `this` in order to allow method chaining
1237
1253
  */
1238
1254
  setOverwriteBrowserTitle(
@@ -1242,8 +1258,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1242
1258
  bOverwriteBrowserTitle: boolean
1243
1259
  ): this;
1244
1260
  /**
1245
- * @since 1.96.0
1246
- *
1247
1261
  * Sets a new value for property {@link #getPageSize pageSize}.
1248
1262
  *
1249
1263
  * The maximal count of search result items displayed on a page after a search. By clicking Show More button,
@@ -1253,6 +1267,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1253
1267
  *
1254
1268
  * Default value is `10`.
1255
1269
  *
1270
+ * @since 1.96.0
1271
+ *
1256
1272
  * @returns Reference to `this` in order to allow method chaining
1257
1273
  */
1258
1274
  setPageSize(
@@ -1262,8 +1278,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1262
1278
  iPageSize?: int
1263
1279
  ): this;
1264
1280
  /**
1265
- * @since 1.113.0
1266
- *
1267
1281
  * Sets a new value for property {@link #getParseSearchUrlParameters parseSearchUrlParameters}.
1268
1282
  *
1269
1283
  * A callback for parsing URL parameters. The callback receices URL parameters and returns modified URL
@@ -1272,6 +1286,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1272
1286
  *
1273
1287
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1274
1288
  *
1289
+ * @since 1.113.0
1290
+ *
1275
1291
  * @returns Reference to `this` in order to allow method chaining
1276
1292
  */
1277
1293
  setParseSearchUrlParameters(
@@ -1281,14 +1297,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1281
1297
  fnParseSearchUrlParameters: Function
1282
1298
  ): this;
1283
1299
  /**
1284
- * @since 1.113.0
1285
- *
1286
1300
  * Sets a new value for property {@link #getQuickSelectDataSources quickSelectDataSources}.
1287
1301
  *
1288
1302
  * A list of datasources to be displayed in the facet panel in the collection area.
1289
1303
  *
1290
1304
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1291
1305
  *
1306
+ * @since 1.113.0
1307
+ *
1292
1308
  * @returns Reference to `this` in order to allow method chaining
1293
1309
  */
1294
1310
  setQuickSelectDataSources(
@@ -1298,8 +1314,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1298
1314
  oQuickSelectDataSources: object
1299
1315
  ): this;
1300
1316
  /**
1301
- * @since 1.113.0
1302
- *
1303
1317
  * Sets a new value for property {@link #getRenderSearchUrl renderSearchUrl}.
1304
1318
  *
1305
1319
  * A callback for rendering the search URL. The callback gets a list of url encoded parameters and returns
@@ -1307,6 +1321,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1307
1321
  *
1308
1322
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1309
1323
  *
1324
+ * @since 1.113.0
1325
+ *
1310
1326
  * @returns Reference to `this` in order to allow method chaining
1311
1327
  */
1312
1328
  setRenderSearchUrl(
@@ -1316,8 +1332,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1316
1332
  fnRenderSearchUrl: Function
1317
1333
  ): this;
1318
1334
  /**
1319
- * @since 1.100.0
1320
- *
1321
1335
  * Sets a new value for property {@link #getResultViewSettings resultViewSettings}.
1322
1336
  *
1323
1337
  * Defines a pair of search result view settings. The value is an object of properties `resultViewTypes`
@@ -1331,6 +1345,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1331
1345
  *
1332
1346
  * Default value is `...see text or source`.
1333
1347
  *
1348
+ * @since 1.100.0
1349
+ *
1334
1350
  * @returns Reference to `this` in order to allow method chaining
1335
1351
  */
1336
1352
  setResultViewSettings(
@@ -1340,8 +1356,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1340
1356
  sResultViewSettings?: string
1341
1357
  ): this;
1342
1358
  /**
1343
- * @since 1.98.0
1344
- *
1345
1359
  * Sets a new value for property {@link #getResultViewType resultViewType}.
1346
1360
  *
1347
1361
  * Defines active search result view type. The value can be set/get in attach event "searchFinished", and
@@ -1357,6 +1371,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1357
1371
  *
1358
1372
  * Default value is `"searchResultList"`.
1359
1373
  *
1374
+ * @since 1.98.0
1375
+ *
1360
1376
  * @returns Reference to `this` in order to allow method chaining
1361
1377
  */
1362
1378
  setResultViewType(
@@ -1366,8 +1382,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1366
1382
  sResultViewType?: string
1367
1383
  ): this;
1368
1384
  /**
1369
- * @since 1.98.0
1370
- *
1371
1385
  * Sets a new value for property {@link #getResultViewTypes resultViewTypes}.
1372
1386
  *
1373
1387
  * Defines selectable search result view types. The value can be set/get in attach event "searchFinished".
@@ -1382,6 +1396,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1382
1396
  *
1383
1397
  * Default value is `["searchResultList", "searchResultTable"]`.
1384
1398
  *
1399
+ * @since 1.98.0
1400
+ *
1385
1401
  * @returns Reference to `this` in order to allow method chaining
1386
1402
  */
1387
1403
  setResultViewTypes(
@@ -1391,8 +1407,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1391
1407
  sResultViewTypes?: string[]
1392
1408
  ): this;
1393
1409
  /**
1394
- * @since 1.93.0
1395
- *
1396
1410
  * Sets a new value for property {@link #getSearchOnStart searchOnStart}.
1397
1411
  *
1398
1412
  * Defines if the search composite control will send a search request after loading for the given term,
@@ -1402,6 +1416,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1402
1416
  *
1403
1417
  * Default value is `true`.
1404
1418
  *
1419
+ * @since 1.93.0
1420
+ *
1405
1421
  * @returns Reference to `this` in order to allow method chaining
1406
1422
  */
1407
1423
  setSearchOnStart(
@@ -1411,8 +1427,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1411
1427
  bSearchOnStart?: boolean
1412
1428
  ): this;
1413
1429
  /**
1414
- * @since 1.93.0
1415
- *
1416
1430
  * Sets a new value for property {@link #getSearchTerm searchTerm}.
1417
1431
  *
1418
1432
  * Defines the initial search term for the search input.
@@ -1421,6 +1435,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1421
1435
  *
1422
1436
  * Default value is `empty string`.
1423
1437
  *
1438
+ * @since 1.93.0
1439
+ *
1424
1440
  * @returns Reference to `this` in order to allow method chaining
1425
1441
  */
1426
1442
  setSearchTerm(
@@ -1430,14 +1446,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1430
1446
  sSearchTerm?: string
1431
1447
  ): this;
1432
1448
  /**
1433
- * @since 1.113.0
1434
- *
1435
1449
  * Sets a new value for property {@link #getSelectionChange selectionChange}.
1436
1450
  *
1437
1451
  * A callback which is called whenever the selection of result list items changes.
1438
1452
  *
1439
1453
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1440
1454
  *
1455
+ * @since 1.113.0
1456
+ *
1441
1457
  * @returns Reference to `this` in order to allow method chaining
1442
1458
  */
1443
1459
  setSelectionChange(
@@ -1447,14 +1463,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1447
1463
  fnSelectionChange: Function
1448
1464
  ): this;
1449
1465
  /**
1450
- * @since 1.93.0
1451
- *
1452
1466
  * Sets a new value for property {@link #getSinaConfiguration sinaConfiguration}.
1453
1467
  *
1454
1468
  * Configuration for the Enterprise Search Client API.
1455
1469
  *
1456
1470
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1457
1471
  *
1472
+ * @since 1.93.0
1473
+ *
1458
1474
  * @returns Reference to `this` in order to allow method chaining
1459
1475
  */
1460
1476
  setSinaConfiguration(
@@ -1464,8 +1480,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1464
1480
  oSinaConfiguration: object
1465
1481
  ): this;
1466
1482
  /**
1467
- * @since 1.103.0
1468
- *
1469
1483
  * Sets a new value for property {@link #getTabStripsFormatter tabStripsFormatter}.
1470
1484
  *
1471
1485
  * Function callback for formatting the datasource tabstrips in the top toolbar. To the callback function
@@ -1474,6 +1488,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1474
1488
  *
1475
1489
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1476
1490
  *
1491
+ * @since 1.103.0
1492
+ *
1477
1493
  * @returns Reference to `this` in order to allow method chaining
1478
1494
  */
1479
1495
  setTabStripsFormatter(
@@ -1483,8 +1499,6 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1483
1499
  fnTabStripsFormatter: Function
1484
1500
  ): this;
1485
1501
  /**
1486
- * @since 1.113.0
1487
- *
1488
1502
  * Sets a new value for property {@link #getUpdateUrl updateUrl}.
1489
1503
  *
1490
1504
  * A boolean indicating that the search state is written to the URL.
@@ -1493,6 +1507,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1493
1507
  *
1494
1508
  * Default value is `true`.
1495
1509
  *
1510
+ * @since 1.113.0
1511
+ *
1496
1512
  * @returns Reference to `this` in order to allow method chaining
1497
1513
  */
1498
1514
  setUpdateUrl(
@@ -1505,55 +1521,53 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1505
1521
 
1506
1522
  export interface $SearchCompositeControlSettings extends $ControlSettings {
1507
1523
  /**
1508
- * @since 1.93.0
1509
- *
1510
1524
  * An additional CSS class to add to this control
1525
+ *
1526
+ * @since 1.93.0
1511
1527
  */
1512
1528
  cssClass?: string | PropertyBindingInfo;
1513
1529
 
1514
1530
  /**
1515
- * @since 1.93.0
1516
- *
1517
1531
  * Defines the initial search term for the search input.
1532
+ *
1533
+ * @since 1.93.0
1518
1534
  */
1519
1535
  searchTerm?: string | PropertyBindingInfo;
1520
1536
 
1521
1537
  /**
1522
- * @since 1.93.0
1523
- *
1524
1538
  * Defines if the search composite control will send a search request after loading for the given term,
1525
1539
  * data source and filter root condition settings.
1540
+ *
1541
+ * @since 1.93.0
1526
1542
  */
1527
1543
  searchOnStart?: boolean | PropertyBindingInfo | `{${string}}`;
1528
1544
 
1529
1545
  /**
1530
- * @since 1.98.0
1531
- *
1532
1546
  * Defines the filter root condition of a filter tree which shall be applied to the search request. This
1533
1547
  * control only allows filter trees which have a the following structure: complex condition (root level)
1534
1548
  * \ complex condition (attribute level) \ simple condition (attribute value level) Filter root conditions
1535
1549
  * which do not follow this structure won't be accepted and an error will be thrown. Please see the below
1536
1550
  * for a more in-depth example.
1551
+ *
1552
+ * @since 1.98.0
1537
1553
  */
1538
1554
  filterRootCondition?: object | PropertyBindingInfo | `{${string}}`;
1539
1555
 
1540
1556
  /**
1541
- * @since 1.93.0
1542
- *
1543
1557
  * Configuration for the Enterprise Search Client API.
1558
+ *
1559
+ * @since 1.93.0
1544
1560
  */
1545
1561
  sinaConfiguration?: object | PropertyBindingInfo | `{${string}}`;
1546
1562
 
1547
1563
  /**
1548
- * @since 1.98.0
1549
- *
1550
1564
  * The id of the data source in which it will search right after initialization.
1565
+ *
1566
+ * @since 1.98.0
1551
1567
  */
1552
1568
  dataSource?: string | PropertyBindingInfo;
1553
1569
 
1554
1570
  /**
1555
- * @since 1.98.0
1556
- *
1557
1571
  * Defines selectable search result view types. The value can be set/get in attach event "searchFinished".
1558
1572
  * Case 1: Search in Apps: result is displayed in a mandatory view type `["appSearchResult"]`, and it is
1559
1573
  * not switchable. Case 2: Search in All or other Category: result is switchable between different view
@@ -1561,12 +1575,12 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1561
1575
  * Search in Business Object: result is switchable between different view types. Possible values for the
1562
1576
  * array items are `"searchResultList"`, `"searchResultTable"` and `"searchResultGrid"`. Note: The value
1563
1577
  * of `resultViewTypes` and `resultViewType` must be compatible to each other.
1578
+ *
1579
+ * @since 1.98.0
1564
1580
  */
1565
1581
  resultViewTypes?: string[] | PropertyBindingInfo | `{${string}}`;
1566
1582
 
1567
1583
  /**
1568
- * @since 1.98.0
1569
- *
1570
1584
  * Defines active search result view type. The value can be set/get in attach event "searchFinished", and
1571
1585
  * it must be contained in resultViewTypes. Case 1, Search in Apps: result is displayed in a mandatory view
1572
1586
  * type `"appSearchResult"`. Case 2.1, Search in All or other Category (configuration.isUshell !== true):
@@ -1575,27 +1589,29 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1575
1589
  * mandatory view type `"searchResultList"`. Case 3, Search in Business Object: result is switchable between
1576
1590
  * different view types. Possible value is `"searchResultList"`, `"searchResultTable"` or `"searchResultGrid"`.
1577
1591
  * Note: The value of `resultViewTypes` and `resultViewType` must be compatible to each other.
1592
+ *
1593
+ * @since 1.98.0
1578
1594
  */
1579
1595
  resultViewType?: string | PropertyBindingInfo;
1580
1596
 
1581
1597
  /**
1582
- * @since 1.100.0
1583
- *
1584
1598
  * Defines a pair of search result view settings. The value is an object of properties `resultViewTypes`
1585
1599
  * and `resultViewType`. An example: `{resultViewTypes: ["searchResultList", "searchResultTable"], resultViewType:
1586
1600
  * "searchResultList"}` Find more detail in the definition of each child property. The value can be set/get
1587
1601
  * in attached event "searchFinished". Function `setResultViewSettings` prevents incompatibility of sequential
1588
1602
  * execution of functions `setResultViewTypes` and `setResultViewType`. Note: The value of `resultViewTypes`
1589
1603
  * and `resultViewType` must be compatible to each other.
1604
+ *
1605
+ * @since 1.100.0
1590
1606
  */
1591
1607
  resultViewSettings?: string | PropertyBindingInfo;
1592
1608
 
1593
1609
  /**
1594
- * @since 1.103.0
1595
- *
1596
1610
  * Function callback for formatting the datasource tabstrips in the top toolbar. To the callback function
1597
1611
  * a list of datasources is passed. The callback functions return a modified list of datasources to be displayed
1598
1612
  * in the tabstrips.
1613
+ *
1614
+ * @since 1.103.0
1599
1615
  */
1600
1616
  tabStripsFormatter?: Function | PropertyBindingInfo | `{${string}}`;
1601
1617
 
@@ -1616,18 +1632,18 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1616
1632
  folderMode?: boolean | PropertyBindingInfo | `{${string}}`;
1617
1633
 
1618
1634
  /**
1619
- * @since 1.114.0
1620
- *
1621
1635
  * In case folderMode is set to true this boolean indicates whether for the initial search the folder mode
1622
1636
  * is enabled.
1637
+ *
1638
+ * @since 1.114.0
1623
1639
  */
1624
1640
  folderModeForInitialSearch?: boolean | PropertyBindingInfo | `{${string}}`;
1625
1641
 
1626
1642
  /**
1627
- * @since 1.106.0
1628
- *
1629
1643
  * In case folder mode is active: Automatically switch result view type to list in search mode and to table
1630
1644
  * in folder mode.
1645
+ *
1646
+ * @since 1.106.0
1631
1647
  */
1632
1648
  autoAdjustResultViewTypeInFolderMode?:
1633
1649
  | boolean
@@ -1635,40 +1651,40 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1635
1651
  | `{${string}}`;
1636
1652
 
1637
1653
  /**
1638
- * @since 1.107.0
1639
- *
1640
1654
  * Enables the query language for the hana_odata provider. With query language it is possible for the end
1641
1655
  * user to enter complex search queries with logical operators.
1656
+ *
1657
+ * @since 1.107.0
1642
1658
  */
1643
1659
  enableQueryLanguage?: boolean | PropertyBindingInfo | `{${string}}`;
1644
1660
 
1645
1661
  /**
1646
- * @since 1.108.0
1647
- *
1648
1662
  * Relevant for SAP partners and SAP, the "Application Component" you expect customers to create incidents.
1663
+ *
1664
+ * @since 1.108.0
1649
1665
  */
1650
1666
  applicationComponent?: string | PropertyBindingInfo;
1651
1667
 
1652
1668
  /**
1653
- * @since 1.108.0
1654
- *
1655
1669
  * Display a splitter bar to resize the left hand panel, containing all facets and filter criteria.
1670
+ *
1671
+ * @since 1.108.0
1656
1672
  */
1657
1673
  facetPanelResizable?: boolean | PropertyBindingInfo | `{${string}}`;
1658
1674
 
1659
1675
  /**
1660
- * @since 1.108.0
1661
- *
1662
1676
  * Default size (percent) of the left hand panel, containing all facets and filter criteria. If "facetPanelResizable"
1663
1677
  * is true, the width of the facet panel can be changed by the user.
1678
+ *
1679
+ * @since 1.108.0
1664
1680
  */
1665
1681
  facetPanelWidthInPercent?: float | PropertyBindingInfo | `{${string}}`;
1666
1682
 
1667
1683
  /**
1668
- * @since 1.94.0
1669
- *
1670
1684
  * Whenever a search has no results, a 'No Results Page' is displayed. You can provide a custom page to
1671
1685
  * be more specific and add some hints, links, buttons or other content.
1686
+ *
1687
+ * @since 1.94.0
1672
1688
  */
1673
1689
  getCustomNoResultScreen?: Function | PropertyBindingInfo | `{${string}}`;
1674
1690
 
@@ -1682,56 +1698,56 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1682
1698
  | `{${string}}`;
1683
1699
 
1684
1700
  /**
1685
- * @since 1.93.0
1686
- *
1687
1701
  * Shall the window title be overwritten by this control? If true, the control will set the current search
1688
1702
  * condition as window title. If false, it will not set or update the window title.
1703
+ *
1704
+ * @since 1.93.0
1689
1705
  */
1690
1706
  overwriteBrowserTitle?: boolean | PropertyBindingInfo | `{${string}}`;
1691
1707
 
1692
1708
  /**
1693
- * @since 1.93.0
1694
- *
1695
1709
  * Data source id which is set when the UI is loaded or filter is reset. If dataSource is also set, dataSource
1696
1710
  * will be used during UI load and this parameter will used only after filter is reset.
1711
+ *
1712
+ * @since 1.93.0
1697
1713
  */
1698
1714
  defaultDataSource?: string | PropertyBindingInfo;
1699
1715
 
1700
1716
  /**
1701
- * @since 1.111.0
1702
- *
1703
1717
  * The layout is optimized for object selection / value help (narrow view w/o facet panel).
1718
+ *
1719
+ * @since 1.111.0
1704
1720
  */
1705
1721
  optimizeForValueHelp?: boolean | PropertyBindingInfo | `{${string}}`;
1706
1722
 
1707
1723
  /**
1708
- * @since 1.112.0
1709
- *
1710
1724
  * Callback for filtering the datasources displayed in the datasource dropdown listbox. The callback gets
1711
1725
  * a list of datsources and returns the filtered list of datasources.
1726
+ *
1727
+ * @since 1.112.0
1712
1728
  */
1713
1729
  filterDataSources?: Function | PropertyBindingInfo | `{${string}}`;
1714
1730
 
1715
1731
  /**
1716
- * @since 1.113.0
1717
- *
1718
1732
  * A boolean which indicates whether the facet panel is initially openend or closed. This affects only the
1719
1733
  * initial state of the facet panel. When not setting facetVisibility the initial state of the facet panel
1720
1734
  * typically is taken from the user personalization storage.
1735
+ *
1736
+ * @since 1.113.0
1721
1737
  */
1722
1738
  facetVisibility?: boolean | PropertyBindingInfo | `{${string}}`;
1723
1739
 
1724
1740
  /**
1725
- * @since 1.113.0
1726
- *
1727
1741
  * A boolean for enabling (business) object suggestions.
1742
+ *
1743
+ * @since 1.113.0
1728
1744
  */
1729
1745
  boSuggestions?: boolean | PropertyBindingInfo | `{${string}}`;
1730
1746
 
1731
1747
  /**
1732
- * @since 1.113.0
1733
- *
1734
1748
  * When set to true the facet panel is displayed also in case there are no search results.
1749
+ *
1750
+ * @since 1.113.0
1735
1751
  */
1736
1752
  displayFacetPanelInCaseOfNoResults?:
1737
1753
  | boolean
@@ -1739,63 +1755,63 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1739
1755
  | `{${string}}`;
1740
1756
 
1741
1757
  /**
1742
- * @since 1.113.0
1743
- *
1744
1758
  * A boolean indicating that the search state is written to the URL.
1759
+ *
1760
+ * @since 1.113.0
1745
1761
  */
1746
1762
  updateUrl?: boolean | PropertyBindingInfo | `{${string}}`;
1747
1763
 
1748
1764
  /**
1749
- * @since 1.113.0
1750
- *
1751
1765
  * A callback for rendering the search URL. The callback gets a list of url encoded parameters and returns
1752
1766
  * the URL string. Typically you need to register this callback in case updateUrl=true.
1767
+ *
1768
+ * @since 1.113.0
1753
1769
  */
1754
1770
  renderSearchUrl?: Function | PropertyBindingInfo | `{${string}}`;
1755
1771
 
1756
1772
  /**
1757
- * @since 1.113.0
1758
- *
1759
1773
  * A callback for checking whether a URL is a search URL. The callback receives a URL and returns true in
1760
1774
  * case the URL is a search URL. Typically you need to register this callback in case updateUrl=true.
1775
+ *
1776
+ * @since 1.113.0
1761
1777
  */
1762
1778
  isSearchUrl?: Function | PropertyBindingInfo | `{${string}}`;
1763
1779
 
1764
1780
  /**
1765
- * @since 1.113.0
1766
- *
1767
1781
  * A callback for parsing URL parameters. The callback receices URL parameters and returns modified URL
1768
1782
  * parameters. This is an optional callback. Also in case you set updateUrl=true typcically this callback
1769
1783
  * is not needed.
1784
+ *
1785
+ * @since 1.113.0
1770
1786
  */
1771
1787
  parseSearchUrlParameters?: Function | PropertyBindingInfo | `{${string}}`;
1772
1788
 
1773
1789
  /**
1774
- * @since 1.113.0
1775
- *
1776
1790
  * A list of datasources to be displayed in the facet panel in the collection area.
1791
+ *
1792
+ * @since 1.113.0
1777
1793
  */
1778
1794
  quickSelectDataSources?: object | PropertyBindingInfo | `{${string}}`;
1779
1795
 
1780
1796
  /**
1781
- * @since 1.113.0
1782
- *
1783
1797
  * A callback which is called whenever the selection of result list items changes.
1798
+ *
1799
+ * @since 1.113.0
1784
1800
  */
1785
1801
  selectionChange?: Function | PropertyBindingInfo | `{${string}}`;
1786
1802
 
1787
1803
  /**
1788
- * @since 1.113.0
1789
- *
1790
1804
  * A callback which is called after the initialization of the search composite control.
1805
+ *
1806
+ * @since 1.113.0
1791
1807
  */
1792
1808
  initAsync?: Function | PropertyBindingInfo | `{${string}}`;
1793
1809
 
1794
1810
  /**
1795
- * @since 1.96.0
1796
- *
1797
1811
  * Enables the multiselection mode of search result items. A checkbox is provided for each result item if
1798
1812
  * the value is true.
1813
+ *
1814
+ * @since 1.96.0
1799
1815
  */
1800
1816
  enableMultiSelectionResultItems?:
1801
1817
  | boolean
@@ -1803,31 +1819,31 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1803
1819
  | `{${string}}`;
1804
1820
 
1805
1821
  /**
1806
- * @since 1.96.0
1807
- *
1808
1822
  * The maximal count of search result items displayed on a page after a search. By clicking Show More button,
1809
1823
  * another page of result items of the same count (if available) will be displayed.
1824
+ *
1825
+ * @since 1.96.0
1810
1826
  */
1811
1827
  pageSize?: int | PropertyBindingInfo | `{${string}}`;
1812
1828
 
1813
1829
  /**
1814
- * @since 1.120
1815
- *
1816
1830
  * Callback for formatting the filter string to be displayed in the filter bar (for closed facet panel).
1831
+ *
1832
+ * @since 1.120
1817
1833
  */
1818
1834
  formatFilterBarText?: Function | PropertyBindingInfo | `{${string}}`;
1819
1835
 
1820
1836
  /**
1821
- * @since 1.120
1822
- *
1823
1837
  * Callback for checking whether the filter bar is visible.
1838
+ *
1839
+ * @since 1.120
1824
1840
  */
1825
1841
  isFilterBarVisible?: Function | PropertyBindingInfo | `{${string}}`;
1826
1842
 
1827
1843
  /**
1828
- * @since 1.120
1829
- *
1830
1844
  * Adds a callback function which is called whenever there is a user triggered event.
1845
+ *
1846
+ * @since 1.120
1831
1847
  */
1832
1848
  eventConsumers?: string | PropertyBindingInfo;
1833
1849