@openui5/ts-types 1.120.19 → 1.120.21
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.f.d.ts +1 -1
- package/types/sap.m.d.ts +17 -11
- 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.core.d.ts +12 -10
- package/types/sap.ui.dt.d.ts +1 -1
- 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 +3 -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.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.21
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -15795,6 +15795,12 @@ declare namespace sap {
|
|
|
15795
15795
|
* The file that fails to meet the file size restriction specified in the `maxFileSize` property.
|
|
15796
15796
|
*/
|
|
15797
15797
|
item?: sap.m.upload.UploadSetItem;
|
|
15798
|
+
|
|
15799
|
+
/**
|
|
15800
|
+
* The size of a file in MB, that fails to meet the file size restriction specified in the `maxFileSize`
|
|
15801
|
+
* property.
|
|
15802
|
+
*/
|
|
15803
|
+
fileSize?: float;
|
|
15798
15804
|
}
|
|
15799
15805
|
|
|
15800
15806
|
/**
|
|
@@ -122750,12 +122756,14 @@ declare namespace sap {
|
|
|
122750
122756
|
sap.ui.core.ISemanticFormContent,
|
|
122751
122757
|
sap.m.IOverflowToolbarContent,
|
|
122752
122758
|
/* was: sap.m.IToolbarInteractiveControl */ Object,
|
|
122753
|
-
sap.f.IShellBar
|
|
122759
|
+
sap.f.IShellBar,
|
|
122760
|
+
/* was: sap.ui.core.ILabelable */ Object {
|
|
122754
122761
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
122755
122762
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
122756
122763
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
122757
122764
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
122758
122765
|
__implements__sap_f_IShellBar: boolean;
|
|
122766
|
+
__implements__sap_ui_core_ILabelable: boolean;
|
|
122759
122767
|
/**
|
|
122760
122768
|
* Constructor for a new `sap.m.Select`.
|
|
122761
122769
|
*
|
|
@@ -123196,15 +123204,6 @@ declare namespace sap {
|
|
|
123196
123204
|
* @returns Value of property `icon`
|
|
123197
123205
|
*/
|
|
123198
123206
|
getIcon(): sap.ui.core.URI;
|
|
123199
|
-
/**
|
|
123200
|
-
* Returns the DOMNode Id to be used for the "labelFor" attribute of the label.
|
|
123201
|
-
*
|
|
123202
|
-
* By default, this is the Id of the control itself.
|
|
123203
|
-
*
|
|
123204
|
-
*
|
|
123205
|
-
* @returns Id to be used for the `labelFor`
|
|
123206
|
-
*/
|
|
123207
|
-
getIdForLabel(): string;
|
|
123208
123207
|
/**
|
|
123209
123208
|
* Gets the item from the aggregation named `items` at the given 0-based index.
|
|
123210
123209
|
*
|
|
@@ -123455,6 +123454,13 @@ declare namespace sap {
|
|
|
123455
123454
|
* @returns Value of property `wrapItemsText`
|
|
123456
123455
|
*/
|
|
123457
123456
|
getWrapItemsText(): boolean;
|
|
123457
|
+
/**
|
|
123458
|
+
* Returns the DOMNode Id of the labelable HTML element for the `sap.m.Select`.
|
|
123459
|
+
*
|
|
123460
|
+
*
|
|
123461
|
+
* @returns Id of the labelable HTML element
|
|
123462
|
+
*/
|
|
123463
|
+
hasLabelableHTMLElement(): string;
|
|
123458
123464
|
/**
|
|
123459
123465
|
* Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getItems items}. and returns its
|
|
123460
123466
|
* index if found or -1 otherwise.
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -280,7 +280,7 @@ declare namespace sap {
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
// For Library Version: 1.120.
|
|
283
|
+
// For Library Version: 1.120.21
|
|
284
284
|
|
|
285
285
|
declare module "sap/base/assert" {
|
|
286
286
|
/**
|
|
@@ -7940,7 +7940,7 @@ declare namespace sap {
|
|
|
7940
7940
|
* Retrieve the {@link sap.ui.core.Core SAPUI5 Core} instance for the current window.
|
|
7941
7941
|
*
|
|
7942
7942
|
* @deprecated (since 1.118) - Please require 'sap/ui/core/Core' instead and use the module export directly
|
|
7943
|
-
* without using 'new'.
|
|
7943
|
+
* without using 'new'.
|
|
7944
7944
|
*
|
|
7945
7945
|
* @returns the API of the current SAPUI5 Core instance.
|
|
7946
7946
|
*/
|
|
@@ -8377,8 +8377,9 @@ declare namespace sap {
|
|
|
8377
8377
|
*
|
|
8378
8378
|
* **Note:** Any other call signature will lead to a runtime error.
|
|
8379
8379
|
*
|
|
8380
|
-
* @deprecated (since 1.56) -
|
|
8381
|
-
*
|
|
8380
|
+
* @deprecated (since 1.56) - Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views} by
|
|
8381
|
+
* defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view instances
|
|
8382
|
+
* with {@link sap.ui.core.mvc.View.create View.create}.
|
|
8382
8383
|
*
|
|
8383
8384
|
* @returns the created JSView instance in the creation case, otherwise undefined
|
|
8384
8385
|
*/
|
|
@@ -8429,8 +8430,9 @@ declare namespace sap {
|
|
|
8429
8430
|
*
|
|
8430
8431
|
* **Note:** Any other call signature will lead to a runtime error.
|
|
8431
8432
|
*
|
|
8432
|
-
* @deprecated (since 1.56) -
|
|
8433
|
-
*
|
|
8433
|
+
* @deprecated (since 1.56) - Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views} by
|
|
8434
|
+
* defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view instances
|
|
8435
|
+
* with {@link sap.ui.core.mvc.View.create View.create}.
|
|
8434
8436
|
*
|
|
8435
8437
|
* @returns the created JSView instance in the creation case, otherwise undefined
|
|
8436
8438
|
*/
|
|
@@ -34854,7 +34856,7 @@ declare namespace sap {
|
|
|
34854
34856
|
/**
|
|
34855
34857
|
* Returns the Configuration of the Core.
|
|
34856
34858
|
*
|
|
34857
|
-
* @deprecated (since 1.120) - Please see {@link sap.ui.core.Configuration Configuration} for the
|
|
34859
|
+
* @deprecated (since 1.120) - Please see {@link sap.ui.core.Configuration Configuration} for the corresponding
|
|
34858
34860
|
* replacements.
|
|
34859
34861
|
*
|
|
34860
34862
|
* @returns the Configuration of the current Core.
|
|
@@ -35510,7 +35512,7 @@ declare namespace sap {
|
|
|
35510
35512
|
*
|
|
35511
35513
|
* @since 1.10
|
|
35512
35514
|
* @deprecated (since 1.119) - without replacement. The need to define the location for a theme should be
|
|
35513
|
-
* fully covered with the
|
|
35515
|
+
* fully covered with the capabilities of the {@link sap/base/config base configuration}.
|
|
35514
35516
|
*
|
|
35515
35517
|
* @returns the Core, to allow method chaining
|
|
35516
35518
|
*/
|
|
@@ -35581,7 +35583,7 @@ declare namespace sap {
|
|
|
35581
35583
|
*
|
|
35582
35584
|
* @since 1.10
|
|
35583
35585
|
* @deprecated (since 1.119) - without replacement. The need to define the location for a theme should be
|
|
35584
|
-
* fully covered with the
|
|
35586
|
+
* fully covered with the capabilities of the {@link sap/base/config base configuration}.
|
|
35585
35587
|
*
|
|
35586
35588
|
* @returns the Core, to allow method chaining
|
|
35587
35589
|
*/
|
|
@@ -49346,7 +49348,7 @@ declare namespace sap {
|
|
|
49346
49348
|
/**
|
|
49347
49349
|
* Specifies possible message types.
|
|
49348
49350
|
*
|
|
49349
|
-
* @deprecated (since 1.120) - Please use {@link sap
|
|
49351
|
+
* @deprecated (since 1.120) - Please use {@link module:sap/ui/core/message/MessageType} instead.
|
|
49350
49352
|
*/
|
|
49351
49353
|
enum MessageType {
|
|
49352
49354
|
/**
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.21
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -25298,6 +25298,8 @@ declare namespace sap {
|
|
|
25298
25298
|
|
|
25299
25299
|
"sap/ui/mdc/util/DateUtil": undefined;
|
|
25300
25300
|
|
|
25301
|
+
"sap/ui/mdc/util/DensityHelper": undefined;
|
|
25302
|
+
|
|
25301
25303
|
"sap/ui/mdc/util/FilterUtil": undefined;
|
|
25302
25304
|
|
|
25303
25305
|
"sap/ui/mdc/util/InfoBar": undefined;
|
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.uxap.d.ts
CHANGED