@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.
- package/package.json +1 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +0 -14
- package/types/sap.esh.search.ui.d.ts +7 -1
- package/types/sap.f.d.ts +53 -9
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +25 -3
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +64 -58
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +192 -136
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +629 -77
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +360 -98
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +53 -30
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +107 -7
- package/types/sap.ui.codeeditor.d.ts +9 -7
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +9 -28
- package/types/sap.ui.core.d.ts +46779 -46490
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -3
- package/types/sap.ui.layout.d.ts +4 -2
- package/types/sap.ui.mdc.d.ts +227 -12
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +76 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +41 -47
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +335 -4
- package/types/sap.ui.vk.d.ts +4 -4
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +41 -4
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +7 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.ushell.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
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
|
|
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<
|
|
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;
|
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
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[]
|
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED