@sapui5/ts-types-esm 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 +27 -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 +86 -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 module "sap/fe/core/library" {
|
|
4
4
|
/**
|
|
@@ -134,6 +134,18 @@ declare module "sap/fe/core/ExtensionAPI" {
|
|
|
134
134
|
*/
|
|
135
135
|
oControl: Control
|
|
136
136
|
): void;
|
|
137
|
+
/**
|
|
138
|
+
* Retrieves the editFlow controller extension for this page.
|
|
139
|
+
*
|
|
140
|
+
* @returns The editFlow controller extension
|
|
141
|
+
*/
|
|
142
|
+
getEditFlow(): /* was: sap.fe.core.EditFlow */ any;
|
|
143
|
+
/**
|
|
144
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
145
|
+
*
|
|
146
|
+
* @returns The intentBasedNavigation controller extension
|
|
147
|
+
*/
|
|
148
|
+
getIntentBasedNavigation(): /* was: sap.fe.core.IntentBasedNavigation */ any;
|
|
137
149
|
/**
|
|
138
150
|
* Get access to models managed by SAP Fiori elements.
|
|
139
151
|
*
|
|
@@ -161,6 +173,12 @@ declare module "sap/fe/core/ExtensionAPI" {
|
|
|
161
173
|
*/
|
|
162
174
|
sModelName?: string
|
|
163
175
|
): undefined | Model;
|
|
176
|
+
/**
|
|
177
|
+
* Retrieves the routing controller extension for this page.
|
|
178
|
+
*
|
|
179
|
+
* @returns The routing controller extension
|
|
180
|
+
*/
|
|
181
|
+
getRouting(): /* was: sap.fe.core.Routing */ any;
|
|
164
182
|
/**
|
|
165
183
|
* Load a fragment and go through the template preprocessor with the current page context.
|
|
166
184
|
*
|
|
@@ -230,6 +248,8 @@ declare module "sap/fe/core/PageController" {
|
|
|
230
248
|
|
|
231
249
|
import AppComponent from "sap/fe/core/AppComponent";
|
|
232
250
|
|
|
251
|
+
import ExtensionAPI from "sap/fe/core/ExtensionAPI";
|
|
252
|
+
|
|
233
253
|
import Model from "sap/ui/model/Model";
|
|
234
254
|
|
|
235
255
|
import View from "sap/ui/core/mvc/View";
|
|
@@ -254,6 +274,12 @@ declare module "sap/fe/core/PageController" {
|
|
|
254
274
|
* @returns The app component or, if not found, null
|
|
255
275
|
*/
|
|
256
276
|
getAppComponent(): AppComponent;
|
|
277
|
+
/**
|
|
278
|
+
* Get the extension API for the current page.
|
|
279
|
+
*
|
|
280
|
+
* @returns The extension API.
|
|
281
|
+
*/
|
|
282
|
+
getExtensionAPI(): ExtensionAPI;
|
|
257
283
|
/**
|
|
258
284
|
* Convenience method provided by SAP Fiori elements to enable applications to include the view model by
|
|
259
285
|
* 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 module "sap/fe/templates/library" {}
|
|
4
4
|
|
|
@@ -39,6 +39,18 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
39
39
|
*/
|
|
40
40
|
mFilterConditions: any
|
|
41
41
|
): object;
|
|
42
|
+
/**
|
|
43
|
+
* Retrieves the editFlow controller extension for this page.
|
|
44
|
+
*
|
|
45
|
+
* @returns The editFlow controller extension
|
|
46
|
+
*/
|
|
47
|
+
getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
|
|
48
|
+
/**
|
|
49
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
50
|
+
*
|
|
51
|
+
* @returns The intentBasedNavigation controller extension
|
|
52
|
+
*/
|
|
53
|
+
getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
|
|
42
54
|
/**
|
|
43
55
|
* Get access to models managed by SAP Fiori elements.
|
|
44
56
|
*
|
|
@@ -66,6 +78,12 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
66
78
|
*/
|
|
67
79
|
sModelName?: string
|
|
68
80
|
): undefined | Model;
|
|
81
|
+
/**
|
|
82
|
+
* Retrieves the routing controller extension for this page.
|
|
83
|
+
*
|
|
84
|
+
* @returns The routing controller extension
|
|
85
|
+
*/
|
|
86
|
+
getRouting(): /* was: sap.fe.templates.Routing */ any;
|
|
69
87
|
/**
|
|
70
88
|
* Gets the list entries currently selected for the displayed control.
|
|
71
89
|
*
|
|
@@ -206,6 +224,18 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
206
224
|
* @returns Context bound to the object page
|
|
207
225
|
*/
|
|
208
226
|
getBindingContext(): undefined | object | Context;
|
|
227
|
+
/**
|
|
228
|
+
* Retrieves the editFlow controller extension for this page.
|
|
229
|
+
*
|
|
230
|
+
* @returns The editFlow controller extension
|
|
231
|
+
*/
|
|
232
|
+
getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
|
|
233
|
+
/**
|
|
234
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
235
|
+
*
|
|
236
|
+
* @returns The intentBasedNavigation controller extension
|
|
237
|
+
*/
|
|
238
|
+
getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
|
|
209
239
|
/**
|
|
210
240
|
* Get access to models managed by SAP Fiori elements.
|
|
211
241
|
*
|
|
@@ -233,6 +263,12 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
233
263
|
*/
|
|
234
264
|
sModelName?: string
|
|
235
265
|
): undefined | Model;
|
|
266
|
+
/**
|
|
267
|
+
* Retrieves the routing controller extension for this page.
|
|
268
|
+
*
|
|
269
|
+
* @returns The routing controller extension
|
|
270
|
+
*/
|
|
271
|
+
getRouting(): /* was: sap.fe.templates.Routing */ any;
|
|
236
272
|
/**
|
|
237
273
|
* Gets the list entries currently selected for the table.
|
|
238
274
|
*
|
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 module "sap/ui/comp/library" {
|
|
4
4
|
/**
|
|
@@ -18439,7 +18439,7 @@ declare module "sap/ui/comp/smartfilterbar/SmartFilterBarFilterGroupItem" {
|
|
|
18439
18439
|
*/
|
|
18440
18440
|
static getMetadata(): ElementMetadata;
|
|
18441
18441
|
/**
|
|
18442
|
-
* @deprecated
|
|
18442
|
+
* @deprecated (since 1.99) - Use {@link sap.ui.core.Core.byId} instead!
|
|
18443
18443
|
*
|
|
18444
18444
|
* Returns instance of the control
|
|
18445
18445
|
*
|
|
@@ -18447,7 +18447,7 @@ declare module "sap/ui/comp/smartfilterbar/SmartFilterBarFilterGroupItem" {
|
|
|
18447
18447
|
*/
|
|
18448
18448
|
getControl(): Control | null;
|
|
18449
18449
|
/**
|
|
18450
|
-
* @deprecated
|
|
18450
|
+
* @deprecated (since 1.99)
|
|
18451
18451
|
*/
|
|
18452
18452
|
setControl(
|
|
18453
18453
|
/**
|
|
@@ -33783,7 +33783,7 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
33783
33783
|
*/
|
|
33784
33784
|
getMaxConditions(): string;
|
|
33785
33785
|
/**
|
|
33786
|
-
* @deprecated
|
|
33786
|
+
* @deprecated (since 1.84.1)
|
|
33787
33787
|
*
|
|
33788
33788
|
* Gets current value of property {@link #getMaxExcludeRanges maxExcludeRanges}.
|
|
33789
33789
|
*
|
|
@@ -33795,7 +33795,7 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
33795
33795
|
*/
|
|
33796
33796
|
getMaxExcludeRanges(): string;
|
|
33797
33797
|
/**
|
|
33798
|
-
* @deprecated
|
|
33798
|
+
* @deprecated (since 1.84.1)
|
|
33799
33799
|
*
|
|
33800
33800
|
* Gets current value of property {@link #getMaxIncludeRanges maxIncludeRanges}.
|
|
33801
33801
|
*
|
|
@@ -34073,7 +34073,7 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
34073
34073
|
sMaxConditions?: string
|
|
34074
34074
|
): this;
|
|
34075
34075
|
/**
|
|
34076
|
-
* @deprecated
|
|
34076
|
+
* @deprecated (since 1.84.1)
|
|
34077
34077
|
*
|
|
34078
34078
|
* Sets a new value for property {@link #getMaxExcludeRanges maxExcludeRanges}.
|
|
34079
34079
|
*
|
|
@@ -34092,7 +34092,7 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
34092
34092
|
sMaxExcludeRanges?: string
|
|
34093
34093
|
): this;
|
|
34094
34094
|
/**
|
|
34095
|
-
* @deprecated
|
|
34095
|
+
* @deprecated (since 1.84.1)
|
|
34096
34096
|
*
|
|
34097
34097
|
* Sets a new value for property {@link #getMaxIncludeRanges maxIncludeRanges}.
|
|
34098
34098
|
*
|
|
@@ -34289,14 +34289,14 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
34289
34289
|
descriptionKey?: string | PropertyBindingInfo;
|
|
34290
34290
|
|
|
34291
34291
|
/**
|
|
34292
|
-
* @deprecated
|
|
34292
|
+
* @deprecated (since 1.84.1)
|
|
34293
34293
|
*
|
|
34294
34294
|
* Defines the maximum number of include ranges.
|
|
34295
34295
|
*/
|
|
34296
34296
|
maxIncludeRanges?: string | PropertyBindingInfo;
|
|
34297
34297
|
|
|
34298
34298
|
/**
|
|
34299
|
-
* @deprecated
|
|
34299
|
+
* @deprecated (since 1.84.1)
|
|
34300
34300
|
*
|
|
34301
34301
|
* Defines the maximum number of exclude ranges.
|
|
34302
34302
|
*/
|
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
|
|
@@ -15826,6 +15835,45 @@ declare module "sap/ui/core/CustomData" {
|
|
|
15826
15835
|
}
|
|
15827
15836
|
}
|
|
15828
15837
|
|
|
15838
|
+
declare module "sap/ui/core/date/CalendarWeekNumbering" {
|
|
15839
|
+
/**
|
|
15840
|
+
* @SINCE 1.105.2
|
|
15841
|
+
*
|
|
15842
|
+
* The `CalendarWeekNumbering` enum defines how to calculate calendar weeks. Each value defines:
|
|
15843
|
+
* - The first day of the week,
|
|
15844
|
+
* - the first week of the year.
|
|
15845
|
+
*
|
|
15846
|
+
* Note: This API has been introduced with version 1.108 and downported to this release with patch level
|
|
15847
|
+
* 2.
|
|
15848
|
+
*/
|
|
15849
|
+
enum CalendarWeekNumbering {
|
|
15850
|
+
/**
|
|
15851
|
+
* The default calendar week numbering:
|
|
15852
|
+
*
|
|
15853
|
+
* The framework determines the week numbering scheme; currently it is derived from the active format locale.
|
|
15854
|
+
* Future versions of UI5 might select a different week numbering scheme.
|
|
15855
|
+
*/
|
|
15856
|
+
Default = "Default",
|
|
15857
|
+
/**
|
|
15858
|
+
* Official calendar week numbering in most of Europe (ISO 8601 standard):
|
|
15859
|
+
* Monday is first day of the week, the week containing January 4th is first week of the year.
|
|
15860
|
+
*/
|
|
15861
|
+
ISO_8601 = "ISO_8601",
|
|
15862
|
+
/**
|
|
15863
|
+
* Official calendar week numbering in much of the Middle East (Middle Eastern calendar):
|
|
15864
|
+
* Saturday is first day of the week, the week containing January 1st is first week of the year.
|
|
15865
|
+
*/
|
|
15866
|
+
MiddleEastern = "MiddleEastern",
|
|
15867
|
+
/**
|
|
15868
|
+
* Official calendar week numbering in the United States, Canada, Brazil, Israel, Japan, and other countries
|
|
15869
|
+
* (Western traditional calendar):
|
|
15870
|
+
* Sunday is first day of the week, the week containing January 1st is first week of the year.
|
|
15871
|
+
*/
|
|
15872
|
+
WesternTraditional = "WesternTraditional",
|
|
15873
|
+
}
|
|
15874
|
+
export default CalendarWeekNumbering;
|
|
15875
|
+
}
|
|
15876
|
+
|
|
15829
15877
|
declare module "sap/ui/core/DeclarativeSupport" {
|
|
15830
15878
|
import HTMLView from "sap/ui/core/mvc/HTMLView";
|
|
15831
15879
|
|
|
@@ -19352,6 +19400,8 @@ declare module "sap/ui/core/ExtensionPoint" {
|
|
|
19352
19400
|
}
|
|
19353
19401
|
|
|
19354
19402
|
declare module "sap/ui/core/format/DateFormat" {
|
|
19403
|
+
import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
|
|
19404
|
+
|
|
19355
19405
|
import CalendarType from "sap/ui/core/CalendarType";
|
|
19356
19406
|
|
|
19357
19407
|
import Locale from "sap/ui/core/Locale";
|
|
@@ -19380,6 +19430,14 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
19380
19430
|
* Object which defines the format options
|
|
19381
19431
|
*/
|
|
19382
19432
|
oFormatOptions?: {
|
|
19433
|
+
/**
|
|
19434
|
+
* @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
19435
|
+
* and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
|
|
19436
|
+
* downported to this release with patch level 2.
|
|
19437
|
+
*/
|
|
19438
|
+
calendarWeekNumbering?:
|
|
19439
|
+
| CalendarWeekNumbering
|
|
19440
|
+
| keyof typeof CalendarWeekNumbering;
|
|
19383
19441
|
/**
|
|
19384
19442
|
* @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
19385
19443
|
* the value taken from the locale is used
|
|
@@ -19468,6 +19526,14 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
19468
19526
|
* Object which defines the format options
|
|
19469
19527
|
*/
|
|
19470
19528
|
oFormatOptions?: {
|
|
19529
|
+
/**
|
|
19530
|
+
* @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
19531
|
+
* and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
|
|
19532
|
+
* downported to this release with patch level 2.
|
|
19533
|
+
*/
|
|
19534
|
+
calendarWeekNumbering?:
|
|
19535
|
+
| CalendarWeekNumbering
|
|
19536
|
+
| keyof typeof CalendarWeekNumbering;
|
|
19471
19537
|
/**
|
|
19472
19538
|
* @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
19473
19539
|
* the value taken from the locale is used
|
|
@@ -19560,6 +19626,14 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
19560
19626
|
* An object which defines the format options
|
|
19561
19627
|
*/
|
|
19562
19628
|
oFormatOptions?: {
|
|
19629
|
+
/**
|
|
19630
|
+
* @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
19631
|
+
* and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
|
|
19632
|
+
* downported to this release with patch level 2.
|
|
19633
|
+
*/
|
|
19634
|
+
calendarWeekNumbering?:
|
|
19635
|
+
| CalendarWeekNumbering
|
|
19636
|
+
| keyof typeof CalendarWeekNumbering;
|
|
19563
19637
|
/**
|
|
19564
19638
|
* @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
19565
19639
|
* the value taken from the locale is used
|
|
@@ -19649,6 +19723,14 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
19649
19723
|
* Object which defines the format options
|
|
19650
19724
|
*/
|
|
19651
19725
|
oFormatOptions?: {
|
|
19726
|
+
/**
|
|
19727
|
+
* @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
19728
|
+
* and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
|
|
19729
|
+
* downported to this release with patch level 2.
|
|
19730
|
+
*/
|
|
19731
|
+
calendarWeekNumbering?:
|
|
19732
|
+
| CalendarWeekNumbering
|
|
19733
|
+
| keyof typeof CalendarWeekNumbering;
|
|
19652
19734
|
/**
|
|
19653
19735
|
* @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
19654
19736
|
* the value taken from the locale is used
|
|
@@ -75616,6 +75698,8 @@ declare namespace sap {
|
|
|
75616
75698
|
|
|
75617
75699
|
"sap/ui/core/CustomData": undefined;
|
|
75618
75700
|
|
|
75701
|
+
"sap/ui/core/date/CalendarWeekNumbering": undefined;
|
|
75702
|
+
|
|
75619
75703
|
"sap/ui/core/date/UniversalDate": undefined;
|
|
75620
75704
|
|
|
75621
75705
|
"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 module "sap/ui/export/library" {
|
|
4
4
|
/**
|
|
@@ -302,7 +302,7 @@ declare module "sap/ui/export/Spreadsheet" {
|
|
|
302
302
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
303
303
|
* following fields:
|
|
304
304
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
305
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.105.
|
|
305
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.105.2")
|
|
306
306
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
307
307
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
308
308
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -388,7 +388,7 @@ declare module "sap/ui/export/Spreadsheet" {
|
|
|
388
388
|
* columns: aColumns,
|
|
389
389
|
* context: {
|
|
390
390
|
* application: 'Debug Test Application',
|
|
391
|
-
* version: '1.105.
|
|
391
|
+
* version: '1.105.2',
|
|
392
392
|
* title: 'Some random title',
|
|
393
393
|
* modifiedBy: 'John Doe',
|
|
394
394
|
* 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