@openui5/types 1.135.0 → 1.136.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/index.d.ts +1 -1
- package/types/sap.f.d.ts +101 -1
- package/types/sap.m.d.ts +532 -42
- 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 +115 -118
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +8 -2
- package/types/sap.ui.integration.d.ts +5 -3
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +135 -8
- 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 +14 -32
- package/types/sap.ui.ux3.d.ts +3 -3
- 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 +2 -21
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* Copyright
|
|
3
|
+
* Copyright 2025 SAP SE or an SAP affiliate company.
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
6
|
* you may not use this file except in compliance with the License.
|
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.136.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -1907,6 +1907,20 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
1907
1907
|
*/
|
|
1908
1908
|
oBannerLine: Text
|
|
1909
1909
|
): this;
|
|
1910
|
+
/**
|
|
1911
|
+
* Adds some infoSection to the aggregation {@link #getInfoSection infoSection}.
|
|
1912
|
+
*
|
|
1913
|
+
* @since 1.136
|
|
1914
|
+
* @experimental As of version 1.136.
|
|
1915
|
+
*
|
|
1916
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1917
|
+
*/
|
|
1918
|
+
addInfoSection(
|
|
1919
|
+
/**
|
|
1920
|
+
* The infoSection to add; if empty, nothing is inserted
|
|
1921
|
+
*/
|
|
1922
|
+
oInfoSection: Control
|
|
1923
|
+
): this;
|
|
1910
1924
|
/**
|
|
1911
1925
|
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.f.cards.BaseHeader`.
|
|
1912
1926
|
*
|
|
@@ -1963,6 +1977,15 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
1963
1977
|
* @returns Reference to `this` in order to allow method chaining
|
|
1964
1978
|
*/
|
|
1965
1979
|
destroyBannerLines(): this;
|
|
1980
|
+
/**
|
|
1981
|
+
* Destroys all the infoSection in the aggregation {@link #getInfoSection infoSection}.
|
|
1982
|
+
*
|
|
1983
|
+
* @since 1.136
|
|
1984
|
+
* @experimental As of version 1.136.
|
|
1985
|
+
*
|
|
1986
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1987
|
+
*/
|
|
1988
|
+
destroyInfoSection(): this;
|
|
1966
1989
|
/**
|
|
1967
1990
|
* Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
|
|
1968
1991
|
*
|
|
@@ -2039,6 +2062,15 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2039
2062
|
* @returns Value of property `href`
|
|
2040
2063
|
*/
|
|
2041
2064
|
getHref(): string;
|
|
2065
|
+
/**
|
|
2066
|
+
* Gets content of aggregation {@link #getInfoSection infoSection}.
|
|
2067
|
+
*
|
|
2068
|
+
* Info sections to be displayed in the header.
|
|
2069
|
+
*
|
|
2070
|
+
* @since 1.136
|
|
2071
|
+
* @experimental As of version 1.136.
|
|
2072
|
+
*/
|
|
2073
|
+
getInfoSection(): Control[];
|
|
2042
2074
|
/**
|
|
2043
2075
|
* Gets current value of property {@link #getStatusVisible statusVisible}.
|
|
2044
2076
|
*
|
|
@@ -2098,6 +2130,21 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2098
2130
|
*/
|
|
2099
2131
|
oBannerLine: Text
|
|
2100
2132
|
): int;
|
|
2133
|
+
/**
|
|
2134
|
+
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getInfoSection infoSection}.
|
|
2135
|
+
* and returns its index if found or -1 otherwise.
|
|
2136
|
+
*
|
|
2137
|
+
* @since 1.136
|
|
2138
|
+
* @experimental As of version 1.136.
|
|
2139
|
+
*
|
|
2140
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2141
|
+
*/
|
|
2142
|
+
indexOfInfoSection(
|
|
2143
|
+
/**
|
|
2144
|
+
* The infoSection whose index is looked for
|
|
2145
|
+
*/
|
|
2146
|
+
oInfoSection: Control
|
|
2147
|
+
): int;
|
|
2101
2148
|
/**
|
|
2102
2149
|
* Inserts a bannerLine into the aggregation {@link #getBannerLines bannerLines}.
|
|
2103
2150
|
*
|
|
@@ -2118,6 +2165,26 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2118
2165
|
*/
|
|
2119
2166
|
iIndex: int
|
|
2120
2167
|
): this;
|
|
2168
|
+
/**
|
|
2169
|
+
* Inserts a infoSection into the aggregation {@link #getInfoSection infoSection}.
|
|
2170
|
+
*
|
|
2171
|
+
* @since 1.136
|
|
2172
|
+
* @experimental As of version 1.136.
|
|
2173
|
+
*
|
|
2174
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2175
|
+
*/
|
|
2176
|
+
insertInfoSection(
|
|
2177
|
+
/**
|
|
2178
|
+
* The infoSection to insert; if empty, nothing is inserted
|
|
2179
|
+
*/
|
|
2180
|
+
oInfoSection: Control,
|
|
2181
|
+
/**
|
|
2182
|
+
* The `0`-based index the infoSection should be inserted at; for a negative value of `iIndex`, the infoSection
|
|
2183
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the infoSection
|
|
2184
|
+
* is inserted at the last position
|
|
2185
|
+
*/
|
|
2186
|
+
iIndex: int
|
|
2187
|
+
): this;
|
|
2121
2188
|
/**
|
|
2122
2189
|
* Removes all the controls from the aggregation {@link #getBannerLines bannerLines}.
|
|
2123
2190
|
*
|
|
@@ -2129,6 +2196,17 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2129
2196
|
* @returns An array of the removed elements (might be empty)
|
|
2130
2197
|
*/
|
|
2131
2198
|
removeAllBannerLines(): Text[];
|
|
2199
|
+
/**
|
|
2200
|
+
* Removes all the controls from the aggregation {@link #getInfoSection infoSection}.
|
|
2201
|
+
*
|
|
2202
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
2203
|
+
*
|
|
2204
|
+
* @since 1.136
|
|
2205
|
+
* @experimental As of version 1.136.
|
|
2206
|
+
*
|
|
2207
|
+
* @returns An array of the removed elements (might be empty)
|
|
2208
|
+
*/
|
|
2209
|
+
removeAllInfoSection(): Control[];
|
|
2132
2210
|
/**
|
|
2133
2211
|
* Removes a bannerLine from the aggregation {@link #getBannerLines bannerLines}.
|
|
2134
2212
|
*
|
|
@@ -2143,6 +2221,20 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2143
2221
|
*/
|
|
2144
2222
|
vBannerLine: int | string | Text
|
|
2145
2223
|
): Text | null;
|
|
2224
|
+
/**
|
|
2225
|
+
* Removes a infoSection from the aggregation {@link #getInfoSection infoSection}.
|
|
2226
|
+
*
|
|
2227
|
+
* @since 1.136
|
|
2228
|
+
* @experimental As of version 1.136.
|
|
2229
|
+
*
|
|
2230
|
+
* @returns The removed infoSection or `null`
|
|
2231
|
+
*/
|
|
2232
|
+
removeInfoSection(
|
|
2233
|
+
/**
|
|
2234
|
+
* The infoSection to remove or its index or id
|
|
2235
|
+
*/
|
|
2236
|
+
vInfoSection: int | string | Control
|
|
2237
|
+
): Control | null;
|
|
2146
2238
|
/**
|
|
2147
2239
|
* Sets a new value for property {@link #getDataTimestamp dataTimestamp}.
|
|
2148
2240
|
*
|
|
@@ -2303,6 +2395,14 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2303
2395
|
*/
|
|
2304
2396
|
target?: string | PropertyBindingInfo;
|
|
2305
2397
|
|
|
2398
|
+
/**
|
|
2399
|
+
* Info sections to be displayed in the header.
|
|
2400
|
+
*
|
|
2401
|
+
* @since 1.136
|
|
2402
|
+
* @experimental As of version 1.136.
|
|
2403
|
+
*/
|
|
2404
|
+
infoSection?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
2405
|
+
|
|
2306
2406
|
/**
|
|
2307
2407
|
* Defines the toolbar.
|
|
2308
2408
|
*
|