@openui5/ts-types 1.136.12 → 1.136.13
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 +1 -1
- 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 +3 -2
- 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 +9 -5
- 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 +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
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.136.
|
|
282
|
+
// For Library Version: 1.136.13
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -64314,7 +64314,8 @@ declare namespace sap {
|
|
|
64314
64314
|
* Since 1.82.0 absolute paths are supported. Absolute paths must start with the entity container (example
|
|
64315
64315
|
* "/com.sap.gateway.default.iwbep.tea_busi.v0001.Container/TEAMS") of the service. All (navigation) properties
|
|
64316
64316
|
* in the complete model matching such an absolute path are updated. Since 1.85.0, "14.4.11 Expression edm:String"
|
|
64317
|
-
* is accepted as well.
|
|
64317
|
+
* is accepted as well. Since 1.145.0, you can use `null` values (and `{$Null : null}`) as synonyms for
|
|
64318
|
+
* empty navigation property paths.
|
|
64318
64319
|
*
|
|
64319
64320
|
* Since 1.108.8, a property path matching the "com.sap.vocabularies.Common.v1.Messages" annotation of a
|
|
64320
64321
|
* list binding's entity type is treated specially for a row context of a list binding: It is loaded even
|
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.136.
|
|
1
|
+
// For Library Version: 1.136.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -715,8 +715,10 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
715
715
|
*/
|
|
716
716
|
interface FieldBaseDelegate extends BaseDelegate {
|
|
717
717
|
/**
|
|
718
|
-
* Enables applications to control condition updates based on
|
|
719
|
-
*
|
|
718
|
+
* Enables applications to control condition updates based on {@link sap.ui.mdc.Field#getValue value} /
|
|
719
|
+
* {@link sap.ui.mdc.Field#getAdditionalValue additionalValue} property changes of a {@link sap.ui.mdc.Field Field }
|
|
720
|
+
* or {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} / {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description }
|
|
721
|
+
* property changes of a {@link sap.ui.mdc.MultiValueField MultiValueField}.
|
|
720
722
|
* By default, this method returns a condition with an `EQ` operator.
|
|
721
723
|
*
|
|
722
724
|
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
@@ -746,8 +748,10 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
746
748
|
oCurrentCondition: undefined | sap.ui.mdc.condition.ConditionObject
|
|
747
749
|
): undefined | sap.ui.mdc.condition.ConditionObject;
|
|
748
750
|
/**
|
|
749
|
-
* Enables applications to control condition updates based on
|
|
750
|
-
*
|
|
751
|
+
* Enables applications to control condition updates based on {@link sap.ui.mdc.Field#getValue value} /
|
|
752
|
+
* {@link sap.ui.mdc.Field#getAdditionalValue additionalValue} property changes of a {@link sap.ui.mdc.Field Field }
|
|
753
|
+
* or {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} / {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description }
|
|
754
|
+
* property changes of a {@link sap.ui.mdc.MultiValueField MultiValueField}.
|
|
751
755
|
* By default, this method returns a condition with an `EQ` operator.
|
|
752
756
|
*
|
|
753
757
|
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
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.136.
|
|
1
|
+
// For Library Version: 1.136.13
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -4114,6 +4114,10 @@ declare namespace sap {
|
|
|
4114
4114
|
* @returns Value of property `collapseRecursive`
|
|
4115
4115
|
*/
|
|
4116
4116
|
getCollapseRecursive(): boolean;
|
|
4117
|
+
/**
|
|
4118
|
+
* Returns the Columns of the AnalyticalTable.
|
|
4119
|
+
*/
|
|
4120
|
+
getColumns(): sap.ui.table.AnalyticalColumn[];
|
|
4117
4121
|
/**
|
|
4118
4122
|
* Gets current value of property {@link #getColumnVisibilityMenuSorter columnVisibilityMenuSorter}.
|
|
4119
4123
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED