@openui5/types 1.144.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 +350 -29
- package/types/sap.tnt.d.ts +27 -26
- 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 +1181 -478
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +9 -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 +379 -51
- 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 +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +74 -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 +18 -8
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/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -608,6 +608,8 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
608
608
|
Table$GroupEventParameters,
|
|
609
609
|
} from "sap/ui/table/Table";
|
|
610
610
|
|
|
611
|
+
import AnalyticalColumn from "sap/ui/table/AnalyticalColumn";
|
|
612
|
+
|
|
611
613
|
import { ID } from "sap/ui/core/library";
|
|
612
614
|
|
|
613
615
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -903,6 +905,10 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
903
905
|
* @returns Value of property `collapseRecursive`
|
|
904
906
|
*/
|
|
905
907
|
getCollapseRecursive(): boolean;
|
|
908
|
+
/**
|
|
909
|
+
* Returns the Columns of the AnalyticalTable.
|
|
910
|
+
*/
|
|
911
|
+
getColumns(): AnalyticalColumn[];
|
|
906
912
|
/**
|
|
907
913
|
* Gets current value of property {@link #getColumnVisibilityMenuSorter columnVisibilityMenuSorter}.
|
|
908
914
|
*
|
|
@@ -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
|
/**
|
|
@@ -5769,6 +5769,18 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5769
5769
|
* @returns Value of property `showHeader`
|
|
5770
5770
|
*/
|
|
5771
5771
|
getShowHeader(): boolean;
|
|
5772
|
+
/**
|
|
5773
|
+
* Gets current value of property {@link #getShowWeekNumbers showWeekNumbers}.
|
|
5774
|
+
*
|
|
5775
|
+
* Determines if the week numbers are displayed.
|
|
5776
|
+
*
|
|
5777
|
+
* Default value is `false`.
|
|
5778
|
+
*
|
|
5779
|
+
* @since 1.145.0
|
|
5780
|
+
*
|
|
5781
|
+
* @returns Value of property `showWeekNumbers`
|
|
5782
|
+
*/
|
|
5783
|
+
getShowWeekNumbers(): boolean;
|
|
5772
5784
|
/**
|
|
5773
5785
|
* Gets current value of property {@link #getSingleSelection singleSelection}.
|
|
5774
5786
|
*
|
|
@@ -6005,6 +6017,25 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
6005
6017
|
*/
|
|
6006
6018
|
bShowHeader?: boolean
|
|
6007
6019
|
): this;
|
|
6020
|
+
/**
|
|
6021
|
+
* Sets a new value for property {@link #getShowWeekNumbers showWeekNumbers}.
|
|
6022
|
+
*
|
|
6023
|
+
* Determines if the week numbers are displayed.
|
|
6024
|
+
*
|
|
6025
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6026
|
+
*
|
|
6027
|
+
* Default value is `false`.
|
|
6028
|
+
*
|
|
6029
|
+
* @since 1.145.0
|
|
6030
|
+
*
|
|
6031
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6032
|
+
*/
|
|
6033
|
+
setShowWeekNumbers(
|
|
6034
|
+
/**
|
|
6035
|
+
* New value for property `showWeekNumbers`
|
|
6036
|
+
*/
|
|
6037
|
+
bShowWeekNumbers?: boolean
|
|
6038
|
+
): this;
|
|
6008
6039
|
/**
|
|
6009
6040
|
* Sets a new value for property {@link #getSingleSelection singleSelection}.
|
|
6010
6041
|
*
|
|
@@ -6078,6 +6109,13 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
6078
6109
|
*/
|
|
6079
6110
|
showHeader?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6080
6111
|
|
|
6112
|
+
/**
|
|
6113
|
+
* Determines if the week numbers are displayed.
|
|
6114
|
+
*
|
|
6115
|
+
* @since 1.145.0
|
|
6116
|
+
*/
|
|
6117
|
+
showWeekNumbers?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6118
|
+
|
|
6081
6119
|
/**
|
|
6082
6120
|
* Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
|
|
6083
6121
|
*
|
|
@@ -16011,6 +16049,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16011
16049
|
*
|
|
16012
16050
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
16013
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
|
+
*
|
|
16014
16055
|
* Default value is `false`.
|
|
16015
16056
|
*
|
|
16016
16057
|
* @since 1.105.0
|
|
@@ -16053,7 +16094,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16053
16094
|
*
|
|
16054
16095
|
* Chosen HTTP request method for file upload.
|
|
16055
16096
|
*
|
|
16056
|
-
* Default value is `
|
|
16097
|
+
* Default value is `POST`.
|
|
16057
16098
|
*
|
|
16058
16099
|
* @since 1.81.0
|
|
16059
16100
|
*
|
|
@@ -16242,6 +16283,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16242
16283
|
*
|
|
16243
16284
|
* Indicates whether the file uploader is required.
|
|
16244
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
|
+
*
|
|
16245
16290
|
* Default value is `false`.
|
|
16246
16291
|
*
|
|
16247
16292
|
* @since 1.144
|
|
@@ -16584,6 +16629,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16584
16629
|
*
|
|
16585
16630
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
16586
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
|
+
*
|
|
16587
16635
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16588
16636
|
*
|
|
16589
16637
|
* Default value is `false`.
|
|
@@ -16643,7 +16691,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16643
16691
|
*
|
|
16644
16692
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16645
16693
|
*
|
|
16646
|
-
* Default value is `
|
|
16694
|
+
* Default value is `POST`.
|
|
16647
16695
|
*
|
|
16648
16696
|
* @since 1.81.0
|
|
16649
16697
|
*
|
|
@@ -16878,6 +16926,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16878
16926
|
*
|
|
16879
16927
|
* Indicates whether the file uploader is required.
|
|
16880
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
|
+
*
|
|
16881
16933
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16882
16934
|
*
|
|
16883
16935
|
* Default value is `false`.
|
|
@@ -17320,6 +17372,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17320
17372
|
/**
|
|
17321
17373
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
17322
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
|
+
*
|
|
17323
17378
|
* @since 1.105.0
|
|
17324
17379
|
*/
|
|
17325
17380
|
directory?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -17327,6 +17382,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17327
17382
|
/**
|
|
17328
17383
|
* Indicates whether the file uploader is required.
|
|
17329
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
|
+
*
|
|
17330
17389
|
* @since 1.144
|
|
17331
17390
|
*/
|
|
17332
17391
|
required?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -17774,10 +17833,22 @@ declare module "sap/ui/unified/FileUploaderHttpRequestMethod" {
|
|
|
17774
17833
|
/**
|
|
17775
17834
|
* HTTP request POST method.
|
|
17776
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
|
+
*/
|
|
17777
17842
|
Post = "POST",
|
|
17778
17843
|
/**
|
|
17779
17844
|
* HTTP request PUT method.
|
|
17780
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
|
+
*/
|
|
17781
17852
|
Put = "PUT",
|
|
17782
17853
|
}
|
|
17783
17854
|
export default FileUploaderHttpRequestMethod;
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.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/uxap/library" {
|
|
4
4
|
/**
|
|
@@ -7145,8 +7145,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
7145
7145
|
*
|
|
7146
7146
|
* The list of Subsections.
|
|
7147
7147
|
*
|
|
7148
|
-
* Note
|
|
7149
|
-
* reasons.
|
|
7148
|
+
* **Note:** If you use multiple subsections, set a `title` for each subsection to avoid accessibility violations.
|
|
7150
7149
|
*/
|
|
7151
7150
|
getSubSections(): ObjectPageSubSection[];
|
|
7152
7151
|
/**
|
|
@@ -7359,8 +7358,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
7359
7358
|
/**
|
|
7360
7359
|
* The list of Subsections.
|
|
7361
7360
|
*
|
|
7362
|
-
* Note
|
|
7363
|
-
* reasons.
|
|
7361
|
+
* **Note:** If you use multiple subsections, set a `title` for each subsection to avoid accessibility violations.
|
|
7364
7362
|
*/
|
|
7365
7363
|
subSections?:
|
|
7366
7364
|
| ObjectPageSubSection[]
|
|
@@ -7514,9 +7512,13 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7514
7512
|
* Defines the title of the respective section/subsection.
|
|
7515
7513
|
*
|
|
7516
7514
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
7517
|
-
* instead of the section title. This behavior is true even if the `showTitle`
|
|
7515
|
+
* instead of the section title. This behavior is true even if the `showTitle` property of {@link sap.uxap.ObjectPageSubSection }
|
|
7518
7516
|
* is set to `false`.
|
|
7519
7517
|
*
|
|
7518
|
+
* **Note:** To avoid accessibility issues, always set a `title` on {@link sap.uxap.ObjectPageSubSection},
|
|
7519
|
+
* especially when a section contains multiple subsections. If no `title` is set on a subsection, the anchor
|
|
7520
|
+
* bar button popover will appear empty, which will lead to accessibility violations.
|
|
7521
|
+
*
|
|
7520
7522
|
*
|
|
7521
7523
|
* @returns Value of property `title`
|
|
7522
7524
|
*/
|
|
@@ -7604,9 +7606,13 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7604
7606
|
* Defines the title of the respective section/subsection.
|
|
7605
7607
|
*
|
|
7606
7608
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
7607
|
-
* instead of the section title. This behavior is true even if the `showTitle`
|
|
7609
|
+
* instead of the section title. This behavior is true even if the `showTitle` property of {@link sap.uxap.ObjectPageSubSection }
|
|
7608
7610
|
* is set to `false`.
|
|
7609
7611
|
*
|
|
7612
|
+
* **Note:** To avoid accessibility issues, always set a `title` on {@link sap.uxap.ObjectPageSubSection},
|
|
7613
|
+
* especially when a section contains multiple subsections. If no `title` is set on a subsection, the anchor
|
|
7614
|
+
* bar button popover will appear empty, which will lead to accessibility violations.
|
|
7615
|
+
*
|
|
7610
7616
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7611
7617
|
*
|
|
7612
7618
|
*
|
|
@@ -7676,8 +7682,12 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7676
7682
|
* Defines the title of the respective section/subsection.
|
|
7677
7683
|
*
|
|
7678
7684
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
7679
|
-
* instead of the section title. This behavior is true even if the `showTitle`
|
|
7685
|
+
* instead of the section title. This behavior is true even if the `showTitle` property of {@link sap.uxap.ObjectPageSubSection }
|
|
7680
7686
|
* is set to `false`.
|
|
7687
|
+
*
|
|
7688
|
+
* **Note:** To avoid accessibility issues, always set a `title` on {@link sap.uxap.ObjectPageSubSection},
|
|
7689
|
+
* especially when a section contains multiple subsections. If no `title` is set on a subsection, the anchor
|
|
7690
|
+
* bar button popover will appear empty, which will lead to accessibility violations.
|
|
7681
7691
|
*/
|
|
7682
7692
|
title?: string | PropertyBindingInfo;
|
|
7683
7693
|
|