@openui5/types 1.145.0 → 1.146.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.f.d.ts +73 -526
- package/types/sap.m.d.ts +322 -18
- package/types/sap.tnt.d.ts +9 -16
- 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 +1044 -382
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -1
- package/types/sap.ui.integration.d.ts +65 -266
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +2 -2
- 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 +36 -3
- 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/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -23253,7 +23253,7 @@ declare module "sap/ui/mdc/util/PropertyHelper" {
|
|
|
23253
23253
|
visible?: boolean;
|
|
23254
23254
|
/**
|
|
23255
23255
|
* Key of the group in which the property is located. Used to visually group properties in personalization
|
|
23256
|
-
* dialogs.
|
|
23256
|
+
* dialogs. The group with the `basic` key is always shown as the first group.
|
|
23257
23257
|
*/
|
|
23258
23258
|
group?: string;
|
|
23259
23259
|
/**
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -16049,6 +16049,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16049
16049
|
*
|
|
16050
16050
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
16051
16051
|
*
|
|
16052
|
+
* **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
|
|
16053
|
+
* after version 50. **Note:** Multiple directory selection is not supported.
|
|
16054
|
+
*
|
|
16052
16055
|
* Default value is `false`.
|
|
16053
16056
|
*
|
|
16054
16057
|
* @since 1.105.0
|
|
@@ -16091,7 +16094,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16091
16094
|
*
|
|
16092
16095
|
* Chosen HTTP request method for file upload.
|
|
16093
16096
|
*
|
|
16094
|
-
* Default value is `
|
|
16097
|
+
* Default value is `POST`.
|
|
16095
16098
|
*
|
|
16096
16099
|
* @since 1.81.0
|
|
16097
16100
|
*
|
|
@@ -16280,6 +16283,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16280
16283
|
*
|
|
16281
16284
|
* Indicates whether the file uploader is required.
|
|
16282
16285
|
*
|
|
16286
|
+
* **Note:** The control can be marked as required either by setting this property to `true` or by using
|
|
16287
|
+
* the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
|
|
16288
|
+
* property pointing to this control.
|
|
16289
|
+
*
|
|
16283
16290
|
* Default value is `false`.
|
|
16284
16291
|
*
|
|
16285
16292
|
* @since 1.144
|
|
@@ -16622,6 +16629,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16622
16629
|
*
|
|
16623
16630
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
16624
16631
|
*
|
|
16632
|
+
* **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
|
|
16633
|
+
* after version 50. **Note:** Multiple directory selection is not supported.
|
|
16634
|
+
*
|
|
16625
16635
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16626
16636
|
*
|
|
16627
16637
|
* Default value is `false`.
|
|
@@ -16681,7 +16691,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16681
16691
|
*
|
|
16682
16692
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16683
16693
|
*
|
|
16684
|
-
* Default value is `
|
|
16694
|
+
* Default value is `POST`.
|
|
16685
16695
|
*
|
|
16686
16696
|
* @since 1.81.0
|
|
16687
16697
|
*
|
|
@@ -16916,6 +16926,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16916
16926
|
*
|
|
16917
16927
|
* Indicates whether the file uploader is required.
|
|
16918
16928
|
*
|
|
16929
|
+
* **Note:** The control can be marked as required either by setting this property to `true` or by using
|
|
16930
|
+
* the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
|
|
16931
|
+
* property pointing to this control.
|
|
16932
|
+
*
|
|
16919
16933
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16920
16934
|
*
|
|
16921
16935
|
* Default value is `false`.
|
|
@@ -17358,6 +17372,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17358
17372
|
/**
|
|
17359
17373
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
17360
17374
|
*
|
|
17375
|
+
* **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
|
|
17376
|
+
* after version 50. **Note:** Multiple directory selection is not supported.
|
|
17377
|
+
*
|
|
17361
17378
|
* @since 1.105.0
|
|
17362
17379
|
*/
|
|
17363
17380
|
directory?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -17365,6 +17382,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17365
17382
|
/**
|
|
17366
17383
|
* Indicates whether the file uploader is required.
|
|
17367
17384
|
*
|
|
17385
|
+
* **Note:** The control can be marked as required either by setting this property to `true` or by using
|
|
17386
|
+
* the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
|
|
17387
|
+
* property pointing to this control.
|
|
17388
|
+
*
|
|
17368
17389
|
* @since 1.144
|
|
17369
17390
|
*/
|
|
17370
17391
|
required?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -17812,10 +17833,22 @@ declare module "sap/ui/unified/FileUploaderHttpRequestMethod" {
|
|
|
17812
17833
|
/**
|
|
17813
17834
|
* HTTP request POST method.
|
|
17814
17835
|
*/
|
|
17836
|
+
POST = "POST",
|
|
17837
|
+
/**
|
|
17838
|
+
* HTTP request POST method.
|
|
17839
|
+
*
|
|
17840
|
+
* @deprecated As of version 1.145.0. use {@link sap.ui.unified.FileUploaderHttpRequestMethod.POST} instead
|
|
17841
|
+
*/
|
|
17815
17842
|
Post = "POST",
|
|
17816
17843
|
/**
|
|
17817
17844
|
* HTTP request PUT method.
|
|
17818
17845
|
*/
|
|
17846
|
+
PUT = "PUT",
|
|
17847
|
+
/**
|
|
17848
|
+
* HTTP request PUT method.
|
|
17849
|
+
*
|
|
17850
|
+
* @deprecated As of version 1.145.0. use {@link sap.ui.unified.FileUploaderHttpRequestMethod.PUT} instead
|
|
17851
|
+
*/
|
|
17819
17852
|
Put = "PUT",
|
|
17820
17853
|
}
|
|
17821
17854
|
export default FileUploaderHttpRequestMethod;
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED