@openui5/types 1.120.0 → 1.120.2
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 +27 -9
- package/types/sap.tnt.d.ts +9 -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 +440 -128
- 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 +5 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +19 -1
- 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 +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/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -3737,6 +3737,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3737
3737
|
oListener?: object
|
|
3738
3738
|
): this;
|
|
3739
3739
|
/**
|
|
3740
|
+
* @deprecated (since 1.120.0)
|
|
3740
3741
|
* @experimental (since 1.97)
|
|
3741
3742
|
*
|
|
3742
3743
|
* This function is called when a CSRF token has expired.
|
|
@@ -3750,6 +3751,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3750
3751
|
}
|
|
3751
3752
|
): void;
|
|
3752
3753
|
/**
|
|
3754
|
+
* @deprecated (since 1.120.0)
|
|
3753
3755
|
* @experimental (since 1.97)
|
|
3754
3756
|
*
|
|
3755
3757
|
* This function is called when a CSRF token is fetched.
|
|
@@ -3989,7 +3991,9 @@ declare module "sap/ui/integration/Host" {
|
|
|
3989
3991
|
sPath: string
|
|
3990
3992
|
): Promise<null>;
|
|
3991
3993
|
/**
|
|
3994
|
+
* @deprecated (since 1.120.0)
|
|
3992
3995
|
* @experimental (since 1.97)
|
|
3996
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3993
3997
|
*
|
|
3994
3998
|
* Resolves the CSRF token and returns a Promise with its value.
|
|
3995
3999
|
*
|
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.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -7639,6 +7639,10 @@ declare module "sap/ui/mdc/field/ConditionsType" {
|
|
|
7639
7639
|
* If `noFormatting` is set, this value is used as output to keep the typed value during value help selection
|
|
7640
7640
|
*/
|
|
7641
7641
|
keepValue?: string;
|
|
7642
|
+
/**
|
|
7643
|
+
* If set, the input and output might contain multiple lines
|
|
7644
|
+
*/
|
|
7645
|
+
multipleLines?: boolean;
|
|
7642
7646
|
},
|
|
7643
7647
|
/**
|
|
7644
7648
|
* Value constraints
|
|
@@ -7863,6 +7867,10 @@ declare module "sap/ui/mdc/field/ConditionType" {
|
|
|
7863
7867
|
* If `noFormatting` is set, this value is used as output to keep the typed value during value help selection
|
|
7864
7868
|
*/
|
|
7865
7869
|
keepValue?: string;
|
|
7870
|
+
/**
|
|
7871
|
+
* If set, the input and output might contain multiple lines
|
|
7872
|
+
*/
|
|
7873
|
+
multipleLines?: boolean;
|
|
7866
7874
|
},
|
|
7867
7875
|
/**
|
|
7868
7876
|
* Value constraints
|
|
@@ -8082,6 +8090,10 @@ declare module "sap/ui/mdc/field/DynamicDateRangeConditionsType" {
|
|
|
8082
8090
|
* If `noFormatting` is set, this value is used as output to keep the typed value during value help selection
|
|
8083
8091
|
*/
|
|
8084
8092
|
keepValue?: string;
|
|
8093
|
+
/**
|
|
8094
|
+
* If set, the input and output might contain multiple lines
|
|
8095
|
+
*/
|
|
8096
|
+
multipleLines?: boolean;
|
|
8085
8097
|
},
|
|
8086
8098
|
/**
|
|
8087
8099
|
* Value constraints
|
|
@@ -22507,6 +22519,8 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
22507
22519
|
*/
|
|
22508
22520
|
getFilterBar(): FilterBar;
|
|
22509
22521
|
/**
|
|
22522
|
+
* @deprecated (since 1.120.2) - replaced in future version by {@link sap.ui.mdc.ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
22523
|
+
*
|
|
22510
22524
|
* Gets current value of property {@link #getFilterFields filterFields}.
|
|
22511
22525
|
*
|
|
22512
22526
|
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
@@ -22614,6 +22628,8 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
22614
22628
|
oFilterBar: FilterBar
|
|
22615
22629
|
): this;
|
|
22616
22630
|
/**
|
|
22631
|
+
* @deprecated (since 1.120.2) - replaced in future version by {@link sap.ui.mdc.ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
22632
|
+
*
|
|
22617
22633
|
* Sets a new value for property {@link #getFilterFields filterFields}.
|
|
22618
22634
|
*
|
|
22619
22635
|
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
@@ -22681,6 +22697,8 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
22681
22697
|
|
|
22682
22698
|
export interface $FilterableListContentSettings extends $ListContentSettings {
|
|
22683
22699
|
/**
|
|
22700
|
+
* @deprecated (since 1.120.2) - replaced in future version by {@link sap.ui.mdc.ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
22701
|
+
*
|
|
22684
22702
|
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
22685
22703
|
* is used.
|
|
22686
22704
|
*
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED