@sapui5/ts-types-esm 1.133.0 → 1.134.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 (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 +69 -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,30 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.1
2
+
3
+ declare module "sap/ushell/thirdparty/webcomponents-base" {
4
+ /**
5
+ * Entry object of the URLListValidator.
6
+ */
7
+ export type Entry = {
8
+ /**
9
+ * The protocol of the URL, can be falsy to allow all protocols for an entry e.g. "", "http", "mailto"
10
+ */
11
+ protocol?: string;
12
+ /**
13
+ * The host of the URL, can be falsy to allow all hosts. A wildcard asterisk can be set at the beginning,
14
+ * e.g. "examples.com", "*.example.com"
15
+ */
16
+ host?: string;
17
+ /**
18
+ * The port of the URL, can be falsy to allow all ports, e.g. "", "8080"
19
+ */
20
+ port?: string;
21
+ /**
22
+ * the path of the URL, path of the url, can be falsy to allow all paths. A wildcard asterisk can be set
23
+ * at the end, e.g. "/my-example*", "/my-news"
24
+ */
25
+ path?: string;
26
+ };
27
+ }
2
28
 
3
29
  declare module "sap/ushell/library" {
4
30
  /**
@@ -2929,6 +2955,10 @@ declare module "sap/ushell/services/AppLifeCycle" {
2929
2955
  * Version of the framework
2930
2956
  */
2931
2957
  appFrameworkVersion: string;
2958
+ /**
2959
+ * The FLP URL with the current hash included.
2960
+ */
2961
+ url: string;
2932
2962
  };
2933
2963
 
2934
2964
  /**
@@ -5119,6 +5149,8 @@ declare module "sap/ushell/services/Extension/Item" {
5119
5149
  declare module "sap/ushell/services/FrameBoundExtension" {
5120
5150
  import Control from "sap/ui/core/Control";
5121
5151
 
5152
+ import UserSettingsEntry from "sap/ushell/services/FrameBoundExtension/UserSettingsEntry";
5153
+
5122
5154
  import Footer from "sap/ushell/services/FrameBoundExtension/Footer";
5123
5155
 
5124
5156
  import { Properties } from "sap/ushell/ui/shell/ShellHeadItem";
@@ -5157,7 +5189,7 @@ declare module "sap/ushell/services/FrameBoundExtension" {
5157
5189
  *
5158
5190
  * @since 1.124.0
5159
5191
  *
5160
- * @returns Resolves once the settings entry was added.
5192
+ * @returns Resolves with the new entry once the settings entry was added.
5161
5193
  */
5162
5194
  addUserSettingsEntry(
5163
5195
  /**
@@ -5174,7 +5206,7 @@ declare module "sap/ushell/services/FrameBoundExtension" {
5174
5206
  */
5175
5207
  title: string;
5176
5208
  /**
5177
- * A string to be presented as the sub title of the entry OR a function which resolves the sub title.
5209
+ * A string to be presented as the subtitle of the entry OR a function which resolves the sub title.
5178
5210
  */
5179
5211
  value: string | (() => Promise<string>);
5180
5212
  /**
@@ -5197,7 +5229,7 @@ declare module "sap/ushell/services/FrameBoundExtension" {
5197
5229
  */
5198
5230
  provideEmptyWrapper?: boolean;
5199
5231
  }
5200
- ): Promise<any>;
5232
+ ): Promise<UserSettingsEntry>;
5201
5233
  /**
5202
5234
  * Creates a new footer which is positioned below the launchpad content.
5203
5235
  *
@@ -5595,6 +5627,33 @@ declare module "sap/ushell/services/FrameBoundExtension/ToolArea" {
5595
5627
  }
5596
5628
  }
5597
5629
 
5630
+ declare module "sap/ushell/services/FrameBoundExtension/UserSettingsEntry" {
5631
+ /**
5632
+ * The UserSettingsEntry defines an entry in the user settings dialog. To be instantiated by {@link sap.ushell.services.FrameBoundExtension}.
5633
+ *
5634
+ * **Restriction:** Does not work when called from within an iframe. The calling function has to be in
5635
+ * the 'same frame' as the launchpad itself.
5636
+ *
5637
+ * @since 1.134.0
5638
+ */
5639
+ export default class UserSettingsEntry {
5640
+ /**
5641
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5642
+ */
5643
+ protected constructor();
5644
+
5645
+ /**
5646
+ * Opens the user settings entry.
5647
+ *
5648
+ * The dialog is opened and then navigated to the new entry. If a group is available, the function navigates
5649
+ * to the group and entry (tab).
5650
+ *
5651
+ * @since 1.134.0
5652
+ */
5653
+ open(): void;
5654
+ }
5655
+ }
5656
+
5598
5657
  declare module "sap/ushell/services/LaunchPage" {
5599
5658
  /**
5600
5659
  * A service for handling groups, tiles and catalogs.
@@ -14008,6 +14067,8 @@ declare namespace sap {
14008
14067
 
14009
14068
  "sap/ushell/api/S4MyHome": undefined;
14010
14069
 
14070
+ "sap/ushell/api/SAPBusinessClient": undefined;
14071
+
14011
14072
  "sap/ushell/api/workpage/Designtime": undefined;
14012
14073
 
14013
14074
  "sap/ushell/api/workpage/Runtime": undefined;
@@ -14072,6 +14133,8 @@ declare namespace sap {
14072
14133
 
14073
14134
  "sap/ushell/services/FrameBoundExtension/ToolArea": undefined;
14074
14135
 
14136
+ "sap/ushell/services/FrameBoundExtension/UserSettingsEntry": undefined;
14137
+
14075
14138
  "sap/ushell/services/LaunchPage": undefined;
14076
14139
 
14077
14140
  "sap/ushell/services/Message": undefined;
@@ -14134,6 +14197,8 @@ declare namespace sap {
14134
14197
 
14135
14198
  "sap/ushell/System": undefined;
14136
14199
 
14200
+ "sap/ushell/thirdparty/webcomponents-base": undefined;
14201
+
14137
14202
  "sap/ushell/ui/appfinder/AppBox": undefined;
14138
14203
 
14139
14204
  "sap/ushell/ui/footerbar/AddBookmarkButton": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.1
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