@openui5/types 1.145.0 → 1.146.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 +73 -526
- package/types/sap.m.d.ts +322 -18
- package/types/sap.tnt.d.ts +9 -16
- 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 +1044 -382
- 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 +65 -266
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +2 -2
- 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 +36 -3
- 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.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -434,8 +434,7 @@ declare module "sap/f/library" {
|
|
|
434
434
|
*
|
|
435
435
|
* This enum is part of the 'sap/f/library' module export and must be accessed by the property 'cards.SemanticRole'.
|
|
436
436
|
*
|
|
437
|
-
* @
|
|
438
|
-
* @experimental
|
|
437
|
+
* @experimental As of version 1.131.
|
|
439
438
|
*/
|
|
440
439
|
enum SemanticRole {
|
|
441
440
|
/**
|
|
@@ -1815,8 +1814,6 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
1815
1814
|
|
|
1816
1815
|
import { IBar, WrappingType } from "sap/m/library";
|
|
1817
1816
|
|
|
1818
|
-
import Text from "sap/m/Text";
|
|
1819
|
-
|
|
1820
1817
|
import Event from "sap/ui/base/Event";
|
|
1821
1818
|
|
|
1822
1819
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -1893,24 +1890,9 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
1893
1890
|
* @returns Metadata object describing this class
|
|
1894
1891
|
*/
|
|
1895
1892
|
static getMetadata(): ElementMetadata;
|
|
1896
|
-
/**
|
|
1897
|
-
* Adds some bannerLine to the aggregation {@link #getBannerLines bannerLines}.
|
|
1898
|
-
*
|
|
1899
|
-
* @since 1.118
|
|
1900
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
1901
|
-
*
|
|
1902
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
1903
|
-
*/
|
|
1904
|
-
addBannerLine(
|
|
1905
|
-
/**
|
|
1906
|
-
* The bannerLine to add; if empty, nothing is inserted
|
|
1907
|
-
*/
|
|
1908
|
-
oBannerLine: Text
|
|
1909
|
-
): this;
|
|
1910
1893
|
/**
|
|
1911
1894
|
* Adds some infoSection to the aggregation {@link #getInfoSection infoSection}.
|
|
1912
1895
|
*
|
|
1913
|
-
* @since 1.136
|
|
1914
1896
|
* @experimental As of version 1.136.
|
|
1915
1897
|
*
|
|
1916
1898
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1968,19 +1950,9 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
1968
1950
|
*/
|
|
1969
1951
|
oListener?: object
|
|
1970
1952
|
): this;
|
|
1971
|
-
/**
|
|
1972
|
-
* Destroys all the bannerLines in the aggregation {@link #getBannerLines bannerLines}.
|
|
1973
|
-
*
|
|
1974
|
-
* @since 1.118
|
|
1975
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
1976
|
-
*
|
|
1977
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
1978
|
-
*/
|
|
1979
|
-
destroyBannerLines(): this;
|
|
1980
1953
|
/**
|
|
1981
1954
|
* Destroys all the infoSection in the aggregation {@link #getInfoSection infoSection}.
|
|
1982
1955
|
*
|
|
1983
|
-
* @since 1.136
|
|
1984
1956
|
* @experimental As of version 1.136.
|
|
1985
1957
|
*
|
|
1986
1958
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1989,7 +1961,6 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
1989
1961
|
/**
|
|
1990
1962
|
* Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
|
|
1991
1963
|
*
|
|
1992
|
-
* @since 1.86
|
|
1993
1964
|
* @experimental As of version 1.86.
|
|
1994
1965
|
*
|
|
1995
1966
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2026,15 +1997,6 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2026
1997
|
*/
|
|
2027
1998
|
mParameters?: object
|
|
2028
1999
|
): this;
|
|
2029
|
-
/**
|
|
2030
|
-
* Gets content of aggregation {@link #getBannerLines bannerLines}.
|
|
2031
|
-
*
|
|
2032
|
-
* Show as a banner in the header area. Use for example for system info and application shortcut.
|
|
2033
|
-
*
|
|
2034
|
-
* @since 1.118
|
|
2035
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
2036
|
-
*/
|
|
2037
|
-
getBannerLines(): Text[];
|
|
2038
2000
|
/**
|
|
2039
2001
|
* Gets current value of property {@link #getDataTimestamp dataTimestamp}.
|
|
2040
2002
|
*
|
|
@@ -2047,27 +2009,16 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2047
2009
|
*
|
|
2048
2010
|
* Default value is `empty string`.
|
|
2049
2011
|
*
|
|
2050
|
-
* @experimental As of version 1.89.
|
|
2012
|
+
* @experimental As of version 1.89.
|
|
2051
2013
|
*
|
|
2052
2014
|
* @returns Value of property `dataTimestamp`
|
|
2053
2015
|
*/
|
|
2054
2016
|
getDataTimestamp(): string;
|
|
2055
|
-
/**
|
|
2056
|
-
* Gets current value of property {@link #getHref href}.
|
|
2057
|
-
*
|
|
2058
|
-
* Defines the href which the header should open. If set - the header will act and render as a link.
|
|
2059
|
-
*
|
|
2060
|
-
* @experimental As of version 1.122. Do not use this feature outside of sap.ui.integration.widgets.Card.
|
|
2061
|
-
*
|
|
2062
|
-
* @returns Value of property `href`
|
|
2063
|
-
*/
|
|
2064
|
-
getHref(): string;
|
|
2065
2017
|
/**
|
|
2066
2018
|
* Gets content of aggregation {@link #getInfoSection infoSection}.
|
|
2067
2019
|
*
|
|
2068
2020
|
* Info sections to be displayed in the header.
|
|
2069
2021
|
*
|
|
2070
|
-
* @since 1.136
|
|
2071
2022
|
* @experimental As of version 1.136.
|
|
2072
2023
|
*/
|
|
2073
2024
|
getInfoSection(): Control[];
|
|
@@ -2078,27 +2029,16 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2078
2029
|
*
|
|
2079
2030
|
* Default value is `true`.
|
|
2080
2031
|
*
|
|
2081
|
-
* @experimental As of version 1.116.
|
|
2032
|
+
* @experimental As of version 1.116.
|
|
2082
2033
|
*
|
|
2083
2034
|
* @returns Value of property `statusVisible`
|
|
2084
2035
|
*/
|
|
2085
2036
|
getStatusVisible(): boolean;
|
|
2086
|
-
/**
|
|
2087
|
-
* Gets current value of property {@link #getTarget target}.
|
|
2088
|
-
*
|
|
2089
|
-
* Defines the target for the case when `href` is given.
|
|
2090
|
-
*
|
|
2091
|
-
* @experimental As of version 1.122. Do not use this feature outside of sap.ui.integration.widgets.Card.
|
|
2092
|
-
*
|
|
2093
|
-
* @returns Value of property `target`
|
|
2094
|
-
*/
|
|
2095
|
-
getTarget(): string;
|
|
2096
2037
|
/**
|
|
2097
2038
|
* Gets content of aggregation {@link #getToolbar toolbar}.
|
|
2098
2039
|
*
|
|
2099
2040
|
* Defines the toolbar.
|
|
2100
2041
|
*
|
|
2101
|
-
* @since 1.86
|
|
2102
2042
|
* @experimental As of version 1.86.
|
|
2103
2043
|
*/
|
|
2104
2044
|
getToolbar(): Control;
|
|
@@ -2110,31 +2050,15 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2110
2050
|
*
|
|
2111
2051
|
* Default value is `Normal`.
|
|
2112
2052
|
*
|
|
2113
|
-
* @experimental As of version 1.122.
|
|
2053
|
+
* @experimental As of version 1.122.
|
|
2114
2054
|
*
|
|
2115
2055
|
* @returns Value of property `wrappingType`
|
|
2116
2056
|
*/
|
|
2117
2057
|
getWrappingType(): WrappingType;
|
|
2118
|
-
/**
|
|
2119
|
-
* Checks for the provided `sap.m.Text` in the aggregation {@link #getBannerLines bannerLines}. and returns
|
|
2120
|
-
* its index if found or -1 otherwise.
|
|
2121
|
-
*
|
|
2122
|
-
* @since 1.118
|
|
2123
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
2124
|
-
*
|
|
2125
|
-
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2126
|
-
*/
|
|
2127
|
-
indexOfBannerLine(
|
|
2128
|
-
/**
|
|
2129
|
-
* The bannerLine whose index is looked for
|
|
2130
|
-
*/
|
|
2131
|
-
oBannerLine: Text
|
|
2132
|
-
): int;
|
|
2133
2058
|
/**
|
|
2134
2059
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getInfoSection infoSection}.
|
|
2135
2060
|
* and returns its index if found or -1 otherwise.
|
|
2136
2061
|
*
|
|
2137
|
-
* @since 1.136
|
|
2138
2062
|
* @experimental As of version 1.136.
|
|
2139
2063
|
*
|
|
2140
2064
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
@@ -2145,30 +2069,9 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2145
2069
|
*/
|
|
2146
2070
|
oInfoSection: Control
|
|
2147
2071
|
): int;
|
|
2148
|
-
/**
|
|
2149
|
-
* Inserts a bannerLine into the aggregation {@link #getBannerLines bannerLines}.
|
|
2150
|
-
*
|
|
2151
|
-
* @since 1.118
|
|
2152
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
2153
|
-
*
|
|
2154
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
2155
|
-
*/
|
|
2156
|
-
insertBannerLine(
|
|
2157
|
-
/**
|
|
2158
|
-
* The bannerLine to insert; if empty, nothing is inserted
|
|
2159
|
-
*/
|
|
2160
|
-
oBannerLine: Text,
|
|
2161
|
-
/**
|
|
2162
|
-
* The `0`-based index the bannerLine should be inserted at; for a negative value of `iIndex`, the bannerLine
|
|
2163
|
-
* is inserted at position 0; for a value greater than the current size of the aggregation, the bannerLine
|
|
2164
|
-
* is inserted at the last position
|
|
2165
|
-
*/
|
|
2166
|
-
iIndex: int
|
|
2167
|
-
): this;
|
|
2168
2072
|
/**
|
|
2169
2073
|
* Inserts a infoSection into the aggregation {@link #getInfoSection infoSection}.
|
|
2170
2074
|
*
|
|
2171
|
-
* @since 1.136
|
|
2172
2075
|
* @experimental As of version 1.136.
|
|
2173
2076
|
*
|
|
2174
2077
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2185,46 +2088,19 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2185
2088
|
*/
|
|
2186
2089
|
iIndex: int
|
|
2187
2090
|
): this;
|
|
2188
|
-
/**
|
|
2189
|
-
* Removes all the controls from the aggregation {@link #getBannerLines bannerLines}.
|
|
2190
|
-
*
|
|
2191
|
-
* Additionally, it unregisters them from the hosting UIArea.
|
|
2192
|
-
*
|
|
2193
|
-
* @since 1.118
|
|
2194
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
2195
|
-
*
|
|
2196
|
-
* @returns An array of the removed elements (might be empty)
|
|
2197
|
-
*/
|
|
2198
|
-
removeAllBannerLines(): Text[];
|
|
2199
2091
|
/**
|
|
2200
2092
|
* Removes all the controls from the aggregation {@link #getInfoSection infoSection}.
|
|
2201
2093
|
*
|
|
2202
2094
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
2203
2095
|
*
|
|
2204
|
-
* @since 1.136
|
|
2205
2096
|
* @experimental As of version 1.136.
|
|
2206
2097
|
*
|
|
2207
2098
|
* @returns An array of the removed elements (might be empty)
|
|
2208
2099
|
*/
|
|
2209
2100
|
removeAllInfoSection(): Control[];
|
|
2210
|
-
/**
|
|
2211
|
-
* Removes a bannerLine from the aggregation {@link #getBannerLines bannerLines}.
|
|
2212
|
-
*
|
|
2213
|
-
* @since 1.118
|
|
2214
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
2215
|
-
*
|
|
2216
|
-
* @returns The removed bannerLine or `null`
|
|
2217
|
-
*/
|
|
2218
|
-
removeBannerLine(
|
|
2219
|
-
/**
|
|
2220
|
-
* The bannerLine to remove or its index or id
|
|
2221
|
-
*/
|
|
2222
|
-
vBannerLine: int | string | Text
|
|
2223
|
-
): Text | null;
|
|
2224
2101
|
/**
|
|
2225
2102
|
* Removes a infoSection from the aggregation {@link #getInfoSection infoSection}.
|
|
2226
2103
|
*
|
|
2227
|
-
* @since 1.136
|
|
2228
2104
|
* @experimental As of version 1.136.
|
|
2229
2105
|
*
|
|
2230
2106
|
* @returns The removed infoSection or `null`
|
|
@@ -2249,7 +2125,7 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2249
2125
|
*
|
|
2250
2126
|
* Default value is `empty string`.
|
|
2251
2127
|
*
|
|
2252
|
-
* @experimental As of version 1.89.
|
|
2128
|
+
* @experimental As of version 1.89.
|
|
2253
2129
|
*
|
|
2254
2130
|
* @returns Reference to `this` in order to allow method chaining
|
|
2255
2131
|
*/
|
|
@@ -2259,23 +2135,6 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2259
2135
|
*/
|
|
2260
2136
|
sDataTimestamp?: string
|
|
2261
2137
|
): this;
|
|
2262
|
-
/**
|
|
2263
|
-
* Sets a new value for property {@link #getHref href}.
|
|
2264
|
-
*
|
|
2265
|
-
* Defines the href which the header should open. If set - the header will act and render as a link.
|
|
2266
|
-
*
|
|
2267
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2268
|
-
*
|
|
2269
|
-
* @experimental As of version 1.122. Do not use this feature outside of sap.ui.integration.widgets.Card.
|
|
2270
|
-
*
|
|
2271
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
2272
|
-
*/
|
|
2273
|
-
setHref(
|
|
2274
|
-
/**
|
|
2275
|
-
* New value for property `href`
|
|
2276
|
-
*/
|
|
2277
|
-
sHref: string
|
|
2278
|
-
): this;
|
|
2279
2138
|
/**
|
|
2280
2139
|
* Sets a new value for property {@link #getStatusVisible statusVisible}.
|
|
2281
2140
|
*
|
|
@@ -2285,7 +2144,7 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2285
2144
|
*
|
|
2286
2145
|
* Default value is `true`.
|
|
2287
2146
|
*
|
|
2288
|
-
* @experimental As of version 1.116.
|
|
2147
|
+
* @experimental As of version 1.116.
|
|
2289
2148
|
*
|
|
2290
2149
|
* @returns Reference to `this` in order to allow method chaining
|
|
2291
2150
|
*/
|
|
@@ -2295,27 +2154,9 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2295
2154
|
*/
|
|
2296
2155
|
bStatusVisible?: boolean
|
|
2297
2156
|
): this;
|
|
2298
|
-
/**
|
|
2299
|
-
* Sets a new value for property {@link #getTarget target}.
|
|
2300
|
-
*
|
|
2301
|
-
* Defines the target for the case when `href` is given.
|
|
2302
|
-
*
|
|
2303
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2304
|
-
*
|
|
2305
|
-
* @experimental As of version 1.122. Do not use this feature outside of sap.ui.integration.widgets.Card.
|
|
2306
|
-
*
|
|
2307
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
2308
|
-
*/
|
|
2309
|
-
setTarget(
|
|
2310
|
-
/**
|
|
2311
|
-
* New value for property `target`
|
|
2312
|
-
*/
|
|
2313
|
-
sTarget: string
|
|
2314
|
-
): this;
|
|
2315
2157
|
/**
|
|
2316
2158
|
* Sets the aggregated {@link #getToolbar toolbar}.
|
|
2317
2159
|
*
|
|
2318
|
-
* @since 1.86
|
|
2319
2160
|
* @experimental As of version 1.86.
|
|
2320
2161
|
*
|
|
2321
2162
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2336,7 +2177,7 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2336
2177
|
*
|
|
2337
2178
|
* Default value is `Normal`.
|
|
2338
2179
|
*
|
|
2339
|
-
* @experimental As of version 1.122.
|
|
2180
|
+
* @experimental As of version 1.122.
|
|
2340
2181
|
*
|
|
2341
2182
|
* @returns Reference to `this` in order to allow method chaining
|
|
2342
2183
|
*/
|
|
@@ -2359,14 +2200,14 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2359
2200
|
*
|
|
2360
2201
|
* Will be shown as a relative time like "5 minutes ago".
|
|
2361
2202
|
*
|
|
2362
|
-
* @experimental As of version 1.89.
|
|
2203
|
+
* @experimental As of version 1.89.
|
|
2363
2204
|
*/
|
|
2364
2205
|
dataTimestamp?: string | PropertyBindingInfo;
|
|
2365
2206
|
|
|
2366
2207
|
/**
|
|
2367
2208
|
* Defines the status text visibility.
|
|
2368
2209
|
*
|
|
2369
|
-
* @experimental As of version 1.116.
|
|
2210
|
+
* @experimental As of version 1.116.
|
|
2370
2211
|
*/
|
|
2371
2212
|
statusVisible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2372
2213
|
|
|
@@ -2374,31 +2215,16 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2374
2215
|
* Defines the type of text wrapping to be used inside the header. This applies to title, subtitle and details
|
|
2375
2216
|
* texts of the header.
|
|
2376
2217
|
*
|
|
2377
|
-
* @experimental As of version 1.122.
|
|
2218
|
+
* @experimental As of version 1.122.
|
|
2378
2219
|
*/
|
|
2379
2220
|
wrappingType?:
|
|
2380
2221
|
| (WrappingType | keyof typeof WrappingType)
|
|
2381
2222
|
| PropertyBindingInfo
|
|
2382
2223
|
| `{${string}}`;
|
|
2383
2224
|
|
|
2384
|
-
/**
|
|
2385
|
-
* Defines the href which the header should open. If set - the header will act and render as a link.
|
|
2386
|
-
*
|
|
2387
|
-
* @experimental As of version 1.122. Do not use this feature outside of sap.ui.integration.widgets.Card.
|
|
2388
|
-
*/
|
|
2389
|
-
href?: string | PropertyBindingInfo;
|
|
2390
|
-
|
|
2391
|
-
/**
|
|
2392
|
-
* Defines the target for the case when `href` is given.
|
|
2393
|
-
*
|
|
2394
|
-
* @experimental As of version 1.122. Do not use this feature outside of sap.ui.integration.widgets.Card.
|
|
2395
|
-
*/
|
|
2396
|
-
target?: string | PropertyBindingInfo;
|
|
2397
|
-
|
|
2398
2225
|
/**
|
|
2399
2226
|
* Info sections to be displayed in the header.
|
|
2400
2227
|
*
|
|
2401
|
-
* @since 1.136
|
|
2402
2228
|
* @experimental As of version 1.136.
|
|
2403
2229
|
*/
|
|
2404
2230
|
infoSection?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
@@ -2406,19 +2232,10 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2406
2232
|
/**
|
|
2407
2233
|
* Defines the toolbar.
|
|
2408
2234
|
*
|
|
2409
|
-
* @since 1.86
|
|
2410
2235
|
* @experimental As of version 1.86.
|
|
2411
2236
|
*/
|
|
2412
2237
|
toolbar?: Control;
|
|
2413
2238
|
|
|
2414
|
-
/**
|
|
2415
|
-
* Show as a banner in the header area. Use for example for system info and application shortcut.
|
|
2416
|
-
*
|
|
2417
|
-
* @since 1.118
|
|
2418
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
2419
|
-
*/
|
|
2420
|
-
bannerLines?: Text[] | Text | AggregationBindingInfo | `{${string}}`;
|
|
2421
|
-
|
|
2422
2239
|
/**
|
|
2423
2240
|
* Fires when the user presses the control.
|
|
2424
2241
|
*/
|
|
@@ -2853,7 +2670,7 @@ declare module "sap/f/cards/Header" {
|
|
|
2853
2670
|
*
|
|
2854
2671
|
* Default value is `empty string`.
|
|
2855
2672
|
*
|
|
2856
|
-
* @experimental As of version 1.81.
|
|
2673
|
+
* @experimental As of version 1.81.
|
|
2857
2674
|
*
|
|
2858
2675
|
* @returns Value of property `iconAlt`
|
|
2859
2676
|
*/
|
|
@@ -2865,7 +2682,7 @@ declare module "sap/f/cards/Header" {
|
|
|
2865
2682
|
*
|
|
2866
2683
|
* Default value is `Transparent`.
|
|
2867
2684
|
*
|
|
2868
|
-
* @experimental As of version 1.83.
|
|
2685
|
+
* @experimental As of version 1.83.
|
|
2869
2686
|
*
|
|
2870
2687
|
* @returns Value of property `iconBackgroundColor`
|
|
2871
2688
|
*/
|
|
@@ -2911,7 +2728,7 @@ declare module "sap/f/cards/Header" {
|
|
|
2911
2728
|
*
|
|
2912
2729
|
* Default value is `S`.
|
|
2913
2730
|
*
|
|
2914
|
-
* @experimental As of version 1.119.
|
|
2731
|
+
* @experimental As of version 1.119.
|
|
2915
2732
|
*
|
|
2916
2733
|
* @returns Value of property `iconSize`
|
|
2917
2734
|
*/
|
|
@@ -2946,7 +2763,7 @@ declare module "sap/f/cards/Header" {
|
|
|
2946
2763
|
*
|
|
2947
2764
|
* Default value is `true`.
|
|
2948
2765
|
*
|
|
2949
|
-
* @experimental As of version 1.83.
|
|
2766
|
+
* @experimental As of version 1.83.
|
|
2950
2767
|
*
|
|
2951
2768
|
* @returns Value of property `iconVisible`
|
|
2952
2769
|
*/
|
|
@@ -3017,7 +2834,7 @@ declare module "sap/f/cards/Header" {
|
|
|
3017
2834
|
*
|
|
3018
2835
|
* Default value is `empty string`.
|
|
3019
2836
|
*
|
|
3020
|
-
* @experimental As of version 1.81.
|
|
2837
|
+
* @experimental As of version 1.81.
|
|
3021
2838
|
*
|
|
3022
2839
|
* @returns Reference to `this` in order to allow method chaining
|
|
3023
2840
|
*/
|
|
@@ -3036,7 +2853,7 @@ declare module "sap/f/cards/Header" {
|
|
|
3036
2853
|
*
|
|
3037
2854
|
* Default value is `Transparent`.
|
|
3038
2855
|
*
|
|
3039
|
-
* @experimental As of version 1.83.
|
|
2856
|
+
* @experimental As of version 1.83.
|
|
3040
2857
|
*
|
|
3041
2858
|
* @returns Reference to `this` in order to allow method chaining
|
|
3042
2859
|
*/
|
|
@@ -3110,7 +2927,7 @@ declare module "sap/f/cards/Header" {
|
|
|
3110
2927
|
*
|
|
3111
2928
|
* Default value is `S`.
|
|
3112
2929
|
*
|
|
3113
|
-
* @experimental As of version 1.119.
|
|
2930
|
+
* @experimental As of version 1.119.
|
|
3114
2931
|
*
|
|
3115
2932
|
* @returns Reference to `this` in order to allow method chaining
|
|
3116
2933
|
*/
|
|
@@ -3166,7 +2983,7 @@ declare module "sap/f/cards/Header" {
|
|
|
3166
2983
|
*
|
|
3167
2984
|
* Default value is `true`.
|
|
3168
2985
|
*
|
|
3169
|
-
* @experimental As of version 1.83.
|
|
2986
|
+
* @experimental As of version 1.83.
|
|
3170
2987
|
*
|
|
3171
2988
|
* @returns Reference to `this` in order to allow method chaining
|
|
3172
2989
|
*/
|
|
@@ -3329,14 +3146,14 @@ declare module "sap/f/cards/Header" {
|
|
|
3329
3146
|
/**
|
|
3330
3147
|
* Defines an alt text for the avatar or icon.
|
|
3331
3148
|
*
|
|
3332
|
-
* @experimental As of version 1.81.
|
|
3149
|
+
* @experimental As of version 1.81.
|
|
3333
3150
|
*/
|
|
3334
3151
|
iconAlt?: string | PropertyBindingInfo;
|
|
3335
3152
|
|
|
3336
3153
|
/**
|
|
3337
3154
|
* Defines a background color for the avatar or icon.
|
|
3338
3155
|
*
|
|
3339
|
-
* @experimental As of version 1.83.
|
|
3156
|
+
* @experimental As of version 1.83.
|
|
3340
3157
|
*/
|
|
3341
3158
|
iconBackgroundColor?:
|
|
3342
3159
|
| (AvatarColor | keyof typeof AvatarColor)
|
|
@@ -3346,14 +3163,14 @@ declare module "sap/f/cards/Header" {
|
|
|
3346
3163
|
/**
|
|
3347
3164
|
* Defines whether the card icon is visible.
|
|
3348
3165
|
*
|
|
3349
|
-
* @experimental As of version 1.83.
|
|
3166
|
+
* @experimental As of version 1.83.
|
|
3350
3167
|
*/
|
|
3351
3168
|
iconVisible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3352
3169
|
|
|
3353
3170
|
/**
|
|
3354
3171
|
* Defines the size of the icon.
|
|
3355
3172
|
*
|
|
3356
|
-
* @experimental As of version 1.119.
|
|
3173
|
+
* @experimental As of version 1.119.
|
|
3357
3174
|
*/
|
|
3358
3175
|
iconSize?:
|
|
3359
3176
|
| (AvatarSize | keyof typeof AvatarSize)
|
|
@@ -3438,12 +3255,6 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3438
3255
|
|
|
3439
3256
|
import Control from "sap/ui/core/Control";
|
|
3440
3257
|
|
|
3441
|
-
import { ValueState, URI } from "sap/ui/core/library";
|
|
3442
|
-
|
|
3443
|
-
import AvatarColor from "sap/m/AvatarColor";
|
|
3444
|
-
|
|
3445
|
-
import AvatarShape from "sap/m/AvatarShape";
|
|
3446
|
-
|
|
3447
3258
|
import AvatarImageFitType from "sap/m/AvatarImageFitType";
|
|
3448
3259
|
|
|
3449
3260
|
import AvatarSize from "sap/m/AvatarSize";
|
|
@@ -3606,58 +3417,6 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3606
3417
|
* @returns Value of property `detailsMaxLines`
|
|
3607
3418
|
*/
|
|
3608
3419
|
getDetailsMaxLines(): int;
|
|
3609
|
-
/**
|
|
3610
|
-
* Gets current value of property {@link #getDetailsState detailsState}.
|
|
3611
|
-
*
|
|
3612
|
-
* The semantic color which represents the state of the details text.
|
|
3613
|
-
*
|
|
3614
|
-
* Default value is `None`.
|
|
3615
|
-
*
|
|
3616
|
-
* @since 1.118
|
|
3617
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
3618
|
-
*
|
|
3619
|
-
* @returns Value of property `detailsState`
|
|
3620
|
-
*/
|
|
3621
|
-
getDetailsState(): ValueState;
|
|
3622
|
-
/**
|
|
3623
|
-
* Gets current value of property {@link #getIconAlt iconAlt}.
|
|
3624
|
-
*
|
|
3625
|
-
* Defines an alt text for the avatar or icon.
|
|
3626
|
-
*
|
|
3627
|
-
* Default value is `empty string`.
|
|
3628
|
-
*
|
|
3629
|
-
* @since 1.118
|
|
3630
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
3631
|
-
*
|
|
3632
|
-
* @returns Value of property `iconAlt`
|
|
3633
|
-
*/
|
|
3634
|
-
getIconAlt(): string;
|
|
3635
|
-
/**
|
|
3636
|
-
* Gets current value of property {@link #getIconBackgroundColor iconBackgroundColor}.
|
|
3637
|
-
*
|
|
3638
|
-
* Defines a background color for the avatar or icon.
|
|
3639
|
-
*
|
|
3640
|
-
* Default value is `Transparent`.
|
|
3641
|
-
*
|
|
3642
|
-
* @since 1.118
|
|
3643
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
3644
|
-
*
|
|
3645
|
-
* @returns Value of property `iconBackgroundColor`
|
|
3646
|
-
*/
|
|
3647
|
-
getIconBackgroundColor(): AvatarColor;
|
|
3648
|
-
/**
|
|
3649
|
-
* Gets current value of property {@link #getIconDisplayShape iconDisplayShape}.
|
|
3650
|
-
*
|
|
3651
|
-
* Defines the shape of the icon.
|
|
3652
|
-
*
|
|
3653
|
-
* Default value is `Circle`.
|
|
3654
|
-
*
|
|
3655
|
-
* @since 1.118
|
|
3656
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
3657
|
-
*
|
|
3658
|
-
* @returns Value of property `iconDisplayShape`
|
|
3659
|
-
*/
|
|
3660
|
-
getIconDisplayShape(): AvatarShape;
|
|
3661
3420
|
/**
|
|
3662
3421
|
* Gets current value of property {@link #getIconFitType iconFitType}.
|
|
3663
3422
|
*
|
|
@@ -3670,19 +3429,6 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3670
3429
|
* @returns Value of property `iconFitType`
|
|
3671
3430
|
*/
|
|
3672
3431
|
getIconFitType(): AvatarImageFitType;
|
|
3673
|
-
/**
|
|
3674
|
-
* Gets current value of property {@link #getIconInitials iconInitials}.
|
|
3675
|
-
*
|
|
3676
|
-
* Defines the initials of the icon.
|
|
3677
|
-
*
|
|
3678
|
-
* Default value is `empty string`.
|
|
3679
|
-
*
|
|
3680
|
-
* @since 1.118
|
|
3681
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
3682
|
-
*
|
|
3683
|
-
* @returns Value of property `iconInitials`
|
|
3684
|
-
*/
|
|
3685
|
-
getIconInitials(): string;
|
|
3686
3432
|
/**
|
|
3687
3433
|
* Gets current value of property {@link #getIconSize iconSize}.
|
|
3688
3434
|
*
|
|
@@ -3690,37 +3436,11 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3690
3436
|
*
|
|
3691
3437
|
* Default value is `S`.
|
|
3692
3438
|
*
|
|
3693
|
-
* @experimental As of version 1.119.
|
|
3439
|
+
* @experimental As of version 1.119.
|
|
3694
3440
|
*
|
|
3695
3441
|
* @returns Value of property `iconSize`
|
|
3696
3442
|
*/
|
|
3697
3443
|
getIconSize(): AvatarSize;
|
|
3698
|
-
/**
|
|
3699
|
-
* Gets current value of property {@link #getIconSrc iconSrc}.
|
|
3700
|
-
*
|
|
3701
|
-
* Defines the icon source.
|
|
3702
|
-
*
|
|
3703
|
-
* Default value is `empty string`.
|
|
3704
|
-
*
|
|
3705
|
-
* @since 1.118
|
|
3706
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
3707
|
-
*
|
|
3708
|
-
* @returns Value of property `iconSrc`
|
|
3709
|
-
*/
|
|
3710
|
-
getIconSrc(): URI;
|
|
3711
|
-
/**
|
|
3712
|
-
* Gets current value of property {@link #getIconVisible iconVisible}.
|
|
3713
|
-
*
|
|
3714
|
-
* Defines whether the card icon is visible.
|
|
3715
|
-
*
|
|
3716
|
-
* Default value is `true`.
|
|
3717
|
-
*
|
|
3718
|
-
* @since 1.118
|
|
3719
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
3720
|
-
*
|
|
3721
|
-
* @returns Value of property `iconVisible`
|
|
3722
|
-
*/
|
|
3723
|
-
getIconVisible(): boolean;
|
|
3724
3444
|
/**
|
|
3725
3445
|
* Gets content of aggregation {@link #getMicroChart microChart}.
|
|
3726
3446
|
*
|
|
@@ -3742,7 +3462,7 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3742
3462
|
/**
|
|
3743
3463
|
* Gets current value of property {@link #getNumberSize numberSize}.
|
|
3744
3464
|
*
|
|
3745
|
-
* The size of the
|
|
3465
|
+
* The size of the main indicator. Possible values are "S" and "L".
|
|
3746
3466
|
*
|
|
3747
3467
|
* Default value is `"L"`.
|
|
3748
3468
|
*
|
|
@@ -3798,8 +3518,7 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3798
3518
|
*
|
|
3799
3519
|
* Default value is `"Neutral"`.
|
|
3800
3520
|
*
|
|
3801
|
-
* @experimental As of version 1.64.
|
|
3802
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3521
|
+
* @experimental As of version 1.64.
|
|
3803
3522
|
*
|
|
3804
3523
|
* @returns Value of property `state`
|
|
3805
3524
|
*/
|
|
@@ -3964,86 +3683,6 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3964
3683
|
*/
|
|
3965
3684
|
iDetailsMaxLines?: int
|
|
3966
3685
|
): this;
|
|
3967
|
-
/**
|
|
3968
|
-
* Sets a new value for property {@link #getDetailsState detailsState}.
|
|
3969
|
-
*
|
|
3970
|
-
* The semantic color which represents the state of the details text.
|
|
3971
|
-
*
|
|
3972
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3973
|
-
*
|
|
3974
|
-
* Default value is `None`.
|
|
3975
|
-
*
|
|
3976
|
-
* @since 1.118
|
|
3977
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
3978
|
-
*
|
|
3979
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3980
|
-
*/
|
|
3981
|
-
setDetailsState(
|
|
3982
|
-
/**
|
|
3983
|
-
* New value for property `detailsState`
|
|
3984
|
-
*/
|
|
3985
|
-
sDetailsState?: ValueState | keyof typeof ValueState
|
|
3986
|
-
): this;
|
|
3987
|
-
/**
|
|
3988
|
-
* Sets a new value for property {@link #getIconAlt iconAlt}.
|
|
3989
|
-
*
|
|
3990
|
-
* Defines an alt text for the avatar or icon.
|
|
3991
|
-
*
|
|
3992
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3993
|
-
*
|
|
3994
|
-
* Default value is `empty string`.
|
|
3995
|
-
*
|
|
3996
|
-
* @since 1.118
|
|
3997
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
3998
|
-
*
|
|
3999
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4000
|
-
*/
|
|
4001
|
-
setIconAlt(
|
|
4002
|
-
/**
|
|
4003
|
-
* New value for property `iconAlt`
|
|
4004
|
-
*/
|
|
4005
|
-
sIconAlt?: string
|
|
4006
|
-
): this;
|
|
4007
|
-
/**
|
|
4008
|
-
* Sets a new value for property {@link #getIconBackgroundColor iconBackgroundColor}.
|
|
4009
|
-
*
|
|
4010
|
-
* Defines a background color for the avatar or icon.
|
|
4011
|
-
*
|
|
4012
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4013
|
-
*
|
|
4014
|
-
* Default value is `Transparent`.
|
|
4015
|
-
*
|
|
4016
|
-
* @since 1.118
|
|
4017
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4018
|
-
*
|
|
4019
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4020
|
-
*/
|
|
4021
|
-
setIconBackgroundColor(
|
|
4022
|
-
/**
|
|
4023
|
-
* New value for property `iconBackgroundColor`
|
|
4024
|
-
*/
|
|
4025
|
-
sIconBackgroundColor?: AvatarColor | keyof typeof AvatarColor
|
|
4026
|
-
): this;
|
|
4027
|
-
/**
|
|
4028
|
-
* Sets a new value for property {@link #getIconDisplayShape iconDisplayShape}.
|
|
4029
|
-
*
|
|
4030
|
-
* Defines the shape of the icon.
|
|
4031
|
-
*
|
|
4032
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4033
|
-
*
|
|
4034
|
-
* Default value is `Circle`.
|
|
4035
|
-
*
|
|
4036
|
-
* @since 1.118
|
|
4037
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4038
|
-
*
|
|
4039
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4040
|
-
*/
|
|
4041
|
-
setIconDisplayShape(
|
|
4042
|
-
/**
|
|
4043
|
-
* New value for property `iconDisplayShape`
|
|
4044
|
-
*/
|
|
4045
|
-
sIconDisplayShape?: AvatarShape | keyof typeof AvatarShape
|
|
4046
|
-
): this;
|
|
4047
3686
|
/**
|
|
4048
3687
|
* Sets a new value for property {@link #getIconFitType iconFitType}.
|
|
4049
3688
|
*
|
|
@@ -4063,26 +3702,6 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
4063
3702
|
*/
|
|
4064
3703
|
sIconFitType?: AvatarImageFitType | keyof typeof AvatarImageFitType
|
|
4065
3704
|
): this;
|
|
4066
|
-
/**
|
|
4067
|
-
* Sets a new value for property {@link #getIconInitials iconInitials}.
|
|
4068
|
-
*
|
|
4069
|
-
* Defines the initials of the icon.
|
|
4070
|
-
*
|
|
4071
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4072
|
-
*
|
|
4073
|
-
* Default value is `empty string`.
|
|
4074
|
-
*
|
|
4075
|
-
* @since 1.118
|
|
4076
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4077
|
-
*
|
|
4078
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4079
|
-
*/
|
|
4080
|
-
setIconInitials(
|
|
4081
|
-
/**
|
|
4082
|
-
* New value for property `iconInitials`
|
|
4083
|
-
*/
|
|
4084
|
-
sIconInitials?: string
|
|
4085
|
-
): this;
|
|
4086
3705
|
/**
|
|
4087
3706
|
* Sets a new value for property {@link #getIconSize iconSize}.
|
|
4088
3707
|
*
|
|
@@ -4092,7 +3711,7 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
4092
3711
|
*
|
|
4093
3712
|
* Default value is `S`.
|
|
4094
3713
|
*
|
|
4095
|
-
* @experimental As of version 1.119.
|
|
3714
|
+
* @experimental As of version 1.119.
|
|
4096
3715
|
*
|
|
4097
3716
|
* @returns Reference to `this` in order to allow method chaining
|
|
4098
3717
|
*/
|
|
@@ -4102,46 +3721,6 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
4102
3721
|
*/
|
|
4103
3722
|
sIconSize?: AvatarSize | keyof typeof AvatarSize
|
|
4104
3723
|
): this;
|
|
4105
|
-
/**
|
|
4106
|
-
* Sets a new value for property {@link #getIconSrc iconSrc}.
|
|
4107
|
-
*
|
|
4108
|
-
* Defines the icon source.
|
|
4109
|
-
*
|
|
4110
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4111
|
-
*
|
|
4112
|
-
* Default value is `empty string`.
|
|
4113
|
-
*
|
|
4114
|
-
* @since 1.118
|
|
4115
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4116
|
-
*
|
|
4117
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4118
|
-
*/
|
|
4119
|
-
setIconSrc(
|
|
4120
|
-
/**
|
|
4121
|
-
* New value for property `iconSrc`
|
|
4122
|
-
*/
|
|
4123
|
-
sIconSrc?: URI
|
|
4124
|
-
): this;
|
|
4125
|
-
/**
|
|
4126
|
-
* Sets a new value for property {@link #getIconVisible iconVisible}.
|
|
4127
|
-
*
|
|
4128
|
-
* Defines whether the card icon is visible.
|
|
4129
|
-
*
|
|
4130
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4131
|
-
*
|
|
4132
|
-
* Default value is `true`.
|
|
4133
|
-
*
|
|
4134
|
-
* @since 1.118
|
|
4135
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4136
|
-
*
|
|
4137
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4138
|
-
*/
|
|
4139
|
-
setIconVisible(
|
|
4140
|
-
/**
|
|
4141
|
-
* New value for property `iconVisible`
|
|
4142
|
-
*/
|
|
4143
|
-
bIconVisible?: boolean
|
|
4144
|
-
): this;
|
|
4145
3724
|
/**
|
|
4146
3725
|
* Sets the aggregated {@link #getMicroChart microChart}.
|
|
4147
3726
|
*
|
|
@@ -4175,7 +3754,7 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
4175
3754
|
/**
|
|
4176
3755
|
* Sets a new value for property {@link #getNumberSize numberSize}.
|
|
4177
3756
|
*
|
|
4178
|
-
* The size of the
|
|
3757
|
+
* The size of the main indicator. Possible values are "S" and "L".
|
|
4179
3758
|
*
|
|
4180
3759
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4181
3760
|
*
|
|
@@ -4256,8 +3835,7 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
4256
3835
|
*
|
|
4257
3836
|
* Default value is `"Neutral"`.
|
|
4258
3837
|
*
|
|
4259
|
-
* @experimental As of version 1.64.
|
|
4260
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3838
|
+
* @experimental As of version 1.64.
|
|
4261
3839
|
*
|
|
4262
3840
|
* @returns Reference to `this` in order to allow method chaining
|
|
4263
3841
|
*/
|
|
@@ -4429,64 +4007,10 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
4429
4007
|
*/
|
|
4430
4008
|
statusText?: string | PropertyBindingInfo;
|
|
4431
4009
|
|
|
4432
|
-
/**
|
|
4433
|
-
* Defines the shape of the icon.
|
|
4434
|
-
*
|
|
4435
|
-
* @since 1.118
|
|
4436
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4437
|
-
*/
|
|
4438
|
-
iconDisplayShape?:
|
|
4439
|
-
| (AvatarShape | keyof typeof AvatarShape)
|
|
4440
|
-
| PropertyBindingInfo
|
|
4441
|
-
| `{${string}}`;
|
|
4442
|
-
|
|
4443
|
-
/**
|
|
4444
|
-
* Defines the icon source.
|
|
4445
|
-
*
|
|
4446
|
-
* @since 1.118
|
|
4447
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4448
|
-
*/
|
|
4449
|
-
iconSrc?: URI | PropertyBindingInfo | `{${string}}`;
|
|
4450
|
-
|
|
4451
|
-
/**
|
|
4452
|
-
* Defines the initials of the icon.
|
|
4453
|
-
*
|
|
4454
|
-
* @since 1.118
|
|
4455
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4456
|
-
*/
|
|
4457
|
-
iconInitials?: string | PropertyBindingInfo;
|
|
4458
|
-
|
|
4459
|
-
/**
|
|
4460
|
-
* Defines an alt text for the avatar or icon.
|
|
4461
|
-
*
|
|
4462
|
-
* @since 1.118
|
|
4463
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4464
|
-
*/
|
|
4465
|
-
iconAlt?: string | PropertyBindingInfo;
|
|
4466
|
-
|
|
4467
|
-
/**
|
|
4468
|
-
* Defines a background color for the avatar or icon.
|
|
4469
|
-
*
|
|
4470
|
-
* @since 1.118
|
|
4471
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4472
|
-
*/
|
|
4473
|
-
iconBackgroundColor?:
|
|
4474
|
-
| (AvatarColor | keyof typeof AvatarColor)
|
|
4475
|
-
| PropertyBindingInfo
|
|
4476
|
-
| `{${string}}`;
|
|
4477
|
-
|
|
4478
|
-
/**
|
|
4479
|
-
* Defines whether the card icon is visible.
|
|
4480
|
-
*
|
|
4481
|
-
* @since 1.118
|
|
4482
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4483
|
-
*/
|
|
4484
|
-
iconVisible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4485
|
-
|
|
4486
4010
|
/**
|
|
4487
4011
|
* Defines the size of the icon.
|
|
4488
4012
|
*
|
|
4489
|
-
* @experimental As of version 1.119.
|
|
4013
|
+
* @experimental As of version 1.119.
|
|
4490
4014
|
*/
|
|
4491
4015
|
iconSize?:
|
|
4492
4016
|
| (AvatarSize | keyof typeof AvatarSize)
|
|
@@ -4515,7 +4039,7 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
4515
4039
|
number?: string | PropertyBindingInfo;
|
|
4516
4040
|
|
|
4517
4041
|
/**
|
|
4518
|
-
* The size of the
|
|
4042
|
+
* The size of the main indicator. Possible values are "S" and "L".
|
|
4519
4043
|
*/
|
|
4520
4044
|
numberSize?: string | PropertyBindingInfo;
|
|
4521
4045
|
|
|
@@ -4544,8 +4068,7 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
4544
4068
|
/**
|
|
4545
4069
|
* The semantic color which represents the state of the main number indicator.
|
|
4546
4070
|
*
|
|
4547
|
-
* @experimental As of version 1.64.
|
|
4548
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4071
|
+
* @experimental As of version 1.64.
|
|
4549
4072
|
*/
|
|
4550
4073
|
state?:
|
|
4551
4074
|
| (ValueColor | keyof typeof ValueColor)
|
|
@@ -4557,17 +4080,6 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
4557
4080
|
*/
|
|
4558
4081
|
details?: string | PropertyBindingInfo;
|
|
4559
4082
|
|
|
4560
|
-
/**
|
|
4561
|
-
* The semantic color which represents the state of the details text.
|
|
4562
|
-
*
|
|
4563
|
-
* @since 1.118
|
|
4564
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
4565
|
-
*/
|
|
4566
|
-
detailsState?:
|
|
4567
|
-
| (ValueState | keyof typeof ValueState)
|
|
4568
|
-
| PropertyBindingInfo
|
|
4569
|
-
| `{${string}}`;
|
|
4570
|
-
|
|
4571
4083
|
/**
|
|
4572
4084
|
* Limits the number of lines for the details.
|
|
4573
4085
|
*
|
|
@@ -4698,8 +4210,7 @@ declare module "sap/f/cards/NumericSideIndicator" {
|
|
|
4698
4210
|
*
|
|
4699
4211
|
* Default value is `"None"`.
|
|
4700
4212
|
*
|
|
4701
|
-
* @experimental As of version 1.95.
|
|
4702
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4213
|
+
* @experimental As of version 1.95.
|
|
4703
4214
|
*
|
|
4704
4215
|
* @returns Value of property `state`
|
|
4705
4216
|
*/
|
|
@@ -4743,8 +4254,7 @@ declare module "sap/f/cards/NumericSideIndicator" {
|
|
|
4743
4254
|
*
|
|
4744
4255
|
* Default value is `"None"`.
|
|
4745
4256
|
*
|
|
4746
|
-
* @experimental As of version 1.95.
|
|
4747
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4257
|
+
* @experimental As of version 1.95.
|
|
4748
4258
|
*
|
|
4749
4259
|
* @returns Reference to `this` in order to allow method chaining
|
|
4750
4260
|
*/
|
|
@@ -4801,8 +4311,7 @@ declare module "sap/f/cards/NumericSideIndicator" {
|
|
|
4801
4311
|
/**
|
|
4802
4312
|
* The semantic color which represents the state of the side indicator.
|
|
4803
4313
|
*
|
|
4804
|
-
* @experimental As of version 1.95.
|
|
4805
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4314
|
+
* @experimental As of version 1.95.
|
|
4806
4315
|
*/
|
|
4807
4316
|
state?:
|
|
4808
4317
|
| (ValueColor | keyof typeof ValueColor)
|
|
@@ -23471,6 +22980,8 @@ declare module "sap/f/SidePanelItem" {
|
|
|
23471
22980
|
|
|
23472
22981
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
23473
22982
|
|
|
22983
|
+
import Title from "sap/m/Title";
|
|
22984
|
+
|
|
23474
22985
|
import {
|
|
23475
22986
|
PropertyBindingInfo,
|
|
23476
22987
|
AggregationBindingInfo,
|
|
@@ -23565,6 +23076,14 @@ declare module "sap/f/SidePanelItem" {
|
|
|
23565
23076
|
* @returns Reference to `this` in order to allow method chaining
|
|
23566
23077
|
*/
|
|
23567
23078
|
destroyContent(): this;
|
|
23079
|
+
/**
|
|
23080
|
+
* Destroys the title in the aggregation {@link #getTitle title}.
|
|
23081
|
+
*
|
|
23082
|
+
* @since 1.146
|
|
23083
|
+
*
|
|
23084
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23085
|
+
*/
|
|
23086
|
+
destroyTitle(): this;
|
|
23568
23087
|
/**
|
|
23569
23088
|
* Gets content of aggregation {@link #getContent content}.
|
|
23570
23089
|
*
|
|
@@ -23582,6 +23101,14 @@ declare module "sap/f/SidePanelItem" {
|
|
|
23582
23101
|
* @returns Value of property `icon`
|
|
23583
23102
|
*/
|
|
23584
23103
|
getIcon(): URI;
|
|
23104
|
+
/**
|
|
23105
|
+
* Gets content of aggregation {@link #getTitle title}.
|
|
23106
|
+
*
|
|
23107
|
+
* The title of the action item. If not set, the title of the parent side panel will be used.
|
|
23108
|
+
*
|
|
23109
|
+
* @since 1.146
|
|
23110
|
+
*/
|
|
23111
|
+
getTitle(): Title;
|
|
23585
23112
|
/**
|
|
23586
23113
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
23587
23114
|
* its index if found or -1 otherwise.
|
|
@@ -23652,6 +23179,19 @@ declare module "sap/f/SidePanelItem" {
|
|
|
23652
23179
|
*/
|
|
23653
23180
|
sIcon?: URI
|
|
23654
23181
|
): this;
|
|
23182
|
+
/**
|
|
23183
|
+
* Sets the aggregated {@link #getTitle title}.
|
|
23184
|
+
*
|
|
23185
|
+
* @since 1.146
|
|
23186
|
+
*
|
|
23187
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23188
|
+
*/
|
|
23189
|
+
setTitle(
|
|
23190
|
+
/**
|
|
23191
|
+
* The title to set
|
|
23192
|
+
*/
|
|
23193
|
+
oTitle: Title
|
|
23194
|
+
): this;
|
|
23655
23195
|
}
|
|
23656
23196
|
/**
|
|
23657
23197
|
* Describes the settings that can be provided to the SidePanelItem constructor.
|
|
@@ -23662,6 +23202,13 @@ declare module "sap/f/SidePanelItem" {
|
|
|
23662
23202
|
*/
|
|
23663
23203
|
icon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
23664
23204
|
|
|
23205
|
+
/**
|
|
23206
|
+
* The title of the action item. If not set, the title of the parent side panel will be used.
|
|
23207
|
+
*
|
|
23208
|
+
* @since 1.146
|
|
23209
|
+
*/
|
|
23210
|
+
title?: Title;
|
|
23211
|
+
|
|
23665
23212
|
/**
|
|
23666
23213
|
* The list of controls for side content of the action item.
|
|
23667
23214
|
*/
|