@sapui5/ts-types-esm 1.136.1 → 1.136.3
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/index.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- 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 +5 -4
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +39 -15
- 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.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +29 -10
- 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.sac.df.d.ts +66 -18
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +31 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +2 -2307
- package/types/sap.ui.core.d.ts +22 -12
- 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 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -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 +1 -1
- package/types/sap.ui.ux3.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 +16 -31
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.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.ui.mdc.d.ts → mdc-1.136.0-esm-d.ts} +0 -0
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.136.
|
|
282
|
+
// For Library Version: 1.136.2
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -29717,7 +29717,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29717
29717
|
*/
|
|
29718
29718
|
groupingBaseSize?: int;
|
|
29719
29719
|
/**
|
|
29720
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
29720
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
29721
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
29721
29722
|
*/
|
|
29722
29723
|
groupingEnabled?: boolean;
|
|
29723
29724
|
/**
|
|
@@ -29726,7 +29727,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29726
29727
|
*/
|
|
29727
29728
|
groupingSeparator?: string;
|
|
29728
29729
|
/**
|
|
29729
|
-
* defines the grouping size in digits; the default is `3`.
|
|
29730
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
29731
|
+
* non-positive value, grouping will be disabled entirely.
|
|
29730
29732
|
*/
|
|
29731
29733
|
groupingSize?: int;
|
|
29732
29734
|
/**
|
|
@@ -29896,7 +29898,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29896
29898
|
*/
|
|
29897
29899
|
groupingBaseSize?: int;
|
|
29898
29900
|
/**
|
|
29899
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
29901
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
29902
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
29900
29903
|
*/
|
|
29901
29904
|
groupingEnabled?: boolean;
|
|
29902
29905
|
/**
|
|
@@ -29905,7 +29908,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29905
29908
|
*/
|
|
29906
29909
|
groupingSeparator?: string;
|
|
29907
29910
|
/**
|
|
29908
|
-
* defines the grouping size in digits; the default is `3`.
|
|
29911
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
29912
|
+
* non-positive value, grouping will be disabled entirely.
|
|
29909
29913
|
*/
|
|
29910
29914
|
groupingSize?: int;
|
|
29911
29915
|
/**
|
|
@@ -30059,7 +30063,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30059
30063
|
*/
|
|
30060
30064
|
groupingBaseSize?: int;
|
|
30061
30065
|
/**
|
|
30062
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
30066
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
30067
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
30063
30068
|
*/
|
|
30064
30069
|
groupingEnabled?: boolean;
|
|
30065
30070
|
/**
|
|
@@ -30068,7 +30073,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30068
30073
|
*/
|
|
30069
30074
|
groupingSeparator?: string;
|
|
30070
30075
|
/**
|
|
30071
|
-
* defines the grouping size in digits; the default is `3`.
|
|
30076
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
30077
|
+
* non-positive value, grouping will be disabled entirely.
|
|
30072
30078
|
*/
|
|
30073
30079
|
groupingSize?: int;
|
|
30074
30080
|
/**
|
|
@@ -30217,7 +30223,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30217
30223
|
*/
|
|
30218
30224
|
groupingBaseSize?: int;
|
|
30219
30225
|
/**
|
|
30220
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
30226
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
30227
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
30221
30228
|
*/
|
|
30222
30229
|
groupingEnabled?: boolean;
|
|
30223
30230
|
/**
|
|
@@ -30226,7 +30233,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30226
30233
|
*/
|
|
30227
30234
|
groupingSeparator?: string;
|
|
30228
30235
|
/**
|
|
30229
|
-
* defines the grouping size in digits; the default is `3`.
|
|
30236
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
30237
|
+
* non-positive value, grouping will be disabled entirely.
|
|
30230
30238
|
*/
|
|
30231
30239
|
groupingSize?: int;
|
|
30232
30240
|
/**
|
|
@@ -30387,7 +30395,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30387
30395
|
*/
|
|
30388
30396
|
groupingBaseSize?: int;
|
|
30389
30397
|
/**
|
|
30390
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
30398
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
30399
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
30391
30400
|
*/
|
|
30392
30401
|
groupingEnabled?: boolean;
|
|
30393
30402
|
/**
|
|
@@ -30396,7 +30405,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30396
30405
|
*/
|
|
30397
30406
|
groupingSeparator?: string;
|
|
30398
30407
|
/**
|
|
30399
|
-
* defines the grouping size in digits; the default is `3`.
|
|
30408
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
30409
|
+
* non-positive value, grouping will be disabled entirely.
|
|
30400
30410
|
*/
|
|
30401
30411
|
groupingSize?: int;
|
|
30402
30412
|
/**
|
|
@@ -68325,7 +68335,7 @@ declare module "sap/ui/model/odata/type/Stream" {
|
|
|
68325
68335
|
*/
|
|
68326
68336
|
constructor(
|
|
68327
68337
|
/**
|
|
68328
|
-
* Must be `undefined`
|
|
68338
|
+
* Must be `undefined` or `null`
|
|
68329
68339
|
*/
|
|
68330
68340
|
oFormatOptions?: object,
|
|
68331
68341
|
/**
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
|
@@ -1,30 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
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
|
-
}
|
|
1
|
+
// For Library Version: 1.136.3
|
|
28
2
|
|
|
29
3
|
declare module "sap/ushell/library" {
|
|
30
4
|
/**
|
|
@@ -7603,6 +7577,19 @@ declare module "sap/ushell/services/NotificationsV2" {
|
|
|
7603
7577
|
*/
|
|
7604
7578
|
callback: Function
|
|
7605
7579
|
): void;
|
|
7580
|
+
/**
|
|
7581
|
+
* Set the number of unseen notifications
|
|
7582
|
+
* e.g. Notifications that the user hasn't seen yet.
|
|
7583
|
+
*
|
|
7584
|
+
*
|
|
7585
|
+
* @returns Promise resolves when the unseen notifications count is set
|
|
7586
|
+
*/
|
|
7587
|
+
setUnseenNotificationsCount(
|
|
7588
|
+
/**
|
|
7589
|
+
* The number of unseen notifications to set
|
|
7590
|
+
*/
|
|
7591
|
+
number: int
|
|
7592
|
+
): Promise<any>;
|
|
7606
7593
|
}
|
|
7607
7594
|
/**
|
|
7608
7595
|
* Type for Action
|
|
@@ -14094,6 +14081,8 @@ declare namespace sap {
|
|
|
14094
14081
|
|
|
14095
14082
|
"sap/ushell/modules/NavigationMenu": undefined;
|
|
14096
14083
|
|
|
14084
|
+
"sap/ushell/renderer/ShellLayout": undefined;
|
|
14085
|
+
|
|
14097
14086
|
"sap/ushell/renderers/fiori2/Renderer": undefined;
|
|
14098
14087
|
|
|
14099
14088
|
"sap/ushell/services/_Personalization/ContextContainer": undefined;
|
|
@@ -14206,10 +14195,6 @@ declare namespace sap {
|
|
|
14206
14195
|
|
|
14207
14196
|
"sap/ushell/System": undefined;
|
|
14208
14197
|
|
|
14209
|
-
"sap/ushell/thirdparty/NotificationListItemBase": undefined;
|
|
14210
|
-
|
|
14211
|
-
"sap/ushell/thirdparty/webcomponents-base": undefined;
|
|
14212
|
-
|
|
14213
14198
|
"sap/ushell/ui/appfinder/AppBox": undefined;
|
|
14214
14199
|
|
|
14215
14200
|
"sap/ushell/ui/footerbar/AddBookmarkButton": undefined;
|
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED
|
File without changes
|