@openui5/types 1.126.1 → 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/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.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
  *
@@ -1030,8 +1047,6 @@ declare module "sap/f/AvatarGroupItem" {
1030
1047
  * rendering each `AvatarGroupItem` instance in the {@link sap.f.AvatarGroup} control.
1031
1048
  *
1032
1049
  * @since 1.73
1033
- * @experimental (since 1.73) - This class is experimental and provides only limited functionality. Also
1034
- * the API might be changed in future.
1035
1050
  */
1036
1051
  export default class AvatarGroupItem extends Control {
1037
1052
  /**
@@ -1189,9 +1204,6 @@ declare module "sap/f/AvatarGroupItem" {
1189
1204
  }
1190
1205
  /**
1191
1206
  * Describes the settings that can be provided to the AvatarGroupItem constructor.
1192
- *
1193
- * @experimental (since 1.73) - This class is experimental and provides only limited functionality. Also
1194
- * the API might be changed in future.
1195
1207
  */
1196
1208
  export interface $AvatarGroupItemSettings extends $ControlSettings {
1197
1209
  /**
@@ -2025,6 +2037,234 @@ declare module "sap/f/cards/BaseHeader" {
2025
2037
  }
2026
2038
  }
2027
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
+
2028
2268
  declare module "sap/f/cards/Header" {
2029
2269
  import {
2030
2270
  default as BaseHeader,
@@ -5349,6 +5589,19 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
5349
5589
  getFooterRole():
5350
5590
  | AccessibleLandmarkRole
5351
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;
5352
5605
  /**
5353
5606
  * Gets current value of property {@link #getHeaderLabel headerLabel}.
5354
5607
  *
@@ -5481,6 +5734,26 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
5481
5734
  */
5482
5735
  sFooterRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
5483
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;
5484
5757
  /**
5485
5758
  * Sets a new value for property {@link #getHeaderLabel headerLabel}.
5486
5759
  *
@@ -5636,6 +5909,16 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
5636
5909
  * is set.
5637
5910
  */
5638
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;
5639
5922
  }
5640
5923
  }
5641
5924
 
@@ -7557,6 +7840,61 @@ declare module "sap/f/FlexibleColumnLayout" {
7557
7840
  */
7558
7841
  oListener?: object
7559
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;
7560
7898
  /**
7561
7899
  * Attaches event handler `fnFunction` to the {@link #event:endColumnNavigate endColumnNavigate} event of
7562
7900
  * this `sap.f.FlexibleColumnLayout`.
@@ -8015,26 +8353,48 @@ declare module "sap/f/FlexibleColumnLayout" {
8015
8353
  oListener?: object
8016
8354
  ): this;
8017
8355
  /**
8018
- * Detaches event handler `fnFunction` from the {@link #event:endColumnNavigate endColumnNavigate} event
8019
- * of this `sap.f.FlexibleColumnLayout`.
8356
+ * Detaches event handler `fnFunction` from the {@link #event:columnsDistributionChange columnsDistributionChange }
8357
+ * event of this `sap.f.FlexibleColumnLayout`.
8020
8358
  *
8021
8359
  * The passed function and listener object must match the ones used for event registration.
8022
8360
  *
8361
+ * @since 1.128
8023
8362
  *
8024
8363
  * @returns Reference to `this` in order to allow method chaining
8025
8364
  */
8026
- detachEndColumnNavigate(
8365
+ detachColumnsDistributionChange(
8027
8366
  /**
8028
8367
  * The function to be called, when the event occurs
8029
8368
  */
8030
- fnFunction: (p1: FlexibleColumnLayout$EndColumnNavigateEvent) => void,
8369
+ fnFunction: (
8370
+ p1: FlexibleColumnLayout$ColumnsDistributionChangeEvent
8371
+ ) => void,
8031
8372
  /**
8032
8373
  * Context object on which the given function had to be called
8033
8374
  */
8034
8375
  oListener?: object
8035
8376
  ): this;
8036
8377
  /**
8037
- * Detaches event handler `fnFunction` from the {@link #event:midColumnNavigate midColumnNavigate} 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
8038
8398
  * of this `sap.f.FlexibleColumnLayout`.
8039
8399
  *
8040
8400
  * The passed function and listener object must match the ones used for event registration.
@@ -8139,6 +8499,20 @@ declare module "sap/f/FlexibleColumnLayout" {
8139
8499
  */
8140
8500
  mParameters?: FlexibleColumnLayout$ColumnResizeEventParameters
8141
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;
8142
8516
  /**
8143
8517
  * Fires event {@link #event:endColumnNavigate endColumnNavigate} to attached listeners.
8144
8518
  *
@@ -9237,6 +9611,15 @@ declare module "sap/f/FlexibleColumnLayout" {
9237
9611
  * @since 1.76
9238
9612
  */
9239
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;
9240
9623
  }
9241
9624
 
9242
9625
  /**
@@ -9523,6 +9906,34 @@ declare module "sap/f/FlexibleColumnLayout" {
9523
9906
  FlexibleColumnLayout
9524
9907
  >;
9525
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
+
9526
9937
  /**
9527
9938
  * Parameters of the FlexibleColumnLayout#endColumnNavigate event.
9528
9939
  */
@@ -9625,91 +10036,907 @@ declare module "sap/f/FlexibleColumnLayout" {
9625
10036
  /**
9626
10037
  * Determines whether this is a back navigation, triggered by back().
9627
10038
  */
9628
- isBack?: boolean;
9629
-
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;
9630
10859
  /**
9631
- * Determines whether this is a navigation to the root page, triggered by backToTop().
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
9632
10871
  */
9633
- isBackToTop?: boolean;
9634
-
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 {
9635
10884
  /**
9636
- * Determines whether this was a navigation to a specific page, triggered by backToPage().
10885
+ * Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
10886
+ * set in percentages.
9637
10887
  */
9638
- isBackToPage?: boolean;
10888
+ twoColumnsBeginExpanded?: string | PropertyBindingInfo;
9639
10889
 
9640
10890
  /**
9641
- * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
10891
+ * Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
10892
+ * set in percentages.
9642
10893
  */
9643
- direction?: string;
9644
- }
9645
-
9646
- /**
9647
- * Event object of the FlexibleColumnLayout#midColumnNavigate event.
9648
- */
9649
- export type FlexibleColumnLayout$MidColumnNavigateEvent = Event<
9650
- FlexibleColumnLayout$MidColumnNavigateEventParameters,
9651
- FlexibleColumnLayout
9652
- >;
10894
+ twoColumnsMidExpanded?: string | PropertyBindingInfo;
9653
10895
 
9654
- /**
9655
- * Parameters of the FlexibleColumnLayout#stateChange event.
9656
- */
9657
- export interface FlexibleColumnLayout$StateChangeEventParameters {
9658
10896
  /**
9659
- * The value of the `layout` property
10897
+ * Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
10898
+ * values are set in percentages.
9660
10899
  */
9661
- layout?: LayoutType | keyof typeof LayoutType;
10900
+ threeColumnsBeginExpandedEndHidden?: string | PropertyBindingInfo;
9662
10901
 
9663
10902
  /**
9664
- * The maximum number of columns that can be displayed at once based on the available screen size and control
9665
- * settings.
9666
- *
9667
- * Possible values are:
9668
- * - 3 for browser size of 1280px or more
9669
- * - 2 for browser size between 960px and 1280px
9670
- * - 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.
9671
10905
  */
9672
- maxColumnsCount?: int;
10906
+ threeColumnsEndExpanded?: string | PropertyBindingInfo;
9673
10907
 
9674
10908
  /**
9675
- * Indicates whether the layout changed as a result of the user clicking a column separator's arrow or dragging
9676
- * the column separators
10909
+ * Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
10910
+ * set in percentages.
9677
10911
  */
9678
- isNavigationArrow?: boolean;
10912
+ threeColumnsMidExpanded?: string | PropertyBindingInfo;
9679
10913
 
9680
10914
  /**
9681
- * Indicates whether the maximum number of columns that can be displayed at once changed due to resize of
9682
- * the entire browser window
10915
+ * Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
10916
+ * values are set in percentages.
9683
10917
  */
9684
- isResize?: boolean;
10918
+ threeColumnsMidExpandedEndHidden?: string | PropertyBindingInfo;
9685
10919
  }
9686
-
9687
- /**
9688
- * Event object of the FlexibleColumnLayout#stateChange event.
9689
- */
9690
- export type FlexibleColumnLayout$StateChangeEvent = Event<
9691
- FlexibleColumnLayout$StateChangeEventParameters,
9692
- FlexibleColumnLayout
9693
- >;
9694
10920
  }
9695
10921
 
9696
- declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
9697
- import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
10922
+ declare module "sap/f/FlexibleColumnLayoutDataForTablet" {
10923
+ import {
10924
+ default as LayoutData,
10925
+ $LayoutDataSettings,
10926
+ } from "sap/ui/core/LayoutData";
9698
10927
 
9699
10928
  import ElementMetadata from "sap/ui/core/ElementMetadata";
9700
10929
 
9701
10930
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
9702
10931
 
9703
10932
  /**
9704
- * Settings for accessible landmarks which can be applied to the container elements of a `sap.f.FlexibleColumnLayout`
9705
- * control. For example, these landmarks are used by assistive technologies (such as screen readers) to
9706
- * provide a meaningful columns overview.
10933
+ * Holds layout data for columns of `sap.f.FlexibleColumnLayout` on tablet.
9707
10934
  *
9708
- * @since 1.95
10935
+ * @since 1.128
9709
10936
  */
9710
- export default class FlexibleColumnLayoutAccessibleLandmarkInfo extends UI5Element {
10937
+ export default class FlexibleColumnLayoutDataForTablet extends LayoutData {
9711
10938
  /**
9712
- * Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
10939
+ * Constructor for a new `sap.f.FlexibleColumnLayoutDataForTablet`.
9713
10940
  *
9714
10941
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
9715
10942
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -9717,12 +10944,12 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
9717
10944
  */
9718
10945
  constructor(
9719
10946
  /**
9720
- * Initial settings for the new element
10947
+ * Initial settings for the new element.
9721
10948
  */
9722
- mSettings?: $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
10949
+ mSettings?: $FlexibleColumnLayoutDataForTabletSettings
9723
10950
  );
9724
10951
  /**
9725
- * Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
10952
+ * Constructor for a new `sap.f.FlexibleColumnLayoutDataForTablet`.
9726
10953
  *
9727
10954
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
9728
10955
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -9734,16 +10961,16 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
9734
10961
  */
9735
10962
  sId?: string,
9736
10963
  /**
9737
- * Initial settings for the new element
10964
+ * Initial settings for the new element.
9738
10965
  */
9739
- mSettings?: $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
10966
+ mSettings?: $FlexibleColumnLayoutDataForTabletSettings
9740
10967
  );
9741
10968
 
9742
10969
  /**
9743
- * Creates a new subclass of class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo with name `sClassName`
9744
- * and enriches it with the information contained in `oClassInfo`.
10970
+ * Creates a new subclass of class sap.f.FlexibleColumnLayoutDataForTablet with name `sClassName` and enriches
10971
+ * it with the information contained in `oClassInfo`.
9745
10972
  *
9746
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
10973
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.LayoutData.extend}.
9747
10974
  *
9748
10975
  *
9749
10976
  * @returns Created class / constructor function
@@ -9756,7 +10983,7 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
9756
10983
  /**
9757
10984
  * Object literal with information about the class
9758
10985
  */
9759
- oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayoutAccessibleLandmarkInfo>,
10986
+ oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayoutDataForTablet>,
9760
10987
  /**
9761
10988
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9762
10989
  * used by this class
@@ -9764,290 +10991,239 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
9764
10991
  FNMetaImpl?: Function
9765
10992
  ): Function;
9766
10993
  /**
9767
- * Returns a metadata object for class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo.
10994
+ * Returns a metadata object for class sap.f.FlexibleColumnLayoutDataForTablet.
9768
10995
  *
9769
10996
  *
9770
10997
  * @returns Metadata object describing this class
9771
10998
  */
9772
10999
  static getMetadata(): ElementMetadata;
9773
11000
  /**
9774
- * Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
9775
- *
9776
- * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
9777
- * control.
9778
- *
9779
- * If not set, a predefined text is used.
9780
- *
9781
- *
9782
- * @returns Value of property `firstColumnBackArrowLabel`
9783
- */
9784
- getFirstColumnBackArrowLabel(): string;
9785
- /**
9786
- * Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
11001
+ * Gets current value of property {@link #getThreeColumnsBeginExpandedEndHidden threeColumnsBeginExpandedEndHidden}.
9787
11002
  *
9788
- * Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
9789
- * control.
11003
+ * Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
11004
+ * values are set in percentages.
9790
11005
  *
9791
- * If not set, a predefined text is used.
11006
+ * Default value is `"67/33/0"`.
9792
11007
  *
9793
11008
  *
9794
- * @returns Value of property `firstColumnLabel`
11009
+ * @returns Value of property `threeColumnsBeginExpandedEndHidden`
9795
11010
  */
9796
- getFirstColumnLabel(): string;
11011
+ getThreeColumnsBeginExpandedEndHidden(): string;
9797
11012
  /**
9798
- * Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
11013
+ * Gets current value of property {@link #getThreeColumnsEndExpanded threeColumnsEndExpanded}.
9799
11014
  *
9800
- * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
9801
- * control.
11015
+ * Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
11016
+ * set in percentages.
9802
11017
  *
9803
- * If not set, a predefined text is used.
11018
+ * Default value is `"0/33/67"`.
9804
11019
  *
9805
11020
  *
9806
- * @returns Value of property `lastColumnForwardArrowLabel`
11021
+ * @returns Value of property `threeColumnsEndExpanded`
9807
11022
  */
9808
- getLastColumnForwardArrowLabel(): string;
11023
+ getThreeColumnsEndExpanded(): string;
9809
11024
  /**
9810
- * Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
11025
+ * Gets current value of property {@link #getThreeColumnsMidExpanded threeColumnsMidExpanded}.
9811
11026
  *
9812
- * Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
9813
- * control.
11027
+ * Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
11028
+ * set in percentages.
9814
11029
  *
9815
- * If not set, a predefined text is used.
11030
+ * Default value is `"0/67/33"`.
9816
11031
  *
9817
11032
  *
9818
- * @returns Value of property `lastColumnLabel`
11033
+ * @returns Value of property `threeColumnsMidExpanded`
9819
11034
  */
9820
- getLastColumnLabel(): string;
11035
+ getThreeColumnsMidExpanded(): string;
9821
11036
  /**
9822
- * Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
11037
+ * Gets current value of property {@link #getThreeColumnsMidExpandedEndHidden threeColumnsMidExpandedEndHidden}.
9823
11038
  *
9824
- * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
9825
- * control.
11039
+ * Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
11040
+ * values are set in percentages.
9826
11041
  *
9827
- * If not set, a predefined text is used.
11042
+ * Default value is `"33/67/0"`.
9828
11043
  *
9829
11044
  *
9830
- * @returns Value of property `middleColumnBackArrowLabel`
11045
+ * @returns Value of property `threeColumnsMidExpandedEndHidden`
9831
11046
  */
9832
- getMiddleColumnBackArrowLabel(): string;
11047
+ getThreeColumnsMidExpandedEndHidden(): string;
9833
11048
  /**
9834
- * Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
11049
+ * Gets current value of property {@link #getTwoColumnsBeginExpanded twoColumnsBeginExpanded}.
9835
11050
  *
9836
- * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
9837
- * control.
11051
+ * Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
11052
+ * set in percentages.
9838
11053
  *
9839
- * If not set, a predefined text is used.
11054
+ * Default value is `"67/33/0"`.
9840
11055
  *
9841
11056
  *
9842
- * @returns Value of property `middleColumnForwardArrowLabel`
11057
+ * @returns Value of property `twoColumnsBeginExpanded`
9843
11058
  */
9844
- getMiddleColumnForwardArrowLabel(): string;
11059
+ getTwoColumnsBeginExpanded(): string;
9845
11060
  /**
9846
- * Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
11061
+ * Gets current value of property {@link #getTwoColumnsMidExpanded twoColumnsMidExpanded}.
9847
11062
  *
9848
- * Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
9849
- * control.
11063
+ * Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
11064
+ * set in percentages.
9850
11065
  *
9851
- * If not set, a predefined text is used.
11066
+ * Default value is `"33/67/0"`.
9852
11067
  *
9853
11068
  *
9854
- * @returns Value of property `middleColumnLabel`
11069
+ * @returns Value of property `twoColumnsMidExpanded`
9855
11070
  */
9856
- getMiddleColumnLabel(): string;
11071
+ getTwoColumnsMidExpanded(): string;
9857
11072
  /**
9858
- * Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
9859
- *
9860
- * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
9861
- * control.
11073
+ * Sets a new value for property {@link #getThreeColumnsBeginExpandedEndHidden threeColumnsBeginExpandedEndHidden}.
9862
11074
  *
9863
- * 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.
9864
11077
  *
9865
11078
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9866
11079
  *
9867
- *
9868
- * @returns Reference to `this` in order to allow method chaining
9869
- */
9870
- setFirstColumnBackArrowLabel(
9871
- /**
9872
- * New value for property `firstColumnBackArrowLabel`
9873
- */
9874
- sFirstColumnBackArrowLabel?: string
9875
- ): this;
9876
- /**
9877
- * Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
9878
- *
9879
- * Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
9880
- * control.
9881
- *
9882
- * If not set, a predefined text is used.
9883
- *
9884
- * 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"`.
9885
11081
  *
9886
11082
  *
9887
11083
  * @returns Reference to `this` in order to allow method chaining
9888
11084
  */
9889
- setFirstColumnLabel(
11085
+ setThreeColumnsBeginExpandedEndHidden(
9890
11086
  /**
9891
- * New value for property `firstColumnLabel`
11087
+ * New value for property `threeColumnsBeginExpandedEndHidden`
9892
11088
  */
9893
- sFirstColumnLabel?: string
11089
+ sThreeColumnsBeginExpandedEndHidden?: string
9894
11090
  ): this;
9895
11091
  /**
9896
- * Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
11092
+ * Sets a new value for property {@link #getThreeColumnsEndExpanded threeColumnsEndExpanded}.
9897
11093
  *
9898
- * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
9899
- * control.
9900
- *
9901
- * If not set, a predefined text is used.
11094
+ * Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
11095
+ * set in percentages.
9902
11096
  *
9903
11097
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9904
11098
  *
11099
+ * Default value is `"0/33/67"`.
11100
+ *
9905
11101
  *
9906
11102
  * @returns Reference to `this` in order to allow method chaining
9907
11103
  */
9908
- setLastColumnForwardArrowLabel(
11104
+ setThreeColumnsEndExpanded(
9909
11105
  /**
9910
- * New value for property `lastColumnForwardArrowLabel`
11106
+ * New value for property `threeColumnsEndExpanded`
9911
11107
  */
9912
- sLastColumnForwardArrowLabel?: string
11108
+ sThreeColumnsEndExpanded?: string
9913
11109
  ): this;
9914
11110
  /**
9915
- * Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
9916
- *
9917
- * Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
9918
- * control.
11111
+ * Sets a new value for property {@link #getThreeColumnsMidExpanded threeColumnsMidExpanded}.
9919
11112
  *
9920
- * If not set, a predefined text is used.
11113
+ * Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
11114
+ * set in percentages.
9921
11115
  *
9922
11116
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9923
11117
  *
11118
+ * Default value is `"0/67/33"`.
11119
+ *
9924
11120
  *
9925
11121
  * @returns Reference to `this` in order to allow method chaining
9926
11122
  */
9927
- setLastColumnLabel(
11123
+ setThreeColumnsMidExpanded(
9928
11124
  /**
9929
- * New value for property `lastColumnLabel`
11125
+ * New value for property `threeColumnsMidExpanded`
9930
11126
  */
9931
- sLastColumnLabel?: string
11127
+ sThreeColumnsMidExpanded?: string
9932
11128
  ): this;
9933
11129
  /**
9934
- * Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
9935
- *
9936
- * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
9937
- * control.
11130
+ * Sets a new value for property {@link #getThreeColumnsMidExpandedEndHidden threeColumnsMidExpandedEndHidden}.
9938
11131
  *
9939
- * 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.
9940
11134
  *
9941
11135
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9942
11136
  *
11137
+ * Default value is `"33/67/0"`.
11138
+ *
9943
11139
  *
9944
11140
  * @returns Reference to `this` in order to allow method chaining
9945
11141
  */
9946
- setMiddleColumnBackArrowLabel(
11142
+ setThreeColumnsMidExpandedEndHidden(
9947
11143
  /**
9948
- * New value for property `middleColumnBackArrowLabel`
11144
+ * New value for property `threeColumnsMidExpandedEndHidden`
9949
11145
  */
9950
- sMiddleColumnBackArrowLabel?: string
11146
+ sThreeColumnsMidExpandedEndHidden?: string
9951
11147
  ): this;
9952
11148
  /**
9953
- * Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
9954
- *
9955
- * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
9956
- * control.
11149
+ * Sets a new value for property {@link #getTwoColumnsBeginExpanded twoColumnsBeginExpanded}.
9957
11150
  *
9958
- * If not set, a predefined text is used.
11151
+ * Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
11152
+ * set in percentages.
9959
11153
  *
9960
11154
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9961
11155
  *
11156
+ * Default value is `"67/33/0"`.
11157
+ *
9962
11158
  *
9963
11159
  * @returns Reference to `this` in order to allow method chaining
9964
11160
  */
9965
- setMiddleColumnForwardArrowLabel(
11161
+ setTwoColumnsBeginExpanded(
9966
11162
  /**
9967
- * New value for property `middleColumnForwardArrowLabel`
11163
+ * New value for property `twoColumnsBeginExpanded`
9968
11164
  */
9969
- sMiddleColumnForwardArrowLabel?: string
11165
+ sTwoColumnsBeginExpanded?: string
9970
11166
  ): this;
9971
11167
  /**
9972
- * Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
11168
+ * Sets a new value for property {@link #getTwoColumnsMidExpanded twoColumnsMidExpanded}.
9973
11169
  *
9974
- * Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
9975
- * control.
9976
- *
9977
- * If not set, a predefined text is used.
11170
+ * Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
11171
+ * set in percentages.
9978
11172
  *
9979
11173
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9980
11174
  *
11175
+ * Default value is `"33/67/0"`.
11176
+ *
9981
11177
  *
9982
11178
  * @returns Reference to `this` in order to allow method chaining
9983
11179
  */
9984
- setMiddleColumnLabel(
11180
+ setTwoColumnsMidExpanded(
9985
11181
  /**
9986
- * New value for property `middleColumnLabel`
11182
+ * New value for property `twoColumnsMidExpanded`
9987
11183
  */
9988
- sMiddleColumnLabel?: string
11184
+ sTwoColumnsMidExpanded?: string
9989
11185
  ): this;
9990
11186
  }
9991
11187
  /**
9992
- * Describes the settings that can be provided to the FlexibleColumnLayoutAccessibleLandmarkInfo constructor.
11188
+ * Describes the settings that can be provided to the FlexibleColumnLayoutDataForTablet constructor.
9993
11189
  */
9994
- export interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
9995
- extends $ElementSettings {
9996
- /**
9997
- * Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
9998
- * control.
9999
- *
10000
- * If not set, a predefined text is used.
10001
- */
10002
- firstColumnLabel?: string | PropertyBindingInfo;
10003
-
11190
+ export interface $FlexibleColumnLayoutDataForTabletSettings
11191
+ extends $LayoutDataSettings {
10004
11192
  /**
10005
- * Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
10006
- * control.
10007
- *
10008
- * 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.
10009
11195
  */
10010
- middleColumnLabel?: string | PropertyBindingInfo;
11196
+ twoColumnsBeginExpanded?: string | PropertyBindingInfo;
10011
11197
 
10012
11198
  /**
10013
- * Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
10014
- * control.
10015
- *
10016
- * 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.
10017
11201
  */
10018
- lastColumnLabel?: string | PropertyBindingInfo;
11202
+ twoColumnsMidExpanded?: string | PropertyBindingInfo;
10019
11203
 
10020
11204
  /**
10021
- * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
10022
- * control.
10023
- *
10024
- * 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.
10025
11207
  */
10026
- firstColumnBackArrowLabel?: string | PropertyBindingInfo;
11208
+ threeColumnsBeginExpandedEndHidden?: string | PropertyBindingInfo;
10027
11209
 
10028
11210
  /**
10029
- * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
10030
- * control.
10031
- *
10032
- * 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.
10033
11213
  */
10034
- middleColumnForwardArrowLabel?: string | PropertyBindingInfo;
11214
+ threeColumnsEndExpanded?: string | PropertyBindingInfo;
10035
11215
 
10036
11216
  /**
10037
- * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
10038
- * control.
10039
- *
10040
- * 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.
10041
11219
  */
10042
- middleColumnBackArrowLabel?: string | PropertyBindingInfo;
11220
+ threeColumnsMidExpanded?: string | PropertyBindingInfo;
10043
11221
 
10044
11222
  /**
10045
- * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
10046
- * control.
10047
- *
10048
- * 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.
10049
11225
  */
10050
- lastColumnForwardArrowLabel?: string | PropertyBindingInfo;
11226
+ threeColumnsMidExpandedEndHidden?: string | PropertyBindingInfo;
10051
11227
  }
10052
11228
  }
10053
11229
 
@@ -12863,8 +14039,6 @@ declare module "sap/f/ProductSwitch" {
12863
14039
  * A layout control that provides specific configuration about how the items should be displayed.
12864
14040
  *
12865
14041
  * @since 1.72
12866
- * @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
12867
- * the API might be changed in future.
12868
14042
  */
12869
14043
  export default class ProductSwitch extends Control {
12870
14044
  /**
@@ -13106,9 +14280,6 @@ declare module "sap/f/ProductSwitch" {
13106
14280
  }
13107
14281
  /**
13108
14282
  * Describes the settings that can be provided to the ProductSwitch constructor.
13109
- *
13110
- * @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
13111
- * the API might be changed in future.
13112
14283
  */
13113
14284
  export interface $ProductSwitchSettings extends $ControlSettings {
13114
14285
  /**
@@ -13165,8 +14336,6 @@ declare module "sap/f/ProductSwitchItem" {
13165
14336
  * **Note:** `ProductSwitchItem` is not supported when used outside of `ProductSwitch`.
13166
14337
  *
13167
14338
  * @since 1.72
13168
- * @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
13169
- * the API might be changed in future.
13170
14339
  */
13171
14340
  export default class ProductSwitchItem extends Control {
13172
14341
  /**
@@ -13373,9 +14542,6 @@ declare module "sap/f/ProductSwitchItem" {
13373
14542
  }
13374
14543
  /**
13375
14544
  * Describes the settings that can be provided to the ProductSwitchItem constructor.
13376
- *
13377
- * @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
13378
- * the API might be changed in future.
13379
14545
  */
13380
14546
  export interface $ProductSwitchItemSettings extends $ControlSettings {
13381
14547
  /**
@@ -22081,6 +23247,8 @@ declare namespace sap {
22081
23247
 
22082
23248
  "sap/f/cards/BaseHeader": undefined;
22083
23249
 
23250
+ "sap/f/cards/CardBadgeCustomData": undefined;
23251
+
22084
23252
  "sap/f/cards/Header": undefined;
22085
23253
 
22086
23254
  "sap/f/cards/loading/PlaceholderBaseRenderer": undefined;
@@ -22103,6 +23271,12 @@ declare namespace sap {
22103
23271
 
22104
23272
  "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo": undefined;
22105
23273
 
23274
+ "sap/f/FlexibleColumnLayoutData": undefined;
23275
+
23276
+ "sap/f/FlexibleColumnLayoutDataForDesktop": undefined;
23277
+
23278
+ "sap/f/FlexibleColumnLayoutDataForTablet": undefined;
23279
+
22106
23280
  "sap/f/FlexibleColumnLayoutSemanticHelper": undefined;
22107
23281
 
22108
23282
  "sap/f/GridContainer": undefined;