@sapui5/ts-types 1.115.0 → 1.115.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -0
  3. package/types/sap.chart.d.ts +92 -49
  4. package/types/sap.f.d.ts +775 -686
  5. package/types/sap.fe.core.d.ts +57 -57
  6. package/types/sap.fe.macros.d.ts +66 -10
  7. package/types/sap.fe.navigation.d.ts +5 -5
  8. package/types/sap.fe.placeholder.d.ts +3 -0
  9. package/types/sap.fe.templates.d.ts +5 -6
  10. package/types/sap.fe.test.d.ts +4 -4
  11. package/types/sap.fe.tools.d.ts +3 -0
  12. package/types/sap.m.d.ts +7827 -6468
  13. package/types/sap.makit.d.ts +77 -30
  14. package/types/sap.me.d.ts +108 -75
  15. package/types/sap.ndc.d.ts +42 -30
  16. package/types/sap.suite.ui.generic.template.d.ts +72 -64
  17. package/types/sap.suite.ui.microchart.d.ts +354 -225
  18. package/types/sap.tnt.d.ts +67 -73
  19. package/types/sap.ui.codeeditor.d.ts +38 -34
  20. package/types/sap.ui.commons.d.ts +841 -675
  21. package/types/sap.ui.comp.d.ts +2545 -2065
  22. package/types/sap.ui.core.d.ts +2532 -1908
  23. package/types/sap.ui.dt.d.ts +1 -1
  24. package/types/sap.ui.export.d.ts +42 -27
  25. package/types/sap.ui.fl.d.ts +78 -56
  26. package/types/sap.ui.integration.d.ts +345 -299
  27. package/types/sap.ui.layout.d.ts +347 -337
  28. package/types/sap.ui.mdc.d.ts +959 -801
  29. package/types/sap.ui.richtexteditor.d.ts +62 -37
  30. package/types/sap.ui.rta.d.ts +7 -7
  31. package/types/sap.ui.suite.d.ts +23 -8
  32. package/types/sap.ui.support.d.ts +11 -11
  33. package/types/sap.ui.table.d.ts +476 -420
  34. package/types/sap.ui.testrecorder.d.ts +1 -1
  35. package/types/sap.ui.unified.d.ts +1186 -909
  36. package/types/sap.ui.ux3.d.ts +957 -736
  37. package/types/sap.ui.webc.common.d.ts +9 -9
  38. package/types/sap.ui.webc.fiori.d.ts +519 -386
  39. package/types/sap.ui.webc.main.d.ts +1377 -902
  40. package/types/sap.uiext.inbox.d.ts +135 -31
  41. package/types/sap.ushell.d.ts +379 -267
  42. package/types/sap.ushell_abap.d.ts +1 -1
  43. package/types/sap.uxap.d.ts +280 -242
  44. package/types/sap.viz.d.ts +1677 -601
@@ -1,18 +1,18 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.115.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ushell {
5
5
  /**
6
- * @SINCE 1.15.0
6
+ * @since 1.15.0
7
7
  *
8
8
  * See:
9
9
  * sap.ushell.Container.getServiceAsync()
10
10
  */
11
11
  namespace services {
12
12
  /**
13
- * @SINCE 1.62.0
13
+ * @since 1.62.0
14
14
  * @deprecated
15
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
16
16
  */
17
17
  export const ContentExtensionAdapterFactory: undefined;
18
18
 
@@ -47,7 +47,7 @@ declare namespace sap {
47
47
 
48
48
  namespace Personalization {
49
49
  /**
50
- * @SINCE 1.22.0
50
+ * @since 1.22.0
51
51
  *
52
52
  * The container is the anchor object of the unified shell personalization in container mode.
53
53
  */
@@ -58,7 +58,7 @@ declare namespace sap {
58
58
  constructor();
59
59
 
60
60
  /**
61
- * @SINCE 1.22.0
61
+ * @since 1.22.0
62
62
  *
63
63
  * Returns an array with all internal keys of direct items in the container.
64
64
  *
@@ -66,13 +66,13 @@ declare namespace sap {
66
66
  */
67
67
  _getInternalKeys(): any[];
68
68
  /**
69
- * @SINCE 1.22.0
69
+ * @since 1.22.0
70
70
  *
71
71
  * clears the local copy data of this container
72
72
  */
73
73
  clear(): void;
74
74
  /**
75
- * @SINCE 1.22.0
75
+ * @since 1.22.0
76
76
  *
77
77
  * Checks if a specific direct item is contained in the container.
78
78
  *
@@ -85,7 +85,7 @@ declare namespace sap {
85
85
  sItemKey: string
86
86
  ): boolean;
87
87
  /**
88
- * @SINCE 1.22.0
88
+ * @since 1.22.0
89
89
  *
90
90
  * Deletes a direct item from the container. In case the item does not exist, nothing happens.
91
91
  */
@@ -96,7 +96,7 @@ declare namespace sap {
96
96
  sItemKey: string
97
97
  ): void;
98
98
  /**
99
- * @SINCE 1.22.0
99
+ * @since 1.22.0
100
100
  *
101
101
  * flush all pending request; The result of the promise may reflect the last pending operation in the queue
102
102
  *
@@ -104,7 +104,7 @@ declare namespace sap {
104
104
  */
105
105
  flush(): object;
106
106
  /**
107
- * @SINCE 1.22.0
107
+ * @since 1.22.0
108
108
  *
109
109
  * Returns an array with the keys of direct items in the container.
110
110
  *
@@ -112,7 +112,7 @@ declare namespace sap {
112
112
  */
113
113
  getItemKeys(): any[];
114
114
  /**
115
- * @SINCE 1.22.0
115
+ * @since 1.22.0
116
116
  *
117
117
  * Returns the value for a direct item from the container. (Value semantics, new copy is returned)
118
118
  *
@@ -126,7 +126,7 @@ declare namespace sap {
126
126
  sItemKey: string
127
127
  ): object;
128
128
  /**
129
- * @SINCE 1.28.0
129
+ * @since 1.28.0
130
130
  *
131
131
  * return the container key as a string variable
132
132
  *
@@ -134,7 +134,7 @@ declare namespace sap {
134
134
  */
135
135
  getKey(): string;
136
136
  /**
137
- * @SINCE 1.28.0
137
+ * @since 1.28.0
138
138
  *
139
139
  * Return an instance unmodifiable container instance. There is one instance of this wrapper per container.
140
140
  * It will permit all read accesses to the container, but block all modifying accesses.
@@ -143,14 +143,14 @@ declare namespace sap {
143
143
  */
144
144
  getUnmodifiableContainer(): object;
145
145
  /**
146
- * @SINCE 1.22.0
146
+ * @since 1.22.0
147
147
  * @deprecated (since 1.31) - Support for this function has been discontinued.
148
148
  *
149
149
  * return the validity of this container only for testing!
150
150
  */
151
151
  getValidity(): void;
152
152
  /**
153
- * @SINCE 1.22.0
153
+ * @since 1.22.0
154
154
  *
155
155
  * (Re)loads the current container data from the underlying storage asynchronously. The current local data
156
156
  * is discarded.
@@ -164,7 +164,7 @@ declare namespace sap {
164
164
  */
165
165
  load(): object;
166
166
  /**
167
- * @SINCE 1.22.0
167
+ * @since 1.22.0
168
168
  *
169
169
  * Attempts to save the current container data at the underlying storage asynchronously. The current state
170
170
  * is serialized.
@@ -175,7 +175,7 @@ declare namespace sap {
175
175
  */
176
176
  save(): object;
177
177
  /**
178
- * @SINCE 1.22.0
178
+ * @since 1.22.0
179
179
  *
180
180
  * Save the current container data at the underlying storage asynchronously at the earlies nDelayInMilliseconds
181
181
  * seconds before. The current state is serialized.
@@ -186,7 +186,7 @@ declare namespace sap {
186
186
  */
187
187
  saveDeferred(): object;
188
188
  /**
189
- * @SINCE 1.22.0
189
+ * @since 1.22.0
190
190
  *
191
191
  * Sets the value of a direct item in the container. In case the item is already existing its value is overwritten.
192
192
  * In case it is not existing a new item with this key and value is created. The value is serialized during
@@ -204,7 +204,7 @@ declare namespace sap {
204
204
  ): void;
205
205
  }
206
206
  /**
207
- * @SINCE 1.22.0
207
+ * @since 1.22.0
208
208
  *
209
209
  * The personalization variant contains personalization data. It is used in the personalization container
210
210
  * mode.
@@ -216,7 +216,7 @@ declare namespace sap {
216
216
  constructor();
217
217
 
218
218
  /**
219
- * @SINCE 1.18.0
219
+ * @since 1.18.0
220
220
  *
221
221
  * Checks if a specific item is contained in this variant.
222
222
  *
@@ -229,7 +229,7 @@ declare namespace sap {
229
229
  sItemKey: string
230
230
  ): boolean;
231
231
  /**
232
- * @SINCE 1.22.0
232
+ * @since 1.22.0
233
233
  *
234
234
  * Deletes an item from this variant. In case the item does not exist, nothing happens.
235
235
  */
@@ -240,7 +240,7 @@ declare namespace sap {
240
240
  sItemKey: string
241
241
  ): void;
242
242
  /**
243
- * @SINCE 1.22.0
243
+ * @since 1.22.0
244
244
  *
245
245
  * Returns an array with the keys of all items in this variant.
246
246
  *
@@ -248,7 +248,7 @@ declare namespace sap {
248
248
  */
249
249
  getItemKeys(): any[];
250
250
  /**
251
- * @SINCE 1.18.0
251
+ * @since 1.18.0
252
252
  *
253
253
  * Returns the value for an item in this variant.
254
254
  *
@@ -262,7 +262,7 @@ declare namespace sap {
262
262
  sItemKey: string
263
263
  ): object;
264
264
  /**
265
- * @SINCE 1.22.0
265
+ * @since 1.22.0
266
266
  *
267
267
  * Returns the key of this variant.
268
268
  *
@@ -270,7 +270,7 @@ declare namespace sap {
270
270
  */
271
271
  getVariantKey(): string;
272
272
  /**
273
- * @SINCE 1.22.0
273
+ * @since 1.22.0
274
274
  *
275
275
  * Returns the name of this variant.
276
276
  *
@@ -278,7 +278,7 @@ declare namespace sap {
278
278
  */
279
279
  getVariantName(): string;
280
280
  /**
281
- * @SINCE 1.18.0
281
+ * @since 1.18.0
282
282
  *
283
283
  * Sets the value for an item in this variant.
284
284
  */
@@ -293,7 +293,7 @@ declare namespace sap {
293
293
  item: object
294
294
  ): void;
295
295
  /**
296
- * @SINCE 1.24.0
296
+ * @since 1.24.0
297
297
  *
298
298
  * Sets the name of the variant.
299
299
  *
@@ -308,7 +308,7 @@ declare namespace sap {
308
308
  ): void;
309
309
  }
310
310
  /**
311
- * @SINCE 1.22.0
311
+ * @since 1.22.0
312
312
  *
313
313
  * The personalization variant set contains variants of personalization data. It is used in the personalization
314
314
  * container mode.
@@ -325,7 +325,7 @@ declare namespace sap {
325
325
  constructor();
326
326
 
327
327
  /**
328
- * @SINCE 1.22.0
328
+ * @since 1.22.0
329
329
  *
330
330
  * Creates a new variant in the variant set. In case a variant with this name is already existing an exception
331
331
  * is thrown.
@@ -339,7 +339,7 @@ declare namespace sap {
339
339
  sVariantSetName: string
340
340
  ): object;
341
341
  /**
342
- * @SINCE 1.22.0
342
+ * @since 1.22.0
343
343
  *
344
344
  * Checks if a specific variant is contained in the variant set.
345
345
  *
@@ -352,7 +352,7 @@ declare namespace sap {
352
352
  sVariantKey: string
353
353
  ): boolean;
354
354
  /**
355
- * @SINCE 1.22.0
355
+ * @since 1.22.0
356
356
  *
357
357
  * Deletes a variant from the variant set. In case the variant does not exist nothing happens.
358
358
  */
@@ -363,7 +363,7 @@ declare namespace sap {
363
363
  sVariantKey: string
364
364
  ): void;
365
365
  /**
366
- * @SINCE 1.22.0
366
+ * @since 1.22.0
367
367
  *
368
368
  * Returns the current variant key.
369
369
  *
@@ -371,7 +371,7 @@ declare namespace sap {
371
371
  */
372
372
  getCurrentVariantKey(): string;
373
373
  /**
374
- * @SINCE 1.22.0
374
+ * @since 1.22.0
375
375
  *
376
376
  * Returns a variant object.
377
377
  *
@@ -385,7 +385,7 @@ declare namespace sap {
385
385
  sVariantKey: string
386
386
  ): object;
387
387
  /**
388
- * @SINCE 1.22.0
388
+ * @since 1.22.0
389
389
  *
390
390
  * Returns the variant key corresponding to a variant name.
391
391
  *
@@ -399,7 +399,7 @@ declare namespace sap {
399
399
  sVariantName: string
400
400
  ): string;
401
401
  /**
402
- * @SINCE 1.22.0
402
+ * @since 1.22.0
403
403
  *
404
404
  * Returns an array with the keys of the variants in the variant set.
405
405
  *
@@ -407,7 +407,7 @@ declare namespace sap {
407
407
  */
408
408
  getVariantKeys(): any[];
409
409
  /**
410
- * @SINCE 1.22.0
410
+ * @since 1.22.0
411
411
  *
412
412
  * Sets the current variant key.
413
413
  */
@@ -422,7 +422,7 @@ declare namespace sap {
422
422
 
423
423
  namespace personalization {
424
424
  /**
425
- * @SINCE 1.18.0
425
+ * @since 1.18.0
426
426
  *
427
427
  * Wrapper object to expose a variant interface on a ContextContainer object obtained from the Peronalization
428
428
  * service:
@@ -453,7 +453,7 @@ declare namespace sap {
453
453
  }
454
454
 
455
455
  /**
456
- * @SINCE 1.15.0
456
+ * @since 1.15.0
457
457
  *
458
458
  * The unified shell's AppConfiguration service.
459
459
  */
@@ -474,7 +474,7 @@ declare namespace sap {
474
474
  ): void;
475
475
  }
476
476
  /**
477
- * @SINCE 1.38
477
+ * @since 1.38
478
478
  *
479
479
  * The Unified Shell's AppLifeCycle service.
480
480
  *
@@ -485,7 +485,7 @@ declare namespace sap {
485
485
  constructor();
486
486
 
487
487
  /**
488
- * @SINCE 1.38
488
+ * @since 1.38
489
489
  *
490
490
  * Attaches an event handler for the appLoaded event. This event handler will be triggered each time an
491
491
  * application has been loaded.
@@ -505,7 +505,7 @@ declare namespace sap {
505
505
  oListener: object
506
506
  ): void;
507
507
  /**
508
- * @SINCE 1.38
508
+ * @since 1.38
509
509
  *
510
510
  * Detaches an event handler from the EventProvider.
511
511
  */
@@ -520,7 +520,7 @@ declare namespace sap {
520
520
  oListener: object
521
521
  ): void;
522
522
  /**
523
- * @SINCE 1.38
523
+ * @since 1.38
524
524
  *
525
525
  * Returns information about the currently running application.
526
526
  *
@@ -559,7 +559,7 @@ declare namespace sap {
559
559
  getCurrentApplication(): object | undefined;
560
560
  }
561
561
  /**
562
- * @SINCE 1.15.0
562
+ * @since 1.15.0
563
563
  *
564
564
  * The Unified Shell's bookmark service, which allows you to create shortcuts on the user's home page.
565
565
  *
@@ -570,7 +570,7 @@ declare namespace sap {
570
570
  constructor();
571
571
 
572
572
  /**
573
- * @SINCE 1.15.0
573
+ * @since 1.15.0
574
574
  *
575
575
  * Adds a bookmark tile to one of the user's classic homepage groups or to multiple provided content nodes.
576
576
  * See:
@@ -654,7 +654,7 @@ declare namespace sap {
654
654
  sContentProviderId?: string
655
655
  ): jQuery.Promise;
656
656
  /**
657
- * @SINCE 1.21.2
657
+ * @since 1.21.2
658
658
  * @deprecated (since 1.112) - Please use {@link #addBookmark} instead.
659
659
  *
660
660
  * Adds the catalog tile with the given ID to given group. The catalog tile is looked up in the legacy SAP
@@ -688,7 +688,7 @@ declare namespace sap {
688
688
  }
689
689
  ): jQuery.Promise;
690
690
  /**
691
- * @SINCE 1.17.1
691
+ * @since 1.17.1
692
692
  *
693
693
  * Counts **all** bookmarks pointing to the given URL from all of the user's pages. You can use this method
694
694
  * to check if a bookmark already exists. This is a potentially asynchronous operation in case the user's
@@ -711,7 +711,7 @@ declare namespace sap {
711
711
  sContentProviderId: string
712
712
  ): jQuery.Promise;
713
713
  /**
714
- * @SINCE 1.17.1
714
+ * @since 1.17.1
715
715
  *
716
716
  * Deletes **all** bookmarks pointing to the given URL from all of the user's pages.
717
717
  * See:
@@ -733,7 +733,7 @@ declare namespace sap {
733
733
  sContentProviderId?: string
734
734
  ): jQuery.Promise;
735
735
  /**
736
- * @SINCE 1.81
736
+ * @since 1.81
737
737
  *
738
738
  * Returns available content nodes based on the current launchpad context. (Classic homepage, spaces mode)
739
739
  *
@@ -754,7 +754,7 @@ declare namespace sap {
754
754
  */
755
755
  getContentNodes(): Promise<sap.ushell.services.Bookmark.ContentNode[]>;
756
756
  /**
757
- * @SINCE 1.17.1
757
+ * @since 1.17.1
758
758
  *
759
759
  * Updates **all** bookmarks pointing to the given URL on all of the user's pages with the given new parameters.
760
760
  * Parameters which are omitted are not changed in the existing bookmarks.
@@ -839,7 +839,7 @@ declare namespace sap {
839
839
  ): jQuery.Promise;
840
840
  }
841
841
  /**
842
- * @SINCE 1.64.0
842
+ * @since 1.64.0
843
843
  *
844
844
  * The unified shell's Configuration service, which allows to attach to **selected** launchpad configuration
845
845
  * settings and their value changes.
@@ -854,7 +854,7 @@ declare namespace sap {
854
854
  constructor();
855
855
  }
856
856
  /**
857
- * @SINCE 1.15.0
857
+ * @since 1.15.0
858
858
  *
859
859
  * The Unified Shell's CrossApplicationNavigation service allows to navigate to "external" targets outside
860
860
  * of the currently running app (but still in scope of the current Fiori launchpad) or create links to such
@@ -945,7 +945,7 @@ declare namespace sap {
945
945
  sHashFragment: string
946
946
  ): jQuery.Promise;
947
947
  /**
948
- * @SINCE 1.38.0
948
+ * @since 1.38.0
949
949
  *
950
950
  * Returns a list of semantic objects of the intents the current user can navigate to.
951
951
  *
@@ -956,7 +956,7 @@ declare namespace sap {
956
956
  */
957
957
  getDistinctSemanticObjects(): jQuery.Promise;
958
958
  /**
959
- * @SINCE 1.38.0
959
+ * @since 1.38.0
960
960
  *
961
961
  * Resolves the given semantic object (and action) and business parameters to a list of links available
962
962
  * to the user.
@@ -1194,7 +1194,7 @@ declare namespace sap {
1194
1194
  }>
1195
1195
  ): jQuery.Promise;
1196
1196
  /**
1197
- * @SINCE 1.48
1197
+ * @since 1.48
1198
1198
  *
1199
1199
  * For a given semantic object, this method considers all actions associated with the semantic object and
1200
1200
  * returns the one tagged as a "primaryAction". If no inbound tagged as "primaryAction" exists, then the
@@ -1229,7 +1229,7 @@ declare namespace sap {
1229
1229
  mParameters?: object
1230
1230
  ): jQuery.Deferred;
1231
1231
  /**
1232
- * @SINCE 1.19.0
1232
+ * @since 1.19.0
1233
1233
  * @deprecated (since 1.38) - Please use {@link #getLinks} instead.
1234
1234
  *
1235
1235
  * Resolves a given semantic object and business parameters to a list of links, taking into account the
@@ -1301,7 +1301,7 @@ declare namespace sap {
1301
1301
  iSteps: number
1302
1302
  ): void;
1303
1303
  /**
1304
- * @SINCE 1.15.0
1304
+ * @since 1.15.0
1305
1305
  * @deprecated (since 1.94) - Please use {@link #hrefForAppSpecificHashAsync} instead.
1306
1306
  *
1307
1307
  * Returns a string which can be put into the DOM (e.g. in a link tag) given an application specific hash
@@ -1322,7 +1322,7 @@ declare namespace sap {
1322
1322
  sAppHash: string
1323
1323
  ): string;
1324
1324
  /**
1325
- * @SINCE 1.94.0
1325
+ * @since 1.94.0
1326
1326
  *
1327
1327
  * Returns a Promise which resolves a string that can be put into the DOM (e.g. in a link tag) given an
1328
1328
  * application specific hash suffix
@@ -1342,7 +1342,7 @@ declare namespace sap {
1342
1342
  sAppHash: string
1343
1343
  ): Promise<string>;
1344
1344
  /**
1345
- * @SINCE 1.15.0
1345
+ * @since 1.15.0
1346
1346
  * @deprecated (since 1.98) - Please use {@link #hrefForExternalAsync} instead.
1347
1347
  *
1348
1348
  * Returns a string which can be put into the DOM (e.g. in a link tag). **Note:** The generated url / url
@@ -1427,7 +1427,7 @@ declare namespace sap {
1427
1427
  bAsync: boolean
1428
1428
  ): string | Promise<string>;
1429
1429
  /**
1430
- * @SINCE 1.15.0
1430
+ * @since 1.15.0
1431
1431
  * @deprecated (since 1.98) - Please use {@link #hrefForExternalAsync} instead.
1432
1432
  *
1433
1433
  * Returns a string which can be put into the DOM (e.g. in a link tag). **Note:** The generated url / url
@@ -1508,7 +1508,7 @@ declare namespace sap {
1508
1508
  bAsync: boolean
1509
1509
  ): string | Promise<string>;
1510
1510
  /**
1511
- * @SINCE 1.94.0
1511
+ * @since 1.94.0
1512
1512
  *
1513
1513
  * Returns a promise resolving to a URL that launches an app with certain parameters. The URL can be used
1514
1514
  * to define a link to a Fiori application, for example.
@@ -1599,7 +1599,7 @@ declare namespace sap {
1599
1599
  oComponent?: object
1600
1600
  ): Promise<string>;
1601
1601
  /**
1602
- * @SINCE 1.36.0
1602
+ * @since 1.36.0
1603
1603
  * @deprecated (since 1.94) - Please use {@link #isInitialNavigationAsync} instead.
1604
1604
  *
1605
1605
  * Checks wether the FLP currently shows the initially loaded navigation target (i.e. the intent it was
@@ -1610,7 +1610,7 @@ declare namespace sap {
1610
1610
  */
1611
1611
  isInitialNavigation(): boolean;
1612
1612
  /**
1613
- * @SINCE 1.94.0
1613
+ * @since 1.94.0
1614
1614
  *
1615
1615
  * Checks whether the FLP has performed the first navigation. This method can be used to detect whether
1616
1616
  * the current app was started directly, that is, without a previous navigation to another app, to the FLP
@@ -1620,7 +1620,7 @@ declare namespace sap {
1620
1620
  */
1621
1621
  isInitialNavigationAsync(): Promise<boolean>;
1622
1622
  /**
1623
- * @SINCE 1.19.1
1623
+ * @since 1.19.1
1624
1624
  * @deprecated (since 1.31) - Please use {@link #isNavigationSupported} instead. Note that this has a slightly
1625
1625
  * different response format.
1626
1626
  *
@@ -1669,7 +1669,7 @@ declare namespace sap {
1669
1669
  oComponent?: object
1670
1670
  ): jQuery.Promise;
1671
1671
  /**
1672
- * @SINCE 1.32
1672
+ * @since 1.32
1673
1673
  *
1674
1674
  * Tells whether the given navigation intents are supported for the given parameters, form factor etc. .
1675
1675
  * "Supported" means that a valid navigation target is configured for the user and for the given device.
@@ -1783,7 +1783,7 @@ declare namespace sap {
1783
1783
  oComponent?: object
1784
1784
  ): jQuery.Promise;
1785
1785
  /**
1786
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1786
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1787
1787
  *
1788
1788
  * Resolves the URL hash fragment.
1789
1789
  *
@@ -1801,7 +1801,7 @@ declare namespace sap {
1801
1801
  sHashFragment: string
1802
1802
  ): jQuery.Promise;
1803
1803
  /**
1804
- * @SINCE 1.15.0
1804
+ * @since 1.15.0
1805
1805
  *
1806
1806
  * Triggers a navigation to a specified target outside of the currently running application (e.g. different
1807
1807
  * launchpad application). Invocation will trigger a hash change and subsequent invocation of the target.
@@ -1915,7 +1915,7 @@ declare namespace sap {
1915
1915
  ): Promise<void>;
1916
1916
  }
1917
1917
  /**
1918
- * @SINCE 1.25.1
1918
+ * @since 1.25.1
1919
1919
  * @deprecated (since 1.93)
1920
1920
  *
1921
1921
  * The Unified Shell's end user feedback service. This service is deprecated and does nothing. End user
@@ -1931,7 +1931,7 @@ declare namespace sap {
1931
1931
  constructor();
1932
1932
 
1933
1933
  /**
1934
- * @SINCE 1.25.1
1934
+ * @since 1.25.1
1935
1935
  * @deprecated (since 1.93)
1936
1936
  *
1937
1937
  *
@@ -1939,7 +1939,7 @@ declare namespace sap {
1939
1939
  */
1940
1940
  getLegalText(): string;
1941
1941
  /**
1942
- * @SINCE 1.25.1
1942
+ * @since 1.25.1
1943
1943
  * @deprecated (since 1.93)
1944
1944
  *
1945
1945
  * The service is deprecated. The function always returns a negative answer.
@@ -1948,7 +1948,7 @@ declare namespace sap {
1948
1948
  */
1949
1949
  isEnabled(): Object;
1950
1950
  /**
1951
- * @SINCE 1.25.1
1951
+ * @since 1.25.1
1952
1952
  * @deprecated (since 1.93)
1953
1953
  *
1954
1954
  * Sends a feedback.
@@ -1958,7 +1958,7 @@ declare namespace sap {
1958
1958
  sendFeedback(): Promise<any>;
1959
1959
  }
1960
1960
  /**
1961
- * @SINCE 1.15.0
1961
+ * @since 1.15.0
1962
1962
  * @deprecated (since 1.99) - This service has been deprecated as it only works for the classic homepage.
1963
1963
  *
1964
1964
  * A service for handling groups, tiles and catalogs.
@@ -2060,7 +2060,7 @@ declare namespace sap {
2060
2060
  oTile: object
2061
2061
  ): Function;
2062
2062
  /**
2063
- * @SINCE 1.21.2
2063
+ * @since 1.21.2
2064
2064
  *
2065
2065
  * Returns catalog's technical data.
2066
2066
  *
@@ -2077,7 +2077,7 @@ declare namespace sap {
2077
2077
  oCatalog: object
2078
2078
  ): object;
2079
2079
  /**
2080
- * @SINCE 1.17.1
2080
+ * @since 1.17.1
2081
2081
  *
2082
2082
  * Returns the catalog's technical error message in case it could not be loaded from the backend. **Beware:**
2083
2083
  * The technical error message is not translated!
@@ -2140,7 +2140,7 @@ declare namespace sap {
2140
2140
  oCatalogTile: object
2141
2141
  ): string[];
2142
2142
  /**
2143
- * @SINCE 1.16.3
2143
+ * @since 1.16.3
2144
2144
  *
2145
2145
  * Returns preview icon for a catalog tile.
2146
2146
  *
@@ -2154,7 +2154,7 @@ declare namespace sap {
2154
2154
  oCatalogTile: object
2155
2155
  ): string;
2156
2156
  /**
2157
- * @SINCE 1.40
2157
+ * @since 1.40
2158
2158
  *
2159
2159
  * Returns preview subtitle for a catalog tile.
2160
2160
  *
@@ -2168,7 +2168,7 @@ declare namespace sap {
2168
2168
  oCatalogTile: object
2169
2169
  ): string;
2170
2170
  /**
2171
- * @SINCE 1.16.3
2171
+ * @since 1.16.3
2172
2172
  *
2173
2173
  * Returns preview title for a catalog tile.
2174
2174
  *
@@ -2226,7 +2226,7 @@ declare namespace sap {
2226
2226
  oCatalogTile: object
2227
2227
  ): string;
2228
2228
  /**
2229
- * @SINCE 1.67.0
2229
+ * @since 1.67.0
2230
2230
  *
2231
2231
  * Returns the catalog tile info
2232
2232
  *
@@ -2406,7 +2406,7 @@ declare namespace sap {
2406
2406
  oTile: object
2407
2407
  ): object;
2408
2408
  /**
2409
- * @SINCE 1.16.4
2409
+ * @since 1.16.4
2410
2410
  *
2411
2411
  * Returns whether the catalogs collection previously returned by `getCatalogs()` is still valid.
2412
2412
  *
@@ -2663,7 +2663,7 @@ declare namespace sap {
2663
2663
  ): void;
2664
2664
  }
2665
2665
  /**
2666
- * @SINCE 1.16.0
2666
+ * @since 1.16.0
2667
2667
  */
2668
2668
  class Message {
2669
2669
  /**
@@ -2677,7 +2677,7 @@ declare namespace sap {
2677
2677
  constructor();
2678
2678
 
2679
2679
  /**
2680
- * @SINCE 1.16.0
2680
+ * @since 1.16.0
2681
2681
  *
2682
2682
  * Shows an confirmation dialog on the screen.
2683
2683
  *
@@ -2715,7 +2715,7 @@ declare namespace sap {
2715
2715
  | string[]
2716
2716
  ): void;
2717
2717
  /**
2718
- * @SINCE 1.16.0
2718
+ * @since 1.16.0
2719
2719
  *
2720
2720
  * Shows an error message on the screen.
2721
2721
  */
@@ -2730,8 +2730,8 @@ declare namespace sap {
2730
2730
  sTitle?: string
2731
2731
  ): void;
2732
2732
  /**
2733
- * @SINCE 1.81.0
2734
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2733
+ * @since 1.81.0
2734
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2735
2735
  *
2736
2736
  * Shows an error message with details on the screen. If more than one control should be shown, an {sap.m.VBox }
2737
2737
  * can be used. The default title is "error". If no custom buttons are given, an emphasized "close" button
@@ -2758,7 +2758,7 @@ declare namespace sap {
2758
2758
  buttons?: sap.m.Button[]
2759
2759
  ): sap.m.Dialog;
2760
2760
  /**
2761
- * @SINCE 1.16.0
2761
+ * @since 1.16.0
2762
2762
  *
2763
2763
  * Shows a MessageToast on the screen.
2764
2764
  */
@@ -2774,7 +2774,7 @@ declare namespace sap {
2774
2774
  ): void;
2775
2775
  }
2776
2776
  /**
2777
- * @SINCE 1.15.0
2777
+ * @since 1.15.0
2778
2778
  *
2779
2779
  * The Unified Shell's internal navigation target resolution service.
2780
2780
  *
@@ -2807,7 +2807,7 @@ declare namespace sap {
2807
2807
  sHashFragment: string
2808
2808
  ): string;
2809
2809
  /**
2810
- * @SINCE 1.32
2810
+ * @since 1.32
2811
2811
  *
2812
2812
  * Tells whether the given navigation intent(s) are supported for the given parameters Supported" means
2813
2813
  * that a valid navigation target is configured for the user for the given device form factor.
@@ -2944,7 +2944,7 @@ declare namespace sap {
2944
2944
  sHashFragment: string
2945
2945
  ): object;
2946
2946
  /**
2947
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2947
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2948
2948
  *
2949
2949
  * Resolves a navigation target taking into account the sap-system
2950
2950
  *
@@ -2985,7 +2985,7 @@ declare namespace sap {
2985
2985
  ): jQuery.Promise;
2986
2986
  }
2987
2987
  /**
2988
- * @SINCE 1.32.0
2988
+ * @since 1.32.0
2989
2989
  */
2990
2990
  class Notifications {
2991
2991
  /**
@@ -3030,7 +3030,7 @@ declare namespace sap {
3030
3030
  );
3031
3031
 
3032
3032
  /**
3033
- * @SINCE 1.34
3033
+ * @since 1.34
3034
3034
  *
3035
3035
  * Launches dismiss notification call.
3036
3036
  *
@@ -3044,7 +3044,7 @@ declare namespace sap {
3044
3044
  sNotificationId: object
3045
3045
  ): Promise<any>;
3046
3046
  /**
3047
- * @SINCE 1.32
3047
+ * @since 1.32
3048
3048
  *
3049
3049
  * Launches a notification action oData call.
3050
3050
  * After launching the action, the function gets updated notification data in order to push the updated
@@ -3063,7 +3063,7 @@ declare namespace sap {
3063
3063
  sActionId: object
3064
3064
  ): Promise<any>;
3065
3065
  /**
3066
- * @SINCE 1.38
3066
+ * @since 1.38
3067
3067
  *
3068
3068
  * Returns the notifications of the user sorted by type include the group headers and the notifications
3069
3069
  *
@@ -3071,7 +3071,7 @@ declare namespace sap {
3071
3071
  */
3072
3072
  getNotificationsByTypeWithGroupHeaders(): Promise<any>;
3073
3073
  /**
3074
- * @SINCE 1.44
3074
+ * @since 1.44
3075
3075
  *
3076
3076
  * Returns the number of notifications
3077
3077
  * e.g. Notifications for user.
@@ -3080,7 +3080,7 @@ declare namespace sap {
3080
3080
  */
3081
3081
  getNotificationsCount(): number;
3082
3082
  /**
3083
- * @SINCE 1.44
3083
+ * @since 1.44
3084
3084
  *
3085
3085
  * Returns the group headers of the user notifications
3086
3086
  *
@@ -3088,7 +3088,7 @@ declare namespace sap {
3088
3088
  */
3089
3089
  getNotificationsGroupHeaders(): Promise<any>;
3090
3090
  /**
3091
- * @SINCE 1.32
3091
+ * @since 1.32
3092
3092
  *
3093
3093
  * Returns the number of unseen notifications
3094
3094
  * e.g. Notifications that the user hasn't seen yet.
@@ -3097,7 +3097,7 @@ declare namespace sap {
3097
3097
  */
3098
3098
  getUnseenNotificationsCount(): Promise<any>;
3099
3099
  /**
3100
- * @SINCE 1.32
3100
+ * @since 1.32
3101
3101
  *
3102
3102
  * Initializes the notification service
3103
3103
  *
@@ -3116,7 +3116,7 @@ declare namespace sap {
3116
3116
  */
3117
3117
  init(): void;
3118
3118
  /**
3119
- * @SINCE 1.32.0
3119
+ * @since 1.32.0
3120
3120
  *
3121
3121
  * Indicates whether notification service is enabled.
3122
3122
  * Enabling is based on the `enable` service configuration flag.
@@ -3127,14 +3127,14 @@ declare namespace sap {
3127
3127
  */
3128
3128
  isEnabled(): boolean;
3129
3129
  /**
3130
- * @SINCE 1.38
3130
+ * @since 1.38
3131
3131
  *
3132
3132
  *
3133
3133
  * @returns boolean value whether first request was already performed and data was returned.
3134
3134
  */
3135
3135
  isFirstDataLoaded(): boolean;
3136
3136
  /**
3137
- * @SINCE 1.34
3137
+ * @since 1.34
3138
3138
  *
3139
3139
  * Launches mark as read notification call.
3140
3140
  * After launching the action, the function gets updated notification data in order to push the updated
@@ -3149,14 +3149,14 @@ declare namespace sap {
3149
3149
  sNotificationId: object
3150
3150
  ): Promise<any>;
3151
3151
  /**
3152
- * @SINCE 1.32
3152
+ * @since 1.32
3153
3153
  *
3154
3154
  * Mark all notifications as seen.
3155
3155
  * the main use-case is when the user navigated to the notification center and sees all the pending notifications.
3156
3156
  */
3157
3157
  notificationsSeen(): void;
3158
3158
  /**
3159
- * @SINCE 1.32
3159
+ * @since 1.32
3160
3160
  *
3161
3161
  * Gets a callback function that will be called when updated unseen notifications count is available.
3162
3162
  */
@@ -3167,7 +3167,7 @@ declare namespace sap {
3167
3167
  callback: object
3168
3168
  ): void;
3169
3169
  /**
3170
- * @SINCE 1.32
3170
+ * @since 1.32
3171
3171
  *
3172
3172
  * Gets a callback function that will be called when updated notifications data is available.
3173
3173
  */
@@ -3179,7 +3179,7 @@ declare namespace sap {
3179
3179
  ): void;
3180
3180
  }
3181
3181
  /**
3182
- * @SINCE 1.15.0
3182
+ * @since 1.15.0
3183
3183
  */
3184
3184
  class Personalization {
3185
3185
  /**
@@ -3205,7 +3205,7 @@ declare namespace sap {
3205
3205
  );
3206
3206
 
3207
3207
  /**
3208
- * @SINCE 1.22.0
3208
+ * @since 1.22.0
3209
3209
  *
3210
3210
  * Factory method to obtain an empty Data Context object. When data present in a prior context is not relevant
3211
3211
  * (e.g. when using a "uniquely" generated key and planning to overwrite any colliding front-end server
@@ -3244,7 +3244,7 @@ declare namespace sap {
3244
3244
  oComponent: sap.ui.core.Component
3245
3245
  ): object;
3246
3246
  /**
3247
- * @SINCE 1.22.0
3247
+ * @since 1.22.0
3248
3248
  *
3249
3249
  * Asynchronously starts a deletion request for the given container identified by sContainerKey. Can be
3250
3250
  * called without having ever called getContainer with the corresponding key
@@ -3268,7 +3268,7 @@ declare namespace sap {
3268
3268
  oScope: object
3269
3269
  ): object;
3270
3270
  /**
3271
- * @SINCE 1.18.0
3271
+ * @since 1.18.0
3272
3272
  * @deprecated (since 1.22) - Please use {@link #delContainer} instead.
3273
3273
  *
3274
3274
  * Asynchronously starts a deletion request for the given container identified by sContainerKey. Can be
@@ -3289,7 +3289,7 @@ declare namespace sap {
3289
3289
  sContainerKey: string
3290
3290
  ): object;
3291
3291
  /**
3292
- * @SINCE 1.22.0
3292
+ * @since 1.22.0
3293
3293
  *
3294
3294
  * Factory method to obtain a Data Context object, which is a local copy of the persistence layer data.
3295
3295
  * The Container data is asynchronously read on creation if present, otherwise an initial object is created.
@@ -3382,7 +3382,7 @@ declare namespace sap {
3382
3382
  oComponent: sap.ui.core.Component
3383
3383
  ): object;
3384
3384
  /**
3385
- * @SINCE 1.18.0
3385
+ * @since 1.18.0
3386
3386
  * @deprecated (since 1.21) - Please use {@link #getContainer} instead.
3387
3387
  *
3388
3388
  * This interface is deprecated since 1.22, please use getContainer / delContainer.
@@ -3436,7 +3436,7 @@ declare namespace sap {
3436
3436
  sContainerKey: string
3437
3437
  ): object;
3438
3438
  /**
3439
- * @SINCE 1.15.0
3439
+ * @since 1.15.0
3440
3440
  *
3441
3441
  * Returns a personalizer object which handles personalization by asynchronous operations storing the personalization
3442
3442
  * data immediately via the connected adapter. For each operation a round trip is executed.
@@ -3474,7 +3474,7 @@ declare namespace sap {
3474
3474
  oComponent?: sap.ui.core.Component
3475
3475
  ): object;
3476
3476
  /**
3477
- * @SINCE 1.18.0
3477
+ * @since 1.18.0
3478
3478
  *
3479
3479
  * Returns a transient personalizer object which handles personalization by asynchronous operations storing
3480
3480
  * the personalization data transiently as an object property. Primary usage of the transient personalizer
@@ -3487,7 +3487,7 @@ declare namespace sap {
3487
3487
  getTransientPersonalizer(): object;
3488
3488
  }
3489
3489
  /**
3490
- * @SINCE 1.18.0
3490
+ * @since 1.18.0
3491
3491
  *
3492
3492
  * The personalization container is the anchor object of the unified shell personalization in container
3493
3493
  * mode.
@@ -3499,7 +3499,7 @@ declare namespace sap {
3499
3499
  constructor();
3500
3500
 
3501
3501
  /**
3502
- * @SINCE 1.18.0
3502
+ * @since 1.18.0
3503
3503
  *
3504
3504
  * Creates a new variant set in the container. In case a variant set with this key is already existing an
3505
3505
  * exception is thrown.
@@ -3513,7 +3513,7 @@ declare namespace sap {
3513
3513
  sVariantSetKey: string
3514
3514
  ): object;
3515
3515
  /**
3516
- * @SINCE 1.18.0
3516
+ * @since 1.18.0
3517
3517
  *
3518
3518
  * Checks if a specific direct item is contained in the container.
3519
3519
  *
@@ -3526,7 +3526,7 @@ declare namespace sap {
3526
3526
  sItemKey: string
3527
3527
  ): boolean;
3528
3528
  /**
3529
- * @SINCE 1.18.0
3529
+ * @since 1.18.0
3530
3530
  *
3531
3531
  * Checks if a specific variant set is contained in the container.
3532
3532
  *
@@ -3539,7 +3539,7 @@ declare namespace sap {
3539
3539
  sVariantSetKey: string
3540
3540
  ): boolean;
3541
3541
  /**
3542
- * @SINCE 1.18.0
3542
+ * @since 1.18.0
3543
3543
  *
3544
3544
  * Deletes a direct item from the container. In case the item does not exist, nothing happens.
3545
3545
  */
@@ -3550,7 +3550,7 @@ declare namespace sap {
3550
3550
  sItemKey: string
3551
3551
  ): void;
3552
3552
  /**
3553
- * @SINCE 1.18.0
3553
+ * @since 1.18.0
3554
3554
  *
3555
3555
  * Deletes a variant set from the container. In case the variant set does not exist nothing happens.
3556
3556
  */
@@ -3561,7 +3561,7 @@ declare namespace sap {
3561
3561
  sVariantSetKey: string
3562
3562
  ): void;
3563
3563
  /**
3564
- * @SINCE 1.18.0
3564
+ * @since 1.18.0
3565
3565
  *
3566
3566
  * Returns an array with the keys of direct items in the container.
3567
3567
  *
@@ -3569,7 +3569,7 @@ declare namespace sap {
3569
3569
  */
3570
3570
  getItemKeys(): any[];
3571
3571
  /**
3572
- * @SINCE 1.18.0
3572
+ * @since 1.18.0
3573
3573
  *
3574
3574
  * Returns the value for a direct item from the container.
3575
3575
  *
@@ -3583,7 +3583,7 @@ declare namespace sap {
3583
3583
  sItemKey: string
3584
3584
  ): object;
3585
3585
  /**
3586
- * @SINCE 1.18.0
3586
+ * @since 1.18.0
3587
3587
  *
3588
3588
  * Returns an array with the keys of the variant sets in the container.
3589
3589
  *
@@ -3591,7 +3591,7 @@ declare namespace sap {
3591
3591
  */
3592
3592
  getVariantSetKeys(): any[];
3593
3593
  /**
3594
- * @SINCE 1.18.0
3594
+ * @since 1.18.0
3595
3595
  *
3596
3596
  * (Re)loads the current container data from the underlying storage asynchronously. The current local data
3597
3597
  * is discarded.
@@ -3605,7 +3605,7 @@ declare namespace sap {
3605
3605
  */
3606
3606
  load(): object;
3607
3607
  /**
3608
- * @SINCE 1.18.0
3608
+ * @since 1.18.0
3609
3609
  *
3610
3610
  * Attempts to save the current container data at the underlying storage asynchronously. The current state
3611
3611
  * is serialized.
@@ -3616,7 +3616,7 @@ declare namespace sap {
3616
3616
  */
3617
3617
  save(): object;
3618
3618
  /**
3619
- * @SINCE 1.18.0
3619
+ * @since 1.18.0
3620
3620
  *
3621
3621
  * Sets the value of a direct item in the container. In case the item is already existing its value is overwritten.
3622
3622
  * In case it is not existing a new item with this key and value is created.
@@ -3633,7 +3633,7 @@ declare namespace sap {
3633
3633
  ): void;
3634
3634
  }
3635
3635
  /**
3636
- * @SINCE 1.18.0
3636
+ * @since 1.18.0
3637
3637
  *
3638
3638
  * The personalization variant contains personalization data. It is used in the personalization container
3639
3639
  * mode.
@@ -3645,7 +3645,7 @@ declare namespace sap {
3645
3645
  constructor();
3646
3646
 
3647
3647
  /**
3648
- * @SINCE 1.18.0
3648
+ * @since 1.18.0
3649
3649
  *
3650
3650
  * Checks if a specific item is contained in this variant.
3651
3651
  *
@@ -3658,7 +3658,7 @@ declare namespace sap {
3658
3658
  sItemKey: string
3659
3659
  ): boolean;
3660
3660
  /**
3661
- * @SINCE 1.18.0
3661
+ * @since 1.18.0
3662
3662
  *
3663
3663
  * Deletes an item from this variant. In case the item does not exist, nothing happens.
3664
3664
  */
@@ -3669,7 +3669,7 @@ declare namespace sap {
3669
3669
  sItemKey: string
3670
3670
  ): void;
3671
3671
  /**
3672
- * @SINCE 1.18.0
3672
+ * @since 1.18.0
3673
3673
  *
3674
3674
  * Returns an array with the keys of all items in this variant.
3675
3675
  *
@@ -3677,7 +3677,7 @@ declare namespace sap {
3677
3677
  */
3678
3678
  getItemKeys(): any[];
3679
3679
  /**
3680
- * @SINCE 1.18.0
3680
+ * @since 1.18.0
3681
3681
  *
3682
3682
  * Returns the value for an item in this variant.
3683
3683
  *
@@ -3691,7 +3691,7 @@ declare namespace sap {
3691
3691
  sItemKey: string
3692
3692
  ): object;
3693
3693
  /**
3694
- * @SINCE 1.18.0
3694
+ * @since 1.18.0
3695
3695
  *
3696
3696
  * Returns the key of this variant.
3697
3697
  *
@@ -3699,7 +3699,7 @@ declare namespace sap {
3699
3699
  */
3700
3700
  getVariantKey(): string;
3701
3701
  /**
3702
- * @SINCE 1.18.0
3702
+ * @since 1.18.0
3703
3703
  *
3704
3704
  * Returns the name of this variant.
3705
3705
  *
@@ -3707,7 +3707,7 @@ declare namespace sap {
3707
3707
  */
3708
3708
  getVariantName(): string;
3709
3709
  /**
3710
- * @SINCE 1.18.0
3710
+ * @since 1.18.0
3711
3711
  *
3712
3712
  * Sets the value for an item in this variant.
3713
3713
  */
@@ -3723,7 +3723,7 @@ declare namespace sap {
3723
3723
  ): void;
3724
3724
  }
3725
3725
  /**
3726
- * @SINCE 1.18.0
3726
+ * @since 1.18.0
3727
3727
  *
3728
3728
  * The personalization variant set contains variants of personalization data. It is used in the personalization
3729
3729
  * container mode.
@@ -3734,14 +3734,14 @@ declare namespace sap {
3734
3734
  */
3735
3735
  constructor();
3736
3736
  /**
3737
- * @SINCE 1.18.0
3737
+ * @since 1.18.0
3738
3738
  *
3739
3739
  * Deletes a variant from the variant set. In case the variant does not exist nothing happens.
3740
3740
  */
3741
3741
  delVariant: undefined;
3742
3742
 
3743
3743
  /**
3744
- * @SINCE 1.18.0
3744
+ * @since 1.18.0
3745
3745
  *
3746
3746
  * Checks if a specific variant is contained in the variant set.
3747
3747
  *
@@ -3754,7 +3754,7 @@ declare namespace sap {
3754
3754
  sVariantKey: string
3755
3755
  ): boolean;
3756
3756
  /**
3757
- * @SINCE 1.18.0
3757
+ * @since 1.18.0
3758
3758
  *
3759
3759
  * Returns the current variant key.
3760
3760
  *
@@ -3762,7 +3762,7 @@ declare namespace sap {
3762
3762
  */
3763
3763
  getCurrentVariantKey(): string;
3764
3764
  /**
3765
- * @SINCE 1.18.0
3765
+ * @since 1.18.0
3766
3766
  *
3767
3767
  * Returns a variant object.
3768
3768
  *
@@ -3776,7 +3776,7 @@ declare namespace sap {
3776
3776
  sVariantKey: string
3777
3777
  ): object;
3778
3778
  /**
3779
- * @SINCE 1.18.0
3779
+ * @since 1.18.0
3780
3780
  *
3781
3781
  * Returns the variant key corresponding to a variant name.
3782
3782
  *
@@ -3790,7 +3790,7 @@ declare namespace sap {
3790
3790
  sVariantName: string
3791
3791
  ): object;
3792
3792
  /**
3793
- * @SINCE 1.18.0
3793
+ * @since 1.18.0
3794
3794
  *
3795
3795
  * Returns an array with the keys of the variants in the variant set.
3796
3796
  *
@@ -3798,7 +3798,7 @@ declare namespace sap {
3798
3798
  */
3799
3799
  getVariantKeys(): any[];
3800
3800
  /**
3801
- * @SINCE 1.18.0
3801
+ * @since 1.18.0
3802
3802
  *
3803
3803
  * Sets the current variant key.
3804
3804
  */
@@ -3810,7 +3810,7 @@ declare namespace sap {
3810
3810
  ): void;
3811
3811
  }
3812
3812
  /**
3813
- * @SINCE 1.15.0
3813
+ * @since 1.15.0
3814
3814
  */
3815
3815
  class ShellNavigation {
3816
3816
  /**
@@ -3898,7 +3898,7 @@ declare namespace sap {
3898
3898
  ): object;
3899
3899
  }
3900
3900
  /**
3901
- * @SINCE 1.44.0
3901
+ * @since 1.44.0
3902
3902
  * @deprecated (since 1.112) - This service has been deprecated. Please use the CrossApplicationNavigation
3903
3903
  * service instead.
3904
3904
  */
@@ -3921,7 +3921,7 @@ declare namespace sap {
3921
3921
  constructor();
3922
3922
  }
3923
3923
  /**
3924
- * @SINCE 1.19.1
3924
+ * @since 1.19.1
3925
3925
  *
3926
3926
  * The Unified Shell's Support Ticket service
3927
3927
  */
@@ -3969,7 +3969,7 @@ declare namespace sap {
3969
3969
  );
3970
3970
 
3971
3971
  /**
3972
- * @SINCE 1.20.0
3972
+ * @since 1.20.0
3973
3973
  *
3974
3974
  * Creates a Support Ticket. Forwards the given data (JSON object) to the associated adapter.
3975
3975
  *
@@ -3982,7 +3982,7 @@ declare namespace sap {
3982
3982
  oSupportTicketData: object
3983
3983
  ): object;
3984
3984
  /**
3985
- * @SINCE 1.20.0
3985
+ * @since 1.20.0
3986
3986
  *
3987
3987
  * Checks if the service is enabled. The service enablement depends on the configuration in the back-end
3988
3988
  * system and the bootstrap configuration.
@@ -3992,7 +3992,7 @@ declare namespace sap {
3992
3992
  isEnabled(): boolean;
3993
3993
  }
3994
3994
  /**
3995
- * @SINCE 1.18.0
3995
+ * @since 1.18.0
3996
3996
  *
3997
3997
  * The transient personalizer shall be used in container mode for table personalization.
3998
3998
  */
@@ -4003,7 +4003,7 @@ declare namespace sap {
4003
4003
  constructor();
4004
4004
 
4005
4005
  /**
4006
- * @SINCE 1.18.0
4006
+ * @since 1.18.0
4007
4007
  *
4008
4008
  * Deletes a personalization data value.
4009
4009
  *
@@ -4012,7 +4012,7 @@ declare namespace sap {
4012
4012
  */
4013
4013
  delPersData(): object;
4014
4014
  /**
4015
- * @SINCE 1.18.0
4015
+ * @since 1.18.0
4016
4016
  *
4017
4017
  * Gets a personalization data value.
4018
4018
  *
@@ -4022,7 +4022,7 @@ declare namespace sap {
4022
4022
  */
4023
4023
  getPersData(): object;
4024
4024
  /**
4025
- * @SINCE 1.18.0
4025
+ * @since 1.18.0
4026
4026
  *
4027
4027
  * Synchronously gets a personalization data value.
4028
4028
  *
@@ -4030,7 +4030,7 @@ declare namespace sap {
4030
4030
  */
4031
4031
  getValue(): object;
4032
4032
  /**
4033
- * @SINCE 1.18.0
4033
+ * @since 1.18.0
4034
4034
  *
4035
4035
  * Sets a personalization data value.
4036
4036
  *
@@ -4044,7 +4044,7 @@ declare namespace sap {
4044
4044
  oValue: object
4045
4045
  ): object;
4046
4046
  /**
4047
- * @SINCE 1.18.0
4047
+ * @since 1.18.0
4048
4048
  *
4049
4049
  * Synchronously sets a personalization data value.
4050
4050
  */
@@ -4056,7 +4056,7 @@ declare namespace sap {
4056
4056
  ): void;
4057
4057
  }
4058
4058
  /**
4059
- * @SINCE 1.15.0
4059
+ * @since 1.15.0
4060
4060
  */
4061
4061
  class URLParsing {
4062
4062
  /**
@@ -4084,7 +4084,7 @@ declare namespace sap {
4084
4084
  constructor();
4085
4085
 
4086
4086
  /**
4087
- * @SINCE 1.19.1
4087
+ * @since 1.19.1
4088
4088
  * @deprecated (since 1.31) - Please use {@link sap.ui.model.odata.ODataUtils#setOrigin} instead.
4089
4089
  *
4090
4090
  * Note: deprecated, please use `sap.ui.model.odata.ODataUtils.setOrigin(sServiceUrl, { alias : sSystem
@@ -4137,7 +4137,7 @@ declare namespace sap {
4137
4137
  vComponentOrSystem?: string | sap.ui.core.Component
4138
4138
  ): string;
4139
4139
  /**
4140
- * @SINCE 1.16.0
4140
+ * @since 1.16.0
4141
4141
  *
4142
4142
  * compose a shell Hash from it's respective parts Note that it also may append an app specific route !
4143
4143
  *
@@ -4167,7 +4167,7 @@ declare namespace sap {
4167
4167
  oShellHash: object
4168
4168
  ): string;
4169
4169
  /**
4170
- * @SINCE 1.16.0
4170
+ * @since 1.16.0
4171
4171
  *
4172
4172
  * Extract a hash part from an URL, including an app-specific part
4173
4173
  *
@@ -4180,7 +4180,7 @@ declare namespace sap {
4180
4180
  sURL: string
4181
4181
  ): string;
4182
4182
  /**
4183
- * @SINCE 1.16.0
4183
+ * @since 1.16.0
4184
4184
  *
4185
4185
  * Extract the Shell hash# part from an URL The application specific route part is removed See {@link #getHash }
4186
4186
  * for a function which retains the app specific route.
@@ -4205,7 +4205,7 @@ declare namespace sap {
4205
4205
  sShellHashString: string
4206
4206
  ): Object;
4207
4207
  /**
4208
- * @SINCE 1.30.0
4208
+ * @since 1.30.0
4209
4209
  * @deprecated (since 1.96) - Please use {@link #isIntentUrlAsync} instead.
4210
4210
  *
4211
4211
  * Check if a URL has an intent based navigation part which can be parsed into a semantic object and action
@@ -4227,7 +4227,7 @@ declare namespace sap {
4227
4227
  sUrl: string
4228
4228
  ): boolean;
4229
4229
  /**
4230
- * @SINCE 1.96.0
4230
+ * @since 1.96.0
4231
4231
  *
4232
4232
  * Check if a URL has an intent based navigation part which can be parsed into a semantic object and action
4233
4233
  * part. Accepts only a relative URL (must contain #) or fully qualified Urls for which origin and filename
@@ -4248,7 +4248,7 @@ declare namespace sap {
4248
4248
  sUrl: string
4249
4249
  ): Promise<boolean>;
4250
4250
  /**
4251
- * @SINCE 1.20.0
4251
+ * @since 1.20.0
4252
4252
  *
4253
4253
  * combine members of a javascript object into a parameter string, note that parameters are ordered in an
4254
4254
  * arbitrary manner which is subject to change
@@ -4263,7 +4263,7 @@ declare namespace sap {
4263
4263
  oParams: object
4264
4264
  ): string;
4265
4265
  /**
4266
- * @SINCE 1.20.0
4266
+ * @since 1.20.0
4267
4267
  *
4268
4268
  * parse parameters from a URI query string (starting with ?) into a parameter object
4269
4269
  *
@@ -4276,7 +4276,7 @@ declare namespace sap {
4276
4276
  sParams: string
4277
4277
  ): object;
4278
4278
  /**
4279
- * @SINCE 1.16.0
4279
+ * @since 1.16.0
4280
4280
  *
4281
4281
  * Decompose a shell hash into the respective parts
4282
4282
  *
@@ -4308,7 +4308,7 @@ declare namespace sap {
4308
4308
  sHash: string
4309
4309
  ): object;
4310
4310
  /**
4311
- * @SINCE 1.16.0
4311
+ * @since 1.16.0
4312
4312
  *
4313
4313
  * split a Unified Shell compliant hash into an Object containing a shell specific part and an app specific
4314
4314
  * parts
@@ -4333,7 +4333,7 @@ declare namespace sap {
4333
4333
  ): object;
4334
4334
  }
4335
4335
  /**
4336
- * @SINCE 1.32.0
4336
+ * @since 1.32.0
4337
4337
  *
4338
4338
  * A UShell service for tracking business flows and user actions.
4339
4339
  */
@@ -4378,7 +4378,7 @@ declare namespace sap {
4378
4378
  );
4379
4379
 
4380
4380
  /**
4381
- * @SINCE 1.32.0
4381
+ * @since 1.32.0
4382
4382
  *
4383
4383
  * Sets up to 6 customer attributes of logged events according to the given object attributes.
4384
4384
  * A customer attribute can be set only once during a session.
@@ -4402,13 +4402,13 @@ declare namespace sap {
4402
4402
  oCustomFieldValues: object
4403
4403
  ): void;
4404
4404
  /**
4405
- * @SINCE 1.32.0
4405
+ * @since 1.32.0
4406
4406
  *
4407
4407
  * Enables the renderer to set the content of the legal message..
4408
4408
  */
4409
4409
  setLegalText(): void;
4410
4410
  /**
4411
- * @SINCE 1.32.0
4411
+ * @since 1.32.0
4412
4412
  *
4413
4413
  * Indicates whether the service is available.
4414
4414
  *
@@ -4424,7 +4424,7 @@ declare namespace sap {
4424
4424
  */
4425
4425
  systemEnabled(): boolean;
4426
4426
  /**
4427
- * @SINCE 1.32.0
4427
+ * @since 1.32.0
4428
4428
  *
4429
4429
  * Indicates whether the user has specified to track activities.
4430
4430
  *
@@ -4440,7 +4440,7 @@ declare namespace sap {
4440
4440
  userEnabled(): boolean;
4441
4441
  }
4442
4442
  /**
4443
- * @SINCE 1.16.3
4443
+ * @since 1.16.3
4444
4444
  */
4445
4445
  class UserInfo {
4446
4446
  /**
@@ -4464,7 +4464,7 @@ declare namespace sap {
4464
4464
  );
4465
4465
 
4466
4466
  /**
4467
- * @SINCE 1.86.0
4467
+ * @since 1.86.0
4468
4468
  *
4469
4469
  * Returns the email address of the user.
4470
4470
  *
@@ -4472,7 +4472,7 @@ declare namespace sap {
4472
4472
  */
4473
4473
  getEmail(): string;
4474
4474
  /**
4475
- * @SINCE 1.86.0
4475
+ * @since 1.86.0
4476
4476
  *
4477
4477
  * Returns the first name of the user.
4478
4478
  *
@@ -4480,7 +4480,7 @@ declare namespace sap {
4480
4480
  */
4481
4481
  getFirstName(): string;
4482
4482
  /**
4483
- * @SINCE 1.86.0
4483
+ * @since 1.86.0
4484
4484
  *
4485
4485
  * Returns the full name of the user.
4486
4486
  *
@@ -4488,7 +4488,7 @@ declare namespace sap {
4488
4488
  */
4489
4489
  getFullName(): string;
4490
4490
  /**
4491
- * @SINCE 1.16.3
4491
+ * @since 1.16.3
4492
4492
  *
4493
4493
  * Returns the id of the user.
4494
4494
  *
@@ -4496,7 +4496,7 @@ declare namespace sap {
4496
4496
  */
4497
4497
  getId(): string;
4498
4498
  /**
4499
- * @SINCE 1.86.0
4499
+ * @since 1.86.0
4500
4500
  *
4501
4501
  * Returns the last name of the user.
4502
4502
  *
@@ -4559,9 +4559,9 @@ declare namespace sap {
4559
4559
  image?: sap.m.Image;
4560
4560
  }
4561
4561
 
4562
- interface $PictureTilePictureDeleteEventParameters {}
4562
+ interface PictureTile$PictureDeleteEventParameters {}
4563
4563
 
4564
- interface $PictureViewerPictureDeletedEventParameters {}
4564
+ interface PictureViewer$PictureDeletedEventParameters {}
4565
4565
 
4566
4566
  /**
4567
4567
  * @deprecated (since 1.22) - Please use {@link sap.m.Carousel} instead.
@@ -4699,7 +4699,7 @@ declare namespace sap {
4699
4699
  oListener?: object
4700
4700
  ): this;
4701
4701
  /**
4702
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4702
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4703
4703
  *
4704
4704
  * Fires event {@link #event:pictureDelete pictureDelete} to attached listeners.
4705
4705
  *
@@ -4943,7 +4943,7 @@ declare namespace sap {
4943
4943
  oListener?: object
4944
4944
  ): this;
4945
4945
  /**
4946
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4946
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4947
4947
  *
4948
4948
  * Fires event {@link #event:pictureDeleted pictureDeleted} to attached listeners.
4949
4949
  *
@@ -5199,13 +5199,29 @@ declare namespace sap {
5199
5199
  sSrc: string
5200
5200
  ): sap.ushell.components.factsheet.controls.PictureViewerItem;
5201
5201
  }
5202
+
5203
+ /**
5204
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'PictureTile$PictureDeleteEventParameters'
5205
+ * in 1.115.1 and any later releases.
5206
+ */
5207
+ type $PictureTilePictureDeleteEventParameters = sap.ushell.components.factsheet.controls.PictureTile$PictureDeleteEventParameters;
5208
+
5209
+ type PictureTile$PictureDeleteEvent = sap.ui.base.Event<PictureTile$PictureDeleteEventParameters>;
5210
+
5211
+ /**
5212
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'PictureViewer$PictureDeletedEventParameters'
5213
+ * in 1.115.1 and any later releases.
5214
+ */
5215
+ type $PictureViewerPictureDeletedEventParameters = sap.ushell.components.factsheet.controls.PictureViewer$PictureDeletedEventParameters;
5216
+
5217
+ type PictureViewer$PictureDeletedEvent = sap.ui.base.Event<PictureViewer$PictureDeletedEventParameters>;
5202
5218
  }
5203
5219
  }
5204
5220
  }
5205
5221
 
5206
5222
  namespace Container {
5207
5223
  /**
5208
- * @SINCE 1.90.0
5224
+ * @since 1.90.0
5209
5225
  *
5210
5226
  * An enumeration for the application work protect mode state.
5211
5227
  */
@@ -5230,7 +5246,7 @@ declare namespace sap {
5230
5246
  interface $RendererSettings extends sap.ui.core.$UIComponentSettings {}
5231
5247
 
5232
5248
  /**
5233
- * @SINCE 1.15.0
5249
+ * @since 1.15.0
5234
5250
  *
5235
5251
  * The SAPUI5 component of SAP Fiori Launchpad renderer for the Unified Shell.
5236
5252
  */
@@ -5244,7 +5260,7 @@ declare namespace sap {
5244
5260
  */
5245
5261
  constructor();
5246
5262
  /**
5247
- * @SINCE 1.30
5263
+ * @since 1.30
5248
5264
  *
5249
5265
  * The launchpad states that can be passed as a parameter.
5250
5266
  *
@@ -5284,7 +5300,7 @@ declare namespace sap {
5284
5300
  */
5285
5301
  static getMetadata(): sap.ui.core.ComponentMetadata;
5286
5302
  /**
5287
- * @SINCE 1.30
5303
+ * @since 1.30
5288
5304
  * @deprecated (since 1.48) - Please use {@link #addUserAction} instead.
5289
5305
  *
5290
5306
  * Creates an action button in the User Actions Menu in the SAP Fiori launchpad, in the given launchpad
@@ -5335,7 +5351,7 @@ declare namespace sap {
5335
5351
  aStates: string[]
5336
5352
  ): sap.ui.core.Control;
5337
5353
  /**
5338
- * @SINCE 1.30
5354
+ * @since 1.30
5339
5355
  * @deprecated (since 1.93)
5340
5356
  *
5341
5357
  * Adds the given sap.ui.core.Control to the EndUserFeedback dialog.
@@ -5352,7 +5368,7 @@ declare namespace sap {
5352
5368
  bShowCustomUIContent: boolean
5353
5369
  ): void;
5354
5370
  /**
5355
- * @SINCE 1.30
5371
+ * @since 1.30
5356
5372
  * @deprecated (since 1.48) - Please use {@link #addFloatingButton} instead.
5357
5373
  *
5358
5374
  * Creates a FloatingActionButton in Fiori launchpad, in the given launchpad states.
@@ -5401,7 +5417,7 @@ declare namespace sap {
5401
5417
  aStates: string[]
5402
5418
  ): object;
5403
5419
  /**
5404
- * @SINCE 1.48
5420
+ * @since 1.48
5405
5421
  * @deprecated (since 1.52)
5406
5422
  *
5407
5423
  * Creates a FloatingActionButton in Fiori launchpad, in the given launchpad states.
@@ -5440,7 +5456,7 @@ declare namespace sap {
5440
5456
  oParameters: object
5441
5457
  ): object;
5442
5458
  /**
5443
- * @SINCE 1.30
5459
+ * @since 1.30
5444
5460
  *
5445
5461
  * Creates and displays a shell header icon in Fiori launchpad, in the given launchpad states.
5446
5462
  * The icon is displayed in the right side of the Fiori Launchpad shell header or in an overflow menu.
@@ -5517,7 +5533,7 @@ declare namespace sap {
5517
5533
  aStates: string[]
5518
5534
  ): sap.ui.core.Control;
5519
5535
  /**
5520
- * @SINCE 1.30
5536
+ * @since 1.30
5521
5537
  *
5522
5538
  * Creates and displays an item in the header of Fiori launchpad, in the given launchpad states.
5523
5539
  * The new header item will be displayed on the left-hand side of the Fiori Launchpad shell header, according
@@ -5579,7 +5595,7 @@ declare namespace sap {
5579
5595
  aStates: string[]
5580
5596
  ): sap.ui.core.Control;
5581
5597
  /**
5582
- * @SINCE 1.30
5598
+ * @since 1.30
5583
5599
  *
5584
5600
  * Creates and displays an item in the header of Fiori launchpad, in the given launchpad states.
5585
5601
  * The new header item will be displayed on the left-hand side of the Fiori Launchpad shell header, according
@@ -5636,7 +5652,7 @@ declare namespace sap {
5636
5652
  aStates: string[]
5637
5653
  ): sap.ui.core.Control;
5638
5654
  /**
5639
- * @SINCE 1.30
5655
+ * @since 1.30
5640
5656
  * @deprecated (since 1.48) - Please use {@link #addSidePaneContent} instead.
5641
5657
  *
5642
5658
  * Creates the Left Pane content in Fiori launchpad, in the given launchpad states.
@@ -5684,7 +5700,7 @@ declare namespace sap {
5684
5700
  aStates: string[]
5685
5701
  ): object;
5686
5702
  /**
5687
- * @SINCE 1.48
5703
+ * @since 1.48
5688
5704
  *
5689
5705
  * Creates and displays a sub header control in Fiori launchpad, in the given launchpad states.
5690
5706
  * The new control is displayed in FLP UI according to the given display parameters.
@@ -5745,7 +5761,7 @@ declare namespace sap {
5745
5761
  }
5746
5762
  ): jQuery.Promise;
5747
5763
  /**
5748
- * @SINCE 1.48
5764
+ * @since 1.48
5749
5765
  *
5750
5766
  * Creates the Left Pane content in Fiori launchpad, in the given launchpad states.
5751
5767
  *
@@ -5803,7 +5819,7 @@ declare namespace sap {
5803
5819
  }
5804
5820
  ): jQuery.Promise;
5805
5821
  /**
5806
- * @SINCE 1.30
5822
+ * @since 1.30
5807
5823
  * @deprecated (since 1.48) - Please use {@link #addShellSubHeader} instead.
5808
5824
  *
5809
5825
  * Creates and displays a sub header control in Fiori launchpad, in the given launchpad states.
@@ -5865,7 +5881,7 @@ declare namespace sap {
5865
5881
  aStates: string[]
5866
5882
  ): object;
5867
5883
  /**
5868
- * @SINCE 1.30
5884
+ * @since 1.30
5869
5885
  *
5870
5886
  * Creates a ToolAreaItem in Fiori Launchpad and adds it to the Tool Area, in the given launchpad states.
5871
5887
  * Once the item is added, the Tool Area is rendered on the left side on the Fiori Launchpad shell.
@@ -5914,7 +5930,7 @@ declare namespace sap {
5914
5930
  aStates: string[]
5915
5931
  ): sap.ui.core.Control;
5916
5932
  /**
5917
- * @SINCE 1.48
5933
+ * @since 1.48
5918
5934
  *
5919
5935
  * Creates an Action Button in Fiori launchpad, in the given launchpad states.
5920
5936
  * The button will be displayed in the user actions menu, that is opened from the user button in the shell
@@ -5973,7 +5989,7 @@ declare namespace sap {
5973
5989
  }
5974
5990
  ): jQuery.Promise;
5975
5991
  /**
5976
- * @SINCE 1.30
5992
+ * @since 1.30
5977
5993
  *
5978
5994
  * Adds an entry to the User Preferences dialog box including the UI control that appears when the user
5979
5995
  * clicks the new entry, and handling of User Preferences actions such as SAVE and CANCEL.
@@ -6040,7 +6056,7 @@ declare namespace sap {
6040
6056
  value: string | Function
6041
6057
  ): void;
6042
6058
  /**
6043
- * @SINCE 1.37
6059
+ * @since 1.37
6044
6060
  *
6045
6061
  * This method returns the current state of the Viewport Container control.
6046
6062
  *
@@ -6048,7 +6064,7 @@ declare namespace sap {
6048
6064
  */
6049
6065
  getCurrentViewportState(): string;
6050
6066
  /**
6051
- * @SINCE 1.30
6067
+ * @since 1.30
6052
6068
  *
6053
6069
  * Hides an action button from the User Actions Menu in the SAP Fiori launchpad, in the given launchpad
6054
6070
  * states (LaunchpadState). The removed button will not be destroyed.
@@ -6074,7 +6090,7 @@ declare namespace sap {
6074
6090
  aStates: string[]
6075
6091
  ): void;
6076
6092
  /**
6077
- * @SINCE 1.30
6093
+ * @since 1.30
6078
6094
  * @deprecated (since 1.52)
6079
6095
  *
6080
6096
  * Hide the given sap.ushell.ui.shell.ShellFloatingAction from Fiori Launchpad, in the given launchpad states.
@@ -6103,7 +6119,7 @@ declare namespace sap {
6103
6119
  aStates: string[]
6104
6120
  ): void;
6105
6121
  /**
6106
- * @SINCE 1.30
6122
+ * @since 1.30
6107
6123
  *
6108
6124
  * Hide the given sap.ushell.ui.shell.ShellHeadItem from Fiori Launchpad, in the given launchpad states.
6109
6125
  * The removed control will not be destroyed.
@@ -6131,7 +6147,7 @@ declare namespace sap {
6131
6147
  aStates: string[]
6132
6148
  ): void;
6133
6149
  /**
6134
- * @SINCE 1.30
6150
+ * @since 1.30
6135
6151
  *
6136
6152
  * Hide the given sap.ushell.ui.shell.ShellHeadItem from Fiori Launchpad, in the given launchpad states.
6137
6153
  * The removed control will not be destroyed.
@@ -6159,7 +6175,7 @@ declare namespace sap {
6159
6175
  aStates: string[]
6160
6176
  ): void;
6161
6177
  /**
6162
- * @SINCE 1.30
6178
+ * @since 1.30
6163
6179
  *
6164
6180
  * Hide the given control from Fiori Launchpad, in the given launchpad states. The removed control will
6165
6181
  * not be destroyed.
@@ -6187,7 +6203,7 @@ declare namespace sap {
6187
6203
  aStates: string[]
6188
6204
  ): void;
6189
6205
  /**
6190
- * @SINCE 1.30
6206
+ * @since 1.30
6191
6207
  *
6192
6208
  * Hide the given control from the Fiori Launchpad sub header, in the given launchpad states. The removed
6193
6209
  * control will not be destroyed.
@@ -6215,7 +6231,7 @@ declare namespace sap {
6215
6231
  aStates: string[]
6216
6232
  ): void;
6217
6233
  /**
6218
- * @SINCE 1.30
6234
+ * @since 1.30
6219
6235
  *
6220
6236
  * If exists, this method will remove the footer from the Fiori Launchpad.
6221
6237
  *
@@ -6225,7 +6241,7 @@ declare namespace sap {
6225
6241
  */
6226
6242
  removeFooter(): void;
6227
6243
  /**
6228
- * @SINCE 1.30
6244
+ * @since 1.30
6229
6245
  *
6230
6246
  * Remove the given Tool Area Item from Fiori Launchpad, in the given launchpad states. This API is meant
6231
6247
  * to be used for implementing custom elements in the SAP Fiori launchpad. We do not recommend using it
@@ -6251,7 +6267,7 @@ declare namespace sap {
6251
6267
  aStates: string[]
6252
6268
  ): void;
6253
6269
  /**
6254
- * @SINCE 1.30
6270
+ * @since 1.30
6255
6271
  *
6256
6272
  * Displays the given sap.m.Bar as the footer of the Fiori launchpad shell.
6257
6273
  * The footer will be displayed in all states.
@@ -6276,7 +6292,7 @@ declare namespace sap {
6276
6292
  oFooter: sap.m.Bar
6277
6293
  ): void;
6278
6294
  /**
6279
- * @SINCE 1.42
6295
+ * @since 1.42
6280
6296
  * @deprecated (since 1.48) - Please use {@link #setShellFooter} instead.
6281
6297
  *
6282
6298
  * Creates and displays an SAPUI5 control as the footer of the Fiori launchpad shell.
@@ -6316,7 +6332,7 @@ declare namespace sap {
6316
6332
  oControlProperties: object
6317
6333
  ): sap.ui.core.Control;
6318
6334
  /**
6319
- * @SINCE 1.30
6335
+ * @since 1.30
6320
6336
  *
6321
6337
  * Sets the title in the Fiori Launchpad shell header.
6322
6338
  */
@@ -6327,7 +6343,7 @@ declare namespace sap {
6327
6343
  sTitle: string
6328
6344
  ): void;
6329
6345
  /**
6330
- * @SINCE 1.38
6346
+ * @since 1.38
6331
6347
  *
6332
6348
  * Sets the header visibility according to the given value and shell states. (see sap.ushell.renderers.fiori2.renderer.LaunchpadState).
6333
6349
  *
@@ -6362,7 +6378,7 @@ declare namespace sap {
6362
6378
  aStates: string[]
6363
6379
  ): void;
6364
6380
  /**
6365
- * @SINCE 1.30
6381
+ * @since 1.30
6366
6382
  *
6367
6383
  * Sets the visibility of the left pane in the Fiori Launchpad shell, in the given launchpad state @see
6368
6384
  * LaunchpadState
@@ -6378,7 +6394,7 @@ declare namespace sap {
6378
6394
  bVisible: boolean
6379
6395
  ): void;
6380
6396
  /**
6381
- * @SINCE 1.48
6397
+ * @since 1.48
6382
6398
  *
6383
6399
  * Creates and displays an SAPUI5 control as the footer of the Fiori launchpad shell.
6384
6400
  * The footer will be displayed in all states.
@@ -6423,7 +6439,7 @@ declare namespace sap {
6423
6439
  }
6424
6440
  ): jQuery.Promise;
6425
6441
  /**
6426
- * @SINCE 1.30
6442
+ * @since 1.30
6427
6443
  *
6428
6444
  * Displays action buttons in the User Actions Menu in the SAP Fiori launchpad, in the given launchpad states
6429
6445
  * (LaunchpadState). (see sap.ushell.renderers.fiori2.renderer.LaunchpadState).
@@ -6461,7 +6477,7 @@ declare namespace sap {
6461
6477
  aStates: string[]
6462
6478
  ): void;
6463
6479
  /**
6464
- * @SINCE 1.30
6480
+ * @since 1.30
6465
6481
  * @deprecated (since 1.52) - Support for the FloatingActionButton has been discontinued.
6466
6482
  *
6467
6483
  * Displays FloatingActionButton on the bottom right corner of the Fiori launchpad, in the given launchpad
@@ -6495,7 +6511,7 @@ declare namespace sap {
6495
6511
  aStates: string[]
6496
6512
  ): void;
6497
6513
  /**
6498
- * @SINCE 1.30
6514
+ * @since 1.30
6499
6515
  *
6500
6516
  * Displays HeaderItems on the right side of the Fiori launchpad shell header, in the given launchpad states
6501
6517
  * (see sap.ushell.renderers.fiori2.renderer.LaunchpadState).
@@ -6529,7 +6545,7 @@ declare namespace sap {
6529
6545
  aStates: string[]
6530
6546
  ): void;
6531
6547
  /**
6532
- * @SINCE 1.30
6548
+ * @since 1.30
6533
6549
  *
6534
6550
  * Creates and displays one or more HeaderItem controls according to the given control IDs and Shell states
6535
6551
  * (see sap.ushell.renderers.fiori2.renderer.LaunchpadState).
@@ -6570,7 +6586,7 @@ declare namespace sap {
6570
6586
  aStates: string[]
6571
6587
  ): void;
6572
6588
  /**
6573
- * @SINCE 1.30
6589
+ * @since 1.30
6574
6590
  *
6575
6591
  * Displays one or more sub header controls according to the given control IDs and shell states.
6576
6592
  * (see sap.ushell.renderers.fiori2.renderer.LaunchpadState).
@@ -6626,7 +6642,7 @@ declare namespace sap {
6626
6642
  bVisible?: boolean
6627
6643
  ): void;
6628
6644
  /**
6629
- * @SINCE 1.30
6645
+ * @since 1.30
6630
6646
  *
6631
6647
  * Displays ToolAreaItems on the left side of the Fiori Launchpad shell, in the given launchpad states.
6632
6648
  *
@@ -6709,9 +6725,9 @@ declare namespace sap {
6709
6725
  afterRendering?: (oEvent: sap.ui.base.Event) => void;
6710
6726
  }
6711
6727
 
6712
- interface $AppBoxAfterRenderingEventParameters {}
6728
+ interface AppBox$AfterRenderingEventParameters {}
6713
6729
 
6714
- interface $AppBoxPressEventParameters {}
6730
+ interface AppBox$PressEventParameters {}
6715
6731
 
6716
6732
  /**
6717
6733
  * Add your documentation for the new ui/appfinder/AppBox
@@ -6911,7 +6927,7 @@ declare namespace sap {
6911
6927
  oListener?: object
6912
6928
  ): this;
6913
6929
  /**
6914
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6930
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6915
6931
  *
6916
6932
  * Fires event {@link #event:afterRendering afterRendering} to attached listeners.
6917
6933
  *
@@ -6924,7 +6940,7 @@ declare namespace sap {
6924
6940
  mParameters?: object
6925
6941
  ): this;
6926
6942
  /**
6927
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6943
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6928
6944
  *
6929
6945
  * Fires event {@link #event:press press} to attached listeners.
6930
6946
  *
@@ -7069,6 +7085,22 @@ declare namespace sap {
7069
7085
  sUrl?: string
7070
7086
  ): this;
7071
7087
  }
7088
+
7089
+ /**
7090
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'AppBox$AfterRenderingEventParameters'
7091
+ * in 1.115.1 and any later releases.
7092
+ */
7093
+ type $AppBoxAfterRenderingEventParameters = sap.ushell.ui.appfinder.AppBox$AfterRenderingEventParameters;
7094
+
7095
+ type AppBox$AfterRenderingEvent = sap.ui.base.Event<AppBox$AfterRenderingEventParameters>;
7096
+
7097
+ /**
7098
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'AppBox$PressEventParameters'
7099
+ * in 1.115.1 and any later releases.
7100
+ */
7101
+ type $AppBoxPressEventParameters = sap.ushell.ui.appfinder.AppBox$PressEventParameters;
7102
+
7103
+ type AppBox$PressEvent = sap.ui.base.Event<AppBox$PressEventParameters>;
7072
7104
  }
7073
7105
 
7074
7106
  namespace footerbar {
@@ -7708,22 +7740,22 @@ declare namespace sap {
7708
7740
  press?: (oEvent: sap.ui.base.Event) => void;
7709
7741
  }
7710
7742
 
7711
- interface $ActionItemAfterRenderingEventParameters {}
7743
+ interface ActionItem$AfterRenderingEventParameters {}
7712
7744
 
7713
- interface $ActionItemPressEventParameters
7714
- extends sap.m.$ButtonPressEventParameters {}
7745
+ interface ActionItem$PressEventParameters
7746
+ extends sap.m.Button$PressEventParameters {}
7715
7747
 
7716
- interface $DashboardGroupsContainerAfterRenderingEventParameters {}
7748
+ interface DashboardGroupsContainer$AfterRenderingEventParameters {}
7717
7749
 
7718
- interface $LinkTileWrapperAfterRenderingEventParameters {}
7750
+ interface LinkTileWrapper$AfterRenderingEventParameters {}
7719
7751
 
7720
- interface $LinkTileWrapperCoverDivPressEventParameters {}
7752
+ interface LinkTileWrapper$CoverDivPressEventParameters {}
7721
7753
 
7722
- interface $LinkTileWrapperPressEventParameters {}
7754
+ interface LinkTileWrapper$PressEventParameters {}
7723
7755
 
7724
- interface $LinkTileWrapperShowActionsEventParameters {}
7756
+ interface LinkTileWrapper$ShowActionsEventParameters {}
7725
7757
 
7726
- interface $TileStatePressEventParameters {}
7758
+ interface TileState$PressEventParameters {}
7727
7759
 
7728
7760
  class ActionItem extends sap.m.Button {
7729
7761
  /**
@@ -7910,7 +7942,7 @@ declare namespace sap {
7910
7942
  oListener?: object
7911
7943
  ): this;
7912
7944
  /**
7913
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7945
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
7914
7946
  *
7915
7947
  * Fires event {@link #event:afterRendering afterRendering} to attached listeners.
7916
7948
  *
@@ -7923,7 +7955,7 @@ declare namespace sap {
7923
7955
  mParameters?: object
7924
7956
  ): this;
7925
7957
  /**
7926
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7958
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
7927
7959
  *
7928
7960
  * Fires event {@link #event:press press} to attached listeners.
7929
7961
  *
@@ -8105,7 +8137,7 @@ declare namespace sap {
8105
8137
  oListener?: object
8106
8138
  ): this;
8107
8139
  /**
8108
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8140
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8109
8141
  *
8110
8142
  * Fires event {@link #event:afterRendering afterRendering} to attached listeners.
8111
8143
  *
@@ -8558,7 +8590,7 @@ declare namespace sap {
8558
8590
  oListener?: object
8559
8591
  ): this;
8560
8592
  /**
8561
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8593
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8562
8594
  *
8563
8595
  * Fires event {@link #event:afterRendering afterRendering} to attached listeners.
8564
8596
  *
@@ -8571,7 +8603,7 @@ declare namespace sap {
8571
8603
  mParameters?: object
8572
8604
  ): this;
8573
8605
  /**
8574
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8606
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8575
8607
  *
8576
8608
  * Fires event {@link #event:coverDivPress coverDivPress} to attached listeners.
8577
8609
  *
@@ -8584,7 +8616,7 @@ declare namespace sap {
8584
8616
  mParameters?: object
8585
8617
  ): this;
8586
8618
  /**
8587
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8619
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8588
8620
  *
8589
8621
  * Fires event {@link #event:press press} to attached listeners.
8590
8622
  *
@@ -8597,7 +8629,7 @@ declare namespace sap {
8597
8629
  mParameters?: object
8598
8630
  ): this;
8599
8631
  /**
8600
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8632
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8601
8633
  *
8602
8634
  * Fires event {@link #event:showActions showActions} to attached listeners.
8603
8635
  *
@@ -9047,7 +9079,7 @@ declare namespace sap {
9047
9079
  oListener?: object
9048
9080
  ): this;
9049
9081
  /**
9050
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9082
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9051
9083
  *
9052
9084
  * Fires event {@link #event:press press} to attached listeners.
9053
9085
  *
@@ -9083,6 +9115,70 @@ declare namespace sap {
9083
9115
  sState?: string
9084
9116
  ): this;
9085
9117
  }
9118
+
9119
+ /**
9120
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ActionItem$AfterRenderingEventParameters'
9121
+ * in 1.115.1 and any later releases.
9122
+ */
9123
+ type $ActionItemAfterRenderingEventParameters = sap.ushell.ui.launchpad.ActionItem$AfterRenderingEventParameters;
9124
+
9125
+ type ActionItem$AfterRenderingEvent = sap.ui.base.Event<ActionItem$AfterRenderingEventParameters>;
9126
+
9127
+ /**
9128
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ActionItem$PressEventParameters'
9129
+ * in 1.115.1 and any later releases.
9130
+ */
9131
+ type $ActionItemPressEventParameters = sap.ushell.ui.launchpad.ActionItem$PressEventParameters;
9132
+
9133
+ type ActionItem$PressEvent = sap.ui.base.Event<ActionItem$PressEventParameters>;
9134
+
9135
+ /**
9136
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DashboardGroupsContainer$AfterRenderingEventParameters'
9137
+ * in 1.115.1 and any later releases.
9138
+ */
9139
+ type $DashboardGroupsContainerAfterRenderingEventParameters = sap.ushell.ui.launchpad.DashboardGroupsContainer$AfterRenderingEventParameters;
9140
+
9141
+ type DashboardGroupsContainer$AfterRenderingEvent = sap.ui.base.Event<DashboardGroupsContainer$AfterRenderingEventParameters>;
9142
+
9143
+ /**
9144
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'LinkTileWrapper$AfterRenderingEventParameters'
9145
+ * in 1.115.1 and any later releases.
9146
+ */
9147
+ type $LinkTileWrapperAfterRenderingEventParameters = sap.ushell.ui.launchpad.LinkTileWrapper$AfterRenderingEventParameters;
9148
+
9149
+ type LinkTileWrapper$AfterRenderingEvent = sap.ui.base.Event<LinkTileWrapper$AfterRenderingEventParameters>;
9150
+
9151
+ /**
9152
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'LinkTileWrapper$CoverDivPressEventParameters'
9153
+ * in 1.115.1 and any later releases.
9154
+ */
9155
+ type $LinkTileWrapperCoverDivPressEventParameters = sap.ushell.ui.launchpad.LinkTileWrapper$CoverDivPressEventParameters;
9156
+
9157
+ type LinkTileWrapper$CoverDivPressEvent = sap.ui.base.Event<LinkTileWrapper$CoverDivPressEventParameters>;
9158
+
9159
+ /**
9160
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'LinkTileWrapper$PressEventParameters'
9161
+ * in 1.115.1 and any later releases.
9162
+ */
9163
+ type $LinkTileWrapperPressEventParameters = sap.ushell.ui.launchpad.LinkTileWrapper$PressEventParameters;
9164
+
9165
+ type LinkTileWrapper$PressEvent = sap.ui.base.Event<LinkTileWrapper$PressEventParameters>;
9166
+
9167
+ /**
9168
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'LinkTileWrapper$ShowActionsEventParameters'
9169
+ * in 1.115.1 and any later releases.
9170
+ */
9171
+ type $LinkTileWrapperShowActionsEventParameters = sap.ushell.ui.launchpad.LinkTileWrapper$ShowActionsEventParameters;
9172
+
9173
+ type LinkTileWrapper$ShowActionsEvent = sap.ui.base.Event<LinkTileWrapper$ShowActionsEventParameters>;
9174
+
9175
+ /**
9176
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TileState$PressEventParameters'
9177
+ * in 1.115.1 and any later releases.
9178
+ */
9179
+ type $TileStatePressEventParameters = sap.ushell.ui.launchpad.TileState$PressEventParameters;
9180
+
9181
+ type TileState$PressEvent = sap.ui.base.Event<TileState$PressEventParameters>;
9086
9182
  }
9087
9183
 
9088
9184
  namespace shell {
@@ -9106,7 +9202,7 @@ declare namespace sap {
9106
9202
  text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
9107
9203
 
9108
9204
  /**
9109
- * @SINCE 1.30
9205
+ * @since 1.30
9110
9206
  *
9111
9207
  * Text which will be read by screenreader.
9112
9208
  */
@@ -9141,12 +9237,12 @@ declare namespace sap {
9141
9237
  expand?: (oEvent: sap.ui.base.Event) => void;
9142
9238
  }
9143
9239
 
9144
- interface $ToolAreaItemExpandEventParameters {}
9240
+ interface ToolAreaItem$ExpandEventParameters {}
9145
9241
 
9146
- interface $ToolAreaItemPressEventParameters {}
9242
+ interface ToolAreaItem$PressEventParameters {}
9147
9243
 
9148
9244
  /**
9149
- * @SINCE 1.30.5
9245
+ * @since 1.30.5
9150
9246
  *
9151
9247
  * A control to be placed in the tool area
9152
9248
  */
@@ -9336,7 +9432,7 @@ declare namespace sap {
9336
9432
  oListener?: object
9337
9433
  ): this;
9338
9434
  /**
9339
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9435
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9340
9436
  *
9341
9437
  * Fires event {@link #event:expand expand} to attached listeners.
9342
9438
  *
@@ -9349,7 +9445,7 @@ declare namespace sap {
9349
9445
  mParameters?: object
9350
9446
  ): this;
9351
9447
  /**
9352
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9448
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9353
9449
  *
9354
9450
  * Fires event {@link #event:press press} to attached listeners.
9355
9451
  *
@@ -9362,7 +9458,7 @@ declare namespace sap {
9362
9458
  mParameters?: object
9363
9459
  ): this;
9364
9460
  /**
9365
- * @SINCE 1.30
9461
+ * @since 1.30
9366
9462
  *
9367
9463
  * Gets current value of property {@link #getAriaLabel ariaLabel}.
9368
9464
  *
@@ -9418,7 +9514,7 @@ declare namespace sap {
9418
9514
  */
9419
9515
  getVisible(): boolean;
9420
9516
  /**
9421
- * @SINCE 1.30
9517
+ * @since 1.30
9422
9518
  *
9423
9519
  * Sets a new value for property {@link #getAriaLabel ariaLabel}.
9424
9520
  *
@@ -9516,11 +9612,27 @@ declare namespace sap {
9516
9612
  bVisible?: boolean
9517
9613
  ): this;
9518
9614
  }
9615
+
9616
+ /**
9617
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolAreaItem$ExpandEventParameters'
9618
+ * in 1.115.1 and any later releases.
9619
+ */
9620
+ type $ToolAreaItemExpandEventParameters = sap.ushell.ui.shell.ToolAreaItem$ExpandEventParameters;
9621
+
9622
+ type ToolAreaItem$ExpandEvent = sap.ui.base.Event<ToolAreaItem$ExpandEventParameters>;
9623
+
9624
+ /**
9625
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolAreaItem$PressEventParameters'
9626
+ * in 1.115.1 and any later releases.
9627
+ */
9628
+ type $ToolAreaItemPressEventParameters = sap.ushell.ui.shell.ToolAreaItem$PressEventParameters;
9629
+
9630
+ type ToolAreaItem$PressEvent = sap.ui.base.Event<ToolAreaItem$PressEventParameters>;
9519
9631
  }
9520
9632
 
9521
9633
  namespace tile {
9522
9634
  /**
9523
- * @SINCE 1.15.0
9635
+ * @since 1.15.0
9524
9636
  *
9525
9637
  * An applauncher tile for simple, static apps, displaying title, subtitle, an icon and additional information
9526
9638
  */
@@ -9616,7 +9728,7 @@ declare namespace sap {
9616
9728
  }
9617
9729
 
9618
9730
  /**
9619
- * @SINCE 1.38.0
9731
+ * @since 1.38.0
9620
9732
  *
9621
9733
  * The Unified Shell's ShellUIService service.
9622
9734
  *
@@ -9744,7 +9856,7 @@ declare namespace sap {
9744
9856
  */
9745
9857
  static getMetadata(): sap.ui.base.Metadata;
9746
9858
  /**
9747
- * @SINCE 1.38.0
9859
+ * @since 1.38.0
9748
9860
  *
9749
9861
  * Returns the title that was last set via {@link setTitle}.
9750
9862
  *
@@ -9752,7 +9864,7 @@ declare namespace sap {
9752
9864
  */
9753
9865
  getTitle(): string;
9754
9866
  /**
9755
- * @SINCE 1.38.0
9867
+ * @since 1.38.0
9756
9868
  *
9757
9869
  * Displays the given hierarchy in the shell header.
9758
9870
  */
@@ -9789,7 +9901,7 @@ declare namespace sap {
9789
9901
  aHierarchyLevels?: object[]
9790
9902
  ): void;
9791
9903
  /**
9792
- * @SINCE 1.40.0
9904
+ * @since 1.40.0
9793
9905
  *
9794
9906
  * Used by apps to set related apps. This setting is propagated towards the Shell Header via corresponding
9795
9907
  * events.
@@ -9826,7 +9938,7 @@ declare namespace sap {
9826
9938
  aRelatedApps?: object[]
9827
9939
  ): void;
9828
9940
  /**
9829
- * @SINCE 1.38.0
9941
+ * @since 1.38.0
9830
9942
  *
9831
9943
  * Displays the given title in the shell header. This method should not be called if the app calling the
9832
9944
  * method is not currently displayed in the Fiori Launchpad.
@@ -9841,7 +9953,7 @@ declare namespace sap {
9841
9953
  }
9842
9954
 
9843
9955
  /**
9844
- * @SINCE 1.15.0
9956
+ * @since 1.15.0
9845
9957
  *
9846
9958
  * The Unified Shell's container which manages renderers, services, and adapters. The container is designed
9847
9959
  * to be a singleton. Instead of creating an instance please access the central instance via namespace `sap.ushell.Container`.
@@ -9849,14 +9961,14 @@ declare namespace sap {
9849
9961
  class Container {
9850
9962
  constructor();
9851
9963
  /**
9852
- * @SINCE 1.21.1
9964
+ * @since 1.21.1
9853
9965
  *
9854
9966
  * An enumeration for the application work protect mode state.
9855
9967
  */
9856
9968
  DirtyState: sap.ushell.Container.DirtyState;
9857
9969
 
9858
9970
  /**
9859
- * @SINCE 1.15.0
9971
+ * @since 1.15.0
9860
9972
  *
9861
9973
  * Logs out the current user from all relevant back-end systems, including the logon system itself. This
9862
9974
  * member represents the default native implementation of logout. If SessionHandler was created, we register
@@ -9865,7 +9977,7 @@ declare namespace sap {
9865
9977
  logout: undefined;
9866
9978
 
9867
9979
  /**
9868
- * @SINCE 1.15.0
9980
+ * @since 1.15.0
9869
9981
  *
9870
9982
  * Adds a system to the list of remote systems currently in use. On logout this list is processed and performs
9871
9983
  * a logout for each system via the ContainerAdapter specific for its platform.
@@ -9877,7 +9989,7 @@ declare namespace sap {
9877
9989
  oRemoteSystem: sap.ushell.System
9878
9990
  ): void;
9879
9991
  /**
9880
- * @SINCE 1.19.1
9992
+ * @since 1.19.1
9881
9993
  *
9882
9994
  * Attaches a listener to the logout event. In case the bAsyncFunction parameter is true, the fnFunction
9883
9995
  * must return a promise. FLP will wait for the promise to be resolved before doing the actual logout.
@@ -9893,7 +10005,7 @@ declare namespace sap {
9893
10005
  bAsyncFunction: boolean
9894
10006
  ): void;
9895
10007
  /**
9896
- * @SINCE 1.34.1
10008
+ * @since 1.34.1
9897
10009
  *
9898
10010
  * Attaches a listener to the rendererCreated event.
9899
10011
  */
@@ -9907,7 +10019,7 @@ declare namespace sap {
9907
10019
  fnFunction: Function
9908
10020
  ): void;
9909
10021
  /**
9910
- * @SINCE 1.21.2
10022
+ * @since 1.21.2
9911
10023
  *
9912
10024
  * Cancels the logon procedure in the current frame, if any. This MUST be used by the logon frame provider
9913
10025
  * in case the user wants to close the logon frame for good. It will report "Authentication cancelled" and
@@ -9918,7 +10030,7 @@ declare namespace sap {
9918
10030
  */
9919
10031
  cancelLogon(): void;
9920
10032
  /**
9921
- * @SINCE 1.15.0
10033
+ * @since 1.15.0
9922
10034
  *
9923
10035
  * Creates a new renderer instance for the given renderer name.
9924
10036
  *
@@ -9955,7 +10067,7 @@ declare namespace sap {
9955
10067
  | sap.ui.core.ComponentContainer
9956
10068
  | Promise<sap.ui.core.ComponentContainer>;
9957
10069
  /**
9958
- * @SINCE 1.67.0
10070
+ * @since 1.67.0
9959
10071
  *
9960
10072
  * Deregister the work protection dirty callback function. See registerDirtyStateProvider for more information.
9961
10073
  * Only the last registered function will be deregistered (in case it was registered multiple times).
@@ -9967,7 +10079,7 @@ declare namespace sap {
9967
10079
  fnDirty: Function
9968
10080
  ): void;
9969
10081
  /**
9970
- * @SINCE 1.19.1
10082
+ * @since 1.19.1
9971
10083
  *
9972
10084
  * Detaches a listener from the logout event.
9973
10085
  */
@@ -9978,7 +10090,7 @@ declare namespace sap {
9978
10090
  fnFunction: Function
9979
10091
  ): void;
9980
10092
  /**
9981
- * @SINCE 1.34.1
10093
+ * @since 1.34.1
9982
10094
  *
9983
10095
  * Detaches a listener from the rendererCreated event.
9984
10096
  */
@@ -9989,7 +10101,7 @@ declare namespace sap {
9989
10101
  fnFunction: Function
9990
10102
  ): void;
9991
10103
  /**
9992
- * @SINCE 1.27.0
10104
+ * @since 1.27.0
9993
10105
  *
9994
10106
  * If the dirty state was set to 'false' using 'setDirtyFlag' the registered dirty state provider methods
9995
10107
  * get called to determine the actual dirty state. The determined dirty state is then returned.
@@ -10001,7 +10113,7 @@ declare namespace sap {
10001
10113
  */
10002
10114
  getDirtyFlag(): boolean;
10003
10115
  /**
10004
- * @SINCE 1.21.1
10116
+ * @since 1.21.1
10005
10117
  *
10006
10118
  * Returns the global dirty state.
10007
10119
  *
@@ -10011,7 +10123,7 @@ declare namespace sap {
10011
10123
  */
10012
10124
  getGlobalDirty(): jQuery.Deferred;
10013
10125
  /**
10014
- * @SINCE 1.30.0
10126
+ * @since 1.30.0
10015
10127
  *
10016
10128
  * Gets a renderer instance for the given renderer name, that was created by the createRenderer method.
10017
10129
  *
@@ -10028,7 +10140,7 @@ declare namespace sap {
10028
10140
  sRendererName?: string
10029
10141
  ): sap.ui.core.Control | sap.ui.core.Component;
10030
10142
  /**
10031
- * @SINCE 1.15.0
10143
+ * @since 1.15.0
10032
10144
  * @deprecated (since 1.77) - Please use {@link #getServiceAsync} instead.
10033
10145
  *
10034
10146
  * Returns a service with the given name, creating it if necessary. Services are singleton objects identified
@@ -10103,7 +10215,7 @@ declare namespace sap {
10103
10215
  bAsync?: boolean
10104
10216
  ): object | Promise<object>;
10105
10217
  /**
10106
- * @SINCE 1.55.0
10218
+ * @since 1.55.0
10107
10219
  *
10108
10220
  * Returns a Promise that resolves a service with the given name, creating it if necessary. Services are
10109
10221
  * singleton objects identified by their (resulting) name.
@@ -10171,7 +10283,7 @@ declare namespace sap {
10171
10283
  sParameter?: string
10172
10284
  ): Promise<object>;
10173
10285
  /**
10174
- * @SINCE 1.31.0
10286
+ * @since 1.31.0
10175
10287
  *
10176
10288
  * Register the work protection dirty callback function. In the work protect mechanism, each platform can
10177
10289
  * register their own method in order to check if data was changed during the session, and notify the container
@@ -10198,7 +10310,7 @@ declare namespace sap {
10198
10310
  fnDirty: Function
10199
10311
  ): void;
10200
10312
  /**
10201
- * @SINCE 1.27.0
10313
+ * @since 1.27.0
10202
10314
  *
10203
10315
  * Setter for the isDirty flag value.
10204
10316
  *
@@ -10212,7 +10324,7 @@ declare namespace sap {
10212
10324
  ): void;
10213
10325
  }
10214
10326
  /**
10215
- * @SINCE 1.15.0
10327
+ * @since 1.15.0
10216
10328
  *
10217
10329
  * A representation of a system
10218
10330
  */