@sapui5/ts-types-esm 1.104.2 → 1.106.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +2 -2
  5. package/types/sap.collaboration.d.ts +25 -25
  6. package/types/sap.esh.search.ui.d.ts +913 -1
  7. package/types/sap.f.d.ts +82 -6
  8. package/types/sap.fe.common.d.ts +1 -1
  9. package/types/sap.fe.core.d.ts +5 -5
  10. package/types/sap.fe.macros.d.ts +50 -129
  11. package/types/sap.fe.navigation.d.ts +53 -5
  12. package/types/sap.fe.templates.d.ts +161 -1
  13. package/types/sap.fe.test.d.ts +17 -3
  14. package/types/sap.feedback.ui.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +215 -57
  16. package/types/sap.insights.d.ts +1 -1
  17. package/types/sap.landvisz.d.ts +1 -1
  18. package/types/sap.m.d.ts +584 -152
  19. package/types/sap.makit.d.ts +1 -1
  20. package/types/sap.me.d.ts +1 -1
  21. package/types/sap.ndc.d.ts +65 -3
  22. package/types/sap.ovp.d.ts +1 -1
  23. package/types/sap.rules.ui.d.ts +1 -1
  24. package/types/sap.sac.df.d.ts +139 -182
  25. package/types/sap.sac.grid.d.ts +1 -1
  26. package/types/sap.suite.ui.commons.d.ts +118 -16
  27. package/types/sap.suite.ui.generic.template.d.ts +17 -3
  28. package/types/sap.suite.ui.microchart.d.ts +13 -13
  29. package/types/sap.tnt.d.ts +3 -3
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +31 -31
  32. package/types/sap.ui.comp.d.ts +182 -59
  33. package/types/sap.ui.core.d.ts +642 -270
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +3 -3
  36. package/types/sap.ui.fl.d.ts +44 -626
  37. package/types/sap.ui.generic.app.d.ts +18 -11
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +101 -18
  40. package/types/sap.ui.layout.d.ts +7 -7
  41. package/types/sap.ui.mdc.d.ts +5 -1
  42. package/types/sap.ui.richtexteditor.d.ts +2 -2
  43. package/types/sap.ui.rta.d.ts +3 -1
  44. package/types/sap.ui.suite.d.ts +5 -5
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +26 -8
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +63 -19
  49. package/types/sap.ui.ux3.d.ts +11 -11
  50. package/types/sap.ui.vbm.d.ts +3 -3
  51. package/types/sap.ui.vk.d.ts +311 -30
  52. package/types/sap.ui.vtm.d.ts +2 -2
  53. package/types/sap.ui.webc.common.d.ts +1 -1
  54. package/types/sap.ui.webc.fiori.d.ts +243 -44
  55. package/types/sap.ui.webc.main.d.ts +635 -147
  56. package/types/sap.uiext.inbox.d.ts +1 -1
  57. package/types/sap.ushell.d.ts +12 -41
  58. package/types/sap.ushell_abap.d.ts +1 -215
  59. package/types/sap.uxap.d.ts +43 -1
  60. package/types/sap.viz.d.ts +1 -1
  61. package/types/sap.webanalytics.core.d.ts +2 -8
  62. package/types/sap.zen.commons.d.ts +1 -1
  63. package/types/sap.zen.crosstab.d.ts +1 -1
  64. package/types/sap.zen.dsh.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/ts-types-esm",
3
- "version": "1.104.2",
3
+ "version": "1.106.0",
4
4
  "description": "SAPUI5 TypeScript Definitions - ES Modules",
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.104.0
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare module "sap/apf/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.1
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare module "sap/ca/ui/library" {
4
4
  export namespace charts {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare module "sap/chart/library" {
4
4
  import Dimension from "sap/chart/data/Dimension";
@@ -2306,7 +2306,7 @@ declare module "sap/chart/Chart" {
2306
2306
  vizProperties?: object | PropertyBindingInfo | `{${string}}`;
2307
2307
 
2308
2308
  /**
2309
- * /** Chart scales, refer to chart property documentation
2309
+ * Chart scales, refer to chart property documentation
2310
2310
  * for more details.
2311
2311
  */
2312
2312
  vizScales?: object[] | PropertyBindingInfo | `{${string}}`;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare module "sap/collaboration/library" {
4
4
  /**
@@ -261,7 +261,7 @@ declare module "sap/collaboration/components/feed/Component" {
261
261
  oAxisOrientation:
262
262
  | TimelineAxisOrientation
263
263
  | keyof typeof TimelineAxisOrientation
264
- ): Component;
264
+ ): this;
265
265
  /**
266
266
  * Setter for property `enableScroll`.
267
267
  *
@@ -279,20 +279,22 @@ declare module "sap/collaboration/components/feed/Component" {
279
279
  * new value for property `enableScroll`
280
280
  */
281
281
  bEnableScroll: boolean
282
- ): Component;
282
+ ): this;
283
283
  /**
284
284
  * Setter for property `feedSources`.
285
285
  *
286
286
  * The feedSources is either an array of strings (SAP Jam Group IDs) or a map in the following structure:
287
287
  * { mode : sap.collaboration.FeedType, data : any }
288
288
  * Based on the mode, the data is either required or not.
289
+ *
290
+ * @returns `this` to allow method chaining
289
291
  */
290
292
  setFeedSources(
291
293
  /**
292
294
  * new value for property `feedSources`
293
295
  */
294
296
  oFeedSources: Record<string, any> | string[]
295
- ): void;
297
+ ): this;
296
298
  }
297
299
 
298
300
  export interface $ComponentSettings extends $UIComponentSettings {
@@ -2101,7 +2103,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
2101
2103
  * new value for property `height`
2102
2104
  */
2103
2105
  sHeight: string
2104
- ): Component;
2106
+ ): this;
2105
2107
  /**
2106
2108
  * Setter for property `memberId`. Sets the memberId of the user
2107
2109
  *
@@ -2112,7 +2114,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
2112
2114
  * new value for property `memberId`
2113
2115
  */
