@openui5/ts-types 1.144.0 → 1.145.1
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 -97
- 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 +356 -49
- 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 +5 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +42 -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.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -4675,6 +4675,10 @@ declare namespace sap {
|
|
|
4675
4675
|
* @returns Value of property `collapseRecursive`
|
|
4676
4676
|
*/
|
|
4677
4677
|
getCollapseRecursive(): boolean;
|
|
4678
|
+
/**
|
|
4679
|
+
* Returns the Columns of the AnalyticalTable.
|
|
4680
|
+
*/
|
|
4681
|
+
getColumns(): sap.ui.table.AnalyticalColumn[];
|
|
4678
4682
|
/**
|
|
4679
4683
|
* Gets current value of property {@link #getColumnVisibilityMenuSorter columnVisibilityMenuSorter}.
|
|
4680
4684
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -595,6 +595,16 @@ declare namespace sap {
|
|
|
595
595
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
596
596
|
| `{${string}}`;
|
|
597
597
|
|
|
598
|
+
/**
|
|
599
|
+
* Determines if the week numbers are displayed.
|
|
600
|
+
*
|
|
601
|
+
* @since 1.145.0
|
|
602
|
+
*/
|
|
603
|
+
showWeekNumbers?:
|
|
604
|
+
| boolean
|
|
605
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
606
|
+
| `{${string}}`;
|
|
607
|
+
|
|
598
608
|
/**
|
|
599
609
|
* Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
|
|
600
610
|
*
|
|
@@ -4127,6 +4137,18 @@ declare namespace sap {
|
|
|
4127
4137
|
* @returns Value of property `showHeader`
|
|
4128
4138
|
*/
|
|
4129
4139
|
getShowHeader(): boolean;
|
|
4140
|
+
/**
|
|
4141
|
+
* Gets current value of property {@link #getShowWeekNumbers showWeekNumbers}.
|
|
4142
|
+
*
|
|
4143
|
+
* Determines if the week numbers are displayed.
|
|
4144
|
+
*
|
|
4145
|
+
* Default value is `false`.
|
|
4146
|
+
*
|
|
4147
|
+
* @since 1.145.0
|
|
4148
|
+
*
|
|
4149
|
+
* @returns Value of property `showWeekNumbers`
|
|
4150
|
+
*/
|
|
4151
|
+
getShowWeekNumbers(): boolean;
|
|
4130
4152
|
/**
|
|
4131
4153
|
* Gets current value of property {@link #getSingleSelection singleSelection}.
|
|
4132
4154
|
*
|
|
@@ -4363,6 +4385,25 @@ declare namespace sap {
|
|
|
4363
4385
|
*/
|
|
4364
4386
|
bShowHeader?: boolean
|
|
4365
4387
|
): this;
|
|
4388
|
+
/**
|
|
4389
|
+
* Sets a new value for property {@link #getShowWeekNumbers showWeekNumbers}.
|
|
4390
|
+
*
|
|
4391
|
+
* Determines if the week numbers are displayed.
|
|
4392
|
+
*
|
|
4393
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4394
|
+
*
|
|
4395
|
+
* Default value is `false`.
|
|
4396
|
+
*
|
|
4397
|
+
* @since 1.145.0
|
|
4398
|
+
*
|
|
4399
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4400
|
+
*/
|
|
4401
|
+
setShowWeekNumbers(
|
|
4402
|
+
/**
|
|
4403
|
+
* New value for property `showWeekNumbers`
|
|
4404
|
+
*/
|
|
4405
|
+
bShowWeekNumbers?: boolean
|
|
4406
|
+
): this;
|
|
4366
4407
|
/**
|
|
4367
4408
|
* Sets a new value for property {@link #getSingleSelection singleSelection}.
|
|
4368
4409
|
*
|
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.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1140,8 +1140,7 @@ declare namespace sap {
|
|
|
1140
1140
|
/**
|
|
1141
1141
|
* The list of Subsections.
|
|
1142
1142
|
*
|
|
1143
|
-
* Note
|
|
1144
|
-
* reasons.
|
|
1143
|
+
* **Note:** If you use multiple subsections, set a `title` for each subsection to avoid accessibility violations.
|
|
1145
1144
|
*/
|
|
1146
1145
|
subSections?:
|
|
1147
1146
|
| sap.uxap.ObjectPageSubSection[]
|
|
@@ -1173,8 +1172,12 @@ declare namespace sap {
|
|
|
1173
1172
|
* Defines the title of the respective section/subsection.
|
|
1174
1173
|
*
|
|
1175
1174
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
1176
|
-
* instead of the section title. This behavior is true even if the `showTitle`
|
|
1175
|
+
* instead of the section title. This behavior is true even if the `showTitle` property of {@link sap.uxap.ObjectPageSubSection }
|
|
1177
1176
|
* is set to `false`.
|
|
1177
|
+
*
|
|
1178
|
+
* **Note:** To avoid accessibility issues, always set a `title` on {@link sap.uxap.ObjectPageSubSection},
|
|
1179
|
+
* especially when a section contains multiple subsections. If no `title` is set on a subsection, the anchor
|
|
1180
|
+
* bar button popover will appear empty, which will lead to accessibility violations.
|
|
1178
1181
|
*/
|
|
1179
1182
|
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1180
1183
|
|
|
@@ -7099,8 +7102,7 @@ declare namespace sap {
|
|
|
7099
7102
|
*
|
|
7100
7103
|
* The list of Subsections.
|
|
7101
7104
|
*
|
|
7102
|
-
* Note
|
|
7103
|
-
* reasons.
|
|
7105
|
+
* **Note:** If you use multiple subsections, set a `title` for each subsection to avoid accessibility violations.
|
|
7104
7106
|
*/
|
|
7105
7107
|
getSubSections(): sap.uxap.ObjectPageSubSection[];
|
|
7106
7108
|
/**
|
|
@@ -7396,9 +7398,13 @@ declare namespace sap {
|
|
|
7396
7398
|
* Defines the title of the respective section/subsection.
|
|
7397
7399
|
*
|
|
7398
7400
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
7399
|
-
* instead of the section title. This behavior is true even if the `showTitle`
|
|
7401
|
+
* instead of the section title. This behavior is true even if the `showTitle` property of {@link sap.uxap.ObjectPageSubSection }
|
|
7400
7402
|
* is set to `false`.
|
|
7401
7403
|
*
|
|
7404
|
+
* **Note:** To avoid accessibility issues, always set a `title` on {@link sap.uxap.ObjectPageSubSection},
|
|
7405
|
+
* especially when a section contains multiple subsections. If no `title` is set on a subsection, the anchor
|
|
7406
|
+
* bar button popover will appear empty, which will lead to accessibility violations.
|
|
7407
|
+
*
|
|
7402
7408
|
*
|
|
7403
7409
|
* @returns Value of property `title`
|
|
7404
7410
|
*/
|
|
@@ -7486,9 +7492,13 @@ declare namespace sap {
|
|
|
7486
7492
|
* Defines the title of the respective section/subsection.
|
|
7487
7493
|
*
|
|
7488
7494
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
7489
|
-
* instead of the section title. This behavior is true even if the `showTitle`
|
|
7495
|
+
* instead of the section title. This behavior is true even if the `showTitle` property of {@link sap.uxap.ObjectPageSubSection }
|
|
7490
7496
|
* is set to `false`.
|
|
7491
7497
|
*
|
|
7498
|
+
* **Note:** To avoid accessibility issues, always set a `title` on {@link sap.uxap.ObjectPageSubSection},
|
|
7499
|
+
* especially when a section contains multiple subsections. If no `title` is set on a subsection, the anchor
|
|
7500
|
+
* bar button popover will appear empty, which will lead to accessibility violations.
|
|
7501
|
+
*
|
|
7492
7502
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7493
7503
|
*
|
|
7494
7504
|
*
|