@sapui5/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.
- package/README.md +5 -3
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.apf.d.ts +47 -40
- package/types/sap.ca.ui.d.ts +171 -161
- package/types/sap.chart.d.ts +3 -45
- package/types/sap.collaboration.d.ts +31 -38
- package/types/sap.esh.search.ui.d.ts +112 -109
- package/types/sap.f.d.ts +67 -241
- package/types/sap.fe.core.d.ts +132 -6
- package/types/sap.fe.macros.d.ts +24 -48
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1223 -1502
- package/types/sap.insights.d.ts +3 -3
- package/types/sap.landvisz.d.ts +73 -67
- package/types/sap.m.d.ts +411 -2498
- package/types/sap.makit.d.ts +1 -37
- package/types/sap.me.d.ts +6 -60
- package/types/sap.ndc.d.ts +22 -25
- package/types/sap.ovp.d.ts +25 -8
- package/types/sap.rules.ui.d.ts +38 -51
- package/types/sap.sac.df.d.ts +11 -12
- package/types/sap.suite.ui.commons.d.ts +1180 -1233
- package/types/sap.suite.ui.generic.template.d.ts +1 -7
- package/types/sap.suite.ui.microchart.d.ts +4 -106
- package/types/sap.tnt.d.ts +52 -26
- package/types/sap.ui.codeeditor.d.ts +3 -15
- package/types/sap.ui.commons.d.ts +43 -355
- package/types/sap.ui.comp.d.ts +289 -782
- package/types/sap.ui.core.d.ts +283 -883
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -13
- package/types/sap.ui.fl.d.ts +4 -69
- package/types/sap.ui.generic.app.d.ts +39 -43
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +124 -90
- package/types/sap.ui.layout.d.ts +6 -40
- package/types/sap.ui.mdc.d.ts +806 -817
- package/types/sap.ui.richtexteditor.d.ts +2 -26
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -13
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +23 -169
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +69 -449
- package/types/sap.ui.ux3.d.ts +44 -444
- package/types/sap.ui.vbm.d.ts +568 -541
- package/types/sap.ui.vk.d.ts +1511 -1834
- package/types/sap.ui.vtm.d.ts +335 -329
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +731 -311
- package/types/sap.ui.webc.main.d.ts +4016 -1045
- package/types/sap.uiext.inbox.d.ts +1 -79
- package/types/sap.ushell.d.ts +274 -887
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +10 -80
- package/types/sap.viz.d.ts +3 -823
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +7 -12
- package/types/sap.zen.crosstab.d.ts +4 -7
- package/types/sap.zen.dsh.d.ts +133 -157
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/esh/search/ui/library" {}
|
|
4
4
|
|
|
@@ -15,7 +15,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
15
15
|
} from "sap/ui/base/ManagedObject";
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
|
-
* @
|
|
18
|
+
* @since 1.93.0
|
|
19
19
|
*
|
|
20
20
|
* This is the SAPUI5 composite control by the Enterprise Search Team which helps to make full use of the
|
|
21
21
|
* Enterprise Search Engine features built into ABAP and HANA. It includes a search input box including
|
|
@@ -23,7 +23,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
23
23
|
* facets and more. This control is ready to use with an enterprise search backend service but also allows
|
|
24
24
|
* deep modifications to match requirements of adopting applications.
|
|
25
25
|
*/
|
|
26
|
-
class SearchCompositeControl extends Control {
|
|
26
|
+
export default class SearchCompositeControl extends Control {
|
|
27
27
|
/**
|
|
28
28
|
* Constructs a new `SearchCompositeControl` to interact with SAP Enterprise Search Services.
|
|
29
29
|
* See:
|
|
@@ -232,7 +232,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
232
232
|
oListener?: object
|
|
233
233
|
): this;
|
|
234
234
|
/**
|
|
235
|
-
* @
|
|
235
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
236
236
|
*
|
|
237
237
|
* Fires event {@link #event:searchFinished searchFinished} to attached listeners.
|
|
238
238
|
*
|
|
@@ -245,7 +245,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
245
245
|
mParameters?: object
|
|
246
246
|
): this;
|
|
247
247
|
/**
|
|
248
|
-
* @
|
|
248
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
249
249
|
*
|
|
250
250
|
* Fires event {@link #event:searchStarted searchStarted} to attached listeners.
|
|
251
251
|
*
|
|
@@ -258,7 +258,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
258
258
|
mParameters?: object
|
|
259
259
|
): this;
|
|
260
260
|
/**
|
|
261
|
-
* @
|
|
261
|
+
* @since 1.108.0
|
|
262
262
|
*
|
|
263
263
|
* Gets current value of property {@link #getApplicationComponent applicationComponent}.
|
|
264
264
|
*
|
|
@@ -270,7 +270,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
270
270
|
*/
|
|
271
271
|
getApplicationComponent(): string;
|
|
272
272
|
/**
|
|
273
|
-
* @
|
|
273
|
+
* @since 1.106.0
|
|
274
274
|
*
|
|
275
275
|
* Gets current value of property {@link #getAutoAdjustResultViewTypeInFolderMode autoAdjustResultViewTypeInFolderMode}.
|
|
276
276
|
*
|
|
@@ -283,7 +283,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
283
283
|
*/
|
|
284
284
|
getAutoAdjustResultViewTypeInFolderMode(): boolean;
|
|
285
285
|
/**
|
|
286
|
-
* @
|
|
286
|
+
* @since 1.113.0
|
|
287
287
|
*
|
|
288
288
|
* Gets current value of property {@link #getBoSuggestions boSuggestions}.
|
|
289
289
|
*
|
|
@@ -301,7 +301,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
301
301
|
*/
|
|
302
302
|
getContent(): Control[];
|
|
303
303
|
/**
|
|
304
|
-
* @
|
|
304
|
+
* @since 1.93.0
|
|
305
305
|
*
|
|
306
306
|
* Gets current value of property {@link #getCssClass cssClass}.
|
|
307
307
|
*
|
|
@@ -311,7 +311,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
311
311
|
*/
|
|
312
312
|
getCssClass(): string;
|
|
313
313
|
/**
|
|
314
|
-
* @
|
|
314
|
+
* @since 1.98.0
|
|
315
315
|
*
|
|
316
316
|
* Gets current value of property {@link #getDataSource dataSource}.
|
|
317
317
|
*
|
|
@@ -321,7 +321,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
321
321
|
*/
|
|
322
322
|
getDataSource(): string;
|
|
323
323
|
/**
|
|
324
|
-
* @
|
|
324
|
+
* @since 1.93.0
|
|
325
325
|
*
|
|
326
326
|
* Gets current value of property {@link #getDefaultDataSource defaultDataSource}.
|
|
327
327
|
*
|
|
@@ -332,7 +332,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
332
332
|
*/
|
|
333
333
|
getDefaultDataSource(): string;
|
|
334
334
|
/**
|
|
335
|
-
* @
|
|
335
|
+
* @since 1.113.0
|
|
336
336
|
*
|
|
337
337
|
* Gets current value of property {@link #getDisplayFacetPanelInCaseOfNoResults displayFacetPanelInCaseOfNoResults}.
|
|
338
338
|
*
|
|
@@ -344,7 +344,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
344
344
|
*/
|
|
345
345
|
getDisplayFacetPanelInCaseOfNoResults(): boolean;
|
|
346
346
|
/**
|
|
347
|
-
* @
|
|
347
|
+
* @since 1.96.0
|
|
348
348
|
*
|
|
349
349
|
* Gets current value of property {@link #getEnableMultiSelectionResultItems enableMultiSelectionResultItems}.
|
|
350
350
|
*
|
|
@@ -357,7 +357,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
357
357
|
*/
|
|
358
358
|
getEnableMultiSelectionResultItems(): boolean;
|
|
359
359
|
/**
|
|
360
|
-
* @
|
|
360
|
+
* @since 1.107.0
|
|
361
361
|
*
|
|
362
362
|
* Gets current value of property {@link #getEnableQueryLanguage enableQueryLanguage}.
|
|
363
363
|
*
|
|
@@ -370,7 +370,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
370
370
|
*/
|
|
371
371
|
getEnableQueryLanguage(): boolean;
|
|
372
372
|
/**
|
|
373
|
-
* @
|
|
373
|
+
* @since 1.108.0
|
|
374
374
|
*
|
|
375
375
|
* Gets current value of property {@link #getFacetPanelResizable facetPanelResizable}.
|
|
376
376
|
*
|
|
@@ -382,7 +382,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
382
382
|
*/
|
|
383
383
|
getFacetPanelResizable(): boolean;
|
|
384
384
|
/**
|
|
385
|
-
* @
|
|
385
|
+
* @since 1.108.0
|
|
386
386
|
*
|
|
387
387
|
* Gets current value of property {@link #getFacetPanelWidthInPercent facetPanelWidthInPercent}.
|
|
388
388
|
*
|
|
@@ -395,7 +395,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
395
395
|
*/
|
|
396
396
|
getFacetPanelWidthInPercent(): float;
|
|
397
397
|
/**
|
|
398
|
-
* @
|
|
398
|
+
* @since 1.113.0
|
|
399
399
|
*
|
|
400
400
|
* Gets current value of property {@link #getFacetVisibility facetVisibility}.
|
|
401
401
|
*
|
|
@@ -407,7 +407,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
407
407
|
*/
|
|
408
408
|
getFacetVisibility(): boolean;
|
|
409
409
|
/**
|
|
410
|
-
* @
|
|
410
|
+
* @since 1.112.0
|
|
411
411
|
*
|
|
412
412
|
* Gets current value of property {@link #getFilterDataSources filterDataSources}.
|
|
413
413
|
*
|
|
@@ -418,7 +418,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
418
418
|
*/
|
|
419
419
|
getFilterDataSources(): Function;
|
|
420
420
|
/**
|
|
421
|
-
* @
|
|
421
|
+
* @since 1.98.0
|
|
422
422
|
*
|
|
423
423
|
* Gets current value of property {@link #getFilterRootCondition filterRootCondition}.
|
|
424
424
|
*
|
|
@@ -432,7 +432,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
432
432
|
*/
|
|
433
433
|
getFilterRootCondition(): object;
|
|
434
434
|
/**
|
|
435
|
-
* @
|
|
435
|
+
* @since 1.106.0
|
|
436
436
|
*
|
|
437
437
|
* Gets current value of property {@link #getFolderMode folderMode}.
|
|
438
438
|
*
|
|
@@ -453,7 +453,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
453
453
|
*/
|
|
454
454
|
getFolderMode(): boolean;
|
|
455
455
|
/**
|
|
456
|
-
* @
|
|
456
|
+
* @since 1.114.0
|
|
457
457
|
*
|
|
458
458
|
* Gets current value of property {@link #getFolderModeForInitialSearch folderModeForInitialSearch}.
|
|
459
459
|
*
|
|
@@ -466,7 +466,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
466
466
|
*/
|
|
467
467
|
getFolderModeForInitialSearch(): boolean;
|
|
468
468
|
/**
|
|
469
|
-
* @
|
|
469
|
+
* @since 1.94.0
|
|
470
470
|
*
|
|
471
471
|
* Gets current value of property {@link #getGetCustomNoResultScreen getCustomNoResultScreen}.
|
|
472
472
|
*
|
|
@@ -477,7 +477,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
477
477
|
*/
|
|
478
478
|
getGetCustomNoResultScreen(): Function;
|
|
479
479
|
/**
|
|
480
|
-
* @
|
|
480
|
+
* @since 1.113.0
|
|
481
481
|
*
|
|
482
482
|
* Gets current value of property {@link #getInitAsync initAsync}.
|
|
483
483
|
*
|
|
@@ -487,7 +487,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
487
487
|
*/
|
|
488
488
|
getInitAsync(): Function;
|
|
489
489
|
/**
|
|
490
|
-
* @
|
|
490
|
+
* @since 1.113.0
|
|
491
491
|
*
|
|
492
492
|
* Gets current value of property {@link #getIsSearchUrl isSearchUrl}.
|
|
493
493
|
*
|
|
@@ -498,7 +498,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
498
498
|
*/
|
|
499
499
|
getIsSearchUrl(): Function;
|
|
500
500
|
/**
|
|
501
|
-
* @
|
|
501
|
+
* @since 1.111.0
|
|
502
502
|
*
|
|
503
503
|
* Gets current value of property {@link #getOptimizeForValueHelp optimizeForValueHelp}.
|
|
504
504
|
*
|
|
@@ -508,7 +508,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
508
508
|
*/
|
|
509
509
|
getOptimizeForValueHelp(): boolean;
|
|
510
510
|
/**
|
|
511
|
-
* @
|
|
511
|
+
* @since 1.93.0
|
|
512
512
|
*
|
|
513
513
|
* Gets current value of property {@link #getOverwriteBrowserTitle overwriteBrowserTitle}.
|
|
514
514
|
*
|
|
@@ -519,7 +519,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
519
519
|
*/
|
|
520
520
|
getOverwriteBrowserTitle(): boolean;
|
|
521
521
|
/**
|
|
522
|
-
* @
|
|
522
|
+
* @since 1.96.0
|
|
523
523
|
*
|
|
524
524
|
* Gets current value of property {@link #getPageSize pageSize}.
|
|
525
525
|
*
|
|
@@ -532,7 +532,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
532
532
|
*/
|
|
533
533
|
getPageSize(): int;
|
|
534
534
|
/**
|
|
535
|
-
* @
|
|
535
|
+
* @since 1.113.0
|
|
536
536
|
*
|
|
537
537
|
* Gets current value of property {@link #getParseSearchUrlParameters parseSearchUrlParameters}.
|
|
538
538
|
*
|
|
@@ -544,7 +544,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
544
544
|
*/
|
|
545
545
|
getParseSearchUrlParameters(): Function;
|
|
546
546
|
/**
|
|
547
|
-
* @
|
|
547
|
+
* @since 1.113.0
|
|
548
548
|
*
|
|
549
549
|
* Gets current value of property {@link #getQuickSelectDataSources quickSelectDataSources}.
|
|
550
550
|
*
|
|
@@ -554,7 +554,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
554
554
|
*/
|
|
555
555
|
getQuickSelectDataSources(): object;
|
|
556
556
|
/**
|
|
557
|
-
* @
|
|
557
|
+
* @since 1.113.0
|
|
558
558
|
*
|
|
559
559
|
* Gets current value of property {@link #getRenderSearchUrl renderSearchUrl}.
|
|
560
560
|
*
|
|
@@ -565,7 +565,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
565
565
|
*/
|
|
566
566
|
getRenderSearchUrl(): Function;
|
|
567
567
|
/**
|
|
568
|
-
* @
|
|
568
|
+
* @since 1.100.0
|
|
569
569
|
*
|
|
570
570
|
* Gets current value of property {@link #getResultViewSettings resultViewSettings}.
|
|
571
571
|
*
|
|
@@ -582,7 +582,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
582
582
|
*/
|
|
583
583
|
getResultViewSettings(): string;
|
|
584
584
|
/**
|
|
585
|
-
* @
|
|
585
|
+
* @since 1.98.0
|
|
586
586
|
*
|
|
587
587
|
* Gets current value of property {@link #getResultViewType resultViewType}.
|
|
588
588
|
*
|
|
@@ -601,7 +601,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
601
601
|
*/
|
|
602
602
|
getResultViewType(): string;
|
|
603
603
|
/**
|
|
604
|
-
* @
|
|
604
|
+
* @since 1.98.0
|
|
605
605
|
*
|
|
606
606
|
* Gets current value of property {@link #getResultViewTypes resultViewTypes}.
|
|
607
607
|
*
|
|
@@ -619,7 +619,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
619
619
|
*/
|
|
620
620
|
getResultViewTypes(): string[];
|
|
621
621
|
/**
|
|
622
|
-
* @
|
|
622
|
+
* @since 1.93.0
|
|
623
623
|
*
|
|
624
624
|
* Gets current value of property {@link #getSearchOnStart searchOnStart}.
|
|
625
625
|
*
|
|
@@ -632,7 +632,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
632
632
|
*/
|
|
633
633
|
getSearchOnStart(): boolean;
|
|
634
634
|
/**
|
|
635
|
-
* @
|
|
635
|
+
* @since 1.93.0
|
|
636
636
|
*
|
|
637
637
|
* Gets current value of property {@link #getSearchTerm searchTerm}.
|
|
638
638
|
*
|
|
@@ -644,7 +644,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
644
644
|
*/
|
|
645
645
|
getSearchTerm(): string;
|
|
646
646
|
/**
|
|
647
|
-
* @
|
|
647
|
+
* @since 1.113.0
|
|
648
648
|
*
|
|
649
649
|
* Gets current value of property {@link #getSelectionChange selectionChange}.
|
|
650
650
|
*
|
|
@@ -654,7 +654,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
654
654
|
*/
|
|
655
655
|
getSelectionChange(): Function;
|
|
656
656
|
/**
|
|
657
|
-
* @
|
|
657
|
+
* @since 1.93.0
|
|
658
658
|
*
|
|
659
659
|
* Gets current value of property {@link #getSinaConfiguration sinaConfiguration}.
|
|
660
660
|
*
|
|
@@ -664,7 +664,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
664
664
|
*/
|
|
665
665
|
getSinaConfiguration(): object;
|
|
666
666
|
/**
|
|
667
|
-
* @
|
|
667
|
+
* @since 1.103.0
|
|
668
668
|
*
|
|
669
669
|
* Gets current value of property {@link #getTabStripsFormatter tabStripsFormatter}.
|
|
670
670
|
*
|
|
@@ -676,7 +676,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
676
676
|
*/
|
|
677
677
|
getTabStripsFormatter(): Function;
|
|
678
678
|
/**
|
|
679
|
-
* @
|
|
679
|
+
* @since 1.113.0
|
|
680
680
|
*
|
|
681
681
|
* Gets current value of property {@link #getUpdateUrl updateUrl}.
|
|
682
682
|
*
|
|
@@ -736,7 +736,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
736
736
|
vContent: int | string | Control
|
|
737
737
|
): Control | null;
|
|
738
738
|
/**
|
|
739
|
-
* @
|
|
739
|
+
* @since 1.108.0
|
|
740
740
|
*
|
|
741
741
|
* Sets a new value for property {@link #getApplicationComponent applicationComponent}.
|
|
742
742
|
*
|
|
@@ -755,7 +755,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
755
755
|
sApplicationComponent?: string
|
|
756
756
|
): this;
|
|
757
757
|
/**
|
|
758
|
-
* @
|
|
758
|
+
* @since 1.106.0
|
|
759
759
|
*
|
|
760
760
|
* Sets a new value for property {@link #getAutoAdjustResultViewTypeInFolderMode autoAdjustResultViewTypeInFolderMode}.
|
|
761
761
|
*
|
|
@@ -775,7 +775,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
775
775
|
bAutoAdjustResultViewTypeInFolderMode?: boolean
|
|
776
776
|
): this;
|
|
777
777
|
/**
|
|
778
|
-
* @
|
|
778
|
+
* @since 1.113.0
|
|
779
779
|
*
|
|
780
780
|
* Sets a new value for property {@link #getBoSuggestions boSuggestions}.
|
|
781
781
|
*
|
|
@@ -794,7 +794,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
794
794
|
bBoSuggestions?: boolean
|
|
795
795
|
): this;
|
|
796
796
|
/**
|
|
797
|
-
* @
|
|
797
|
+
* @since 1.93.0
|
|
798
798
|
*
|
|
799
799
|
* Sets a new value for property {@link #getCssClass cssClass}.
|
|
800
800
|
*
|
|
@@ -811,7 +811,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
811
811
|
sCssClass: string
|
|
812
812
|
): this;
|
|
813
813
|
/**
|
|
814
|
-
* @
|
|
814
|
+
* @since 1.98.0
|
|
815
815
|
*
|
|
816
816
|
* Sets a new value for property {@link #getDataSource dataSource}.
|
|
817
817
|
*
|
|
@@ -828,7 +828,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
828
828
|
sDataSource: string
|
|
829
829
|
): this;
|
|
830
830
|
/**
|
|
831
|
-
* @
|
|
831
|
+
* @since 1.93.0
|
|
832
832
|
*
|
|
833
833
|
* Sets a new value for property {@link #getDefaultDataSource defaultDataSource}.
|
|
834
834
|
*
|
|
@@ -846,7 +846,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
846
846
|
sDefaultDataSource: string
|
|
847
847
|
): this;
|
|
848
848
|
/**
|
|
849
|
-
* @
|
|
849
|
+
* @since 1.113.0
|
|
850
850
|
*
|
|
851
851
|
* Sets a new value for property {@link #getDisplayFacetPanelInCaseOfNoResults displayFacetPanelInCaseOfNoResults}.
|
|
852
852
|
*
|
|
@@ -865,7 +865,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
865
865
|
bDisplayFacetPanelInCaseOfNoResults?: boolean
|
|
866
866
|
): this;
|
|
867
867
|
/**
|
|
868
|
-
* @
|
|
868
|
+
* @since 1.96.0
|
|
869
869
|
*
|
|
870
870
|
* Sets a new value for property {@link #getEnableMultiSelectionResultItems enableMultiSelectionResultItems}.
|
|
871
871
|
*
|
|
@@ -885,7 +885,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
885
885
|
bEnableMultiSelectionResultItems?: boolean
|
|
886
886
|
): this;
|
|
887
887
|
/**
|
|
888
|
-
* @
|
|
888
|
+
* @since 1.107.0
|
|
889
889
|
*
|
|
890
890
|
* Sets a new value for property {@link #getEnableQueryLanguage enableQueryLanguage}.
|
|
891
891
|
*
|
|
@@ -905,7 +905,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
905
905
|
bEnableQueryLanguage?: boolean
|
|
906
906
|
): this;
|
|
907
907
|
/**
|
|
908
|
-
* @
|
|
908
|
+
* @since 1.108.0
|
|
909
909
|
*
|
|
910
910
|
* Sets a new value for property {@link #getFacetPanelResizable facetPanelResizable}.
|
|
911
911
|
*
|
|
@@ -924,7 +924,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
924
924
|
bFacetPanelResizable?: boolean
|
|
925
925
|
): this;
|
|
926
926
|
/**
|
|
927
|
-
* @
|
|
927
|
+
* @since 1.108.0
|
|
928
928
|
*
|
|
929
929
|
* Sets a new value for property {@link #getFacetPanelWidthInPercent facetPanelWidthInPercent}.
|
|
930
930
|
*
|
|
@@ -944,7 +944,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
944
944
|
fFacetPanelWidthInPercent?: float
|
|
945
945
|
): this;
|
|
946
946
|
/**
|
|
947
|
-
* @
|
|
947
|
+
* @since 1.113.0
|
|
948
948
|
*
|
|
949
949
|
* Sets a new value for property {@link #getFacetVisibility facetVisibility}.
|
|
950
950
|
*
|
|
@@ -963,7 +963,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
963
963
|
bFacetVisibility: boolean
|
|
964
964
|
): this;
|
|
965
965
|
/**
|
|
966
|
-
* @
|
|
966
|
+
* @since 1.112.0
|
|
967
967
|
*
|
|
968
968
|
* Sets a new value for property {@link #getFilterDataSources filterDataSources}.
|
|
969
969
|
*
|
|
@@ -981,7 +981,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
981
981
|
fnFilterDataSources: Function
|
|
982
982
|
): this;
|
|
983
983
|
/**
|
|
984
|
-
* @
|
|
984
|
+
* @since 1.98.0
|
|
985
985
|
*
|
|
986
986
|
* Sets a new value for property {@link #getFilterRootCondition filterRootCondition}.
|
|
987
987
|
*
|
|
@@ -1002,7 +1002,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1002
1002
|
oFilterRootCondition: object
|
|
1003
1003
|
): this;
|
|
1004
1004
|
/**
|
|
1005
|
-
* @
|
|
1005
|
+
* @since 1.106.0
|
|
1006
1006
|
*
|
|
1007
1007
|
* Sets a new value for property {@link #getFolderMode folderMode}.
|
|
1008
1008
|
*
|
|
@@ -1028,7 +1028,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1028
1028
|
bFolderMode?: boolean
|
|
1029
1029
|
): this;
|
|
1030
1030
|
/**
|
|
1031
|
-
* @
|
|
1031
|
+
* @since 1.114.0
|
|
1032
1032
|
*
|
|
1033
1033
|
* Sets a new value for property {@link #getFolderModeForInitialSearch folderModeForInitialSearch}.
|
|
1034
1034
|
*
|
|
@@ -1048,7 +1048,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1048
1048
|
bFolderModeForInitialSearch?: boolean
|
|
1049
1049
|
): this;
|
|
1050
1050
|
/**
|
|
1051
|
-
* @
|
|
1051
|
+
* @since 1.94.0
|
|
1052
1052
|
*
|
|
1053
1053
|
* Sets a new value for property {@link #getGetCustomNoResultScreen getCustomNoResultScreen}.
|
|
1054
1054
|
*
|
|
@@ -1066,7 +1066,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1066
1066
|
fnGetCustomNoResultScreen: Function
|
|
1067
1067
|
): this;
|
|
1068
1068
|
/**
|
|
1069
|
-
* @
|
|
1069
|
+
* @since 1.113.0
|
|
1070
1070
|
*
|
|
1071
1071
|
* Sets a new value for property {@link #getInitAsync initAsync}.
|
|
1072
1072
|
*
|
|
@@ -1083,7 +1083,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1083
1083
|
fnInitAsync: Function
|
|
1084
1084
|
): this;
|
|
1085
1085
|
/**
|
|
1086
|
-
* @
|
|
1086
|
+
* @since 1.113.0
|
|
1087
1087
|
*
|
|
1088
1088
|
* Sets a new value for property {@link #getIsSearchUrl isSearchUrl}.
|
|
1089
1089
|
*
|
|
@@ -1101,7 +1101,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1101
1101
|
fnIsSearchUrl: Function
|
|
1102
1102
|
): this;
|
|
1103
1103
|
/**
|
|
1104
|
-
* @
|
|
1104
|
+
* @since 1.111.0
|
|
1105
1105
|
*
|
|
1106
1106
|
* Sets a new value for property {@link #getOptimizeForValueHelp optimizeForValueHelp}.
|
|
1107
1107
|
*
|
|
@@ -1118,7 +1118,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1118
1118
|
bOptimizeForValueHelp: boolean
|
|
1119
1119
|
): this;
|
|
1120
1120
|
/**
|
|
1121
|
-
* @
|
|
1121
|
+
* @since 1.93.0
|
|
1122
1122
|
*
|
|
1123
1123
|
* Sets a new value for property {@link #getOverwriteBrowserTitle overwriteBrowserTitle}.
|
|
1124
1124
|
*
|
|
@@ -1136,7 +1136,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1136
1136
|
bOverwriteBrowserTitle: boolean
|
|
1137
1137
|
): this;
|
|
1138
1138
|
/**
|
|
1139
|
-
* @
|
|
1139
|
+
* @since 1.96.0
|
|
1140
1140
|
*
|
|
1141
1141
|
* Sets a new value for property {@link #getPageSize pageSize}.
|
|
1142
1142
|
*
|
|
@@ -1156,7 +1156,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1156
1156
|
iPageSize?: int
|
|
1157
1157
|
): this;
|
|
1158
1158
|
/**
|
|
1159
|
-
* @
|
|
1159
|
+
* @since 1.113.0
|
|
1160
1160
|
*
|
|
1161
1161
|
* Sets a new value for property {@link #getParseSearchUrlParameters parseSearchUrlParameters}.
|
|
1162
1162
|
*
|
|
@@ -1175,7 +1175,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1175
1175
|
fnParseSearchUrlParameters: Function
|
|
1176
1176
|
): this;
|
|
1177
1177
|
/**
|
|
1178
|
-
* @
|
|
1178
|
+
* @since 1.113.0
|
|
1179
1179
|
*
|
|
1180
1180
|
* Sets a new value for property {@link #getQuickSelectDataSources quickSelectDataSources}.
|
|
1181
1181
|
*
|
|
@@ -1192,7 +1192,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1192
1192
|
oQuickSelectDataSources: object
|
|
1193
1193
|
): this;
|
|
1194
1194
|
/**
|
|
1195
|
-
* @
|
|
1195
|
+
* @since 1.113.0
|
|
1196
1196
|
*
|
|
1197
1197
|
* Sets a new value for property {@link #getRenderSearchUrl renderSearchUrl}.
|
|
1198
1198
|
*
|
|
@@ -1210,7 +1210,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1210
1210
|
fnRenderSearchUrl: Function
|
|
1211
1211
|
): this;
|
|
1212
1212
|
/**
|
|
1213
|
-
* @
|
|
1213
|
+
* @since 1.100.0
|
|
1214
1214
|
*
|
|
1215
1215
|
* Sets a new value for property {@link #getResultViewSettings resultViewSettings}.
|
|
1216
1216
|
*
|
|
@@ -1234,7 +1234,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1234
1234
|
sResultViewSettings?: string
|
|
1235
1235
|
): this;
|
|
1236
1236
|
/**
|
|
1237
|
-
* @
|
|
1237
|
+
* @since 1.98.0
|
|
1238
1238
|
*
|
|
1239
1239
|
* Sets a new value for property {@link #getResultViewType resultViewType}.
|
|
1240
1240
|
*
|
|
@@ -1260,7 +1260,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1260
1260
|
sResultViewType?: string
|
|
1261
1261
|
): this;
|
|
1262
1262
|
/**
|
|
1263
|
-
* @
|
|
1263
|
+
* @since 1.98.0
|
|
1264
1264
|
*
|
|
1265
1265
|
* Sets a new value for property {@link #getResultViewTypes resultViewTypes}.
|
|
1266
1266
|
*
|
|
@@ -1285,7 +1285,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1285
1285
|
sResultViewTypes?: string[]
|
|
1286
1286
|
): this;
|
|
1287
1287
|
/**
|
|
1288
|
-
* @
|
|
1288
|
+
* @since 1.93.0
|
|
1289
1289
|
*
|
|
1290
1290
|
* Sets a new value for property {@link #getSearchOnStart searchOnStart}.
|
|
1291
1291
|
*
|
|
@@ -1305,7 +1305,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1305
1305
|
bSearchOnStart?: boolean
|
|
1306
1306
|
): this;
|
|
1307
1307
|
/**
|
|
1308
|
-
* @
|
|
1308
|
+
* @since 1.93.0
|
|
1309
1309
|
*
|
|
1310
1310
|
* Sets a new value for property {@link #getSearchTerm searchTerm}.
|
|
1311
1311
|
*
|
|
@@ -1324,7 +1324,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1324
1324
|
sSearchTerm?: string
|
|
1325
1325
|
): this;
|
|
1326
1326
|
/**
|
|
1327
|
-
* @
|
|
1327
|
+
* @since 1.113.0
|
|
1328
1328
|
*
|
|
1329
1329
|
* Sets a new value for property {@link #getSelectionChange selectionChange}.
|
|
1330
1330
|
*
|
|
@@ -1341,7 +1341,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1341
1341
|
fnSelectionChange: Function
|
|
1342
1342
|
): this;
|
|
1343
1343
|
/**
|
|
1344
|
-
* @
|
|
1344
|
+
* @since 1.93.0
|
|
1345
1345
|
*
|
|
1346
1346
|
* Sets a new value for property {@link #getSinaConfiguration sinaConfiguration}.
|
|
1347
1347
|
*
|
|
@@ -1358,7 +1358,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1358
1358
|
oSinaConfiguration: object
|
|
1359
1359
|
): this;
|
|
1360
1360
|
/**
|
|
1361
|
-
* @
|
|
1361
|
+
* @since 1.103.0
|
|
1362
1362
|
*
|
|
1363
1363
|
* Sets a new value for property {@link #getTabStripsFormatter tabStripsFormatter}.
|
|
1364
1364
|
*
|
|
@@ -1377,7 +1377,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1377
1377
|
fnTabStripsFormatter: Function
|
|
1378
1378
|
): this;
|
|
1379
1379
|
/**
|
|
1380
|
-
* @
|
|
1380
|
+
* @since 1.113.0
|
|
1381
1381
|
*
|
|
1382
1382
|
* Sets a new value for property {@link #getUpdateUrl updateUrl}.
|
|
1383
1383
|
*
|
|
@@ -1396,25 +1396,24 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1396
1396
|
bUpdateUrl?: boolean
|
|
1397
1397
|
): this;
|
|
1398
1398
|
}
|
|
1399
|
-
export default SearchCompositeControl;
|
|
1400
1399
|
|
|
1401
1400
|
export interface $SearchCompositeControlSettings extends $ControlSettings {
|
|
1402
1401
|
/**
|
|
1403
|
-
* @
|
|
1402
|
+
* @since 1.93.0
|
|
1404
1403
|
*
|
|
1405
1404
|
* An additional CSS class to add to this control
|
|
1406
1405
|
*/
|
|
1407
1406
|
cssClass?: string | PropertyBindingInfo;
|
|
1408
1407
|
|
|
1409
1408
|
/**
|
|
1410
|
-
* @
|
|
1409
|
+
* @since 1.93.0
|
|
1411
1410
|
*
|
|
1412
1411
|
* Defines the initial search term for the search input.
|
|
1413
1412
|
*/
|
|
1414
1413
|
searchTerm?: string | PropertyBindingInfo;
|
|
1415
1414
|
|
|
1416
1415
|
/**
|
|
1417
|
-
* @
|
|
1416
|
+
* @since 1.93.0
|
|
1418
1417
|
*
|
|
1419
1418
|
* Defines if the search composite control will send a search request after loading for the given term,
|
|
1420
1419
|
* data source and filter root condition settings.
|
|
@@ -1422,7 +1421,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1422
1421
|
searchOnStart?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1423
1422
|
|
|
1424
1423
|
/**
|
|
1425
|
-
* @
|
|
1424
|
+
* @since 1.98.0
|
|
1426
1425
|
*
|
|
1427
1426
|
* Defines the filter root condition of a filter tree which shall be applied to the search request. This
|
|
1428
1427
|
* control only allows filter trees which have a the following structure: complex condition (root level)
|
|
@@ -1433,21 +1432,21 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1433
1432
|
filterRootCondition?: object | PropertyBindingInfo | `{${string}}`;
|
|
1434
1433
|
|
|
1435
1434
|
/**
|
|
1436
|
-
* @
|
|
1435
|
+
* @since 1.93.0
|
|
1437
1436
|
*
|
|
1438
1437
|
* Configuration for the Enterprise Search Client API.
|
|
1439
1438
|
*/
|
|
1440
1439
|
sinaConfiguration?: object | PropertyBindingInfo | `{${string}}`;
|
|
1441
1440
|
|
|
1442
1441
|
/**
|
|
1443
|
-
* @
|
|
1442
|
+
* @since 1.98.0
|
|
1444
1443
|
*
|
|
1445
1444
|
* The id of the data source in which it will search right after initialization.
|
|
1446
1445
|
*/
|
|
1447
1446
|
dataSource?: string | PropertyBindingInfo;
|
|
1448
1447
|
|
|
1449
1448
|
/**
|
|
1450
|
-
* @
|
|
1449
|
+
* @since 1.98.0
|
|
1451
1450
|
*
|
|
1452
1451
|
* Defines selectable search result view types. The value can be set/get in attach event "searchFinished".
|
|
1453
1452
|
* Case 1: Search in Apps: result is displayed in a mandatory view type `["appSearchResult"]`, and it is
|
|
@@ -1460,7 +1459,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1460
1459
|
resultViewTypes?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
1461
1460
|
|
|
1462
1461
|
/**
|
|
1463
|
-
* @
|
|
1462
|
+
* @since 1.98.0
|
|
1464
1463
|
*
|
|
1465
1464
|
* Defines active search result view type. The value can be set/get in attach event "searchFinished", and
|
|
1466
1465
|
* it must be contained in resultViewTypes. Case 1, Search in Apps: result is displayed in a mandatory view
|
|
@@ -1474,7 +1473,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1474
1473
|
resultViewType?: string | PropertyBindingInfo;
|
|
1475
1474
|
|
|
1476
1475
|
/**
|
|
1477
|
-
* @
|
|
1476
|
+
* @since 1.100.0
|
|
1478
1477
|
*
|
|
1479
1478
|
* Defines a pair of search result view settings. The value is an object of properties `resultViewTypes`
|
|
1480
1479
|
* and `resultViewType`. An example: `{resultViewTypes: ["searchResultList", "searchResultTable"], resultViewType:
|
|
@@ -1486,7 +1485,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1486
1485
|
resultViewSettings?: string | PropertyBindingInfo;
|
|
1487
1486
|
|
|
1488
1487
|
/**
|
|
1489
|
-
* @
|
|
1488
|
+
* @since 1.103.0
|
|
1490
1489
|
*
|
|
1491
1490
|
* Function callback for formatting the datasource tabstrips in the top toolbar. To the callback function
|
|
1492
1491
|
* a list of datasources is passed. The callback functions return a modified list of datasources to be displayed
|
|
@@ -1511,7 +1510,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1511
1510
|
folderMode?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1512
1511
|
|
|
1513
1512
|
/**
|
|
1514
|
-
* @
|
|
1513
|
+
* @since 1.114.0
|
|
1515
1514
|
*
|
|
1516
1515
|
* In case folderMode is set to true this boolean indicates whether for the initial search the folder mode
|
|
1517
1516
|
* is enabled.
|
|
@@ -1519,7 +1518,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1519
1518
|
folderModeForInitialSearch?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1520
1519
|
|
|
1521
1520
|
/**
|
|
1522
|
-
* @
|
|
1521
|
+
* @since 1.106.0
|
|
1523
1522
|
*
|
|
1524
1523
|
* In case folder mode is active: Automatically switch result view type to list in search mode and to table
|
|
1525
1524
|
* in folder mode.
|
|
@@ -1530,7 +1529,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1530
1529
|
| `{${string}}`;
|
|
1531
1530
|
|
|
1532
1531
|
/**
|
|
1533
|
-
* @
|
|
1532
|
+
* @since 1.107.0
|
|
1534
1533
|
*
|
|
1535
1534
|
* Enables the query language for the hana_odata provider. With query language it is possible for the end
|
|
1536
1535
|
* user to enter complex search queries with logical operators.
|
|
@@ -1538,21 +1537,21 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1538
1537
|
enableQueryLanguage?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1539
1538
|
|
|
1540
1539
|
/**
|
|
1541
|
-
* @
|
|
1540
|
+
* @since 1.108.0
|
|
1542
1541
|
*
|
|
1543
1542
|
* Relevant for SAP partners and SAP, the "Application Component" you expect customers to create incidents.
|
|
1544
1543
|
*/
|
|
1545
1544
|
applicationComponent?: string | PropertyBindingInfo;
|
|
1546
1545
|
|
|
1547
1546
|
/**
|
|
1548
|
-
* @
|
|
1547
|
+
* @since 1.108.0
|
|
1549
1548
|
*
|
|
1550
1549
|
* Display a splitter bar to resize the left hand panel, containing all facets and filter criteria.
|
|
1551
1550
|
*/
|
|
1552
1551
|
facetPanelResizable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1553
1552
|
|
|
1554
1553
|
/**
|
|
1555
|
-
* @
|
|
1554
|
+
* @since 1.108.0
|
|
1556
1555
|
*
|
|
1557
1556
|
* Default size (percent) of the left hand panel, containing all facets and filter criteria. If "facetPanelResizable"
|
|
1558
1557
|
* is true, the width of the facet panel can be changed by the user.
|
|
@@ -1560,7 +1559,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1560
1559
|
facetPanelWidthInPercent?: float | PropertyBindingInfo | `{${string}}`;
|
|
1561
1560
|
|
|
1562
1561
|
/**
|
|
1563
|
-
* @
|
|
1562
|
+
* @since 1.94.0
|
|
1564
1563
|
*
|
|
1565
1564
|
* Whenever a search has no results, a 'No Results Page' is displayed. You can provide a custom page to
|
|
1566
1565
|
* be more specific and add some hints, links, buttons or other content.
|
|
@@ -1568,7 +1567,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1568
1567
|
getCustomNoResultScreen?: Function | PropertyBindingInfo | `{${string}}`;
|
|
1569
1568
|
|
|
1570
1569
|
/**
|
|
1571
|
-
* @
|
|
1570
|
+
* @since 1.93.0
|
|
1572
1571
|
*
|
|
1573
1572
|
* Shall the window title be overwritten by this control? If true, the control will set the current search
|
|
1574
1573
|
* condition as window title. If false, it will not set or update the window title.
|
|
@@ -1576,7 +1575,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1576
1575
|
overwriteBrowserTitle?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1577
1576
|
|
|
1578
1577
|
/**
|
|
1579
|
-
* @
|
|
1578
|
+
* @since 1.93.0
|
|
1580
1579
|
*
|
|
1581
1580
|
* Data source id which is set when the UI is loaded or filter is reset. If dataSource is also set, dataSource
|
|
1582
1581
|
* will be used during UI load and this parameter will used only after filter is reset.
|
|
@@ -1584,14 +1583,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1584
1583
|
defaultDataSource?: string | PropertyBindingInfo;
|
|
1585
1584
|
|
|
1586
1585
|
/**
|
|
1587
|
-
* @
|
|
1586
|
+
* @since 1.111.0
|
|
1588
1587
|
*
|
|
1589
1588
|
* The layout is optimized for object selection / value help (narrow view w/o facet panel).
|
|
1590
1589
|
*/
|
|
1591
1590
|
optimizeForValueHelp?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1592
1591
|
|
|
1593
1592
|
/**
|
|
1594
|
-
* @
|
|
1593
|
+
* @since 1.112.0
|
|
1595
1594
|
*
|
|
1596
1595
|
* Callback for filtering the datasources displayed in the datasource dropdown listbox. The callback gets
|
|
1597
1596
|
* a list of datsources and returns the filtered list of datasources.
|
|
@@ -1599,7 +1598,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1599
1598
|
filterDataSources?: Function | PropertyBindingInfo | `{${string}}`;
|
|
1600
1599
|
|
|
1601
1600
|
/**
|
|
1602
|
-
* @
|
|
1601
|
+
* @since 1.113.0
|
|
1603
1602
|
*
|
|
1604
1603
|
* A boolean which indicates whether the facet panel is initially openend or closed. This affects only the
|
|
1605
1604
|
* initial state of the facet panel. When not setting facetVisibility the initial state of the facet panel
|
|
@@ -1608,14 +1607,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1608
1607
|
facetVisibility?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1609
1608
|
|
|
1610
1609
|
/**
|
|
1611
|
-
* @
|
|
1610
|
+
* @since 1.113.0
|
|
1612
1611
|
*
|
|
1613
1612
|
* A boolean for enabling (business) object suggestions.
|
|
1614
1613
|
*/
|
|
1615
1614
|
boSuggestions?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1616
1615
|
|
|
1617
1616
|
/**
|
|
1618
|
-
* @
|
|
1617
|
+
* @since 1.113.0
|
|
1619
1618
|
*
|
|
1620
1619
|
* When set to true the facet panel is displayed also in case there are no search results.
|
|
1621
1620
|
*/
|
|
@@ -1625,14 +1624,14 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1625
1624
|
| `{${string}}`;
|
|
1626
1625
|
|
|
1627
1626
|
/**
|
|
1628
|
-
* @
|
|
1627
|
+
* @since 1.113.0
|
|
1629
1628
|
*
|
|
1630
1629
|
* A boolean indicating that the search state is written to the URL.
|
|
1631
1630
|
*/
|
|
1632
1631
|
updateUrl?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1633
1632
|
|
|
1634
1633
|
/**
|
|
1635
|
-
* @
|
|
1634
|
+
* @since 1.113.0
|
|
1636
1635
|
*
|
|
1637
1636
|
* A callback for rendering the search URL. The callback gets a list of url encoded parameters and returns
|
|
1638
1637
|
* the URL string. Typically you need to register this callback in case updateUrl=true.
|
|
@@ -1640,7 +1639,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1640
1639
|
renderSearchUrl?: Function | PropertyBindingInfo | `{${string}}`;
|
|
1641
1640
|
|
|
1642
1641
|
/**
|
|
1643
|
-
* @
|
|
1642
|
+
* @since 1.113.0
|
|
1644
1643
|
*
|
|
1645
1644
|
* A callback for checking whether a URL is a search URL. The callback receives a URL and returns true in
|
|
1646
1645
|
* case the URL is a search URL. Typically you need to register this callback in case updateUrl=true.
|
|
@@ -1648,7 +1647,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1648
1647
|
isSearchUrl?: Function | PropertyBindingInfo | `{${string}}`;
|
|
1649
1648
|
|
|
1650
1649
|
/**
|
|
1651
|
-
* @
|
|
1650
|
+
* @since 1.113.0
|
|
1652
1651
|
*
|
|
1653
1652
|
* A callback for parsing URL parameters. The callback receices URL parameters and returns modified URL
|
|
1654
1653
|
* parameters. This is an optional callback. Also in case you set updateUrl=true typcically this callback
|
|
@@ -1657,28 +1656,28 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1657
1656
|
parseSearchUrlParameters?: Function | PropertyBindingInfo | `{${string}}`;
|
|
1658
1657
|
|
|
1659
1658
|
/**
|
|
1660
|
-
* @
|
|
1659
|
+
* @since 1.113.0
|
|
1661
1660
|
*
|
|
1662
1661
|
* A list of datasources to be displayed in the facet panel in the collection area.
|
|
1663
1662
|
*/
|
|
1664
1663
|
quickSelectDataSources?: object | PropertyBindingInfo | `{${string}}`;
|
|
1665
1664
|
|
|
1666
1665
|
/**
|
|
1667
|
-
* @
|
|
1666
|
+
* @since 1.113.0
|
|
1668
1667
|
*
|
|
1669
1668
|
* A callback which is called whenever the selection of result list items changes.
|
|
1670
1669
|
*/
|
|
1671
1670
|
selectionChange?: Function | PropertyBindingInfo | `{${string}}`;
|
|
1672
1671
|
|
|
1673
1672
|
/**
|
|
1674
|
-
* @
|
|
1673
|
+
* @since 1.113.0
|
|
1675
1674
|
*
|
|
1676
1675
|
* A callback which is called after the initialization of the search composite control.
|
|
1677
1676
|
*/
|
|
1678
1677
|
initAsync?: Function | PropertyBindingInfo | `{${string}}`;
|
|
1679
1678
|
|
|
1680
1679
|
/**
|
|
1681
|
-
* @
|
|
1680
|
+
* @since 1.96.0
|
|
1682
1681
|
*
|
|
1683
1682
|
* Enables the multiselection mode of search result items. A checkbox is provided for each result item if
|
|
1684
1683
|
* the value is true.
|
|
@@ -1689,7 +1688,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1689
1688
|
| `{${string}}`;
|
|
1690
1689
|
|
|
1691
1690
|
/**
|
|
1692
|
-
* @
|
|
1691
|
+
* @since 1.96.0
|
|
1693
1692
|
*
|
|
1694
1693
|
* The maximal count of search result items displayed on a page after a search. By clicking Show More button,
|
|
1695
1694
|
* another page of result items of the same count (if available) will be displayed.
|
|
@@ -1712,9 +1711,13 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1712
1711
|
searchFinished?: (oEvent: Event) => void;
|
|
1713
1712
|
}
|
|
1714
1713
|
|
|
1715
|
-
export interface $
|
|
1714
|
+
export interface SearchCompositeControl$SearchFinishedEventParameters {}
|
|
1716
1715
|
|
|
1717
|
-
export
|
|
1716
|
+
export type SearchCompositeControl$SearchFinishedEvent = Event<SearchCompositeControl$SearchFinishedEventParameters>;
|
|
1717
|
+
|
|
1718
|
+
export interface SearchCompositeControl$SearchStartedEventParameters {}
|
|
1719
|
+
|
|
1720
|
+
export type SearchCompositeControl$SearchStartedEvent = Event<SearchCompositeControl$SearchStartedEventParameters>;
|
|
1718
1721
|
}
|
|
1719
1722
|
|
|
1720
1723
|
declare namespace sap {
|