2114
2116
  sMemberId: string
2115
- ): Component;
2117
+ ): this;
2116
2118
  /**
2117
2119
  * Setter for property `memberInfo`. Sets the memberInformation of the user
2118
2120
  *
@@ -2123,7 +2125,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
2123
2125
  * new value for property `memberInfo`
2124
2126
  */
2125
2127
  oMemberInfo: object
2126
- ): Component;
2128
+ ): this;
2127
2129
  /**
2128
2130
  * Setter for property `openingControl`. Sets the opening control for the Social Profile
2129
2131
  *
@@ -2134,7 +2136,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
2134
2136
  * new value for property `openingControl`
2135
2137
  */
2136
2138
  oOpeningControl: object
2137
- ): Component;
2139
+ ): this;
2138
2140
  /**
2139
2141
  * Setter for property `placement`. Sets the placement of the Social Profile
2140
2142
  *
@@ -2147,7 +2149,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
2147
2149
  * new value for property `placement`
2148
2150
  */
2149
2151
  sPlacement: PlacementType | keyof typeof PlacementType
2150
- ): Component;
2152
+ ): this;
2151
2153
  /**
2152
2154
  * Setter for property `width`. Sets the width of the Social Profile
2153
2155
  *
@@ -2160,7 +2162,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
2160
2162
  * new value for property `width`
2161
2163
  */
2162
2164
  sWidth: string
2163
- ): Component;
2165
+ ): this;
2164
2166
  }
2165
2167
 
2166
2168
  export interface $ComponentSettings extends $UIComponentSettings {
@@ -2441,11 +2443,11 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2441
2443
  mParameters?: object
2442
2444
  ): this;
2443
2445
  /**
2444
- * Gets current value of property {@link #getAlignment alignment}.
2446
+ * Getter for property `alignment`. Timeline item alignment.
2445
2447
  *
2446
- * Default value is `Right`.
2448
+ * Default value is `Right`
2447
2449
  *
2448
- * @returns Value of property `alignment`
2450
+ * @returns the value of property `alignment`
2449
2451
  */
2450
2452
  getAlignment(): TimelineAlignment | keyof typeof TimelineAlignment;
2451
2453
  /**
@@ -2508,19 +2510,17 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2508
2510
  */
2509
2511
  getWidth(): CSSSize;
2510
2512
  /**
2511
- * Sets a new value for property {@link #getAlignment alignment}.
2512
- *
2513
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2513
+ * Setter for property `alignment`.
2514
2514
  *
2515
- * Default value is `Right`.
2515
+ * Default value is `Right`
2516
2516
  *
2517
- * @returns Reference to `this` in order to allow method chaining
2517
+ * @returns `this` to allow method chaining
2518
2518
  */
2519
2519
  setAlignment(
2520
2520
  /**
2521
- * New value for property `alignment`
2521
+ * new value for property `alignment`
2522
2522
  */
2523
- sAlignment?: TimelineAlignment | keyof typeof TimelineAlignment
2523
+ oAlignment: TimelineAlignment | keyof typeof TimelineAlignment
2524
2524
  ): this;
2525
2525
  /**
2526
2526
  * Setter for property `axisOrientation`.
@@ -2536,7 +2536,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2536
2536
  oAxisOrientation:
2537
2537
  | TimelineAxisOrientation
2538
2538
  | keyof typeof TimelineAxisOrientation
2539
- ): Component;
2539
+ ): this;
2540
2540
  /**
2541
2541
  * Sets a new value for property {@link #getCustomFilter customFilter}.
2542
2542
  *
@@ -2577,7 +2577,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2577
2577
  * new value for property `noDataText`
2578
2578
  */
2579
2579
  sNoDataText: string
2580
- ): Component;
2580
+ ): this;
2581
2581
  /**
2582
2582
  * Setter for property `showIcons`.
2583
2583
  *
@@ -2590,7 +2590,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2590
2590
  * new value for property `showIcons`
2591
2591
  */
2592
2592
  bShowIcons: boolean
2593
- ): Component;
2593
+ ): this;
2594
2594
  /**
2595
2595
  * Setter for property `visible`.
2596
2596
  *
@@ -2603,7 +2603,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2603
2603
  * new value for property `visible`
2604
2604
  */
2605
2605
  bVisible: boolean
2606
- ): Component;
2606
+ ): this;
2607
2607
  /**
2608
2608
  * Setter for property `width`.
2609
2609
  *
@@ -2616,7 +2616,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2616
2616
  * new value for property `width`
2617
2617
  */
2618
2618
  sWidth: CSSSize
2619
- ): Component;
2619
+ ): this;
2620
2620
  }
2621
2621
 
2622
2622
  export interface $ComponentSettings extends $UIComponentSettings {