@sapui5/ts-types 1.112.3 → 1.113.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +59 -2
  4. package/types/sap.chart.d.ts +15 -1
  5. package/types/sap.collaboration.d.ts +33 -1
  6. package/types/sap.esh.search.ui.d.ts +405 -1
  7. package/types/sap.f.d.ts +75 -38
  8. package/types/sap.fe.core.d.ts +28 -2
  9. package/types/sap.fe.macros.d.ts +52 -69
  10. package/types/sap.fe.navigation.d.ts +2 -0
  11. package/types/sap.fe.templates.d.ts +6 -0
  12. package/types/sap.fe.test.d.ts +7 -1
  13. package/types/sap.feedback.ui.d.ts +2 -6
  14. package/types/sap.gantt.d.ts +238 -16
  15. package/types/sap.insights.d.ts +1 -1
  16. package/types/sap.landvisz.d.ts +27 -1
  17. package/types/sap.m.d.ts +1854 -85
  18. package/types/sap.makit.d.ts +13 -1
  19. package/types/sap.me.d.ts +17 -1
  20. package/types/sap.ndc.d.ts +10 -2
  21. package/types/sap.ovp.d.ts +7 -1
  22. package/types/sap.rules.ui.d.ts +9 -1
  23. package/types/sap.sac.df.d.ts +62 -1
  24. package/types/sap.sac.grid.d.ts +1 -1
  25. package/types/sap.suite.ui.commons.d.ts +272 -2
  26. package/types/sap.suite.ui.generic.template.d.ts +180 -1
  27. package/types/sap.suite.ui.microchart.d.ts +37 -1
  28. package/types/sap.tnt.d.ts +7 -1
  29. package/types/sap.ui.codeeditor.d.ts +5 -1
  30. package/types/sap.ui.commons.d.ts +197 -1
  31. package/types/sap.ui.comp.d.ts +314 -7
  32. package/types/sap.ui.core.d.ts +1508 -518
  33. package/types/sap.ui.dt.d.ts +1 -1
  34. package/types/sap.ui.export.d.ts +1 -1
  35. package/types/sap.ui.fl.d.ts +13 -1
  36. package/types/sap.ui.generic.app.d.ts +20 -7
  37. package/types/sap.ui.generic.template.d.ts +1 -1
  38. package/types/sap.ui.integration.d.ts +52 -19
  39. package/types/sap.ui.layout.d.ts +43 -1
  40. package/types/sap.ui.mdc.d.ts +1 -1
  41. package/types/sap.ui.richtexteditor.d.ts +11 -1
  42. package/types/sap.ui.rta.d.ts +1 -1
  43. package/types/sap.ui.suite.d.ts +5 -1
  44. package/types/sap.ui.support.d.ts +1 -1
  45. package/types/sap.ui.table.d.ts +63 -7
  46. package/types/sap.ui.testrecorder.d.ts +1 -1
  47. package/types/sap.ui.unified.d.ts +308 -4
  48. package/types/sap.ui.ux3.d.ts +147 -1
  49. package/types/sap.ui.vbm.d.ts +122 -1
  50. package/types/sap.ui.vk.d.ts +375 -2
  51. package/types/sap.ui.vtm.d.ts +73 -1
  52. package/types/sap.ui.webc.common.d.ts +1 -1
  53. package/types/sap.ui.webc.fiori.d.ts +63 -1
  54. package/types/sap.ui.webc.main.d.ts +189 -5
  55. package/types/sap.uiext.inbox.d.ts +27 -1
  56. package/types/sap.ushell.d.ts +375 -79
  57. package/types/sap.ushell_abap.d.ts +1 -1
  58. package/types/sap.uxap.d.ts +26 -1
  59. package/types/sap.viz.d.ts +229 -1
  60. package/types/sap.webanalytics.core.d.ts +1 -1
  61. package/types/sap.zen.commons.d.ts +1 -1
  62. package/types/sap.zen.crosstab.d.ts +1 -1
  63. package/types/sap.zen.dsh.d.ts +10 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.112.0
