@sapui5/ts-types 1.102.7 → 1.102.9

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 (46) hide show
  1. package/package.json +1 -1
  2. package/types/sap.chart.d.ts +1 -1
  3. package/types/sap.f.d.ts +1 -1
  4. package/types/sap.fe.common.d.ts +1 -1
  5. package/types/sap.fe.core.d.ts +25 -1
  6. package/types/sap.fe.macros.d.ts +1 -1
  7. package/types/sap.fe.navigation.d.ts +1 -1
  8. package/types/sap.fe.templates.d.ts +37 -1
  9. package/types/sap.fe.test.d.ts +17 -3
  10. package/types/sap.feedback.ui.d.ts +1 -1
  11. package/types/sap.gantt.d.ts +1 -1
  12. package/types/sap.insights.d.ts +1 -1
  13. package/types/sap.m.d.ts +1 -1
  14. package/types/sap.makit.d.ts +1 -1
  15. package/types/sap.me.d.ts +1 -1
  16. package/types/sap.ndc.d.ts +1 -1
  17. package/types/sap.ovp.d.ts +1 -1
  18. package/types/sap.suite.ui.commons.d.ts +1 -1
  19. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  20. package/types/sap.suite.ui.microchart.d.ts +1 -1
  21. package/types/sap.tnt.d.ts +1 -1
  22. package/types/sap.ui.codeeditor.d.ts +1 -1
  23. package/types/sap.ui.commons.d.ts +1 -1
  24. package/types/sap.ui.comp.d.ts +1 -1
  25. package/types/sap.ui.core.d.ts +1 -1
  26. package/types/sap.ui.dt.d.ts +1 -1
  27. package/types/sap.ui.export.d.ts +3 -3
  28. package/types/sap.ui.fl.d.ts +1 -1
  29. package/types/sap.ui.integration.d.ts +1 -1
  30. package/types/sap.ui.layout.d.ts +1 -1
  31. package/types/sap.ui.mdc.d.ts +1 -1
  32. package/types/sap.ui.richtexteditor.d.ts +1 -1
  33. package/types/sap.ui.rta.d.ts +1 -1
  34. package/types/sap.ui.suite.d.ts +1 -1
  35. package/types/sap.ui.support.d.ts +1 -1
  36. package/types/sap.ui.table.d.ts +1 -1
  37. package/types/sap.ui.testrecorder.d.ts +1 -1
  38. package/types/sap.ui.unified.d.ts +1 -1
  39. package/types/sap.ui.ux3.d.ts +1 -1
  40. package/types/sap.ui.vbm.d.ts +1 -1
  41. package/types/sap.ui.vk.d.ts +63 -5
  42. package/types/sap.uiext.inbox.d.ts +1 -1
  43. package/types/sap.ushell.d.ts +1 -1
  44. package/types/sap.ushell_abap.d.ts +1 -1
  45. package/types/sap.uxap.d.ts +1 -1
  46. package/types/sap.viz.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/ts-types",
3
- "version": "1.102.7",
3
+ "version": "1.102.9",
4
4
  "description": "SAPUI5 TypeScript Definitions",
5
5
  "homepage": "https://ui5.sap.com",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.6
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.6
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1043,6 +1043,18 @@ declare namespace sap {
1043
1043
  */
1044
1044
  oControl: sap.ui.core.Control
1045
1045
  ): void;
1046
+ /**
1047
+ * Retrieves the editFlow controller extension for this page.
1048
+ *
1049
+ * @returns The editFlow controller extension
1050
+ */
1051
+ getEditFlow(): /* was: sap.fe.core.EditFlow */ any;
1052
+ /**
1053
+ * Retrieves the intentBasedNavigation controller extension for this page.
1054
+ *
1055
+ * @returns The intentBasedNavigation controller extension
1056
+ */
1057
+ getIntentBasedNavigation(): /* was: sap.fe.core.IntentBasedNavigation */ any;
1046
1058
  /**
1047
1059
  * Get access to models managed by SAP Fiori elements.
1048
1060
  *
@@ -1070,6 +1082,12 @@ declare namespace sap {
1070
1082
  */
