@sapui5/ts-types-esm 1.133.0 → 1.134.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 (68) 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 +1 -1
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.cux.home.d.ts +0 -14
  7. package/types/sap.esh.search.ui.d.ts +7 -1
  8. package/types/sap.f.d.ts +53 -9
  9. package/types/sap.fe.base.d.ts +1 -1
  10. package/types/sap.fe.controls.d.ts +1 -1
  11. package/types/sap.fe.core.d.ts +25 -3
  12. package/types/sap.fe.ina.d.ts +1 -1
  13. package/types/sap.fe.macros.d.ts +64 -58
  14. package/types/sap.fe.navigation.d.ts +1 -1
  15. package/types/sap.fe.placeholder.d.ts +1 -1
  16. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  17. package/types/sap.fe.templates.d.ts +1 -1
  18. package/types/sap.fe.test.d.ts +1 -1
  19. package/types/sap.fe.tools.d.ts +1 -1
  20. package/types/sap.feedback.ui.d.ts +1 -1
  21. package/types/sap.gantt.d.ts +192 -136
  22. package/types/sap.insights.d.ts +1 -1
  23. package/types/sap.m.d.ts +629 -77
  24. package/types/sap.makit.d.ts +1 -1
  25. package/types/sap.me.d.ts +1 -1
  26. package/types/sap.ndc.d.ts +1 -1
  27. package/types/sap.ovp.d.ts +1 -1
  28. package/types/sap.rules.ui.d.ts +1 -1
  29. package/types/sap.sac.df.d.ts +360 -98
  30. package/types/sap.suite.ui.commons.d.ts +1 -1
  31. package/types/sap.suite.ui.generic.template.d.ts +53 -30
  32. package/types/sap.suite.ui.microchart.d.ts +1 -1
  33. package/types/sap.tnt.d.ts +107 -7
  34. package/types/sap.ui.codeeditor.d.ts +9 -7
  35. package/types/sap.ui.commons.d.ts +1 -1
  36. package/types/sap.ui.comp.d.ts +9 -28
  37. package/types/sap.ui.core.d.ts +46779 -46490
  38. package/types/sap.ui.dt.d.ts +1 -1
  39. package/types/sap.ui.export.d.ts +1 -1
  40. package/types/sap.ui.fl.d.ts +1 -1
  41. package/types/sap.ui.generic.app.d.ts +1 -1
  42. package/types/sap.ui.generic.template.d.ts +1 -1
  43. package/types/sap.ui.integration.d.ts +1 -3
  44. package/types/sap.ui.layout.d.ts +4 -2
  45. package/types/sap.ui.mdc.d.ts +227 -12
  46. package/types/sap.ui.richtexteditor.d.ts +1 -1
  47. package/types/sap.ui.rta.d.ts +76 -1
  48. package/types/sap.ui.suite.d.ts +1 -1
  49. package/types/sap.ui.support.d.ts +1 -1
  50. package/types/sap.ui.table.d.ts +1 -1
  51. package/types/sap.ui.testrecorder.d.ts +1 -1
  52. package/types/sap.ui.unified.d.ts +41 -47
  53. package/types/sap.ui.ux3.d.ts +1 -1
  54. package/types/sap.ui.vbm.d.ts +335 -4
  55. package/types/sap.ui.vk.d.ts +4 -4
  56. package/types/sap.ui.vtm.d.ts +1 -1
  57. package/types/sap.ui.webc.common.d.ts +1 -1
  58. package/types/sap.ui.webc.fiori.d.ts +1 -1
  59. package/types/sap.ui.webc.main.d.ts +1 -1
  60. package/types/sap.uiext.inbox.d.ts +1 -1
  61. package/types/sap.ushell.d.ts +41 -4
  62. package/types/sap.ushell_abap.d.ts +1 -1
  63. package/types/sap.uxap.d.ts +7 -1
  64. package/types/sap.viz.d.ts +1 -1
  65. package/types/sap.webanalytics.core.d.ts +1 -1
  66. package/types/sap.zen.commons.d.ts +1 -1
  67. package/types/sap.zen.crosstab.d.ts +1 -1
  68. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ushell/library" {
4
4
  /**
@@ -2929,6 +2929,10 @@ declare module "sap/ushell/services/AppLifeCycle" {
2929
2929
  * Version of the framework
2930
2930
  */
2931
2931
  appFrameworkVersion: string;
2932
+ /**
2933
+ * The FLP URL with the current hash included.
2934
+ */
2935
+ url: string;
2932
2936
  };
2933
2937
 
