@openui5/types 1.144.0 → 1.145.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 +1 -1
- package/types/sap.m.d.ts +29 -12
- package/types/sap.tnt.d.ts +19 -11
- 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 +140 -99
- 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 +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +378 -50
- 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 +39 -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 +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.145.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.145.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
|
*
|
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.145.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
|
|