1071
1083
  sModelName?: string
1072
1084
  ): undefined | sap.ui.model.Model;
1085
+ /**
1086
+ * Retrieves the routing controller extension for this page.
1087
+ *
1088
+ * @returns The routing controller extension
1089
+ */
1090
+ getRouting(): /* was: sap.fe.core.Routing */ any;
1073
1091
  /**
1074
1092
  * Load a fragment and go through the template preprocessor with the current page context.
1075
1093
  *
@@ -1152,6 +1170,12 @@ declare namespace sap {
1152
1170
  * @returns The app component or, if not found, null
1153
1171
  */
1154
1172
  getAppComponent(): sap.fe.core.AppComponent;
1173
+ /**
1174
+ * Get the extension API for the current page.
1175
+ *
1176
+ * @returns The extension API.
1177
+ */
1178
+ getExtensionAPI(): sap.fe.core.ExtensionAPI;
1155
1179
  /**
1156
1180
  * Convenience method provided by SAP Fiori elements to enable applications to include the view model by
1157
1181
  * name into each controller.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.6
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.6
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.6
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -37,6 +37,18 @@ declare namespace sap {
37
37
  */
38
38
  mFilterConditions: any
39
39
  ): object;
40
+ /**
41
+ * Retrieves the editFlow controller extension for this page.
42
+ *
43
+ * @returns The editFlow controller extension
44
+ */
45
+ getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
46
+ /**
47
+ * Retrieves the intentBasedNavigation controller extension for this page.
48
+ *
49
+ * @returns The intentBasedNavigation controller extension
50
+ */
51
+ getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
40
52
  /**
41
53
  * Get access to models managed by SAP Fiori elements.
42
54
  *
@@ -64,6 +76,12 @@ declare namespace sap {
64
76
  */
65
77
  sModelName?: string
66
78
  ): undefined | sap.ui.model.Model;
79
+ /**
80
+ * Retrieves the routing controller extension for this page.
81
+ *
82
+ * @returns The routing controller extension
83
+ */
84
+ getRouting(): /* was: sap.fe.templates.Routing */ any;
67
85
  /**
68
86
  * Gets the list entries currently selected for the displayed control.
69
87
  *
@@ -198,6 +216,18 @@ declare namespace sap {
198
216
  * @returns Context bound to the object page
199
217
  */
200
218
  getBindingContext(): undefined | object | sap.ui.model.Context;
219
+ /**
220
+ * Retrieves the editFlow controller extension for this page.
221
+ *
222
+ * @returns The editFlow controller extension
223
+ */
224
+ getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
225
+ /**
226
+ * Retrieves the intentBasedNavigation controller extension for this page.
227
+ *
228
+ * @returns The intentBasedNavigation controller extension
229
+ */
230
+ getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
201
231
  /**
202
232
  * Get access to models managed by SAP Fiori elements.
203
233
  *
@@ -225,6 +255,12 @@ declare namespace sap {
225
255
  */
226
256
  sModelName?: string
227
257
  ): undefined | sap.ui.model.Model;
258
+ /**
259
+ * Retrieves the routing controller extension for this page.
260
+ *
261
+ * @returns The routing controller extension
262
+ */
263
+ getRouting(): /* was: sap.fe.templates.Routing */ any;
228
264
  /**
229
265
  * Gets the list entries currently selected for the table.
230
266
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.6
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -2466,7 +2466,14 @@ declare namespace sap {
2466
2466
  *
2467
2467
  * @returns The available filter bar actions
2468
2468
  */
2469
- onFilterBar(): sap.fe.test.api.FilterBarActions;
2469
+ onFilterBar(
2470
+ /**
2471
+ * The identifier of the filterbar
2472
+ */
2473
+ vFilterBarIdentifier: /* was: sap.fe.test.api.FilterBarIdentifier */
2474
+ | any
2475
+ | string
2476
+ ): sap.fe.test.api.FilterBarActions;
2470
2477
  /**
2471
2478
  * Returns a {@link sap.fe.test.api.HeaderActionsLR} instance.
2472
2479
  *
@@ -2496,7 +2503,14 @@ declare namespace sap {
2496
2503
  *
2497
2504
  * @returns The available filter bar assertions
2498
2505
  */
2499
- onFilterBar(): sap.fe.test.api.FilterBarAssertions;
2506
+ onFilterBar(
2507
+ /**
2508
+ * The identifier of the filterbar
2509
+ */
2510
+ vFilterBarIdentifier: /* was: sap.fe.test.api.FilterBarIdentifier */
2511
+ | any
2512
+ | string
2513
+ ): sap.fe.test.api.FilterBarAssertions;
2500
2514
  /**
2501
2515
  * Returns a {@link sap.fe.test.api.HeaderAssertionsLR} instance.
2502
2516
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.1
1
+ // For Library Version: 1.102.2
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.6
1
+ // For Library Version: 1.102.8
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.5
1
+ // For Library Version: 1.102.6
2
2
 
3
3
  declare module "sap/insights/CardHelper" {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.5
1
+ // For Library Version: 1.102.6
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ovp {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.5
1
+ // For Library Version: 1.102.6
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.6
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.102.7
267
+ // For Library Version: 1.102.9
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -225,7 +225,7 @@ declare namespace sap {
225
225
  * - `workbook.context` - Context object that will be applied to the generated file. It may contain the
226
226
  * following fields:
227
227
  * - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
228
- * - `version` (string) - Application version that creates the XLSX document (default: "1.102.7")
228
+ * - `version` (string) - Application version that creates the XLSX document (default: "1.102.9")
229
229
  * - `title` (string) - Title of the XLSX document (NOT the filename)
230
230
  * - `modifiedBy` (string) - User context for the XLSX document
231
231
  * - `sheetName` (string) - The label of the data sheet
@@ -311,7 +311,7 @@ declare namespace sap {
311
311
  * columns: aColumns,
312
312
  * context: {
313
313
  * application: 'Debug Test Application',
314
- * version: '1.102.7',
314
+ * version: '1.102.9',
315
315
  * title: 'Some random title',
316
316
  * modifiedBy: 'John Doe',
317
317
  * metaSheetName: 'Custom metadata',
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.1
1
+ // For Library Version: 1.102.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -15581,6 +15581,23 @@ declare namespace sap {
15581
15581
  | sap.ui.base.ManagedObject.PropertyBindingInfo
15582
15582
  | `{${string}}`;
15583
15583
 
15584
+ /**
15585
+ * An object used to load content resource's dependencies.
15586
+ *
15587
+ * A content resource may have dependencies, e.g. if the loaded content resource is a shattered VDS file
15588
+ * it reference other VDS files.
15589
+ *
15590
+ * `dependencyLoader` should be an object with method `function load(uri: string, context: any): Promise<{buffer:
15591
+ * ArrayBuffer, context: any}>`, where `uri` is a reference to a dependency and `context` is opaque data.
15592
+ *
15593
+ * `uri` is application specific and can be a full URL or a relative file name or anything else, e.g. some
15594
+ * identifier known to `dependencyLoader`.
15595
+ */
15596
+ dependencyLoader?:
15597
+ | any
15598
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
15599
+ | `{${string}}`;
15600
+
15584
15601
  /**
15585
15602
  * Child content resources.
15586
15603
  */