1
+ // For Library Version: 1.113.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace esh {
@@ -247,6 +247,112 @@ declare namespace sap {
247
247
  | sap.ui.base.ManagedObject.PropertyBindingInfo
248
248
  | `{${string}}`;
249
249
 
250
+ /**
251
+ * @SINCE 1.113.0
252
+ *
253
+ * A boolean which indicates whether the facet panel is initially openend or closed. This affects only the
254
+ * initial state of the facet panel. When not setting facetVisibility the initial state of the facet panel
255
+ * typically is taken from the user personalization storage.
256
+ */
257
+ facetVisibility?:
258
+ | boolean
259
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
260
+ | `{${string}}`;
261
+
262
+ /**
263
+ * @SINCE 1.113.0
264
+ *
265
+ * A boolean for enabling (business) object suggestions.
266
+ */
267
+ boSuggestions?:
268
+ | boolean
269
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
270
+ | `{${string}}`;
271
+
272
+ /**
273
+ * @SINCE 1.113.0
274
+ *
275
+ * When set to true the facet panel is displayed also in case there are no search results.
276
+ */
277
+ displayFacetPanelInCaseOfNoResults?:
278
+ | boolean
279
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
280
+ | `{${string}}`;
281
+
282
+ /**
283
+ * @SINCE 1.113.0
284
+ *
285
+ * A boolean indicating that the search state is written to the URL.
286
+ */
287
+ updateUrl?:
288
+ | boolean
289
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
290
+ | `{${string}}`;
291
+
292
+ /**
293
+ * @SINCE 1.113.0
294
+ *
295
+ * A callback for rendering the search URL. The callback gets a list of url encoded parameters and returns
296
+ * the URL string. Typically you need to register this callback in case updateUrl=true.
297
+ */
298
+ renderSearchUrl?:
299
+ | Function
300
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
301
+ | `{${string}}`;
302
+
303
+ /**
304
+ * @SINCE 1.113.0
305
+ *
306
+ * A callback for checking whether a URL is a search URL. The callback receives a URL and returns true in
307
+ * case the URL is a search URL. Typically you need to register this callback in case updateUrl=true.
308
+ */
309
+ isSearchUrl?:
310
+ | Function
311
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
312
+ | `{${string}}`;
313
+
314
+ /**
315
+ * @SINCE 1.113.0
316
+ *
317
+ * A callback for parsing URL parameters. The callback receices URL parameters and returns modified URL
318
+ * parameters. This is an optional callback. Also in case you set updateUrl=true typcically this callback
319
+ * is not needed.
320
+ */
321
+ parseSearchUrlParameters?:
322
+ | Function
323
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
324
+ | `{${string}}`;
325
+
326
+ /**
327
+ * @SINCE 1.113.0
328
+ *
329
+ * A list of datasources to be displayed in the facet panel in the collection area.
330
+ */
331
+ quickSelectDataSources?:
332
+ | object
333
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
334
+ | `{${string}}`;
335
+
336
+ /**
337
+ * @SINCE 1.113.0
338
+ *
339
+ * A callback which is called whenever the selection of result list items changes.
340
+ */
341
+ selectionChange?:
342
+ | Function
343
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
344
+ | `{${string}}`;
345
+
346
+ /**
347
+ * @SINCE 1.113.0
348
+ *
349
+ * A callback which is called after the initialization of the search composite control.
350
+ */
351
+ initAsync?:
352
+ | Function
353
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
354
+ | `{${string}}`;
355
+
250
356
  /**
251
357
  * Control instances which are part of this composite control.
252
358
  */
@@ -488,6 +594,8 @@ declare namespace sap {
488
594
  oListener?: object
489
595
  ): this;
490
596
  /**
597
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
598
+ *
491
599
  * Fires event {@link #event:searchFinished searchFinished} to attached listeners.
492
600
  *
493
601
  * @returns Reference to `this` in order to allow method chaining
@@ -499,6 +607,8 @@ declare namespace sap {
499
607
  mParameters?: object
500
608
  ): this;
501
609
  /**
610
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
611
+ *
502
612
  * Fires event {@link #event:searchStarted searchStarted} to attached listeners.
503
613
  *
504
614
  * @returns Reference to `this` in order to allow method chaining
@@ -534,6 +644,18 @@ declare namespace sap {
534
644
  * @returns Value of property `autoAdjustResultViewTypeInFolderMode`
535
645
  */
536
646
  getAutoAdjustResultViewTypeInFolderMode(): boolean;
647
+ /**
648
+ * @SINCE 1.113.0
649
+ *
650
+ * Gets current value of property {@link #getBoSuggestions boSuggestions}.
651
+ *
652
+ * A boolean for enabling (business) object suggestions.
653
+ *
654
+ * Default value is `false`.
655
+ *
656
+ * @returns Value of property `boSuggestions`
657
+ */
658
+ getBoSuggestions(): boolean;
537
659
  /**
538
660
  * Gets content of aggregation {@link #getContent content}.
539
661
  *
@@ -571,6 +693,18 @@ declare namespace sap {
571
693
  * @returns Value of property `defaultDataSource`
572
694
  */
573
695
  getDefaultDataSource(): string;
696
+ /**
697
+ * @SINCE 1.113.0
698
+ *
699
+ * Gets current value of property {@link #getDisplayFacetPanelInCaseOfNoResults displayFacetPanelInCaseOfNoResults}.
700
+ *
701
+ * When set to true the facet panel is displayed also in case there are no search results.
702
+ *
703
+ * Default value is `false`.
704
+ *
705
+ * @returns Value of property `displayFacetPanelInCaseOfNoResults`
706
+ */
707
+ getDisplayFacetPanelInCaseOfNoResults(): boolean;
574
708
  /**
575
709
  * @SINCE 1.107.0
576
710
  *
@@ -609,6 +743,18 @@ declare namespace sap {
609
743
  * @returns Value of property `facetPanelWidthInPercent`
610
744
  */
611
745
  getFacetPanelWidthInPercent(): float;
746
+ /**
747
+ * @SINCE 1.113.0
748
+ *
749
+ * Gets current value of property {@link #getFacetVisibility facetVisibility}.
750
+ *
751
+ * A boolean which indicates whether the facet panel is initially openend or closed. This affects only the
752
+ * initial state of the facet panel. When not setting facetVisibility the initial state of the facet panel
753
+ * typically is taken from the user personalization storage.
754
+ *
755
+ * @returns Value of property `facetVisibility`
756
+ */
757
+ getFacetVisibility(): boolean;
612
758
  /**
613
759
  * @SINCE 1.112.0
614
760
  *
@@ -666,6 +812,27 @@ declare namespace sap {
666
812
  * @returns Value of property `getCustomNoResultScreen`
667
813
  */
668
814
  getGetCustomNoResultScreen(): Function;
815
+ /**
816
+ * @SINCE 1.113.0
817
+ *
818
+ * Gets current value of property {@link #getInitAsync initAsync}.
819
+ *
820
+ * A callback which is called after the initialization of the search composite control.
821
+ *
822
+ * @returns Value of property `initAsync`
823
+ */
824
+ getInitAsync(): Function;
825
+ /**
826
+ * @SINCE 1.113.0
827
+ *
828
+ * Gets current value of property {@link #getIsSearchUrl isSearchUrl}.
829
+ *
830
+ * A callback for checking whether a URL is a search URL. The callback receives a URL and returns true in
831
+ * case the URL is a search URL. Typically you need to register this callback in case updateUrl=true.
832
+ *
833
+ * @returns Value of property `isSearchUrl`
834
+ */
835
+ getIsSearchUrl(): Function;
669
836
  /**
670
837
  * @SINCE 1.111.0
671
838
  *
@@ -687,6 +854,39 @@ declare namespace sap {
687
854
  * @returns Value of property `overwriteBrowserTitle`
688
855
  */
689
856
  getOverwriteBrowserTitle(): boolean;
857
+ /**
858
+ * @SINCE 1.113.0
859
+ *
860
+ * Gets current value of property {@link #getParseSearchUrlParameters parseSearchUrlParameters}.
861
+ *
862
+ * A callback for parsing URL parameters. The callback receices URL parameters and returns modified URL
863
+ * parameters. This is an optional callback. Also in case you set updateUrl=true typcically this callback
864
+ * is not needed.
865
+ *
866
+ * @returns Value of property `parseSearchUrlParameters`
867
+ */
868
+ getParseSearchUrlParameters(): Function;
869
+ /**
870
+ * @SINCE 1.113.0
871
+ *
872
+ * Gets current value of property {@link #getQuickSelectDataSources quickSelectDataSources}.
873
+ *
874
+ * A list of datasources to be displayed in the facet panel in the collection area.
875
+ *
876
+ * @returns Value of property `quickSelectDataSources`
877
+ */
878
+ getQuickSelectDataSources(): object;
879
+ /**
880
+ * @SINCE 1.113.0
881
+ *
882
+ * Gets current value of property {@link #getRenderSearchUrl renderSearchUrl}.
883
+ *
884
+ * A callback for rendering the search URL. The callback gets a list of url encoded parameters and returns
885
+ * the URL string. Typically you need to register this callback in case updateUrl=true.
886
+ *
887
+ * @returns Value of property `renderSearchUrl`
888
+ */
889
+ getRenderSearchUrl(): Function;
690
890
  /**
691
891
  * @SINCE 1.100.0
692
892
  *
@@ -766,6 +966,16 @@ declare namespace sap {
766
966
  * @returns Value of property `searchTerm`
767
967
  */
768
968
  getSearchTerm(): string;
969
+ /**
970
+ * @SINCE 1.113.0
971
+ *
972
+ * Gets current value of property {@link #getSelectionChange selectionChange}.
973
+ *
974
+ * A callback which is called whenever the selection of result list items changes.
975
+ *
976
+ * @returns Value of property `selectionChange`
977
+ */
978
+ getSelectionChange(): Function;
769
979
  /**
770
980
  * @SINCE 1.93.0
771
981
  *
@@ -788,6 +998,18 @@ declare namespace sap {
788
998
  * @returns Value of property `tabStripsFormatter`
789
999
  */
790
1000
  getTabStripsFormatter(): Function;
1001
+ /**
1002
+ * @SINCE 1.113.0
1003
+ *
1004
+ * Gets current value of property {@link #getUpdateUrl updateUrl}.
1005
+ *
1006
+ * A boolean indicating that the search state is written to the URL.
1007
+ *
1008
+ * Default value is `true`.
1009
+ *
1010
+ * @returns Value of property `updateUrl`
1011
+ */
1012
+ getUpdateUrl(): boolean;
791
1013
  /**
792
1014
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
793
1015
  * its index if found or -1 otherwise.
@@ -875,6 +1097,25 @@ declare namespace sap {
875
1097
  */
876
1098
  bAutoAdjustResultViewTypeInFolderMode?: boolean
877
1099
  ): this;
1100
+ /**
1101
+ * @SINCE 1.113.0
1102
+ *
1103
+ * Sets a new value for property {@link #getBoSuggestions boSuggestions}.
1104
+ *
1105
+ * A boolean for enabling (business) object suggestions.
1106
+ *
1107
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1108
+ *
1109
+ * Default value is `false`.
1110
+ *
1111
+ * @returns Reference to `this` in order to allow method chaining
1112
+ */
1113
+ setBoSuggestions(
1114
+ /**
1115
+ * New value for property `boSuggestions`
1116
+ */
1117
+ bBoSuggestions?: boolean
1118
+ ): this;
878
1119
  /**
879
1120
  * @SINCE 1.93.0
880
1121
  *
@@ -927,6 +1168,25 @@ declare namespace sap {
927
1168
  */
928
1169
  sDefaultDataSource: string
929
1170
  ): this;
1171
+ /**
1172
+ * @SINCE 1.113.0
1173
+ *
1174
+ * Sets a new value for property {@link #getDisplayFacetPanelInCaseOfNoResults displayFacetPanelInCaseOfNoResults}.
1175
+ *
1176
+ * When set to true the facet panel is displayed also in case there are no search results.
1177
+ *
1178
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1179
+ *
1180
+ * Default value is `false`.
1181
+ *
1182
+ * @returns Reference to `this` in order to allow method chaining
1183
+ */
1184
+ setDisplayFacetPanelInCaseOfNoResults(
1185
+ /**
1186
+ * New value for property `displayFacetPanelInCaseOfNoResults`
1187
+ */
1188
+ bDisplayFacetPanelInCaseOfNoResults?: boolean
1189
+ ): this;
930
1190
  /**
931
1191
  * @SINCE 1.107.0
932
1192
  *
@@ -986,6 +1246,25 @@ declare namespace sap {
986
1246
  */
987
1247
  fFacetPanelWidthInPercent?: float
988
1248
  ): this;
1249
+ /**
1250
+ * @SINCE 1.113.0
1251
+ *
1252
+ * Sets a new value for property {@link #getFacetVisibility facetVisibility}.
1253
+ *
1254
+ * A boolean which indicates whether the facet panel is initially openend or closed. This affects only the
1255
+ * initial state of the facet panel. When not setting facetVisibility the initial state of the facet panel
1256
+ * typically is taken from the user personalization storage.
1257
+ *
1258
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1259
+ *
1260
+ * @returns Reference to `this` in order to allow method chaining
1261
+ */
1262
+ setFacetVisibility(
1263
+ /**
1264
+ * New value for property `facetVisibility`
1265
+ */
1266
+ bFacetVisibility: boolean
1267
+ ): this;
989
1268
  /**
990
1269
  * @SINCE 1.112.0
991
1270
  *
@@ -1069,6 +1348,41 @@ declare namespace sap {
1069
1348
  */
1070
1349
  fnGetCustomNoResultScreen: Function
1071
1350
  ): this;
1351
+ /**
1352
+ * @SINCE 1.113.0
1353
+ *
1354
+ * Sets a new value for property {@link #getInitAsync initAsync}.
1355
+ *
1356
+ * A callback which is called after the initialization of the search composite control.
1357
+ *
1358
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1359
+ *
1360
+ * @returns Reference to `this` in order to allow method chaining
1361
+ */
1362
+ setInitAsync(
1363
+ /**
1364
+ * New value for property `initAsync`
1365
+ */
1366
+ fnInitAsync: Function
1367
+ ): this;
1368
+ /**
1369
+ * @SINCE 1.113.0
1370
+ *
1371
+ * Sets a new value for property {@link #getIsSearchUrl isSearchUrl}.
1372
+ *
1373
+ * A callback for checking whether a URL is a search URL. The callback receives a URL and returns true in
1374
+ * case the URL is a search URL. Typically you need to register this callback in case updateUrl=true.
1375
+ *
1376
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1377
+ *
1378
+ * @returns Reference to `this` in order to allow method chaining
1379
+ */
1380
+ setIsSearchUrl(
1381
+ /**
1382
+ * New value for property `isSearchUrl`
1383
+ */
1384
+ fnIsSearchUrl: Function
1385
+ ): this;
1072
1386
  /**
1073
1387
  * @SINCE 1.111.0
1074
1388
  *
@@ -1104,6 +1418,60 @@ declare namespace sap {
1104
1418
  */
1105
1419
  bOverwriteBrowserTitle: boolean
1106
1420
  ): this;
1421
+ /**
1422
+ * @SINCE 1.113.0
1423
+ *
1424
+ * Sets a new value for property {@link #getParseSearchUrlParameters parseSearchUrlParameters}.
1425
+ *
1426
+ * A callback for parsing URL parameters. The callback receices URL parameters and returns modified URL
1427
+ * parameters. This is an optional callback. Also in case you set updateUrl=true typcically this callback
1428
+ * is not needed.
1429
+ *
1430
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1431
+ *
1432
+ * @returns Reference to `this` in order to allow method chaining
1433
+ */
1434
+ setParseSearchUrlParameters(
1435
+ /**
1436
+ * New value for property `parseSearchUrlParameters`
1437
+ */
1438
+ fnParseSearchUrlParameters: Function
1439
+ ): this;
1440
+ /**
1441
+ * @SINCE 1.113.0
1442
+ *
1443
+ * Sets a new value for property {@link #getQuickSelectDataSources quickSelectDataSources}.
1444
+ *
1445
+ * A list of datasources to be displayed in the facet panel in the collection area.
1446
+ *
1447
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1448
+ *
1449
+ * @returns Reference to `this` in order to allow method chaining
1450
+ */
1451
+ setQuickSelectDataSources(
1452
+ /**
1453
+ * New value for property `quickSelectDataSources`
1454
+ */
1455
+ oQuickSelectDataSources: object
1456
+ ): this;
1457
+ /**
1458
+ * @SINCE 1.113.0
1459
+ *
1460
+ * Sets a new value for property {@link #getRenderSearchUrl renderSearchUrl}.
1461
+ *
1462
+ * A callback for rendering the search URL. The callback gets a list of url encoded parameters and returns
1463
+ * the URL string. Typically you need to register this callback in case updateUrl=true.
1464
+ *
1465
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1466
+ *
1467
+ * @returns Reference to `this` in order to allow method chaining
1468
+ */
1469
+ setRenderSearchUrl(
1470
+ /**
1471
+ * New value for property `renderSearchUrl`
1472
+ */
1473
+ fnRenderSearchUrl: Function
1474
+ ): this;
1107
1475
  /**
1108
1476
  * @SINCE 1.100.0
1109
1477
  *
@@ -1218,6 +1586,23 @@ declare namespace sap {
1218
1586
  */
1219
1587
  sSearchTerm?: string
1220
1588
  ): this;
1589
+ /**
1590
+ * @SINCE 1.113.0
1591
+ *
1592
+ * Sets a new value for property {@link #getSelectionChange selectionChange}.
1593
+ *
1594
+ * A callback which is called whenever the selection of result list items changes.
1595
+ *
1596
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1597
+ *
1598
+ * @returns Reference to `this` in order to allow method chaining
1599
+ */
1600
+ setSelectionChange(
1601
+ /**
1602
+ * New value for property `selectionChange`
1603
+ */
1604
+ fnSelectionChange: Function
1605
+ ): this;
1221
1606
  /**
1222
1607
  * @SINCE 1.93.0
1223
1608
  *
@@ -1254,6 +1639,25 @@ declare namespace sap {
1254
1639
  */
1255
1640
  fnTabStripsFormatter: Function
1256
1641
  ): this;
1642
+ /**
1643
+ * @SINCE 1.113.0
1644
+ *
1645
+ * Sets a new value for property {@link #getUpdateUrl updateUrl}.
1646
+ *
1647
+ * A boolean indicating that the search state is written to the URL.
1648
+ *
1649
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1650
+ *
1651
+ * Default value is `true`.
1652
+ *
1653
+ * @returns Reference to `this` in order to allow method chaining
1654
+ */
1655
+ setUpdateUrl(
1656
+ /**
1657
+ * New value for property `updateUrl`
1658
+ */
1659
+ bUpdateUrl?: boolean
1660
+ ): this;
1257
1661
  }
1258
1662
  }
1259
1663
  }