2934
2938
  /**
@@ -5119,6 +5123,8 @@ declare module "sap/ushell/services/Extension/Item" {
5119
5123
  declare module "sap/ushell/services/FrameBoundExtension" {
5120
5124
  import Control from "sap/ui/core/Control";
5121
5125
 
5126
+ import UserSettingsEntry from "sap/ushell/services/FrameBoundExtension/UserSettingsEntry";
5127
+
5122
5128
  import Footer from "sap/ushell/services/FrameBoundExtension/Footer";
5123
5129
 
5124
5130
  import { Properties } from "sap/ushell/ui/shell/ShellHeadItem";
@@ -5157,7 +5163,7 @@ declare module "sap/ushell/services/FrameBoundExtension" {
5157
5163
  *
5158
5164
  * @since 1.124.0
5159
5165
  *
5160
- * @returns Resolves once the settings entry was added.
5166
+ * @returns Resolves with the new entry once the settings entry was added.
5161
5167
  */
5162
5168
  addUserSettingsEntry(
5163
5169
  /**
@@ -5174,7 +5180,7 @@ declare module "sap/ushell/services/FrameBoundExtension" {
5174
5180
  */
5175
5181
  title: string;
5176
5182
  /**
5177
- * A string to be presented as the sub title of the entry OR a function which resolves the sub title.
5183
+ * A string to be presented as the subtitle of the entry OR a function which resolves the sub title.
5178
5184
  */
5179
5185
  value: string | (() => Promise<string>);
5180
5186
  /**
@@ -5197,7 +5203,7 @@ declare module "sap/ushell/services/FrameBoundExtension" {
5197
5203
  */
5198
5204
  provideEmptyWrapper?: boolean;
5199
5205
  }
5200
- ): Promise<any>;
5206
+ ): Promise<UserSettingsEntry>;
5201
5207
  /**
5202
5208
  * Creates a new footer which is positioned below the launchpad content.
5203
5209
  *
@@ -5595,6 +5601,33 @@ declare module "sap/ushell/services/FrameBoundExtension/ToolArea" {
5595
5601
  }
5596
5602
  }
5597
5603
 
5604
+ declare module "sap/ushell/services/FrameBoundExtension/UserSettingsEntry" {
5605
+ /**
5606
+ * The UserSettingsEntry defines an entry in the user settings dialog. To be instantiated by {@link sap.ushell.services.FrameBoundExtension}.
5607
+ *
5608
+ * **Restriction:** Does not work when called from within an iframe. The calling function has to be in
5609
+ * the 'same frame' as the launchpad itself.
5610
+ *
5611
+ * @since 1.134.0
5612
+ */
5613
+ export default class UserSettingsEntry {
5614
+ /**
5615
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5616
+ */
5617
+ protected constructor();
5618
+
5619
+ /**
5620
+ * Opens the user settings entry.
5621
+ *
5622
+ * The dialog is opened and then navigated to the new entry. If a group is available, the function navigates
5623
+ * to the group and entry (tab).
5624
+ *
5625
+ * @since 1.134.0
5626
+ */
5627
+ open(): void;
5628
+ }
5629
+ }
5630
+
5598
5631
  declare module "sap/ushell/services/LaunchPage" {
5599
5632
  /**
5600
5633
  * A service for handling groups, tiles and catalogs.
@@ -14008,6 +14041,8 @@ declare namespace sap {
14008
14041
 
14009
14042
  "sap/ushell/api/S4MyHome": undefined;
14010
14043
 
14044
+ "sap/ushell/api/SAPBusinessClient": undefined;
14045
+
14011
14046
  "sap/ushell/api/workpage/Designtime": undefined;
14012
14047
 
14013
14048
  "sap/ushell/api/workpage/Runtime": undefined;
@@ -14072,6 +14107,8 @@ declare namespace sap {
14072
14107
 
14073
14108
  "sap/ushell/services/FrameBoundExtension/ToolArea": undefined;
14074
14109
 
14110
+ "sap/ushell/services/FrameBoundExtension/UserSettingsEntry": undefined;
14111
+
14075
14112
  "sap/ushell/services/LaunchPage": undefined;
14076
14113
 
14077
14114
  "sap/ushell/services/Message": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**
@@ -7144,6 +7144,9 @@ declare module "sap/uxap/ObjectPageSection" {
7144
7144
  * Gets content of aggregation {@link #getSubSections subSections}.
7145
7145
  *
7146
7146
  * The list of Subsections.
7147
+ *
7148
+ * Note: If multiple subsections are used, it is highly recommended to set a title for the section for accessibility
7149
+ * reasons.
7147
7150
  */
7148
7151
  getSubSections(): ObjectPageSubSection[];
7149
7152
  /**
@@ -7355,6 +7358,9 @@ declare module "sap/uxap/ObjectPageSection" {
7355
7358
 
7356
7359
  /**
7357
7360
  * The list of Subsections.
7361
+ *
7362
+ * Note: If multiple subsections are used, it is highly recommended to set a title for the section for accessibility
7363
+ * reasons.
7358
7364
  */
7359
7365
  subSections?:
7360
7366
  | ObjectPageSubSection[]
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/viz/library" {
4
4
  export namespace ui5 {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/zen/commons/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/zen/crosstab/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/zen/dsh/library" {}
4
4