@sapui5/ts-types-esm 1.127.2 → 1.128.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.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +221 -22
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1414 -225
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.core.d.ts +11 -26
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +7 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +14 -3
- package/types/sap.fe.test.d.ts +3 -3
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +123 -64
- package/types/sap.insights.d.ts +24 -1
- package/types/sap.m.d.ts +327 -26
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +110 -29
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +10 -4
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +997 -4
- package/types/sap.ui.core.d.ts +48 -28
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +10 -4
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +55 -5
- package/types/sap.ui.layout.d.ts +5 -5
- package/types/sap.ui.mdc.d.ts +426 -212
- package/types/sap.ui.richtexteditor.d.ts +1 -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 +91 -23
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +624 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +48 -23
- package/types/sap.ui.vtm.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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +16 -8
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +44 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.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.128.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -97,6 +97,23 @@ declare module "sap/f/library" {
|
|
|
97
97
|
*/
|
|
98
98
|
export type AvatarType = AvatarType1;
|
|
99
99
|
|
|
100
|
+
/**
|
|
101
|
+
* Enumeration for different visibility options for the card badge.
|
|
102
|
+
*
|
|
103
|
+
* This enum is part of the 'sap/f/library' module export and must be accessed by the property 'CardBadgeVisibilityMode'.
|
|
104
|
+
*
|
|
105
|
+
* @since 1.128
|
|
106
|
+
*/
|
|
107
|
+
export enum CardBadgeVisibilityMode {
|
|
108
|
+
/**
|
|
109
|
+
* Badge will be hidden after header is focused.
|
|
110
|
+
*/
|
|
111
|
+
Disappear = "Disappear",
|
|
112
|
+
/**
|
|
113
|
+
* Badge will not be hidden after header is focused.
|
|
114
|
+
*/
|
|
115
|
+
Persist = "Persist",
|
|
116
|
+
}
|
|
100
117
|
/**
|
|
101
118
|
* Defines the areas within the `sap.f.DynamicPageTitle` control.
|
|
102
119
|
*
|
|
@@ -2020,6 +2037,234 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
2020
2037
|
}
|
|
2021
2038
|
}
|
|
2022
2039
|
|
|
2040
|
+
declare module "sap/f/cards/CardBadgeCustomData" {
|
|
2041
|
+
import { URI } from "sap/ui/core/library";
|
|
2042
|
+
|
|
2043
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
2044
|
+
|
|
2045
|
+
import { CardBadgeVisibilityMode } from "sap/f/library";
|
|
2046
|
+
|
|
2047
|
+
/**
|
|
2048
|
+
* Contains a single key/value pair of custom data attached to an `Element`.
|
|
2049
|
+
*
|
|
2050
|
+
* For more information, see {@link sap.ui.core.Element#data Element.prototype.data} and {@link https://ui5.sap.com/#/topic/91f0c3ee6f4d1014b6dd926db0e91070 Custom Data - Attaching Data Objects to Controls}.
|
|
2051
|
+
*
|
|
2052
|
+
* @since 1.128
|
|
2053
|
+
*/
|
|
2054
|
+
export default class CardBadgeCustomData
|
|
2055
|
+
extends /* was: sap..ui.core.CustomData */ Object
|
|
2056
|
+
{
|
|
2057
|
+
/**
|
|
2058
|
+
* Constructor for a new `CardBadgeCustomData` element.
|
|
2059
|
+
*
|
|
2060
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2061
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2062
|
+
* of the syntax of the settings object.
|
|
2063
|
+
*/
|
|
2064
|
+
constructor(
|
|
2065
|
+
/**
|
|
2066
|
+
* ID for the new element, generated automatically if no ID is given
|
|
2067
|
+
*/
|
|
2068
|
+
sId?: string,
|
|
2069
|
+
/**
|
|
2070
|
+
* Initial settings for the new element
|
|
2071
|
+
*/
|
|
2072
|
+
mSettings?: object
|
|
2073
|
+
);
|
|
2074
|
+
|
|
2075
|
+
/**
|
|
2076
|
+
* Creates a new subclass of class sap.f.cards.CardBadgeCustomData with name `sClassName` and enriches it
|
|
2077
|
+
* with the information contained in `oClassInfo`.
|
|
2078
|
+
*
|
|
2079
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap..ui.core.CustomData.extend}.
|
|
2080
|
+
*
|
|
2081
|
+
*
|
|
2082
|
+
* @returns Created class / constructor function
|
|
2083
|
+
*/
|
|
2084
|
+
static extend<T extends Record<string, unknown>>(
|
|
2085
|
+
/**
|
|
2086
|
+
* Name of the class being created
|
|
2087
|
+
*/
|
|
2088
|
+
sClassName: string,
|
|
2089
|
+
/**
|
|
2090
|
+
* Object literal with information about the class
|
|
2091
|
+
*/
|
|
2092
|
+
oClassInfo?: sap.ClassInfo<T, CardBadgeCustomData>,
|
|
2093
|
+
/**
|
|
2094
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2095
|
+
* used by this class
|
|
2096
|
+
*/
|
|
2097
|
+
FNMetaImpl?: Function
|
|
2098
|
+
): Function;
|
|
2099
|
+
/**
|
|
2100
|
+
* Returns a metadata object for class sap.f.cards.CardBadgeCustomData.
|
|
2101
|
+
*
|
|
2102
|
+
*
|
|
2103
|
+
* @returns Metadata object describing this class
|
|
2104
|
+
*/
|
|
2105
|
+
static getMetadata(): Metadata;
|
|
2106
|
+
/**
|
|
2107
|
+
* Gets current value of property {@link #getAnnouncementText announcementText}.
|
|
2108
|
+
*
|
|
2109
|
+
* Defines text which will is overriding default announcement.
|
|
2110
|
+
*
|
|
2111
|
+
* Default value is `empty string`.
|
|
2112
|
+
*
|
|
2113
|
+
* @since 1.128
|
|
2114
|
+
*
|
|
2115
|
+
* @returns Value of property `announcementText`
|
|
2116
|
+
*/
|
|
2117
|
+
getAnnouncementText(): string;
|
|
2118
|
+
/**
|
|
2119
|
+
* Gets current value of property {@link #getIcon icon}.
|
|
2120
|
+
*
|
|
2121
|
+
* Icon URI. This may be either an icon font or image path.
|
|
2122
|
+
*
|
|
2123
|
+
* @since 1.128
|
|
2124
|
+
*
|
|
2125
|
+
* @returns Value of property `icon`
|
|
2126
|
+
*/
|
|
2127
|
+
getIcon(): URI;
|
|
2128
|
+
/**
|
|
2129
|
+
* Gets current value of property {@link #getState state}.
|
|
2130
|
+
*
|
|
2131
|
+
* Defines the color of the badge. The allowed values are from the enum type `sap.ui.core.IndicationColor`.
|
|
2132
|
+
* Additionally values from `sap.ui.core.ValueState` can be used, but this is not recommended by design
|
|
2133
|
+
* guidelines.
|
|
2134
|
+
*
|
|
2135
|
+
* Default value is `IndicationColor.Indication05`.
|
|
2136
|
+
*
|
|
2137
|
+
* @since 1.128
|
|
2138
|
+
*
|
|
2139
|
+
* @returns Value of property `state`
|
|
2140
|
+
*/
|
|
2141
|
+
getState(): string;
|
|
2142
|
+
/**
|
|
2143
|
+
* Gets current value of property {@link #getVisibilityMode visibilityMode}.
|
|
2144
|
+
*
|
|
2145
|
+
* Describes the corresponding visibility mode, see also {@link sap.f.CardBadgeVisibilityMode}.
|
|
2146
|
+
*
|
|
2147
|
+
* Default value is `Disappear`.
|
|
2148
|
+
*
|
|
2149
|
+
* @since 1.128
|
|
2150
|
+
*
|
|
2151
|
+
* @returns Value of property `visibilityMode`
|
|
2152
|
+
*/
|
|
2153
|
+
getVisibilityMode():
|
|
2154
|
+
| CardBadgeVisibilityMode
|
|
2155
|
+
| keyof typeof CardBadgeVisibilityMode;
|
|
2156
|
+
/**
|
|
2157
|
+
* Gets current value of property {@link #getVisible visible}.
|
|
2158
|
+
*
|
|
2159
|
+
* Defines the cards badge visibility.
|
|
2160
|
+
*
|
|
2161
|
+
* Default value is `true`.
|
|
2162
|
+
*
|
|
2163
|
+
* @since 1.128
|
|
2164
|
+
*
|
|
2165
|
+
* @returns Value of property `visible`
|
|
2166
|
+
*/
|
|
2167
|
+
getVisible(): boolean;
|
|
2168
|
+
/**
|
|
2169
|
+
* Sets a new value for property {@link #getAnnouncementText announcementText}.
|
|
2170
|
+
*
|
|
2171
|
+
* Defines text which will is overriding default announcement.
|
|
2172
|
+
*
|
|
2173
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2174
|
+
*
|
|
2175
|
+
* Default value is `empty string`.
|
|
2176
|
+
*
|
|
2177
|
+
* @since 1.128
|
|
2178
|
+
*
|
|
2179
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2180
|
+
*/
|
|
2181
|
+
setAnnouncementText(
|
|
2182
|
+
/**
|
|
2183
|
+
* New value for property `announcementText`
|
|
2184
|
+
*/
|
|
2185
|
+
sAnnouncementText?: string
|
|
2186
|
+
): this;
|
|
2187
|
+
/**
|
|
2188
|
+
* Sets a new value for property {@link #getIcon icon}.
|
|
2189
|
+
*
|
|
2190
|
+
* Icon URI. This may be either an icon font or image path.
|
|
2191
|
+
*
|
|
2192
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2193
|
+
*
|
|
2194
|
+
* @since 1.128
|
|
2195
|
+
*
|
|
2196
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2197
|
+
*/
|
|
2198
|
+
setIcon(
|
|
2199
|
+
/**
|
|
2200
|
+
* New value for property `icon`
|
|
2201
|
+
*/
|
|
2202
|
+
sIcon?: URI
|
|
2203
|
+
): this;
|
|
2204
|
+
/**
|
|
2205
|
+
* Sets a new value for property {@link #getState state}.
|
|
2206
|
+
*
|
|
2207
|
+
* Defines the color of the badge. The allowed values are from the enum type `sap.ui.core.IndicationColor`.
|
|
2208
|
+
* Additionally values from `sap.ui.core.ValueState` can be used, but this is not recommended by design
|
|
2209
|
+
* guidelines.
|
|
2210
|
+
*
|
|
2211
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2212
|
+
*
|
|
2213
|
+
* Default value is `IndicationColor.Indication05`.
|
|
2214
|
+
*
|
|
2215
|
+
* @since 1.128
|
|
2216
|
+
*
|
|
2217
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2218
|
+
*/
|
|
2219
|
+
setState(
|
|
2220
|
+
/**
|
|
2221
|
+
* New value for property `state`
|
|
2222
|
+
*/
|
|
2223
|
+
sState?: string
|
|
2224
|
+
): this;
|
|
2225
|
+
/**
|
|
2226
|
+
* Sets a new value for property {@link #getVisibilityMode visibilityMode}.
|
|
2227
|
+
*
|
|
2228
|
+
* Describes the corresponding visibility mode, see also {@link sap.f.CardBadgeVisibilityMode}.
|
|
2229
|
+
*
|
|
2230
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2231
|
+
*
|
|
2232
|
+
* Default value is `Disappear`.
|
|
2233
|
+
*
|
|
2234
|
+
* @since 1.128
|
|
2235
|
+
*
|
|
2236
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2237
|
+
*/
|
|
2238
|
+
setVisibilityMode(
|
|
2239
|
+
/**
|
|
2240
|
+
* New value for property `visibilityMode`
|
|
2241
|
+
*/
|
|
2242
|
+
sVisibilityMode?:
|
|
2243
|
+
| CardBadgeVisibilityMode
|
|
2244
|
+
| keyof typeof CardBadgeVisibilityMode
|
|
2245
|
+
): this;
|
|
2246
|
+
/**
|
|
2247
|
+
* Sets a new value for property {@link #getVisible visible}.
|
|
2248
|
+
*
|
|
2249
|
+
* Defines the cards badge visibility.
|
|
2250
|
+
*
|
|
2251
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2252
|
+
*
|
|
2253
|
+
* Default value is `true`.
|
|
2254
|
+
*
|
|
2255
|
+
* @since 1.128
|
|
2256
|
+
*
|
|
2257
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2258
|
+
*/
|
|
2259
|
+
setVisible(
|
|
2260
|
+
/**
|
|
2261
|
+
* New value for property `visible`
|
|
2262
|
+
*/
|
|
2263
|
+
bVisible?: boolean
|
|
2264
|
+
): this;
|
|
2265
|
+
}
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2023
2268
|
declare module "sap/f/cards/Header" {
|
|
2024
2269
|
import {
|
|
2025
2270
|
default as BaseHeader,
|
|
@@ -5344,6 +5589,19 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
|
5344
5589
|
getFooterRole():
|
|
5345
5590
|
| AccessibleLandmarkRole
|
|
5346
5591
|
| keyof typeof AccessibleLandmarkRole;
|
|
5592
|
+
/**
|
|
5593
|
+
* Gets current value of property {@link #getHeaderContentLabel headerContentLabel}.
|
|
5594
|
+
*
|
|
5595
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
5596
|
+
* control.
|
|
5597
|
+
*
|
|
5598
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
5599
|
+
*
|
|
5600
|
+
* @since 1.127.0
|
|
5601
|
+
*
|
|
5602
|
+
* @returns Value of property `headerContentLabel`
|
|
5603
|
+
*/
|
|
5604
|
+
getHeaderContentLabel(): string;
|
|
5347
5605
|
/**
|
|
5348
5606
|
* Gets current value of property {@link #getHeaderLabel headerLabel}.
|
|
5349
5607
|
*
|
|
@@ -5476,6 +5734,26 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
|
5476
5734
|
*/
|
|
5477
5735
|
sFooterRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
|
|
5478
5736
|
): this;
|
|
5737
|
+
/**
|
|
5738
|
+
* Sets a new value for property {@link #getHeaderContentLabel headerContentLabel}.
|
|
5739
|
+
*
|
|
5740
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
5741
|
+
* control.
|
|
5742
|
+
*
|
|
5743
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
5744
|
+
*
|
|
5745
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5746
|
+
*
|
|
5747
|
+
* @since 1.127.0
|
|
5748
|
+
*
|
|
5749
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5750
|
+
*/
|
|
5751
|
+
setHeaderContentLabel(
|
|
5752
|
+
/**
|
|
5753
|
+
* New value for property `headerContentLabel`
|
|
5754
|
+
*/
|
|
5755
|
+
sHeaderContentLabel?: string
|
|
5756
|
+
): this;
|
|
5479
5757
|
/**
|
|
5480
5758
|
* Sets a new value for property {@link #getHeaderLabel headerLabel}.
|
|
5481
5759
|
*
|
|
@@ -5631,6 +5909,16 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
|
5631
5909
|
* is set.
|
|
5632
5910
|
*/
|
|
5633
5911
|
footerLabel?: string | PropertyBindingInfo;
|
|
5912
|
+
|
|
5913
|
+
/**
|
|
5914
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
5915
|
+
* control.
|
|
5916
|
+
*
|
|
5917
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
5918
|
+
*
|
|
5919
|
+
* @since 1.127.0
|
|
5920
|
+
*/
|
|
5921
|
+
headerContentLabel?: string | PropertyBindingInfo;
|
|
5634
5922
|
}
|
|
5635
5923
|
}
|
|
5636
5924
|
|
|
@@ -7552,6 +7840,61 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7552
7840
|
*/
|
|
7553
7841
|
oListener?: object
|
|
7554
7842
|
): this;
|
|
7843
|
+
/**
|
|
7844
|
+
* Attaches event handler `fnFunction` to the {@link #event:columnsDistributionChange columnsDistributionChange }
|
|
7845
|
+
* event of this `sap.f.FlexibleColumnLayout`.
|
|
7846
|
+
*
|
|
7847
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7848
|
+
* otherwise it will be bound to this `sap.f.FlexibleColumnLayout` itself.
|
|
7849
|
+
*
|
|
7850
|
+
* Fired when user resize columns.
|
|
7851
|
+
*
|
|
7852
|
+
* @since 1.128
|
|
7853
|
+
*
|
|
7854
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
7855
|
+
*/
|
|
7856
|
+
attachColumnsDistributionChange(
|
|
7857
|
+
/**
|
|
7858
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
7859
|
+
* object when firing the event
|
|
7860
|
+
*/
|
|
7861
|
+
oData: object,
|
|
7862
|
+
/**
|
|
7863
|
+
* The function to be called when the event occurs
|
|
7864
|
+
*/
|
|
7865
|
+
fnFunction: (
|
|
7866
|
+
p1: FlexibleColumnLayout$ColumnsDistributionChangeEvent
|
|
7867
|
+
) => void,
|
|
7868
|
+
/**
|
|
7869
|
+
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
7870
|
+
*/
|
|
7871
|
+
oListener?: object
|
|
7872
|
+
): this;
|
|
7873
|
+
/**
|
|
7874
|
+
* Attaches event handler `fnFunction` to the {@link #event:columnsDistributionChange columnsDistributionChange }
|
|
7875
|
+
* event of this `sap.f.FlexibleColumnLayout`.
|
|
7876
|
+
*
|
|
7877
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7878
|
+
* otherwise it will be bound to this `sap.f.FlexibleColumnLayout` itself.
|
|
7879
|
+
*
|
|
7880
|
+
* Fired when user resize columns.
|
|
7881
|
+
*
|
|
7882
|
+
* @since 1.128
|
|
7883
|
+
*
|
|
7884
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
7885
|
+
*/
|
|
7886
|
+
attachColumnsDistributionChange(
|
|
7887
|
+
/**
|
|
7888
|
+
* The function to be called when the event occurs
|
|
7889
|
+
*/
|
|
7890
|
+
fnFunction: (
|
|
7891
|
+
p1: FlexibleColumnLayout$ColumnsDistributionChangeEvent
|
|
7892
|
+
) => void,
|
|
7893
|
+
/**
|
|
7894
|
+
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
7895
|
+
*/
|
|
7896
|
+
oListener?: object
|
|
7897
|
+
): this;
|
|
7555
7898
|
/**
|
|
7556
7899
|
* Attaches event handler `fnFunction` to the {@link #event:endColumnNavigate endColumnNavigate} event of
|
|
7557
7900
|
* this `sap.f.FlexibleColumnLayout`.
|
|
@@ -8010,26 +8353,48 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8010
8353
|
oListener?: object
|
|
8011
8354
|
): this;
|
|
8012
8355
|
/**
|
|
8013
|
-
* Detaches event handler `fnFunction` from the {@link #event:
|
|
8014
|
-
* of this `sap.f.FlexibleColumnLayout`.
|
|
8356
|
+
* Detaches event handler `fnFunction` from the {@link #event:columnsDistributionChange columnsDistributionChange }
|
|
8357
|
+
* event of this `sap.f.FlexibleColumnLayout`.
|
|
8015
8358
|
*
|
|
8016
8359
|
* The passed function and listener object must match the ones used for event registration.
|
|
8017
8360
|
*
|
|
8361
|
+
* @since 1.128
|
|
8018
8362
|
*
|
|
8019
8363
|
* @returns Reference to `this` in order to allow method chaining
|
|
8020
8364
|
*/
|
|
8021
|
-
|
|
8365
|
+
detachColumnsDistributionChange(
|
|
8022
8366
|
/**
|
|
8023
8367
|
* The function to be called, when the event occurs
|
|
8024
8368
|
*/
|
|
8025
|
-
fnFunction: (
|
|
8369
|
+
fnFunction: (
|
|
8370
|
+
p1: FlexibleColumnLayout$ColumnsDistributionChangeEvent
|
|
8371
|
+
) => void,
|
|
8026
8372
|
/**
|
|
8027
8373
|
* Context object on which the given function had to be called
|
|
8028
8374
|
*/
|
|
8029
8375
|
oListener?: object
|
|
8030
8376
|
): this;
|
|
8031
8377
|
/**
|
|
8032
|
-
* Detaches event handler `fnFunction` from the {@link #event:
|
|
8378
|
+
* Detaches event handler `fnFunction` from the {@link #event:endColumnNavigate endColumnNavigate} event
|
|
8379
|
+
* of this `sap.f.FlexibleColumnLayout`.
|
|
8380
|
+
*
|
|
8381
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
8382
|
+
*
|
|
8383
|
+
*
|
|
8384
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8385
|
+
*/
|
|
8386
|
+
detachEndColumnNavigate(
|
|
8387
|
+
/**
|
|
8388
|
+
* The function to be called, when the event occurs
|
|
8389
|
+
*/
|
|
8390
|
+
fnFunction: (p1: FlexibleColumnLayout$EndColumnNavigateEvent) => void,
|
|
8391
|
+
/**
|
|
8392
|
+
* Context object on which the given function had to be called
|
|
8393
|
+
*/
|
|
8394
|
+
oListener?: object
|
|
8395
|
+
): this;
|
|
8396
|
+
/**
|
|
8397
|
+
* Detaches event handler `fnFunction` from the {@link #event:midColumnNavigate midColumnNavigate} event
|
|
8033
8398
|
* of this `sap.f.FlexibleColumnLayout`.
|
|
8034
8399
|
*
|
|
8035
8400
|
* The passed function and listener object must match the ones used for event registration.
|
|
@@ -8134,6 +8499,20 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8134
8499
|
*/
|
|
8135
8500
|
mParameters?: FlexibleColumnLayout$ColumnResizeEventParameters
|
|
8136
8501
|
): this;
|
|
8502
|
+
/**
|
|
8503
|
+
* Fires event {@link #event:columnsDistributionChange columnsDistributionChange} to attached listeners.
|
|
8504
|
+
*
|
|
8505
|
+
* @since 1.128
|
|
8506
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8507
|
+
*
|
|
8508
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8509
|
+
*/
|
|
8510
|
+
fireColumnsDistributionChange(
|
|
8511
|
+
/**
|
|
8512
|
+
* Parameters to pass along with the event
|
|
8513
|
+
*/
|
|
8514
|
+
mParameters?: FlexibleColumnLayout$ColumnsDistributionChangeEventParameters
|
|
8515
|
+
): this;
|
|
8137
8516
|
/**
|
|
8138
8517
|
* Fires event {@link #event:endColumnNavigate endColumnNavigate} to attached listeners.
|
|
8139
8518
|
*
|
|
@@ -9232,6 +9611,15 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9232
9611
|
* @since 1.76
|
|
9233
9612
|
*/
|
|
9234
9613
|
columnResize?: (oEvent: FlexibleColumnLayout$ColumnResizeEvent) => void;
|
|
9614
|
+
|
|
9615
|
+
/**
|
|
9616
|
+
* Fired when user resize columns.
|
|
9617
|
+
*
|
|
9618
|
+
* @since 1.128
|
|
9619
|
+
*/
|
|
9620
|
+
columnsDistributionChange?: (
|
|
9621
|
+
oEvent: FlexibleColumnLayout$ColumnsDistributionChangeEvent
|
|
9622
|
+
) => void;
|
|
9235
9623
|
}
|
|
9236
9624
|
|
|
9237
9625
|
/**
|
|
@@ -9518,6 +9906,34 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9518
9906
|
FlexibleColumnLayout
|
|
9519
9907
|
>;
|
|
9520
9908
|
|
|
9909
|
+
/**
|
|
9910
|
+
* Parameters of the FlexibleColumnLayout#columnsDistributionChange event.
|
|
9911
|
+
*/
|
|
9912
|
+
export interface FlexibleColumnLayout$ColumnsDistributionChangeEventParameters {
|
|
9913
|
+
/**
|
|
9914
|
+
* The current `media` - dekstop or tablet.
|
|
9915
|
+
*/
|
|
9916
|
+
media?: string;
|
|
9917
|
+
|
|
9918
|
+
/**
|
|
9919
|
+
* The value of the `layout` property.
|
|
9920
|
+
*/
|
|
9921
|
+
layout?: string;
|
|
9922
|
+
|
|
9923
|
+
/**
|
|
9924
|
+
* Sizes of all columns in percentages, separated by '/'.
|
|
9925
|
+
*/
|
|
9926
|
+
columnsSizes?: string;
|
|
9927
|
+
}
|
|
9928
|
+
|
|
9929
|
+
/**
|
|
9930
|
+
* Event object of the FlexibleColumnLayout#columnsDistributionChange event.
|
|
9931
|
+
*/
|
|
9932
|
+
export type FlexibleColumnLayout$ColumnsDistributionChangeEvent = Event<
|
|
9933
|
+
FlexibleColumnLayout$ColumnsDistributionChangeEventParameters,
|
|
9934
|
+
FlexibleColumnLayout
|
|
9935
|
+
>;
|
|
9936
|
+
|
|
9521
9937
|
/**
|
|
9522
9938
|
* Parameters of the FlexibleColumnLayout#endColumnNavigate event.
|
|
9523
9939
|
*/
|
|
@@ -9620,91 +10036,907 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9620
10036
|
/**
|
|
9621
10037
|
* Determines whether this is a back navigation, triggered by back().
|
|
9622
10038
|
*/
|
|
9623
|
-
isBack?: boolean;
|
|
9624
|
-
|
|
10039
|
+
isBack?: boolean;
|
|
10040
|
+
|
|
10041
|
+
/**
|
|
10042
|
+
* Determines whether this is a navigation to the root page, triggered by backToTop().
|
|
10043
|
+
*/
|
|
10044
|
+
isBackToTop?: boolean;
|
|
10045
|
+
|
|
10046
|
+
/**
|
|
10047
|
+
* Determines whether this was a navigation to a specific page, triggered by backToPage().
|
|
10048
|
+
*/
|
|
10049
|
+
isBackToPage?: boolean;
|
|
10050
|
+
|
|
10051
|
+
/**
|
|
10052
|
+
* Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
|
|
10053
|
+
*/
|
|
10054
|
+
direction?: string;
|
|
10055
|
+
}
|
|
10056
|
+
|
|
10057
|
+
/**
|
|
10058
|
+
* Event object of the FlexibleColumnLayout#midColumnNavigate event.
|
|
10059
|
+
*/
|
|
10060
|
+
export type FlexibleColumnLayout$MidColumnNavigateEvent = Event<
|
|
10061
|
+
FlexibleColumnLayout$MidColumnNavigateEventParameters,
|
|
10062
|
+
FlexibleColumnLayout
|
|
10063
|
+
>;
|
|
10064
|
+
|
|
10065
|
+
/**
|
|
10066
|
+
* Parameters of the FlexibleColumnLayout#stateChange event.
|
|
10067
|
+
*/
|
|
10068
|
+
export interface FlexibleColumnLayout$StateChangeEventParameters {
|
|
10069
|
+
/**
|
|
10070
|
+
* The value of the `layout` property
|
|
10071
|
+
*/
|
|
10072
|
+
layout?: LayoutType | keyof typeof LayoutType;
|
|
10073
|
+
|
|
10074
|
+
/**
|
|
10075
|
+
* The maximum number of columns that can be displayed at once based on the available screen size and control
|
|
10076
|
+
* settings.
|
|
10077
|
+
*
|
|
10078
|
+
* Possible values are:
|
|
10079
|
+
* - 3 for browser size of 1280px or more
|
|
10080
|
+
* - 2 for browser size between 960px and 1280px
|
|
10081
|
+
* - 1 for browser size less than 960px
|
|
10082
|
+
*/
|
|
10083
|
+
maxColumnsCount?: int;
|
|
10084
|
+
|
|
10085
|
+
/**
|
|
10086
|
+
* Indicates whether the layout changed as a result of the user clicking a column separator's arrow or dragging
|
|
10087
|
+
* the column separators
|
|
10088
|
+
*/
|
|
10089
|
+
isNavigationArrow?: boolean;
|
|
10090
|
+
|
|
10091
|
+
/**
|
|
10092
|
+
* Indicates whether the maximum number of columns that can be displayed at once changed due to resize of
|
|
10093
|
+
* the entire browser window
|
|
10094
|
+
*/
|
|
10095
|
+
isResize?: boolean;
|
|
10096
|
+
}
|
|
10097
|
+
|
|
10098
|
+
/**
|
|
10099
|
+
* Event object of the FlexibleColumnLayout#stateChange event.
|
|
10100
|
+
*/
|
|
10101
|
+
export type FlexibleColumnLayout$StateChangeEvent = Event<
|
|
10102
|
+
FlexibleColumnLayout$StateChangeEventParameters,
|
|
10103
|
+
FlexibleColumnLayout
|
|
10104
|
+
>;
|
|
10105
|
+
}
|
|
10106
|
+
|
|
10107
|
+
declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
10108
|
+
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
10109
|
+
|
|
10110
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
10111
|
+
|
|
10112
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
10113
|
+
|
|
10114
|
+
/**
|
|
10115
|
+
* Settings for accessible landmarks which can be applied to the container elements of a `sap.f.FlexibleColumnLayout`
|
|
10116
|
+
* control. For example, these landmarks are used by assistive technologies (such as screen readers) to
|
|
10117
|
+
* provide a meaningful columns overview.
|
|
10118
|
+
*
|
|
10119
|
+
* @since 1.95
|
|
10120
|
+
*/
|
|
10121
|
+
export default class FlexibleColumnLayoutAccessibleLandmarkInfo extends UI5Element {
|
|
10122
|
+
/**
|
|
10123
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
|
|
10124
|
+
*
|
|
10125
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
10126
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
10127
|
+
* of the syntax of the settings object.
|
|
10128
|
+
*/
|
|
10129
|
+
constructor(
|
|
10130
|
+
/**
|
|
10131
|
+
* Initial settings for the new element
|
|
10132
|
+
*/
|
|
10133
|
+
mSettings?: $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
10134
|
+
);
|
|
10135
|
+
/**
|
|
10136
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
|
|
10137
|
+
*
|
|
10138
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
10139
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
10140
|
+
* of the syntax of the settings object.
|
|
10141
|
+
*/
|
|
10142
|
+
constructor(
|
|
10143
|
+
/**
|
|
10144
|
+
* ID for the new element, generated automatically if no ID is given
|
|
10145
|
+
*/
|
|
10146
|
+
sId?: string,
|
|
10147
|
+
/**
|
|
10148
|
+
* Initial settings for the new element
|
|
10149
|
+
*/
|
|
10150
|
+
mSettings?: $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
10151
|
+
);
|
|
10152
|
+
|
|
10153
|
+
/**
|
|
10154
|
+
* Creates a new subclass of class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo with name `sClassName`
|
|
10155
|
+
* and enriches it with the information contained in `oClassInfo`.
|
|
10156
|
+
*
|
|
10157
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
10158
|
+
*
|
|
10159
|
+
*
|
|
10160
|
+
* @returns Created class / constructor function
|
|
10161
|
+
*/
|
|
10162
|
+
static extend<T extends Record<string, unknown>>(
|
|
10163
|
+
/**
|
|
10164
|
+
* Name of the class being created
|
|
10165
|
+
*/
|
|
10166
|
+
sClassName: string,
|
|
10167
|
+
/**
|
|
10168
|
+
* Object literal with information about the class
|
|
10169
|
+
*/
|
|
10170
|
+
oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayoutAccessibleLandmarkInfo>,
|
|
10171
|
+
/**
|
|
10172
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10173
|
+
* used by this class
|
|
10174
|
+
*/
|
|
10175
|
+
FNMetaImpl?: Function
|
|
10176
|
+
): Function;
|
|
10177
|
+
/**
|
|
10178
|
+
* Returns a metadata object for class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo.
|
|
10179
|
+
*
|
|
10180
|
+
*
|
|
10181
|
+
* @returns Metadata object describing this class
|
|
10182
|
+
*/
|
|
10183
|
+
static getMetadata(): ElementMetadata;
|
|
10184
|
+
/**
|
|
10185
|
+
* Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
10186
|
+
*
|
|
10187
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10188
|
+
* control.
|
|
10189
|
+
*
|
|
10190
|
+
* If not set, a predefined text is used.
|
|
10191
|
+
*
|
|
10192
|
+
*
|
|
10193
|
+
* @returns Value of property `firstColumnBackArrowLabel`
|
|
10194
|
+
*/
|
|
10195
|
+
getFirstColumnBackArrowLabel(): string;
|
|
10196
|
+
/**
|
|
10197
|
+
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
10198
|
+
*
|
|
10199
|
+
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
10200
|
+
* control.
|
|
10201
|
+
*
|
|
10202
|
+
* If not set, a predefined text is used.
|
|
10203
|
+
*
|
|
10204
|
+
*
|
|
10205
|
+
* @returns Value of property `firstColumnLabel`
|
|
10206
|
+
*/
|
|
10207
|
+
getFirstColumnLabel(): string;
|
|
10208
|
+
/**
|
|
10209
|
+
* Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
10210
|
+
*
|
|
10211
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10212
|
+
* control.
|
|
10213
|
+
*
|
|
10214
|
+
* If not set, a predefined text is used.
|
|
10215
|
+
*
|
|
10216
|
+
*
|
|
10217
|
+
* @returns Value of property `lastColumnForwardArrowLabel`
|
|
10218
|
+
*/
|
|
10219
|
+
getLastColumnForwardArrowLabel(): string;
|
|
10220
|
+
/**
|
|
10221
|
+
* Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
|
|
10222
|
+
*
|
|
10223
|
+
* Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
10224
|
+
* control.
|
|
10225
|
+
*
|
|
10226
|
+
* If not set, a predefined text is used.
|
|
10227
|
+
*
|
|
10228
|
+
*
|
|
10229
|
+
* @returns Value of property `lastColumnLabel`
|
|
10230
|
+
*/
|
|
10231
|
+
getLastColumnLabel(): string;
|
|
10232
|
+
/**
|
|
10233
|
+
* Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
10234
|
+
*
|
|
10235
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10236
|
+
* control.
|
|
10237
|
+
*
|
|
10238
|
+
* If not set, a predefined text is used.
|
|
10239
|
+
*
|
|
10240
|
+
*
|
|
10241
|
+
* @returns Value of property `middleColumnBackArrowLabel`
|
|
10242
|
+
*/
|
|
10243
|
+
getMiddleColumnBackArrowLabel(): string;
|
|
10244
|
+
/**
|
|
10245
|
+
* Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
10246
|
+
*
|
|
10247
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10248
|
+
* control.
|
|
10249
|
+
*
|
|
10250
|
+
* If not set, a predefined text is used.
|
|
10251
|
+
*
|
|
10252
|
+
*
|
|
10253
|
+
* @returns Value of property `middleColumnForwardArrowLabel`
|
|
10254
|
+
*/
|
|
10255
|
+
getMiddleColumnForwardArrowLabel(): string;
|
|
10256
|
+
/**
|
|
10257
|
+
* Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
10258
|
+
*
|
|
10259
|
+
* Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
10260
|
+
* control.
|
|
10261
|
+
*
|
|
10262
|
+
* If not set, a predefined text is used.
|
|
10263
|
+
*
|
|
10264
|
+
*
|
|
10265
|
+
* @returns Value of property `middleColumnLabel`
|
|
10266
|
+
*/
|
|
10267
|
+
getMiddleColumnLabel(): string;
|
|
10268
|
+
/**
|
|
10269
|
+
* Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
10270
|
+
*
|
|
10271
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10272
|
+
* control.
|
|
10273
|
+
*
|
|
10274
|
+
* If not set, a predefined text is used.
|
|
10275
|
+
*
|
|
10276
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10277
|
+
*
|
|
10278
|
+
*
|
|
10279
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10280
|
+
*/
|
|
10281
|
+
setFirstColumnBackArrowLabel(
|
|
10282
|
+
/**
|
|
10283
|
+
* New value for property `firstColumnBackArrowLabel`
|
|
10284
|
+
*/
|
|
10285
|
+
sFirstColumnBackArrowLabel?: string
|
|
10286
|
+
): this;
|
|
10287
|
+
/**
|
|
10288
|
+
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
10289
|
+
*
|
|
10290
|
+
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
10291
|
+
* control.
|
|
10292
|
+
*
|
|
10293
|
+
* If not set, a predefined text is used.
|
|
10294
|
+
*
|
|
10295
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10296
|
+
*
|
|
10297
|
+
*
|
|
10298
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10299
|
+
*/
|
|
10300
|
+
setFirstColumnLabel(
|
|
10301
|
+
/**
|
|
10302
|
+
* New value for property `firstColumnLabel`
|
|
10303
|
+
*/
|
|
10304
|
+
sFirstColumnLabel?: string
|
|
10305
|
+
): this;
|
|
10306
|
+
/**
|
|
10307
|
+
* Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
10308
|
+
*
|
|
10309
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10310
|
+
* control.
|
|
10311
|
+
*
|
|
10312
|
+
* If not set, a predefined text is used.
|
|
10313
|
+
*
|
|
10314
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10315
|
+
*
|
|
10316
|
+
*
|
|
10317
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10318
|
+
*/
|
|
10319
|
+
setLastColumnForwardArrowLabel(
|
|
10320
|
+
/**
|
|
10321
|
+
* New value for property `lastColumnForwardArrowLabel`
|
|
10322
|
+
*/
|
|
10323
|
+
sLastColumnForwardArrowLabel?: string
|
|
10324
|
+
): this;
|
|
10325
|
+
/**
|
|
10326
|
+
* Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
|
|
10327
|
+
*
|
|
10328
|
+
* Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
10329
|
+
* control.
|
|
10330
|
+
*
|
|
10331
|
+
* If not set, a predefined text is used.
|
|
10332
|
+
*
|
|
10333
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10334
|
+
*
|
|
10335
|
+
*
|
|
10336
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10337
|
+
*/
|
|
10338
|
+
setLastColumnLabel(
|
|
10339
|
+
/**
|
|
10340
|
+
* New value for property `lastColumnLabel`
|
|
10341
|
+
*/
|
|
10342
|
+
sLastColumnLabel?: string
|
|
10343
|
+
): this;
|
|
10344
|
+
/**
|
|
10345
|
+
* Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
10346
|
+
*
|
|
10347
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10348
|
+
* control.
|
|
10349
|
+
*
|
|
10350
|
+
* If not set, a predefined text is used.
|
|
10351
|
+
*
|
|
10352
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10353
|
+
*
|
|
10354
|
+
*
|
|
10355
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10356
|
+
*/
|
|
10357
|
+
setMiddleColumnBackArrowLabel(
|
|
10358
|
+
/**
|
|
10359
|
+
* New value for property `middleColumnBackArrowLabel`
|
|
10360
|
+
*/
|
|
10361
|
+
sMiddleColumnBackArrowLabel?: string
|
|
10362
|
+
): this;
|
|
10363
|
+
/**
|
|
10364
|
+
* Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
10365
|
+
*
|
|
10366
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10367
|
+
* control.
|
|
10368
|
+
*
|
|
10369
|
+
* If not set, a predefined text is used.
|
|
10370
|
+
*
|
|
10371
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10372
|
+
*
|
|
10373
|
+
*
|
|
10374
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10375
|
+
*/
|
|
10376
|
+
setMiddleColumnForwardArrowLabel(
|
|
10377
|
+
/**
|
|
10378
|
+
* New value for property `middleColumnForwardArrowLabel`
|
|
10379
|
+
*/
|
|
10380
|
+
sMiddleColumnForwardArrowLabel?: string
|
|
10381
|
+
): this;
|
|
10382
|
+
/**
|
|
10383
|
+
* Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
10384
|
+
*
|
|
10385
|
+
* Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
10386
|
+
* control.
|
|
10387
|
+
*
|
|
10388
|
+
* If not set, a predefined text is used.
|
|
10389
|
+
*
|
|
10390
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10391
|
+
*
|
|
10392
|
+
*
|
|
10393
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10394
|
+
*/
|
|
10395
|
+
setMiddleColumnLabel(
|
|
10396
|
+
/**
|
|
10397
|
+
* New value for property `middleColumnLabel`
|
|
10398
|
+
*/
|
|
10399
|
+
sMiddleColumnLabel?: string
|
|
10400
|
+
): this;
|
|
10401
|
+
}
|
|
10402
|
+
/**
|
|
10403
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutAccessibleLandmarkInfo constructor.
|
|
10404
|
+
*/
|
|
10405
|
+
export interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
10406
|
+
extends $ElementSettings {
|
|
10407
|
+
/**
|
|
10408
|
+
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
10409
|
+
* control.
|
|
10410
|
+
*
|
|
10411
|
+
* If not set, a predefined text is used.
|
|
10412
|
+
*/
|
|
10413
|
+
firstColumnLabel?: string | PropertyBindingInfo;
|
|
10414
|
+
|
|
10415
|
+
/**
|
|
10416
|
+
* Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
10417
|
+
* control.
|
|
10418
|
+
*
|
|
10419
|
+
* If not set, a predefined text is used.
|
|
10420
|
+
*/
|
|
10421
|
+
middleColumnLabel?: string | PropertyBindingInfo;
|
|
10422
|
+
|
|
10423
|
+
/**
|
|
10424
|
+
* Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
10425
|
+
* control.
|
|
10426
|
+
*
|
|
10427
|
+
* If not set, a predefined text is used.
|
|
10428
|
+
*/
|
|
10429
|
+
lastColumnLabel?: string | PropertyBindingInfo;
|
|
10430
|
+
|
|
10431
|
+
/**
|
|
10432
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10433
|
+
* control.
|
|
10434
|
+
*
|
|
10435
|
+
* If not set, a predefined text is used.
|
|
10436
|
+
*/
|
|
10437
|
+
firstColumnBackArrowLabel?: string | PropertyBindingInfo;
|
|
10438
|
+
|
|
10439
|
+
/**
|
|
10440
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10441
|
+
* control.
|
|
10442
|
+
*
|
|
10443
|
+
* If not set, a predefined text is used.
|
|
10444
|
+
*/
|
|
10445
|
+
middleColumnForwardArrowLabel?: string | PropertyBindingInfo;
|
|
10446
|
+
|
|
10447
|
+
/**
|
|
10448
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10449
|
+
* control.
|
|
10450
|
+
*
|
|
10451
|
+
* If not set, a predefined text is used.
|
|
10452
|
+
*/
|
|
10453
|
+
middleColumnBackArrowLabel?: string | PropertyBindingInfo;
|
|
10454
|
+
|
|
10455
|
+
/**
|
|
10456
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
10457
|
+
* control.
|
|
10458
|
+
*
|
|
10459
|
+
* If not set, a predefined text is used.
|
|
10460
|
+
*/
|
|
10461
|
+
lastColumnForwardArrowLabel?: string | PropertyBindingInfo;
|
|
10462
|
+
}
|
|
10463
|
+
}
|
|
10464
|
+
|
|
10465
|
+
declare module "sap/f/FlexibleColumnLayoutData" {
|
|
10466
|
+
import {
|
|
10467
|
+
default as LayoutData,
|
|
10468
|
+
$LayoutDataSettings,
|
|
10469
|
+
} from "sap/ui/core/LayoutData";
|
|
10470
|
+
|
|
10471
|
+
import FlexibleColumnLayoutDataForDesktop from "sap/f/FlexibleColumnLayoutDataForDesktop";
|
|
10472
|
+
|
|
10473
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
10474
|
+
|
|
10475
|
+
import FlexibleColumnLayoutDataForTablet from "sap/f/FlexibleColumnLayoutDataForTablet";
|
|
10476
|
+
|
|
10477
|
+
/**
|
|
10478
|
+
* Holds layout data for `sap.f.FlexibleColumnLayout`. Allows LayoutData of type `sap.f.FlexibleColumnLayoutDataForDesktop`
|
|
10479
|
+
* or `sap.f.FlexibleColumnLayoutFlexibleColumnLayoutDataForTablet`
|
|
10480
|
+
*
|
|
10481
|
+
* @since 1.128
|
|
10482
|
+
*/
|
|
10483
|
+
export default class FlexibleColumnLayoutData extends LayoutData {
|
|
10484
|
+
/**
|
|
10485
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutData`.
|
|
10486
|
+
*
|
|
10487
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
10488
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
10489
|
+
* of the syntax of the settings object.
|
|
10490
|
+
*/
|
|
10491
|
+
constructor(
|
|
10492
|
+
/**
|
|
10493
|
+
* Initial settings for the new element.
|
|
10494
|
+
*/
|
|
10495
|
+
mSettings?: $FlexibleColumnLayoutDataSettings
|
|
10496
|
+
);
|
|
10497
|
+
/**
|
|
10498
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutData`.
|
|
10499
|
+
*
|
|
10500
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
10501
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
10502
|
+
* of the syntax of the settings object.
|
|
10503
|
+
*/
|
|
10504
|
+
constructor(
|
|
10505
|
+
/**
|
|
10506
|
+
* ID for the new element, generated automatically if no ID is given
|
|
10507
|
+
*/
|
|
10508
|
+
sId?: string,
|
|
10509
|
+
/**
|
|
10510
|
+
* Initial settings for the new element.
|
|
10511
|
+
*/
|
|
10512
|
+
mSettings?: $FlexibleColumnLayoutDataSettings
|
|
10513
|
+
);
|
|
10514
|
+
|
|
10515
|
+
/**
|
|
10516
|
+
* Creates a new subclass of class sap.f.FlexibleColumnLayoutData with name `sClassName` and enriches it
|
|
10517
|
+
* with the information contained in `oClassInfo`.
|
|
10518
|
+
*
|
|
10519
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.LayoutData.extend}.
|
|
10520
|
+
*
|
|
10521
|
+
*
|
|
10522
|
+
* @returns Created class / constructor function
|
|
10523
|
+
*/
|
|
10524
|
+
static extend<T extends Record<string, unknown>>(
|
|
10525
|
+
/**
|
|
10526
|
+
* Name of the class being created
|
|
10527
|
+
*/
|
|
10528
|
+
sClassName: string,
|
|
10529
|
+
/**
|
|
10530
|
+
* Object literal with information about the class
|
|
10531
|
+
*/
|
|
10532
|
+
oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayoutData>,
|
|
10533
|
+
/**
|
|
10534
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10535
|
+
* used by this class
|
|
10536
|
+
*/
|
|
10537
|
+
FNMetaImpl?: Function
|
|
10538
|
+
): Function;
|
|
10539
|
+
/**
|
|
10540
|
+
* Returns a metadata object for class sap.f.FlexibleColumnLayoutData.
|
|
10541
|
+
*
|
|
10542
|
+
*
|
|
10543
|
+
* @returns Metadata object describing this class
|
|
10544
|
+
*/
|
|
10545
|
+
static getMetadata(): ElementMetadata;
|
|
10546
|
+
/**
|
|
10547
|
+
* Destroys the desktopLayoutData in the aggregation {@link #getDesktopLayoutData desktopLayoutData}.
|
|
10548
|
+
*
|
|
10549
|
+
*
|
|
10550
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10551
|
+
*/
|
|
10552
|
+
destroyDesktopLayoutData(): this;
|
|
10553
|
+
/**
|
|
10554
|
+
* Destroys the tabletLayoutData in the aggregation {@link #getTabletLayoutData tabletLayoutData}.
|
|
10555
|
+
*
|
|
10556
|
+
*
|
|
10557
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10558
|
+
*/
|
|
10559
|
+
destroyTabletLayoutData(): this;
|
|
10560
|
+
/**
|
|
10561
|
+
* Gets content of aggregation {@link #getDesktopLayoutData desktopLayoutData}.
|
|
10562
|
+
*
|
|
10563
|
+
* Allows LayoutData of type `sap.f.FlexibleColumnLayoutDataForDesktop`
|
|
10564
|
+
*/
|
|
10565
|
+
getDesktopLayoutData(): FlexibleColumnLayoutDataForDesktop;
|
|
10566
|
+
/**
|
|
10567
|
+
* Gets content of aggregation {@link #getTabletLayoutData tabletLayoutData}.
|
|
10568
|
+
*
|
|
10569
|
+
* Allows LayoutData of type `sap.f.FlexibleColumnLayoutDataForTablet`
|
|
10570
|
+
*/
|
|
10571
|
+
getTabletLayoutData(): FlexibleColumnLayoutDataForTablet;
|
|
10572
|
+
/**
|
|
10573
|
+
* Sets the aggregated {@link #getDesktopLayoutData desktopLayoutData}.
|
|
10574
|
+
*
|
|
10575
|
+
*
|
|
10576
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10577
|
+
*/
|
|
10578
|
+
setDesktopLayoutData(
|
|
10579
|
+
/**
|
|
10580
|
+
* The desktopLayoutData to set
|
|
10581
|
+
*/
|
|
10582
|
+
oDesktopLayoutData: FlexibleColumnLayoutDataForDesktop
|
|
10583
|
+
): this;
|
|
10584
|
+
/**
|
|
10585
|
+
* Sets the aggregated {@link #getTabletLayoutData tabletLayoutData}.
|
|
10586
|
+
*
|
|
10587
|
+
*
|
|
10588
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10589
|
+
*/
|
|
10590
|
+
setTabletLayoutData(
|
|
10591
|
+
/**
|
|
10592
|
+
* The tabletLayoutData to set
|
|
10593
|
+
*/
|
|
10594
|
+
oTabletLayoutData: FlexibleColumnLayoutDataForTablet
|
|
10595
|
+
): this;
|
|
10596
|
+
}
|
|
10597
|
+
/**
|
|
10598
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutData constructor.
|
|
10599
|
+
*/
|
|
10600
|
+
export interface $FlexibleColumnLayoutDataSettings
|
|
10601
|
+
extends $LayoutDataSettings {
|
|
10602
|
+
/**
|
|
10603
|
+
* Allows LayoutData of type `sap.f.FlexibleColumnLayoutDataForDesktop`
|
|
10604
|
+
*/
|
|
10605
|
+
desktopLayoutData?: FlexibleColumnLayoutDataForDesktop;
|
|
10606
|
+
|
|
10607
|
+
/**
|
|
10608
|
+
* Allows LayoutData of type `sap.f.FlexibleColumnLayoutDataForTablet`
|
|
10609
|
+
*/
|
|
10610
|
+
tabletLayoutData?: FlexibleColumnLayoutDataForTablet;
|
|
10611
|
+
}
|
|
10612
|
+
}
|
|
10613
|
+
|
|
10614
|
+
declare module "sap/f/FlexibleColumnLayoutDataForDesktop" {
|
|
10615
|
+
import {
|
|
10616
|
+
default as LayoutData,
|
|
10617
|
+
$LayoutDataSettings,
|
|
10618
|
+
} from "sap/ui/core/LayoutData";
|
|
10619
|
+
|
|
10620
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
10621
|
+
|
|
10622
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
10623
|
+
|
|
10624
|
+
/**
|
|
10625
|
+
* Holds layout data for columns of `sap.f.FlexibleColumnLayout` on desktop.
|
|
10626
|
+
*
|
|
10627
|
+
* @since 1.128
|
|
10628
|
+
*/
|
|
10629
|
+
export default class FlexibleColumnLayoutDataForDesktop extends LayoutData {
|
|
10630
|
+
/**
|
|
10631
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutDataForDesktop`.
|
|
10632
|
+
*
|
|
10633
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
10634
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
10635
|
+
* of the syntax of the settings object.
|
|
10636
|
+
*/
|
|
10637
|
+
constructor(
|
|
10638
|
+
/**
|
|
10639
|
+
* Initial settings for the new element.
|
|
10640
|
+
*/
|
|
10641
|
+
mSettings?: $FlexibleColumnLayoutDataForDesktopSettings
|
|
10642
|
+
);
|
|
10643
|
+
/**
|
|
10644
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutDataForDesktop`.
|
|
10645
|
+
*
|
|
10646
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
10647
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
10648
|
+
* of the syntax of the settings object.
|
|
10649
|
+
*/
|
|
10650
|
+
constructor(
|
|
10651
|
+
/**
|
|
10652
|
+
* ID for the new element, generated automatically if no ID is given
|
|
10653
|
+
*/
|
|
10654
|
+
sId?: string,
|
|
10655
|
+
/**
|
|
10656
|
+
* Initial settings for the new element.
|
|
10657
|
+
*/
|
|
10658
|
+
mSettings?: $FlexibleColumnLayoutDataForDesktopSettings
|
|
10659
|
+
);
|
|
10660
|
+
|
|
10661
|
+
/**
|
|
10662
|
+
* Creates a new subclass of class sap.f.FlexibleColumnLayoutDataForDesktop with name `sClassName` and enriches
|
|
10663
|
+
* it with the information contained in `oClassInfo`.
|
|
10664
|
+
*
|
|
10665
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.LayoutData.extend}.
|
|
10666
|
+
*
|
|
10667
|
+
*
|
|
10668
|
+
* @returns Created class / constructor function
|
|
10669
|
+
*/
|
|
10670
|
+
static extend<T extends Record<string, unknown>>(
|
|
10671
|
+
/**
|
|
10672
|
+
* Name of the class being created
|
|
10673
|
+
*/
|
|
10674
|
+
sClassName: string,
|
|
10675
|
+
/**
|
|
10676
|
+
* Object literal with information about the class
|
|
10677
|
+
*/
|
|
10678
|
+
oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayoutDataForDesktop>,
|
|
10679
|
+
/**
|
|
10680
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10681
|
+
* used by this class
|
|
10682
|
+
*/
|
|
10683
|
+
FNMetaImpl?: Function
|
|
10684
|
+
): Function;
|
|
10685
|
+
/**
|
|
10686
|
+
* Returns a metadata object for class sap.f.FlexibleColumnLayoutDataForDesktop.
|
|
10687
|
+
*
|
|
10688
|
+
*
|
|
10689
|
+
* @returns Metadata object describing this class
|
|
10690
|
+
*/
|
|
10691
|
+
static getMetadata(): ElementMetadata;
|
|
10692
|
+
/**
|
|
10693
|
+
* Gets current value of property {@link #getThreeColumnsBeginExpandedEndHidden threeColumnsBeginExpandedEndHidden}.
|
|
10694
|
+
*
|
|
10695
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
10696
|
+
* values are set in percentages.
|
|
10697
|
+
*
|
|
10698
|
+
* Default value is `"67/33/0"`.
|
|
10699
|
+
*
|
|
10700
|
+
*
|
|
10701
|
+
* @returns Value of property `threeColumnsBeginExpandedEndHidden`
|
|
10702
|
+
*/
|
|
10703
|
+
getThreeColumnsBeginExpandedEndHidden(): string;
|
|
10704
|
+
/**
|
|
10705
|
+
* Gets current value of property {@link #getThreeColumnsEndExpanded threeColumnsEndExpanded}.
|
|
10706
|
+
*
|
|
10707
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
10708
|
+
* set in percentages.
|
|
10709
|
+
*
|
|
10710
|
+
* Default value is `"25/25/50"`.
|
|
10711
|
+
*
|
|
10712
|
+
*
|
|
10713
|
+
* @returns Value of property `threeColumnsEndExpanded`
|
|
10714
|
+
*/
|
|
10715
|
+
getThreeColumnsEndExpanded(): string;
|
|
10716
|
+
/**
|
|
10717
|
+
* Gets current value of property {@link #getThreeColumnsMidExpanded threeColumnsMidExpanded}.
|
|
10718
|
+
*
|
|
10719
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
10720
|
+
* set in percentages.
|
|
10721
|
+
*
|
|
10722
|
+
* Default value is `"25/50/25"`.
|
|
10723
|
+
*
|
|
10724
|
+
*
|
|
10725
|
+
* @returns Value of property `threeColumnsMidExpanded`
|
|
10726
|
+
*/
|
|
10727
|
+
getThreeColumnsMidExpanded(): string;
|
|
10728
|
+
/**
|
|
10729
|
+
* Gets current value of property {@link #getThreeColumnsMidExpandedEndHidden threeColumnsMidExpandedEndHidden}.
|
|
10730
|
+
*
|
|
10731
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
10732
|
+
* values are set in percentages.
|
|
10733
|
+
*
|
|
10734
|
+
* Default value is `"33/67/0"`.
|
|
10735
|
+
*
|
|
10736
|
+
*
|
|
10737
|
+
* @returns Value of property `threeColumnsMidExpandedEndHidden`
|
|
10738
|
+
*/
|
|
10739
|
+
getThreeColumnsMidExpandedEndHidden(): string;
|
|
10740
|
+
/**
|
|
10741
|
+
* Gets current value of property {@link #getTwoColumnsBeginExpanded twoColumnsBeginExpanded}.
|
|
10742
|
+
*
|
|
10743
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
10744
|
+
* set in percentages.
|
|
10745
|
+
*
|
|
10746
|
+
* Default value is `"67/33/0"`.
|
|
10747
|
+
*
|
|
10748
|
+
*
|
|
10749
|
+
* @returns Value of property `twoColumnsBeginExpanded`
|
|
10750
|
+
*/
|
|
10751
|
+
getTwoColumnsBeginExpanded(): string;
|
|
10752
|
+
/**
|
|
10753
|
+
* Gets current value of property {@link #getTwoColumnsMidExpanded twoColumnsMidExpanded}.
|
|
10754
|
+
*
|
|
10755
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
10756
|
+
* set in percentages.
|
|
10757
|
+
*
|
|
10758
|
+
* Default value is `"33/67/0"`.
|
|
10759
|
+
*
|
|
10760
|
+
*
|
|
10761
|
+
* @returns Value of property `twoColumnsMidExpanded`
|
|
10762
|
+
*/
|
|
10763
|
+
getTwoColumnsMidExpanded(): string;
|
|
10764
|
+
/**
|
|
10765
|
+
* Sets a new value for property {@link #getThreeColumnsBeginExpandedEndHidden threeColumnsBeginExpandedEndHidden}.
|
|
10766
|
+
*
|
|
10767
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
10768
|
+
* values are set in percentages.
|
|
10769
|
+
*
|
|
10770
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10771
|
+
*
|
|
10772
|
+
* Default value is `"67/33/0"`.
|
|
10773
|
+
*
|
|
10774
|
+
*
|
|
10775
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10776
|
+
*/
|
|
10777
|
+
setThreeColumnsBeginExpandedEndHidden(
|
|
10778
|
+
/**
|
|
10779
|
+
* New value for property `threeColumnsBeginExpandedEndHidden`
|
|
10780
|
+
*/
|
|
10781
|
+
sThreeColumnsBeginExpandedEndHidden?: string
|
|
10782
|
+
): this;
|
|
10783
|
+
/**
|
|
10784
|
+
* Sets a new value for property {@link #getThreeColumnsEndExpanded threeColumnsEndExpanded}.
|
|
10785
|
+
*
|
|
10786
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
10787
|
+
* set in percentages.
|
|
10788
|
+
*
|
|
10789
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10790
|
+
*
|
|
10791
|
+
* Default value is `"25/25/50"`.
|
|
10792
|
+
*
|
|
10793
|
+
*
|
|
10794
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10795
|
+
*/
|
|
10796
|
+
setThreeColumnsEndExpanded(
|
|
10797
|
+
/**
|
|
10798
|
+
* New value for property `threeColumnsEndExpanded`
|
|
10799
|
+
*/
|
|
10800
|
+
sThreeColumnsEndExpanded?: string
|
|
10801
|
+
): this;
|
|
10802
|
+
/**
|
|
10803
|
+
* Sets a new value for property {@link #getThreeColumnsMidExpanded threeColumnsMidExpanded}.
|
|
10804
|
+
*
|
|
10805
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
10806
|
+
* set in percentages.
|
|
10807
|
+
*
|
|
10808
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10809
|
+
*
|
|
10810
|
+
* Default value is `"25/50/25"`.
|
|
10811
|
+
*
|
|
10812
|
+
*
|
|
10813
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10814
|
+
*/
|
|
10815
|
+
setThreeColumnsMidExpanded(
|
|
10816
|
+
/**
|
|
10817
|
+
* New value for property `threeColumnsMidExpanded`
|
|
10818
|
+
*/
|
|
10819
|
+
sThreeColumnsMidExpanded?: string
|
|
10820
|
+
): this;
|
|
10821
|
+
/**
|
|
10822
|
+
* Sets a new value for property {@link #getThreeColumnsMidExpandedEndHidden threeColumnsMidExpandedEndHidden}.
|
|
10823
|
+
*
|
|
10824
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
10825
|
+
* values are set in percentages.
|
|
10826
|
+
*
|
|
10827
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10828
|
+
*
|
|
10829
|
+
* Default value is `"33/67/0"`.
|
|
10830
|
+
*
|
|
10831
|
+
*
|
|
10832
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10833
|
+
*/
|
|
10834
|
+
setThreeColumnsMidExpandedEndHidden(
|
|
10835
|
+
/**
|
|
10836
|
+
* New value for property `threeColumnsMidExpandedEndHidden`
|
|
10837
|
+
*/
|
|
10838
|
+
sThreeColumnsMidExpandedEndHidden?: string
|
|
10839
|
+
): this;
|
|
10840
|
+
/**
|
|
10841
|
+
* Sets a new value for property {@link #getTwoColumnsBeginExpanded twoColumnsBeginExpanded}.
|
|
10842
|
+
*
|
|
10843
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
10844
|
+
* set in percentages.
|
|
10845
|
+
*
|
|
10846
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10847
|
+
*
|
|
10848
|
+
* Default value is `"67/33/0"`.
|
|
10849
|
+
*
|
|
10850
|
+
*
|
|
10851
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10852
|
+
*/
|
|
10853
|
+
setTwoColumnsBeginExpanded(
|
|
10854
|
+
/**
|
|
10855
|
+
* New value for property `twoColumnsBeginExpanded`
|
|
10856
|
+
*/
|
|
10857
|
+
sTwoColumnsBeginExpanded?: string
|
|
10858
|
+
): this;
|
|
9625
10859
|
/**
|
|
9626
|
-
*
|
|
10860
|
+
* Sets a new value for property {@link #getTwoColumnsMidExpanded twoColumnsMidExpanded}.
|
|
10861
|
+
*
|
|
10862
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
10863
|
+
* set in percentages.
|
|
10864
|
+
*
|
|
10865
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10866
|
+
*
|
|
10867
|
+
* Default value is `"33/67/0"`.
|
|
10868
|
+
*
|
|
10869
|
+
*
|
|
10870
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
9627
10871
|
*/
|
|
9628
|
-
|
|
9629
|
-
|
|
10872
|
+
setTwoColumnsMidExpanded(
|
|
10873
|
+
/**
|
|
10874
|
+
* New value for property `twoColumnsMidExpanded`
|
|
10875
|
+
*/
|
|
10876
|
+
sTwoColumnsMidExpanded?: string
|
|
10877
|
+
): this;
|
|
10878
|
+
}
|
|
10879
|
+
/**
|
|
10880
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutDataForDesktop constructor.
|
|
10881
|
+
*/
|
|
10882
|
+
export interface $FlexibleColumnLayoutDataForDesktopSettings
|
|
10883
|
+
extends $LayoutDataSettings {
|
|
9630
10884
|
/**
|
|
9631
|
-
*
|
|
10885
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
10886
|
+
* set in percentages.
|
|
9632
10887
|
*/
|
|
9633
|
-
|
|
10888
|
+
twoColumnsBeginExpanded?: string | PropertyBindingInfo;
|
|
9634
10889
|
|
|
9635
10890
|
/**
|
|
9636
|
-
*
|
|
10891
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
10892
|
+
* set in percentages.
|
|
9637
10893
|
*/
|
|
9638
|
-
|
|
9639
|
-
}
|
|
9640
|
-
|
|
9641
|
-
/**
|
|
9642
|
-
* Event object of the FlexibleColumnLayout#midColumnNavigate event.
|
|
9643
|
-
*/
|
|
9644
|
-
export type FlexibleColumnLayout$MidColumnNavigateEvent = Event<
|
|
9645
|
-
FlexibleColumnLayout$MidColumnNavigateEventParameters,
|
|
9646
|
-
FlexibleColumnLayout
|
|
9647
|
-
>;
|
|
10894
|
+
twoColumnsMidExpanded?: string | PropertyBindingInfo;
|
|
9648
10895
|
|
|
9649
|
-
/**
|
|
9650
|
-
* Parameters of the FlexibleColumnLayout#stateChange event.
|
|
9651
|
-
*/
|
|
9652
|
-
export interface FlexibleColumnLayout$StateChangeEventParameters {
|
|
9653
10896
|
/**
|
|
9654
|
-
*
|
|
10897
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
10898
|
+
* values are set in percentages.
|
|
9655
10899
|
*/
|
|
9656
|
-
|
|
10900
|
+
threeColumnsBeginExpandedEndHidden?: string | PropertyBindingInfo;
|
|
9657
10901
|
|
|
9658
10902
|
/**
|
|
9659
|
-
*
|
|
9660
|
-
*
|
|
9661
|
-
*
|
|
9662
|
-
* Possible values are:
|
|
9663
|
-
* - 3 for browser size of 1280px or more
|
|
9664
|
-
* - 2 for browser size between 960px and 1280px
|
|
9665
|
-
* - 1 for browser size less than 960px
|
|
10903
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
10904
|
+
* set in percentages.
|
|
9666
10905
|
*/
|
|
9667
|
-
|
|
10906
|
+
threeColumnsEndExpanded?: string | PropertyBindingInfo;
|
|
9668
10907
|
|
|
9669
10908
|
/**
|
|
9670
|
-
*
|
|
9671
|
-
*
|
|
10909
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
10910
|
+
* set in percentages.
|
|
9672
10911
|
*/
|
|
9673
|
-
|
|
10912
|
+
threeColumnsMidExpanded?: string | PropertyBindingInfo;
|
|
9674
10913
|
|
|
9675
10914
|
/**
|
|
9676
|
-
*
|
|
9677
|
-
*
|
|
10915
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
10916
|
+
* values are set in percentages.
|
|
9678
10917
|
*/
|
|
9679
|
-
|
|
10918
|
+
threeColumnsMidExpandedEndHidden?: string | PropertyBindingInfo;
|
|
9680
10919
|
}
|
|
9681
|
-
|
|
9682
|
-
/**
|
|
9683
|
-
* Event object of the FlexibleColumnLayout#stateChange event.
|
|
9684
|
-
*/
|
|
9685
|
-
export type FlexibleColumnLayout$StateChangeEvent = Event<
|
|
9686
|
-
FlexibleColumnLayout$StateChangeEventParameters,
|
|
9687
|
-
FlexibleColumnLayout
|
|
9688
|
-
>;
|
|
9689
10920
|
}
|
|
9690
10921
|
|
|
9691
|
-
declare module "sap/f/
|
|
9692
|
-
import {
|
|
10922
|
+
declare module "sap/f/FlexibleColumnLayoutDataForTablet" {
|
|
10923
|
+
import {
|
|
10924
|
+
default as LayoutData,
|
|
10925
|
+
$LayoutDataSettings,
|
|
10926
|
+
} from "sap/ui/core/LayoutData";
|
|
9693
10927
|
|
|
9694
10928
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
9695
10929
|
|
|
9696
10930
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
9697
10931
|
|
|
9698
10932
|
/**
|
|
9699
|
-
*
|
|
9700
|
-
* control. For example, these landmarks are used by assistive technologies (such as screen readers) to
|
|
9701
|
-
* provide a meaningful columns overview.
|
|
10933
|
+
* Holds layout data for columns of `sap.f.FlexibleColumnLayout` on tablet.
|
|
9702
10934
|
*
|
|
9703
|
-
* @since 1.
|
|
10935
|
+
* @since 1.128
|
|
9704
10936
|
*/
|
|
9705
|
-
export default class
|
|
10937
|
+
export default class FlexibleColumnLayoutDataForTablet extends LayoutData {
|
|
9706
10938
|
/**
|
|
9707
|
-
* Constructor for a new `sap.f.
|
|
10939
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutDataForTablet`.
|
|
9708
10940
|
*
|
|
9709
10941
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
9710
10942
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -9712,12 +10944,12 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
9712
10944
|
*/
|
|
9713
10945
|
constructor(
|
|
9714
10946
|
/**
|
|
9715
|
-
* Initial settings for the new element
|
|
10947
|
+
* Initial settings for the new element.
|
|
9716
10948
|
*/
|
|
9717
|
-
mSettings?: $
|
|
10949
|
+
mSettings?: $FlexibleColumnLayoutDataForTabletSettings
|
|
9718
10950
|
);
|
|
9719
10951
|
/**
|
|
9720
|
-
* Constructor for a new `sap.f.
|
|
10952
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutDataForTablet`.
|
|
9721
10953
|
*
|
|
9722
10954
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
9723
10955
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -9729,16 +10961,16 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
9729
10961
|
*/
|
|
9730
10962
|
sId?: string,
|
|
9731
10963
|
/**
|
|
9732
|
-
* Initial settings for the new element
|
|
10964
|
+
* Initial settings for the new element.
|
|
9733
10965
|
*/
|
|
9734
|
-
mSettings?: $
|
|
10966
|
+
mSettings?: $FlexibleColumnLayoutDataForTabletSettings
|
|
9735
10967
|
);
|
|
9736
10968
|
|
|
9737
10969
|
/**
|
|
9738
|
-
* Creates a new subclass of class sap.f.
|
|
9739
|
-
*
|
|
10970
|
+
* Creates a new subclass of class sap.f.FlexibleColumnLayoutDataForTablet with name `sClassName` and enriches
|
|
10971
|
+
* it with the information contained in `oClassInfo`.
|
|
9740
10972
|
*
|
|
9741
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.
|
|
10973
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.LayoutData.extend}.
|
|
9742
10974
|
*
|
|
9743
10975
|
*
|
|
9744
10976
|
* @returns Created class / constructor function
|
|
@@ -9751,7 +10983,7 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
9751
10983
|
/**
|
|
9752
10984
|
* Object literal with information about the class
|
|
9753
10985
|
*/
|
|
9754
|
-
oClassInfo?: sap.ClassInfo<T,
|
|
10986
|
+
oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayoutDataForTablet>,
|
|
9755
10987
|
/**
|
|
9756
10988
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9757
10989
|
* used by this class
|
|
@@ -9759,290 +10991,239 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
9759
10991
|
FNMetaImpl?: Function
|
|
9760
10992
|
): Function;
|
|
9761
10993
|
/**
|
|
9762
|
-
* Returns a metadata object for class sap.f.
|
|
10994
|
+
* Returns a metadata object for class sap.f.FlexibleColumnLayoutDataForTablet.
|
|
9763
10995
|
*
|
|
9764
10996
|
*
|
|
9765
10997
|
* @returns Metadata object describing this class
|
|
9766
10998
|
*/
|
|
9767
10999
|
static getMetadata(): ElementMetadata;
|
|
9768
11000
|
/**
|
|
9769
|
-
* Gets current value of property {@link #
|
|
9770
|
-
*
|
|
9771
|
-
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
9772
|
-
* control.
|
|
9773
|
-
*
|
|
9774
|
-
* If not set, a predefined text is used.
|
|
9775
|
-
*
|
|
9776
|
-
*
|
|
9777
|
-
* @returns Value of property `firstColumnBackArrowLabel`
|
|
9778
|
-
*/
|
|
9779
|
-
getFirstColumnBackArrowLabel(): string;
|
|
9780
|
-
/**
|
|
9781
|
-
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
11001
|
+
* Gets current value of property {@link #getThreeColumnsBeginExpandedEndHidden threeColumnsBeginExpandedEndHidden}.
|
|
9782
11002
|
*
|
|
9783
|
-
*
|
|
9784
|
-
*
|
|
11003
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
11004
|
+
* values are set in percentages.
|
|
9785
11005
|
*
|
|
9786
|
-
*
|
|
11006
|
+
* Default value is `"67/33/0"`.
|
|
9787
11007
|
*
|
|
9788
11008
|
*
|
|
9789
|
-
* @returns Value of property `
|
|
11009
|
+
* @returns Value of property `threeColumnsBeginExpandedEndHidden`
|
|
9790
11010
|
*/
|
|
9791
|
-
|
|
11011
|
+
getThreeColumnsBeginExpandedEndHidden(): string;
|
|
9792
11012
|
/**
|
|
9793
|
-
* Gets current value of property {@link #
|
|
11013
|
+
* Gets current value of property {@link #getThreeColumnsEndExpanded threeColumnsEndExpanded}.
|
|
9794
11014
|
*
|
|
9795
|
-
*
|
|
9796
|
-
*
|
|
11015
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
11016
|
+
* set in percentages.
|
|
9797
11017
|
*
|
|
9798
|
-
*
|
|
11018
|
+
* Default value is `"0/33/67"`.
|
|
9799
11019
|
*
|
|
9800
11020
|
*
|
|
9801
|
-
* @returns Value of property `
|
|
11021
|
+
* @returns Value of property `threeColumnsEndExpanded`
|
|
9802
11022
|
*/
|
|
9803
|
-
|
|
11023
|
+
getThreeColumnsEndExpanded(): string;
|
|
9804
11024
|
/**
|
|
9805
|
-
* Gets current value of property {@link #
|
|
11025
|
+
* Gets current value of property {@link #getThreeColumnsMidExpanded threeColumnsMidExpanded}.
|
|
9806
11026
|
*
|
|
9807
|
-
*
|
|
9808
|
-
*
|
|
11027
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
11028
|
+
* set in percentages.
|
|
9809
11029
|
*
|
|
9810
|
-
*
|
|
11030
|
+
* Default value is `"0/67/33"`.
|
|
9811
11031
|
*
|
|
9812
11032
|
*
|
|
9813
|
-
* @returns Value of property `
|
|
11033
|
+
* @returns Value of property `threeColumnsMidExpanded`
|
|
9814
11034
|
*/
|
|
9815
|
-
|
|
11035
|
+
getThreeColumnsMidExpanded(): string;
|
|
9816
11036
|
/**
|
|
9817
|
-
* Gets current value of property {@link #
|
|
11037
|
+
* Gets current value of property {@link #getThreeColumnsMidExpandedEndHidden threeColumnsMidExpandedEndHidden}.
|
|
9818
11038
|
*
|
|
9819
|
-
*
|
|
9820
|
-
*
|
|
11039
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
11040
|
+
* values are set in percentages.
|
|
9821
11041
|
*
|
|
9822
|
-
*
|
|
11042
|
+
* Default value is `"33/67/0"`.
|
|
9823
11043
|
*
|
|
9824
11044
|
*
|
|
9825
|
-
* @returns Value of property `
|
|
11045
|
+
* @returns Value of property `threeColumnsMidExpandedEndHidden`
|
|
9826
11046
|
*/
|
|
9827
|
-
|
|
11047
|
+
getThreeColumnsMidExpandedEndHidden(): string;
|
|
9828
11048
|
/**
|
|
9829
|
-
* Gets current value of property {@link #
|
|
11049
|
+
* Gets current value of property {@link #getTwoColumnsBeginExpanded twoColumnsBeginExpanded}.
|
|
9830
11050
|
*
|
|
9831
|
-
*
|
|
9832
|
-
*
|
|
11051
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
11052
|
+
* set in percentages.
|
|
9833
11053
|
*
|
|
9834
|
-
*
|
|
11054
|
+
* Default value is `"67/33/0"`.
|
|
9835
11055
|
*
|
|
9836
11056
|
*
|
|
9837
|
-
* @returns Value of property `
|
|
11057
|
+
* @returns Value of property `twoColumnsBeginExpanded`
|
|
9838
11058
|
*/
|
|
9839
|
-
|
|
11059
|
+
getTwoColumnsBeginExpanded(): string;
|
|
9840
11060
|
/**
|
|
9841
|
-
* Gets current value of property {@link #
|
|
11061
|
+
* Gets current value of property {@link #getTwoColumnsMidExpanded twoColumnsMidExpanded}.
|
|
9842
11062
|
*
|
|
9843
|
-
*
|
|
9844
|
-
*
|
|
11063
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
11064
|
+
* set in percentages.
|
|
9845
11065
|
*
|
|
9846
|
-
*
|
|
11066
|
+
* Default value is `"33/67/0"`.
|
|
9847
11067
|
*
|
|
9848
11068
|
*
|
|
9849
|
-
* @returns Value of property `
|
|
11069
|
+
* @returns Value of property `twoColumnsMidExpanded`
|
|
9850
11070
|
*/
|
|
9851
|
-
|
|
11071
|
+
getTwoColumnsMidExpanded(): string;
|
|
9852
11072
|
/**
|
|
9853
|
-
* Sets a new value for property {@link #
|
|
11073
|
+
* Sets a new value for property {@link #getThreeColumnsBeginExpandedEndHidden threeColumnsBeginExpandedEndHidden}.
|
|
9854
11074
|
*
|
|
9855
|
-
*
|
|
9856
|
-
*
|
|
9857
|
-
*
|
|
9858
|
-
* If not set, a predefined text is used.
|
|
11075
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
11076
|
+
* values are set in percentages.
|
|
9859
11077
|
*
|
|
9860
11078
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9861
11079
|
*
|
|
9862
|
-
*
|
|
9863
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
9864
|
-
*/
|
|
9865
|
-
setFirstColumnBackArrowLabel(
|
|
9866
|
-
/**
|
|
9867
|
-
* New value for property `firstColumnBackArrowLabel`
|
|
9868
|
-
*/
|
|
9869
|
-
sFirstColumnBackArrowLabel?: string
|
|
9870
|
-
): this;
|
|
9871
|
-
/**
|
|
9872
|
-
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
9873
|
-
*
|
|
9874
|
-
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
9875
|
-
* control.
|
|
9876
|
-
*
|
|
9877
|
-
* If not set, a predefined text is used.
|
|
9878
|
-
*
|
|
9879
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11080
|
+
* Default value is `"67/33/0"`.
|
|
9880
11081
|
*
|
|
9881
11082
|
*
|
|
9882
11083
|
* @returns Reference to `this` in order to allow method chaining
|
|
9883
11084
|
*/
|
|
9884
|
-
|
|
11085
|
+
setThreeColumnsBeginExpandedEndHidden(
|
|
9885
11086
|
/**
|
|
9886
|
-
* New value for property `
|
|
11087
|
+
* New value for property `threeColumnsBeginExpandedEndHidden`
|
|
9887
11088
|
*/
|
|
9888
|
-
|
|
11089
|
+
sThreeColumnsBeginExpandedEndHidden?: string
|
|
9889
11090
|
): this;
|
|
9890
11091
|
/**
|
|
9891
|
-
* Sets a new value for property {@link #
|
|
9892
|
-
*
|
|
9893
|
-
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
9894
|
-
* control.
|
|
11092
|
+
* Sets a new value for property {@link #getThreeColumnsEndExpanded threeColumnsEndExpanded}.
|
|
9895
11093
|
*
|
|
9896
|
-
*
|
|
11094
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
11095
|
+
* set in percentages.
|
|
9897
11096
|
*
|
|
9898
11097
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9899
11098
|
*
|
|
11099
|
+
* Default value is `"0/33/67"`.
|
|
11100
|
+
*
|
|
9900
11101
|
*
|
|
9901
11102
|
* @returns Reference to `this` in order to allow method chaining
|
|
9902
11103
|
*/
|
|
9903
|
-
|
|
11104
|
+
setThreeColumnsEndExpanded(
|
|
9904
11105
|
/**
|
|
9905
|
-
* New value for property `
|
|
11106
|
+
* New value for property `threeColumnsEndExpanded`
|
|
9906
11107
|
*/
|
|
9907
|
-
|
|
11108
|
+
sThreeColumnsEndExpanded?: string
|
|
9908
11109
|
): this;
|
|
9909
11110
|
/**
|
|
9910
|
-
* Sets a new value for property {@link #
|
|
9911
|
-
*
|
|
9912
|
-
* Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
9913
|
-
* control.
|
|
11111
|
+
* Sets a new value for property {@link #getThreeColumnsMidExpanded threeColumnsMidExpanded}.
|
|
9914
11112
|
*
|
|
9915
|
-
*
|
|
11113
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
11114
|
+
* set in percentages.
|
|
9916
11115
|
*
|
|
9917
11116
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9918
11117
|
*
|
|
11118
|
+
* Default value is `"0/67/33"`.
|
|
11119
|
+
*
|
|
9919
11120
|
*
|
|
9920
11121
|
* @returns Reference to `this` in order to allow method chaining
|
|
9921
11122
|
*/
|
|
9922
|
-
|
|
11123
|
+
setThreeColumnsMidExpanded(
|
|
9923
11124
|
/**
|
|
9924
|
-
* New value for property `
|
|
11125
|
+
* New value for property `threeColumnsMidExpanded`
|
|
9925
11126
|
*/
|
|
9926
|
-
|
|
11127
|
+
sThreeColumnsMidExpanded?: string
|
|
9927
11128
|
): this;
|
|
9928
11129
|
/**
|
|
9929
|
-
* Sets a new value for property {@link #
|
|
11130
|
+
* Sets a new value for property {@link #getThreeColumnsMidExpandedEndHidden threeColumnsMidExpandedEndHidden}.
|
|
9930
11131
|
*
|
|
9931
|
-
*
|
|
9932
|
-
*
|
|
9933
|
-
*
|
|
9934
|
-
* If not set, a predefined text is used.
|
|
11132
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
11133
|
+
* values are set in percentages.
|
|
9935
11134
|
*
|
|
9936
11135
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9937
11136
|
*
|
|
11137
|
+
* Default value is `"33/67/0"`.
|
|
11138
|
+
*
|
|
9938
11139
|
*
|
|
9939
11140
|
* @returns Reference to `this` in order to allow method chaining
|
|
9940
11141
|
*/
|
|
9941
|
-
|
|
11142
|
+
setThreeColumnsMidExpandedEndHidden(
|
|
9942
11143
|
/**
|
|
9943
|
-
* New value for property `
|
|
11144
|
+
* New value for property `threeColumnsMidExpandedEndHidden`
|
|
9944
11145
|
*/
|
|
9945
|
-
|
|
11146
|
+
sThreeColumnsMidExpandedEndHidden?: string
|
|
9946
11147
|
): this;
|
|
9947
11148
|
/**
|
|
9948
|
-
* Sets a new value for property {@link #
|
|
9949
|
-
*
|
|
9950
|
-
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
9951
|
-
* control.
|
|
11149
|
+
* Sets a new value for property {@link #getTwoColumnsBeginExpanded twoColumnsBeginExpanded}.
|
|
9952
11150
|
*
|
|
9953
|
-
*
|
|
11151
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
11152
|
+
* set in percentages.
|
|
9954
11153
|
*
|
|
9955
11154
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9956
11155
|
*
|
|
11156
|
+
* Default value is `"67/33/0"`.
|
|
11157
|
+
*
|
|
9957
11158
|
*
|
|
9958
11159
|
* @returns Reference to `this` in order to allow method chaining
|
|
9959
11160
|
*/
|
|
9960
|
-
|
|
11161
|
+
setTwoColumnsBeginExpanded(
|
|
9961
11162
|
/**
|
|
9962
|
-
* New value for property `
|
|
11163
|
+
* New value for property `twoColumnsBeginExpanded`
|
|
9963
11164
|
*/
|
|
9964
|
-
|
|
11165
|
+
sTwoColumnsBeginExpanded?: string
|
|
9965
11166
|
): this;
|
|
9966
11167
|
/**
|
|
9967
|
-
* Sets a new value for property {@link #
|
|
9968
|
-
*
|
|
9969
|
-
* Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
9970
|
-
* control.
|
|
11168
|
+
* Sets a new value for property {@link #getTwoColumnsMidExpanded twoColumnsMidExpanded}.
|
|
9971
11169
|
*
|
|
9972
|
-
*
|
|
11170
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
11171
|
+
* set in percentages.
|
|
9973
11172
|
*
|
|
9974
11173
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9975
11174
|
*
|
|
11175
|
+
* Default value is `"33/67/0"`.
|
|
11176
|
+
*
|
|
9976
11177
|
*
|
|
9977
11178
|
* @returns Reference to `this` in order to allow method chaining
|
|
9978
11179
|
*/
|
|
9979
|
-
|
|
11180
|
+
setTwoColumnsMidExpanded(
|
|
9980
11181
|
/**
|
|
9981
|
-
* New value for property `
|
|
11182
|
+
* New value for property `twoColumnsMidExpanded`
|
|
9982
11183
|
*/
|
|
9983
|
-
|
|
11184
|
+
sTwoColumnsMidExpanded?: string
|
|
9984
11185
|
): this;
|
|
9985
11186
|
}
|
|
9986
11187
|
/**
|
|
9987
|
-
* Describes the settings that can be provided to the
|
|
11188
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutDataForTablet constructor.
|
|
9988
11189
|
*/
|
|
9989
|
-
export interface $
|
|
9990
|
-
extends $
|
|
9991
|
-
/**
|
|
9992
|
-
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
9993
|
-
* control.
|
|
9994
|
-
*
|
|
9995
|
-
* If not set, a predefined text is used.
|
|
9996
|
-
*/
|
|
9997
|
-
firstColumnLabel?: string | PropertyBindingInfo;
|
|
9998
|
-
|
|
11190
|
+
export interface $FlexibleColumnLayoutDataForTabletSettings
|
|
11191
|
+
extends $LayoutDataSettings {
|
|
9999
11192
|
/**
|
|
10000
|
-
*
|
|
10001
|
-
*
|
|
10002
|
-
*
|
|
10003
|
-
* If not set, a predefined text is used.
|
|
11193
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
11194
|
+
* set in percentages.
|
|
10004
11195
|
*/
|
|
10005
|
-
|
|
11196
|
+
twoColumnsBeginExpanded?: string | PropertyBindingInfo;
|
|
10006
11197
|
|
|
10007
11198
|
/**
|
|
10008
|
-
*
|
|
10009
|
-
*
|
|
10010
|
-
*
|
|
10011
|
-
* If not set, a predefined text is used.
|
|
11199
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
11200
|
+
* set in percentages.
|
|
10012
11201
|
*/
|
|
10013
|
-
|
|
11202
|
+
twoColumnsMidExpanded?: string | PropertyBindingInfo;
|
|
10014
11203
|
|
|
10015
11204
|
/**
|
|
10016
|
-
*
|
|
10017
|
-
*
|
|
10018
|
-
*
|
|
10019
|
-
* If not set, a predefined text is used.
|
|
11205
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
11206
|
+
* values are set in percentages.
|
|
10020
11207
|
*/
|
|
10021
|
-
|
|
11208
|
+
threeColumnsBeginExpandedEndHidden?: string | PropertyBindingInfo;
|
|
10022
11209
|
|
|
10023
11210
|
/**
|
|
10024
|
-
*
|
|
10025
|
-
*
|
|
10026
|
-
*
|
|
10027
|
-
* If not set, a predefined text is used.
|
|
11211
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
11212
|
+
* set in percentages.
|
|
10028
11213
|
*/
|
|
10029
|
-
|
|
11214
|
+
threeColumnsEndExpanded?: string | PropertyBindingInfo;
|
|
10030
11215
|
|
|
10031
11216
|
/**
|
|
10032
|
-
*
|
|
10033
|
-
*
|
|
10034
|
-
*
|
|
10035
|
-
* If not set, a predefined text is used.
|
|
11217
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
11218
|
+
* set in percentages.
|
|
10036
11219
|
*/
|
|
10037
|
-
|
|
11220
|
+
threeColumnsMidExpanded?: string | PropertyBindingInfo;
|
|
10038
11221
|
|
|
10039
11222
|
/**
|
|
10040
|
-
*
|
|
10041
|
-
*
|
|
10042
|
-
*
|
|
10043
|
-
* If not set, a predefined text is used.
|
|
11223
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
11224
|
+
* values are set in percentages.
|
|
10044
11225
|
*/
|
|
10045
|
-
|
|
11226
|
+
threeColumnsMidExpandedEndHidden?: string | PropertyBindingInfo;
|
|
10046
11227
|
}
|
|
10047
11228
|
}
|
|
10048
11229
|
|
|
@@ -22066,6 +23247,8 @@ declare namespace sap {
|
|
|
22066
23247
|
|
|
22067
23248
|
"sap/f/cards/BaseHeader": undefined;
|
|
22068
23249
|
|
|
23250
|
+
"sap/f/cards/CardBadgeCustomData": undefined;
|
|
23251
|
+
|
|
22069
23252
|
"sap/f/cards/Header": undefined;
|
|
22070
23253
|
|
|
22071
23254
|
"sap/f/cards/loading/PlaceholderBaseRenderer": undefined;
|
|
@@ -22088,6 +23271,12 @@ declare namespace sap {
|
|
|
22088
23271
|
|
|
22089
23272
|
"sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo": undefined;
|
|
22090
23273
|
|
|
23274
|
+
"sap/f/FlexibleColumnLayoutData": undefined;
|
|
23275
|
+
|
|
23276
|
+
"sap/f/FlexibleColumnLayoutDataForDesktop": undefined;
|
|
23277
|
+
|
|
23278
|
+
"sap/f/FlexibleColumnLayoutDataForTablet": undefined;
|
|
23279
|
+
|
|
22091
23280
|
"sap/f/FlexibleColumnLayoutSemanticHelper": undefined;
|
|
22092
23281
|
|
|
22093
23282
|
"sap/f/GridContainer": undefined;
|