@@ -15695,8 +15712,8 @@ declare namespace sap {
15695
15712
  /**
15696
15713
  * The semantic spot type for the legend marker.
15697
15714
  */
15698
- semanticSpotType?: /* was: sap.ui.vbm.SemanticType */
15699
- | any
15715
+ semanticSpotType?:
15716
+ | sap.ui.vbm.SemanticType
15700
15717
  | sap.ui.base.ManagedObject.PropertyBindingInfo
15701
15718
  | `{${string}}`;
15702
15719
  }
@@ -21247,6 +21264,23 @@ declare namespace sap {
21247
21264
  * Child content resources.
21248
21265
  */
21249
21266
  getContentResources(): sap.ui.vk.ContentResource[];
21267
+ /**
21268
+ * Gets current value of property {@link #getDependencyLoader dependencyLoader}.
21269
+ *
21270
+ * An object used to load content resource's dependencies.
21271
+ *
21272
+ * A content resource may have dependencies, e.g. if the loaded content resource is a shattered VDS file
21273
+ * it reference other VDS files.
21274
+ *
21275
+ * `dependencyLoader` should be an object with method `function load(uri: string, context: any): Promise<{buffer:
21276
+ * ArrayBuffer, context: any}>`, where `uri` is a reference to a dependency and `context` is opaque data.
21277
+ *
21278
+ * `uri` is application specific and can be a full URL or a relative file name or anything else, e.g. some
21279
+ * identifier known to `dependencyLoader`.
21280
+ *
21281
+ * @returns Value of property `dependencyLoader`
21282
+ */
21283
+ getDependencyLoader(): any;
21250
21284
  /**
21251
21285
  * Gets current value of property {@link #getEnableLogger enableLogger}.
21252
21286
  *
@@ -21517,6 +21551,30 @@ declare namespace sap {
21517
21551
  */
21518
21552
  sActivateView: string
21519
21553
  ): this;
21554
+ /**
21555
+ * Sets a new value for property {@link #getDependencyLoader dependencyLoader}.
21556
+ *
21557
+ * An object used to load content resource's dependencies.
21558
+ *
21559
+ * A content resource may have dependencies, e.g. if the loaded content resource is a shattered VDS file
21560
+ * it reference other VDS files.
21561
+ *
21562
+ * `dependencyLoader` should be an object with method `function load(uri: string, context: any): Promise<{buffer:
21563
+ * ArrayBuffer, context: any}>`, where `uri` is a reference to a dependency and `context` is opaque data.
21564
+ *
21565
+ * `uri` is application specific and can be a full URL or a relative file name or anything else, e.g. some
21566
+ * identifier known to `dependencyLoader`.
21567
+ *
21568
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
21569
+ *
21570
+ * @returns Reference to `this` in order to allow method chaining
21571
+ */
21572
+ setDependencyLoader(
21573
+ /**
21574
+ * New value for property `dependencyLoader`
21575
+ */
21576
+ oDependencyLoader: any
21577
+ ): this;
21520
21578
  /**
21521
21579
  * Sets a new value for property {@link #getEnableLogger enableLogger}.
21522
21580
  *
@@ -22718,7 +22776,7 @@ declare namespace sap {
22718
22776
  *
22719
22777
  * @returns Value of property `semanticSpotType`
22720
22778
  */
22721
- getSemanticSpotType(): /* was: sap.ui.vbm.SemanticType */ any;
22779
+ getSemanticSpotType(): sap.ui.vbm.SemanticType;
22722
22780
  /**
22723
22781
  * Sets a new value for property {@link #getColor color}.
22724
22782
  *
@@ -22747,7 +22805,7 @@ declare namespace sap {
22747
22805
  /**
22748
22806
  * New value for property `semanticSpotType`
22749
22807
  */
22750
- sSemanticSpotType?: /* was: sap.ui.vbm.SemanticType */ any
22808
+ sSemanticSpotType?: sap.ui.vbm.SemanticType
22751
22809
  ): this;
22752
22810
  }
22753
22811
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace uiext {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ushell {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.7
1
+ // For Library Version: 1.102.9
2
2
 
3
3
  declare namespace sap {
4
4
  /**