@sapui5/ts-types 1.105.2 → 1.105.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/sap.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +25 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +37 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- 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.sac.df.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -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 +9 -9
- package/types/sap.ui.core.d.ts +75 -2
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.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.mdc.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 +1 -1
- 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/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.105.
|
|
1
|
+
// For Library Version: 1.105.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1050,6 +1050,18 @@ declare namespace sap {
|
|
|
1050
1050
|
*/
|
|
1051
1051
|
oControl: sap.ui.core.Control
|
|
1052
1052
|
): void;
|
|
1053
|
+
/**
|
|
1054
|
+
* Retrieves the editFlow controller extension for this page.
|
|
1055
|
+
*
|
|
1056
|
+
* @returns The editFlow controller extension
|
|
1057
|
+
*/
|
|
1058
|
+
getEditFlow(): /* was: sap.fe.core.EditFlow */ any;
|
|
1059
|
+
/**
|
|
1060
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
1061
|
+
*
|
|
1062
|
+
* @returns The intentBasedNavigation controller extension
|
|
1063
|
+
*/
|
|
1064
|
+
getIntentBasedNavigation(): /* was: sap.fe.core.IntentBasedNavigation */ any;
|
|
1053
1065
|
/**
|
|
1054
1066
|
* Get access to models managed by SAP Fiori elements.
|
|
1055
1067
|
*
|
|
@@ -1077,6 +1089,12 @@ declare namespace sap {
|
|
|
1077
1089
|
*/
|
|
1078
1090
|
sModelName?: string
|
|
1079
1091
|
): undefined | sap.ui.model.Model;
|
|
1092
|
+
/**
|
|
1093
|
+
* Retrieves the routing controller extension for this page.
|
|
1094
|
+
*
|
|
1095
|
+
* @returns The routing controller extension
|
|
1096
|
+
*/
|
|
1097
|
+
getRouting(): /* was: sap.fe.core.Routing */ any;
|
|
1080
1098
|
/**
|
|
1081
1099
|
* Load a fragment and go through the template preprocessor with the current page context.
|
|
1082
1100
|
*
|
|
@@ -1159,6 +1177,12 @@ declare namespace sap {
|
|
|
1159
1177
|
* @returns The app component or, if not found, null
|
|
1160
1178
|
*/
|
|
1161
1179
|
getAppComponent(): sap.fe.core.AppComponent;
|
|
1180
|
+
/**
|
|
1181
|
+
* Get the extension API for the current page.
|
|
1182
|
+
*
|
|
1183
|
+
* @returns The extension API.
|
|
1184
|
+
*/
|
|
1185
|
+
getExtensionAPI(): sap.fe.core.ExtensionAPI;
|
|
1162
1186
|
/**
|
|
1163
1187
|
* Convenience method provided by SAP Fiori elements to enable applications to include the view model by
|
|
1164
1188
|
* name into each controller.
|
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.105.
|
|
1
|
+
// For Library Version: 1.105.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -37,6 +37,18 @@ declare namespace sap {
|
|
|
37
37
|
*/
|
|
38
38
|
mFilterConditions: any
|
|
39
39
|
): object;
|
|
40
|
+
/**
|
|
41
|
+
* Retrieves the editFlow controller extension for this page.
|
|
42
|
+
*
|
|
43
|
+
* @returns The editFlow controller extension
|
|
44
|
+
*/
|
|
45
|
+
getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
|
|
46
|
+
/**
|
|
47
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
48
|
+
*
|
|
49
|
+
* @returns The intentBasedNavigation controller extension
|
|
50
|
+
*/
|
|
51
|
+
getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
|
|
40
52
|
/**
|
|
41
53
|
* Get access to models managed by SAP Fiori elements.
|
|
42
54
|
*
|
|
@@ -64,6 +76,12 @@ declare namespace sap {
|
|
|
64
76
|
*/
|
|
65
77
|
sModelName?: string
|
|
66
78
|
): undefined | sap.ui.model.Model;
|
|
79
|
+
/**
|
|
80
|
+
* Retrieves the routing controller extension for this page.
|
|
81
|
+
*
|
|
82
|
+
* @returns The routing controller extension
|
|
83
|
+
*/
|
|
84
|
+
getRouting(): /* was: sap.fe.templates.Routing */ any;
|
|
67
85
|
/**
|
|
68
86
|
* Gets the list entries currently selected for the displayed control.
|
|
69
87
|
*
|
|
@@ -198,6 +216,18 @@ declare namespace sap {
|
|
|
198
216
|
* @returns Context bound to the object page
|
|
199
217
|
*/
|
|
200
218
|
getBindingContext(): undefined | object | sap.ui.model.Context;
|
|
219
|
+
/**
|
|
220
|
+
* Retrieves the editFlow controller extension for this page.
|
|
221
|
+
*
|
|
222
|
+
* @returns The editFlow controller extension
|
|
223
|
+
*/
|
|
224
|
+
getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
|
|
225
|
+
/**
|
|
226
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
227
|
+
*
|
|
228
|
+
* @returns The intentBasedNavigation controller extension
|
|
229
|
+
*/
|
|
230
|
+
getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
|
|
201
231
|
/**
|
|
202
232
|
* Get access to models managed by SAP Fiori elements.
|
|
203
233
|
*
|
|
@@ -225,6 +255,12 @@ declare namespace sap {
|
|
|
225
255
|
*/
|
|
226
256
|
sModelName?: string
|
|
227
257
|
): undefined | sap.ui.model.Model;
|
|
258
|
+
/**
|
|
259
|
+
* Retrieves the routing controller extension for this page.
|
|
260
|
+
*
|
|
261
|
+
* @returns The routing controller extension
|
|
262
|
+
*/
|
|
263
|
+
getRouting(): /* was: sap.fe.templates.Routing */ any;
|
|
228
264
|
/**
|
|
229
265
|
* Gets the list entries currently selected for the table.
|
|
230
266
|
*
|
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED
package/types/sap.sac.grid.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.105.
|
|
1
|
+
// For Library Version: 1.105.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -18124,7 +18124,7 @@ declare namespace sap {
|
|
|
18124
18124
|
*/
|
|
18125
18125
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
18126
18126
|
/**
|
|
18127
|
-
* @deprecated
|
|
18127
|
+
* @deprecated (since 1.99) - Use {@link sap.ui.core.Core.byId} instead!
|
|
18128
18128
|
*
|
|
18129
18129
|
* Returns instance of the control
|
|
18130
18130
|
*
|
|
@@ -18132,7 +18132,7 @@ declare namespace sap {
|
|
|
18132
18132
|
*/
|
|
18133
18133
|
getControl(): sap.ui.core.Control | null;
|
|
18134
18134
|
/**
|
|
18135
|
-
* @deprecated
|
|
18135
|
+
* @deprecated (since 1.99)
|
|
18136
18136
|
*/
|
|
18137
18137
|
setControl(
|
|
18138
18138
|
/**
|
|
@@ -33074,7 +33074,7 @@ declare namespace sap {
|
|
|
33074
33074
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
33075
33075
|
|
|
33076
33076
|
/**
|
|
33077
|
-
* @deprecated
|
|
33077
|
+
* @deprecated (since 1.84.1)
|
|
33078
33078
|
*
|
|
33079
33079
|
* Defines the maximum number of include ranges.
|
|
33080
33080
|
*/
|
|
@@ -33083,7 +33083,7 @@ declare namespace sap {
|
|
|
33083
33083
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
33084
33084
|
|
|
33085
33085
|
/**
|
|
33086
|
-
* @deprecated
|
|
33086
|
+
* @deprecated (since 1.84.1)
|
|
33087
33087
|
*
|
|
33088
33088
|
* Defines the maximum number of exclude ranges.
|
|
33089
33089
|
*/
|
|
@@ -33852,7 +33852,7 @@ declare namespace sap {
|
|
|
33852
33852
|
*/
|
|
33853
33853
|
getMaxConditions(): string;
|
|
33854
33854
|
/**
|
|
33855
|
-
* @deprecated
|
|
33855
|
+
* @deprecated (since 1.84.1)
|
|
33856
33856
|
*
|
|
33857
33857
|
* Gets current value of property {@link #getMaxExcludeRanges maxExcludeRanges}.
|
|
33858
33858
|
*
|
|
@@ -33864,7 +33864,7 @@ declare namespace sap {
|
|
|
33864
33864
|
*/
|
|
33865
33865
|
getMaxExcludeRanges(): string;
|
|
33866
33866
|
/**
|
|
33867
|
-
* @deprecated
|
|
33867
|
+
* @deprecated (since 1.84.1)
|
|
33868
33868
|
*
|
|
33869
33869
|
* Gets current value of property {@link #getMaxIncludeRanges maxIncludeRanges}.
|
|
33870
33870
|
*
|
|
@@ -34136,7 +34136,7 @@ declare namespace sap {
|
|
|
34136
34136
|
sMaxConditions?: string
|
|
34137
34137
|
): this;
|
|
34138
34138
|
/**
|
|
34139
|
-
* @deprecated
|
|
34139
|
+
* @deprecated (since 1.84.1)
|
|
34140
34140
|
*
|
|
34141
34141
|
* Sets a new value for property {@link #getMaxExcludeRanges maxExcludeRanges}.
|
|
34142
34142
|
*
|
|
@@ -34155,7 +34155,7 @@ declare namespace sap {
|
|
|
34155
34155
|
sMaxExcludeRanges?: string
|
|
34156
34156
|
): this;
|
|
34157
34157
|
/**
|
|
34158
|
-
* @deprecated
|
|
34158
|
+
* @deprecated (since 1.84.1)
|
|
34159
34159
|
*
|
|
34160
34160
|
* Sets a new value for property {@link #getMaxIncludeRanges maxIncludeRanges}.
|
|
34161
34161
|
*
|
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.105.
|
|
267
|
+
// For Library Version: 1.105.2
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -966,6 +966,9 @@ declare module "sap/base/security/URLListValidator" {
|
|
|
966
966
|
*
|
|
967
967
|
* Note: Adding the first entry to the list of allowed entries will disallow all URLs but the ones matching
|
|
968
968
|
* the newly added entry.
|
|
969
|
+
*
|
|
970
|
+
* **Note**: It is strongly recommended to set a path only in combination with an origin (never set a path
|
|
971
|
+
* alone). There's almost no case where checking only the path of a URL would allow to ensure its validity.
|
|
969
972
|
*/
|
|
970
973
|
add(
|
|
971
974
|
/**
|
|
@@ -1000,7 +1003,13 @@ declare module "sap/base/security/URLListValidator" {
|
|
|
1000
1003
|
/**
|
|
1001
1004
|
* Validates a URL. Check if it's not a script or other security issue.
|
|
1002
1005
|
*
|
|
1003
|
-
*
|
|
1006
|
+
* **Note**: It is strongly recommended to validate only absolute URLs. There's almost no case where checking
|
|
1007
|
+
* only the path of a URL would allow to ensure its validity. For compatibility reasons, this API cannot
|
|
1008
|
+
* automatically resolve URLs relative to `document.baseURI`, but callers should do so. In that case, and
|
|
1009
|
+
* when the allow list is not empty, an entry for the origin of `document.baseURI` must be added to the
|
|
1010
|
+
* allow list.
|
|
1011
|
+
*
|
|
1012
|
+
* Details: Splits the given URL into components and checks for allowed characters according to RFC 3986:
|
|
1004
1013
|
*
|
|
1005
1014
|
*
|
|
1006
1015
|
* ```javascript
|
|
@@ -13062,6 +13071,12 @@ declare namespace sap {
|
|
|
13062
13071
|
* Object which defines the format options
|
|
13063
13072
|
*/
|
|
13064
13073
|
oFormatOptions?: {
|
|
13074
|
+
/**
|
|
13075
|
+
* @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
13076
|
+
* and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
|
|
13077
|
+
* downported to this release with patch level 2.
|
|
13078
|
+
*/
|
|
13079
|
+
calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
|
|
13065
13080
|
/**
|
|
13066
13081
|
* @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
13067
13082
|
* the value taken from the locale is used
|
|
@@ -13150,6 +13165,12 @@ declare namespace sap {
|
|
|
13150
13165
|
* Object which defines the format options
|
|
13151
13166
|
*/
|
|
13152
13167
|
oFormatOptions?: {
|
|
13168
|
+
/**
|
|
13169
|
+
* @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
13170
|
+
* and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
|
|
13171
|
+
* downported to this release with patch level 2.
|
|
13172
|
+
*/
|
|
13173
|
+
calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
|
|
13153
13174
|
/**
|
|
13154
13175
|
* @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
13155
13176
|
* the value taken from the locale is used
|
|
@@ -13242,6 +13263,12 @@ declare namespace sap {
|
|
|
13242
13263
|
* An object which defines the format options
|
|
13243
13264
|
*/
|
|
13244
13265
|
oFormatOptions?: {
|
|
13266
|
+
/**
|
|
13267
|
+
* @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
13268
|
+
* and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
|
|
13269
|
+
* downported to this release with patch level 2.
|
|
13270
|
+
*/
|
|
13271
|
+
calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
|
|
13245
13272
|
/**
|
|
13246
13273
|
* @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
13247
13274
|
* the value taken from the locale is used
|
|
@@ -13331,6 +13358,12 @@ declare namespace sap {
|
|
|
13331
13358
|
* Object which defines the format options
|
|
13332
13359
|
*/
|
|
13333
13360
|
oFormatOptions?: {
|
|
13361
|
+
/**
|
|
13362
|
+
* @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
13363
|
+
* and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
|
|
13364
|
+
* downported to this release with patch level 2.
|
|
13365
|
+
*/
|
|
13366
|
+
calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
|
|
13334
13367
|
/**
|
|
13335
13368
|
* @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
13336
13369
|
* the value taken from the locale is used
|
|
@@ -18167,6 +18200,44 @@ declare namespace sap {
|
|
|
18167
18200
|
}
|
|
18168
18201
|
}
|
|
18169
18202
|
|
|
18203
|
+
namespace date {
|
|
18204
|
+
/**
|
|
18205
|
+
* @SINCE 1.105.2
|
|
18206
|
+
*
|
|
18207
|
+
* The `CalendarWeekNumbering` enum defines how to calculate calendar weeks. Each value defines:
|
|
18208
|
+
* - The first day of the week,
|
|
18209
|
+
* - the first week of the year.
|
|
18210
|
+
*
|
|
18211
|
+
* Note: This API has been introduced with version 1.108 and downported to this release with patch level
|
|
18212
|
+
* 2.
|
|
18213
|
+
*/
|
|
18214
|
+
enum CalendarWeekNumbering {
|
|
18215
|
+
/**
|
|
18216
|
+
* The default calendar week numbering:
|
|
18217
|
+
*
|
|
18218
|
+
* The framework determines the week numbering scheme; currently it is derived from the active format locale.
|
|
18219
|
+
* Future versions of UI5 might select a different week numbering scheme.
|
|
18220
|
+
*/
|
|
18221
|
+
Default = "Default",
|
|
18222
|
+
/**
|
|
18223
|
+
* Official calendar week numbering in most of Europe (ISO 8601 standard):
|
|
18224
|
+
* Monday is first day of the week, the week containing January 4th is first week of the year.
|
|
18225
|
+
*/
|
|
18226
|
+
ISO_8601 = "ISO_8601",
|
|
18227
|
+
/**
|
|
18228
|
+
* Official calendar week numbering in much of the Middle East (Middle Eastern calendar):
|
|
18229
|
+
* Saturday is first day of the week, the week containing January 1st is first week of the year.
|
|
18230
|
+
*/
|
|
18231
|
+
MiddleEastern = "MiddleEastern",
|
|
18232
|
+
/**
|
|
18233
|
+
* Official calendar week numbering in the United States, Canada, Brazil, Israel, Japan, and other countries
|
|
18234
|
+
* (Western traditional calendar):
|
|
18235
|
+
* Sunday is first day of the week, the week containing January 1st is first week of the year.
|
|
18236
|
+
*/
|
|
18237
|
+
WesternTraditional = "WesternTraditional",
|
|
18238
|
+
}
|
|
18239
|
+
}
|
|
18240
|
+
|
|
18170
18241
|
namespace Element {
|
|
18171
18242
|
/**
|
|
18172
18243
|
* @SINCE 1.67
|
|
@@ -72889,6 +72960,8 @@ declare namespace sap {
|
|
|
72889
72960
|
|
|
72890
72961
|
"sap/ui/core/CustomData": undefined;
|
|
72891
72962
|
|
|
72963
|
+
"sap/ui/core/date/CalendarWeekNumbering": undefined;
|
|
72964
|
+
|
|
72892
72965
|
"sap/ui/core/date/UniversalDate": undefined;
|
|
72893
72966
|
|
|
72894
72967
|
"sap/ui/core/date/UniversalDateUtils": undefined;
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.105.
|
|
1
|
+
// For Library Version: 1.105.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -225,7 +225,7 @@ declare namespace sap {
|
|
|
225
225
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
226
226
|
* following fields:
|
|
227
227
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
228
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.105.
|
|
228
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.105.2")
|
|
229
229
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
230
230
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
231
231
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -311,7 +311,7 @@ declare namespace sap {
|
|
|
311
311
|
* columns: aColumns,
|
|
312
312
|
* context: {
|
|
313
313
|
* application: 'Debug Test Application',
|
|
314
|
-
* version: '1.105.
|
|
314
|
+
* version: '1.105.2',
|
|
315
315
|
* title: 'Some random title',
|
|
316
316
|
* modifiedBy: 'John Doe',
|
|
317
317
|
* metaSheetName: 'Custom metadata',
|
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.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
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED