@openui5/types 1.142.0 → 1.143.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/types",
3
- "version": "1.142.0",
3
+ "version": "1.143.0",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://ui5.github.io/typescript",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -21074,6 +21074,13 @@ declare module "sap/f/ShellBar" {
21074
21074
  import Button from "sap/m/Button";
21075
21075
 
21076
21076
  /**
21077
+ * **Note:** `sap.f.ShellBar` is not UXC-compliant and will no longer be aligned with future UXC design
21078
+ * updates. For UXC-compliant applications, use the ui5-shellbar web component instead. It can be integrated
21079
+ * seamlessly using ui5-tooling-modules. See {@link https://ui5.sap.com/#/topic/1c80793df5bb424091954697fc0b2828 Using Web Components}.
21080
+ *
21081
+ *
21082
+ *
21083
+ *
21077
21084
  * A horizontal bar control holding multiple child controls used as application shell header.
21078
21085
  *
21079
21086
  * Overview:
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -2224,6 +2224,8 @@ declare module "sap/m/library" {
2224
2224
  None = "None",
2225
2225
  /**
2226
2226
  * Right-positioned single selection mode (only one list item can be selected).
2227
+ *
2228
+ * @deprecated As of version 1.143. replaced by {@link sap.m.ListMode.SingleSelectLeft}.
2227
2229
  */
2228
2230
  SingleSelect = "SingleSelect",
2229
2231
  /**
@@ -2325,6 +2327,34 @@ declare module "sap/m/library" {
2325
2327
  */
2326
2328
  Split = "Split",
2327
2329
  }
2330
+ /**
2331
+ * Available color set variants for the {@link sap.m.MessageStrip} control.
2332
+ *
2333
+ * **Notes:**
2334
+ * - The Default color set uses standard semantic colors based on the message type (Information, Success,
2335
+ * Warning, Error).
2336
+ * - ColorSet1 and ColorSet2 provide custom color palettes with 10 predefined color schemes each.
2337
+ * - When using ColorSet1 or ColorSet2, the `colorScheme` property determines which color variation is
2338
+ * applied.
2339
+ *
2340
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'MessageStripColorSet'.
2341
+ *
2342
+ * @since 1.143.0
2343
+ */
2344
+ export enum MessageStripColorSet {
2345
+ /**
2346
+ * Uses a custom color palette with predefined color schemes
2347
+ */
2348
+ ColorSet1 = "ColorSet1",
2349
+ /**
2350
+ * Uses an alternative custom color palette with predefined color schemes
2351
+ */
2352
+ ColorSet2 = "ColorSet2",
2353
+ /**
2354
+ * Uses standard semantic colors based on the type property (Information, Success, Warning, Error)
2355
+ */
2356
+ Default = "Default",
2357
+ }
2328
2358
  /**
2329
2359
  * Enumeration of the `multiSelectMode>/code> in ListBase`.
2330
2360
  *
@@ -3148,13 +3178,13 @@ declare module "sap/m/library" {
3148
3178
  /**
3149
3179
  * Each item fits its content and extra space is placed after the last item.
3150
3180
  *
3151
- * @since 1.42
3181
+ * @since 1.142.0
3152
3182
  */
3153
3183
  ContentFit = "ContentFit",
3154
3184
  /**
3155
3185
  * All items are sized equally to fill the available space.
3156
3186
  *
3157
- * @since 1.42
3187
+ * @since 1.142.0
3158
3188
  */
3159
3189
  EqualSized = "EqualSized",
3160
3190
  }
@@ -61844,6 +61874,8 @@ declare module "sap/m/MessageStrip" {
61844
61874
 
61845
61875
  import Event from "sap/ui/base/Event";
61846
61876
 
61877
+ import { MessageStripColorSet } from "sap/m/library";
61878
+
61847
61879
  import { URI } from "sap/ui/core/library";
61848
61880
 
61849
61881
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -61858,7 +61890,8 @@ declare module "sap/m/MessageStrip" {
61858
61890
  /**
61859
61891
  * MessageStrip is a control that enables the embedding of application-related messages in the application.
61860
61892
  * Overview: The message strip displays 4 types of messages, each with a corresponding semantic color and
61861
- * icon: Information, Success, Warning and Error.
61893
+ * icon: Information, Success, Warning and Error. Additionally, it supports custom color schemes through
61894
+ * ColorSet1 and ColorSet2 design types, each providing 10 predefined color variations.
61862
61895
  *
61863
61896
  * Each message can have a close button, so that it can be removed from the UI if needed.
61864
61897
  *
@@ -61870,10 +61903,14 @@ declare module "sap/m/MessageStrip" {
61870
61903
  * - <u> With version 1.85
61871
61904
  * - <br>
61872
61905
  *
61906
+ * Color Schemes: When using ColorSet1 or ColorSet2 as the design type, you can specify a `colorScheme`
61907
+ * from "1" to "10" to apply different color variations. This allows for better visual categorization and
61908
+ * theming flexibility while maintaining accessibility standards.
61909
+ *
61873
61910
  * Dynamically generated Message Strip: To meet the accessibility requirements when using dynamically generated
61874
61911
  * Message Strip you must implement it alongside `sap.ui.core.InvisibleMessage`. This will allow screen
61875
61912
  * readers to announce it in real time. We suggest such dynamically generated message strips to be announced
61876
- * as Information Bar, as shown in our Dynamic Message Strip Generator sample.”
61913
+ * as Information Bar, as shown in our "Dynamic Message Strip Generator sample."
61877
61914
  *
61878
61915
  * Usage: When to use:
61879
61916
  * - You want to provide information or status update within the detail area of an object When not
@@ -62061,6 +62098,41 @@ declare module "sap/m/MessageStrip" {
62061
62098
  */
62062
62099
  mParameters?: object
62063
62100
  ): this;
62101
+ /**
62102
+ * Gets current value of property {@link #getColorScheme colorScheme}.
62103
+ *
62104
+ * Determines the color scheme when using ColorSet1 or ColorSet2 colorSet variants. Available values are
62105
+ * 1 through 10, each providing a different color variation. This property is only effective when `colorSet`
62106
+ * is set to "ColorSet1" or "ColorSet2".
62107
+ *
62108
+ * Default value is `1`.
62109
+ *
62110
+ * @since 1.143.0
62111
+ *
62112
+ * @returns Value of property `colorScheme`
62113
+ */
62114
+ getColorScheme(): int;
62115
+ /**
62116
+ * Gets current value of property {@link #getColorSet colorSet}.
62117
+ *
62118
+ * Determines the color set variant of the MessageStrip. Available options:
62119
+ * - **Default** - Uses standard semantic colors based on the type property (Information, Success, Warning,
62120
+ * Error)
62121
+ * - **ColorSet1** - Uses a custom color palette with 10 predefined color schemes
62122
+ * - **ColorSet2** - Uses an alternative custom color palette with 10 predefined color schemes When
62123
+ * ColorSet1 or ColorSet2 is selected, the `colorScheme` property determines which of the 10 color variations
62124
+ * is applied.
62125
+ *
62126
+ * **Note:** When using ColorSet1 or ColorSet2 designs, the type property is still used for semantic purposes
62127
+ * but will be ignored for visual styling.
62128
+ *
62129
+ * Default value is `Default`.
62130
+ *
62131
+ * @since 1.143.0
62132
+ *
62133
+ * @returns Value of property `colorSet`
62134
+ */
62135
+ getColorSet(): MessageStripColorSet;
62064
62136
  /**
62065
62137
  * Gets content of aggregation {@link #getControls controls}.
62066
62138
  *
@@ -62075,7 +62147,7 @@ declare module "sap/m/MessageStrip" {
62075
62147
  * Gets current value of property {@link #getCustomIcon customIcon}.
62076
62148
  *
62077
62149
  * Determines a custom icon which is displayed. If none is set, the default icon for this message type is
62078
- * used.
62150
+ * used. **Note**: For ColorSet1 and ColorSet2 designs, no default icon is displayed unless explicitly provided.
62079
62151
  *
62080
62152
  * Default value is `empty string`.
62081
62153
  *
@@ -62213,11 +62285,60 @@ declare module "sap/m/MessageStrip" {
62213
62285
  */
62214
62286
  vControl: int | string | Link
62215
62287
  ): Link | null;
62288
+ /**
62289
+ * Sets a new value for property {@link #getColorScheme colorScheme}.
62290
+ *
62291
+ * Determines the color scheme when using ColorSet1 or ColorSet2 colorSet variants. Available values are
62292
+ * 1 through 10, each providing a different color variation. This property is only effective when `colorSet`
62293
+ * is set to "ColorSet1" or "ColorSet2".
62294
+ *
62295
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
62296
+ *
62297
+ * Default value is `1`.
62298
+ *
62299
+ * @since 1.143.0
62300
+ *
62301
+ * @returns Reference to `this` in order to allow method chaining
62302
+ */
62303
+ setColorScheme(
62304
+ /**
62305
+ * New value for property `colorScheme`
62306
+ */
62307
+ iColorScheme?: int
62308
+ ): this;
62309
+ /**
62310
+ * Sets a new value for property {@link #getColorSet colorSet}.
62311
+ *
62312
+ * Determines the color set variant of the MessageStrip. Available options:
62313
+ * - **Default** - Uses standard semantic colors based on the type property (Information, Success, Warning,
62314
+ * Error)
62315
+ * - **ColorSet1** - Uses a custom color palette with 10 predefined color schemes
62316
+ * - **ColorSet2** - Uses an alternative custom color palette with 10 predefined color schemes When
62317
+ * ColorSet1 or ColorSet2 is selected, the `colorScheme` property determines which of the 10 color variations
62318
+ * is applied.
62319
+ *
62320
+ * **Note:** When using ColorSet1 or ColorSet2 designs, the type property is still used for semantic purposes
62321
+ * but will be ignored for visual styling.
62322
+ *
62323
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
62324
+ *
62325
+ * Default value is `Default`.
62326
+ *
62327
+ * @since 1.143.0
62328
+ *
62329
+ * @returns Reference to `this` in order to allow method chaining
62330
+ */
62331
+ setColorSet(
62332
+ /**
62333
+ * New value for property `colorSet`
62334
+ */
62335
+ sColorSet?: MessageStripColorSet | keyof typeof MessageStripColorSet
62336
+ ): this;
62216
62337
  /**
62217
62338
  * Sets a new value for property {@link #getCustomIcon customIcon}.
62218
62339
  *
62219
62340
  * Determines a custom icon which is displayed. If none is set, the default icon for this message type is
62220
- * used.
62341
+ * used. **Note**: For ColorSet1 and ColorSet2 designs, no default icon is displayed unless explicitly provided.
62221
62342
  *
62222
62343
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
62223
62344
  *
@@ -62361,9 +62482,37 @@ declare module "sap/m/MessageStrip" {
62361
62482
  | PropertyBindingInfo
62362
62483
  | `{${string}}`;
62363
62484
 
62485
+ /**
62486
+ * Determines the color set variant of the MessageStrip. Available options:
62487
+ * - **Default** - Uses standard semantic colors based on the type property (Information, Success, Warning,
62488
+ * Error)
62489
+ * - **ColorSet1** - Uses a custom color palette with 10 predefined color schemes
62490
+ * - **ColorSet2** - Uses an alternative custom color palette with 10 predefined color schemes When
62491
+ * ColorSet1 or ColorSet2 is selected, the `colorScheme` property determines which of the 10 color variations
62492
+ * is applied.
62493
+ *
62494
+ * **Note:** When using ColorSet1 or ColorSet2 designs, the type property is still used for semantic purposes
62495
+ * but will be ignored for visual styling.
62496
+ *
62497
+ * @since 1.143.0
62498
+ */
62499
+ colorSet?:
62500
+ | (MessageStripColorSet | keyof typeof MessageStripColorSet)
62501
+ | PropertyBindingInfo
62502
+ | `{${string}}`;
62503
+
62504
+ /**
62505
+ * Determines the color scheme when using ColorSet1 or ColorSet2 colorSet variants. Available values are
62506
+ * 1 through 10, each providing a different color variation. This property is only effective when `colorSet`
62507
+ * is set to "ColorSet1" or "ColorSet2".
62508
+ *
62509
+ * @since 1.143.0
62510
+ */
62511
+ colorScheme?: int | PropertyBindingInfo | `{${string}}`;
62512
+
62364
62513
  /**
62365
62514
  * Determines a custom icon which is displayed. If none is set, the default icon for this message type is
62366
- * used.
62515
+ * used. **Note**: For ColorSet1 and ColorSet2 designs, no default icon is displayed unless explicitly provided.
62367
62516
  */
62368
62517
  customIcon?: URI | PropertyBindingInfo | `{${string}}`;
62369
62518
 
@@ -111819,7 +111968,7 @@ declare module "sap/m/SegmentedButton" {
111819
111968
  *
111820
111969
  * Default value is `EqualSized`.
111821
111970
  *
111822
- * @since 1.42.0
111971
+ * @since 1.142.0
111823
111972
  *
111824
111973
  * @returns Value of property `contentMode`
111825
111974
  */
@@ -112043,7 +112192,7 @@ declare module "sap/m/SegmentedButton" {
112043
112192
  *
112044
112193
  * Default value is `EqualSized`.
112045
112194
  *
112046
- * @since 1.42.0
112195
+ * @since 1.142.0
112047
112196
  *
112048
112197
  * @returns Reference to `this` in order to allow method chaining
112049
112198
  */
@@ -112181,7 +112330,7 @@ declare module "sap/m/SegmentedButton" {
112181
112330
  * - **ContentFit**: Each button is sized according to its content.
112182
112331
  * - **EqualSized**: All buttons have equal width, regardless of their content.
112183
112332
  *
112184
- * @since 1.42.0
112333
+ * @since 1.142.0
112185
112334
  */
112186
112335
  contentMode?:
112187
112336
  | (SegmentedButtonContentMode | keyof typeof SegmentedButtonContentMode)
@@ -130370,6 +130519,11 @@ declare module "sap/m/SinglePlanningCalendar" {
130370
130519
  * The end date as a UI5Date or JavaScript Date object of the focused grid cell.
130371
130520
  */
130372
130521
  endDate?: object;
130522
+
130523
+ /**
130524
+ * The original browser event.
130525
+ */
130526
+ originalEvent?: object;
130373
130527
  }
130374
130528
 
130375
130529
  /**
@@ -174270,6 +174424,8 @@ declare namespace sap {
174270
174424
 
174271
174425
  "sap/m/p13n/modules/AdaptationProvider": undefined;
174272
174426
 
174427
+ "sap/m/p13n/PersistenceProvider": undefined;
174428
+
174273
174429
  "sap/m/p13n/Popup": undefined;
174274
174430
 
174275
174431
  "sap/m/p13n/QueryPanel": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -279,7 +279,7 @@ declare namespace sap {
279
279
  "sap/ui/thirdparty/qunit-2": undefined;
280
280
  }
281
281
  }
282
- // For Library Version: 1.142.0
282
+ // For Library Version: 1.143.0
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -6693,8 +6693,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
6693
6693
  */
6694
6694
  treeState?: any;
6695
6695
  /**
6696
- * This parameter is experimental as of version 1.141.0.
6697
- *
6698
6696
  * Whether the tree state is restored on hierarchy maintenance, such as adding, removing, or deleting a
6699
6697
  * node. This is only supported if the following conditions are met:
6700
6698
  * - The binding has to use {@link sap.ui.model.odata.OperationMode.Server OperationMode.Server}
@@ -17347,10 +17345,11 @@ declare module "sap/ui/core/library" {
17347
17345
  export type ID = string;
17348
17346
 
17349
17347
  /**
17350
- * Marker interface for controls that can be used as content of `sap.ui.layout.form.Form` or `sap.ui.layout.form.SimpleForm`.
17348
+ * Marker interface for controls that can be used as content of {@link sap.ui.layout.form.Form} or {@link sap.ui.layout.form.SimpleForm}.
17351
17349
  *
17352
- * If the control's width must not be adjusted by the `Form` control to meet the cell's width, the control
17353
- * must implement the `getFormDoNotAdjustWidth` function and return `true`.
17350
+ * If the control's width must not be adjusted by the {@link sap.ui.layout.form.Form Form} control to meet
17351
+ * the cell's width, the control must implement the {@link sap.ui.core.IFormContent.getFormDoNotAdjustWidth getFormDoNotAdjustWidth }
17352
+ * function and return `true`.
17354
17353
  *
17355
17354
  * @since 1.48.0
17356
17355
  */
@@ -17358,17 +17357,18 @@ declare module "sap/ui/core/library" {
17358
17357
  __implements__sap_ui_core_IFormContent: boolean;
17359
17358
 
17360
17359
  /**
17361
- * Whether a control wants to keep its original width even when used in a `Form`.
17360
+ * Whether a control wants to keep its original width even when used in a {@link sap.ui.layout.form.Form Form}.
17362
17361
  *
17363
- * In the `Form` control, all content controls are positioned on a grid cell base. By default, the controls
17364
- * use the full width of the used grid cell. But for some controls (like image controls), this is not the
17365
- * desired behavior. In this case the control must keep its original width.
17362
+ * In the {@link sap.ui.layout.form.Form Form} control, all content controls are positioned on a grid cell
17363
+ * base. By default, the controls use the full width of the used grid cell. But for some controls (like
17364
+ * image controls), this is not the desired behavior. In this case the control must keep its original width.
17366
17365
  *
17367
17366
  * This is an optional method. When not defined, the width of the control might be adjusted.
17368
17367
  *
17369
17368
  * @since 1.48.0
17370
17369
  *
17371
- * @returns true if the `Form` is not allowed to adjust the width of the control to use the cell's width
17370
+ * @returns `true` if the {@link sap.ui.layout.form.Form Form} is not allowed to adjust the width of the
17371
+ * control to use the cell's width
17372
17372
  */
17373
17373
  getFormDoNotAdjustWidth?(): boolean;
17374
17374
  }
@@ -17576,7 +17576,7 @@ declare module "sap/ui/core/library" {
17576
17576
  /**
17577
17577
  * Marker interface for controls that can be used as content of {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement}.
17578
17578
  *
17579
- * If the value-holding property of the control is not `valuetext`, the name of the value-holding
17579
+ * If the value-holding property of the control is not `value` or `text`, the name of the value-holding
17580
17580
  * property must be returned in the {@link sap.ui.core.ISemanticFormContent.getFormValueProperty getFormValueProperty }
17581
17581
  * function.
17582
17582
  *
@@ -66762,8 +66762,9 @@ declare module "sap/ui/model/odata/type/Boolean" {
66762
66762
  import ValidateException from "sap/ui/model/ValidateException";
66763
66763
 
66764
66764
  /**
66765
- * This class represents the OData primitive type
66766
- * `Edm.Boolean`.
66765
+ * This class represents the OData primitive type `Edm.Boolean`, see
66766
+ * type definition for OData V4.01 or
66767
+ * type definition for OData V2.
66767
66768
  *
66768
66769
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
66769
66770
  * is represented as a `boolean`.
@@ -66884,8 +66885,9 @@ declare module "sap/ui/model/odata/type/Byte" {
66884
66885
  import Metadata from "sap/ui/base/Metadata";
66885
66886
 
66886
66887
  /**
66887
- * This class represents the OData primitive type
66888
- * `Edm.Byte`.
66888
+ * This class represents the OData primitive type `Edm.Byte`, see
66889
+ * type definition for OData V4.01 or
66890
+ * type definition for OData V2.
66889
66891
  *
66890
66892
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
66891
66893
  * is represented as a `number`.
@@ -67185,7 +67187,7 @@ declare module "sap/ui/model/odata/type/Date" {
67185
67187
  /**
67186
67188
  * Constructor for an OData primitive type `Edm.Date`.
67187
67189
  * See:
67188
- * http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part3-csdl.html
67190
+ * https://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/odata-csdl-xml-v4.01.html#_Toc38530338
67189
67191
  */
67190
67192
  constructor(
67191
67193
  /**
@@ -67561,8 +67563,9 @@ declare module "sap/ui/model/odata/type/DateTimeOffset" {
67561
67563
  import ParseException from "sap/ui/model/ParseException";
67562
67564
 
67563
67565
  /**
67564
- * This class represents the OData primitive type
67565
- * `Edm.DateTimeOffset`.
67566
+ * This class represents the OData primitive type `Edm.DateTimeOffset`, see
67567
+ * type definition for OData V4.01 or
67568
+ * type definition for OData V2.
67566
67569
  *
67567
67570
  * In {@link sap.ui.model.odata.v2.ODataModel} this type is represented as a `Date` instance in local time.
67568
67571
  * In {@link sap.ui.model.odata.v4.ODataModel} this type is represented as a `string` like "1970-12-31T23:59:58Z".
@@ -67901,8 +67904,9 @@ declare module "sap/ui/model/odata/type/Decimal" {
67901
67904
  import ValidateException from "sap/ui/model/ValidateException";
67902
67905
 
67903
67906
  /**
67904
- * This class represents the OData primitive type
67905
- * `Edm.Decimal`.
67907
+ * This class represents the OData primitive type `Edm.Decimal`, see
67908
+ * type definition for OData V4.01 or
67909
+ * type definition for OData V2.
67906
67910
  *
67907
67911
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
67908
67912
  * is represented as a `string`.
@@ -68087,8 +68091,9 @@ declare module "sap/ui/model/odata/type/Double" {
68087
68091
  import ValidateException from "sap/ui/model/ValidateException";
68088
68092
 
68089
68093
  /**
68090
- * This class represents the OData primitive type
68091
- * `Edm.Double`.
68094
+ * This class represents the OData primitive type `Edm.Double`, see
68095
+ * type definition for OData V4.01 or
68096
+ * type definition for OData V2.
68092
68097
  *
68093
68098
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
68094
68099
  * is represented as a `number`.
@@ -68231,8 +68236,9 @@ declare module "sap/ui/model/odata/type/Guid" {
68231
68236
  import ValidateException from "sap/ui/model/ValidateException";
68232
68237
 
68233
68238
  /**
68234
- * This class represents the OData primitive type
68235
- * `Edm.Guid`.
68239
+ * This class represents the OData primitive type `Edm.Guid`, see
68240
+ * type definition for OData V4.01 or
68241
+ * type definition for OData V2.
68236
68242
  *
68237
68243
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
68238
68244
  * is represented as a `string`.
@@ -68356,8 +68362,10 @@ declare module "sap/ui/model/odata/type/Int" {
68356
68362
  import ValidateException from "sap/ui/model/ValidateException";
68357
68363
 
68358
68364
  /**
68359
- * This is an abstract base class for integer-based
68360
- * OData primitive types like `Edm.Int16` or `Edm.Int32`.
68365
+ * This is an abstract base class for integer-based OData primitive types like `Edm.Int16` or `Edm.Int32`,
68366
+ * see
68367
+ * type definitions for OData V4.01 or
68368
+ * type definitions for OData V2.
68361
68369
  *
68362
68370
  * @since 1.27.0
68363
68371
  */
@@ -68475,8 +68483,9 @@ declare module "sap/ui/model/odata/type/Int16" {
68475
68483
  import Metadata from "sap/ui/base/Metadata";
68476
68484
 
68477
68485
  /**
68478
- * This class represents the OData primitive type
68479
- * `Edm.Int16`.
68486
+ * This class represents the OData primitive type `Edm.Int16`, see
68487
+ * type definition for OData V4.01 or
68488
+ * type definition for OData V2.
68480
68489
  *
68481
68490
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
68482
68491
  * is represented as a `number`.
@@ -68566,8 +68575,9 @@ declare module "sap/ui/model/odata/type/Int32" {
68566
68575
  import Metadata from "sap/ui/base/Metadata";
68567
68576
 
68568
68577
  /**
68569
- * This class represents the OData primitive type
68570
- * `Edm.Int32`.
68578
+ * This class represents the OData primitive type `Edm.Int32`, see
68579
+ * type definition for OData V4.01 or
68580
+ * type definition for OData V2.
68571
68581
  *
68572
68582
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
68573
68583
  * is represented as a `number`.
@@ -68663,8 +68673,9 @@ declare module "sap/ui/model/odata/type/Int64" {
68663
68673
  import ValidateException from "sap/ui/model/ValidateException";
68664
68674
 
68665
68675
  /**
68666
- * This class represents the OData primitive type
68667
- * `Edm.Int64`.
68676
+ * This class represents the OData primitive type `Edm.Int64`, see
68677
+ * type definition for OData V4.01 or
68678
+ * type definition for OData V2.
68668
68679
  *
68669
68680
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
68670
68681
  * is represented as a `string`.
@@ -68806,8 +68817,8 @@ declare module "sap/ui/model/odata/type/ODataType" {
68806
68817
  import Metadata from "sap/ui/base/Metadata";
68807
68818
 
68808
68819
  /**
68809
- * This class is an abstract base class for all OData primitive types (see {@link http://docs.oasis-open.org/odata/odata/v4.0/errata02/os/complete/part3-csdl/odata-v4.0-errata02-os-part3-csdl-complete.html#_The_edm:Documentation_Element OData V4 Edm Types }
68810
- * and {@link http://www.odata.org/documentation/odata-version-2-0/overview#AbstractTypeSystem OData V2 Edm Types}).
68820
+ * This class is an abstract base class for all OData primitive types (see {@link https://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/odata-csdl-xml-v4.01.html#_Toc38530338 OData V4.01 Edm Types }
68821
+ * and {@link https://www.odata.org/documentation/odata-version-2-0/overview#AbstractTypeSystem OData V2 Edm Types}).
68811
68822
  * All subtypes implement the interface of {@link sap.ui.model.SimpleType}. That means they implement next
68812
68823
  * to the constructor:
68813
68824
  * - {@link sap.ui.model.Type#getName getName}
@@ -69000,8 +69011,9 @@ declare module "sap/ui/model/odata/type/SByte" {
69000
69011
  import Metadata from "sap/ui/base/Metadata";
69001
69012
 
69002
69013
  /**
69003
- * This class represents the OData primitive type
69004
- * `Edm.SByte`.
69014
+ * This class represents the OData primitive type `Edm.SByte`, see
69015
+ * type definition for OData V4.01 or
69016
+ * type definition for OData V2.
69005
69017
  *
69006
69018
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
69007
69019
  * is represented as a `number`.
@@ -69096,8 +69108,9 @@ declare module "sap/ui/model/odata/type/Single" {
69096
69108
  import ValidateException from "sap/ui/model/ValidateException";
69097
69109
 
69098
69110
  /**
69099
- * This class represents the OData primitive type
69100
- * `Edm.Single`.
69111
+ * This class represents the OData primitive type `Edm.Single`, see
69112
+ * type definition for OData V4.01 or
69113
+ * type definition for OData V2.
69101
69114
  *
69102
69115
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
69103
69116
  * is represented as a `number`.
@@ -69239,7 +69252,7 @@ declare module "sap/ui/model/odata/type/Stream" {
69239
69252
  import ValidateException from "sap/ui/model/ValidateException";
69240
69253
 
69241
69254
  /**
69242
- * This class represents the OData V4 primitive type {@link http://docs.oasis-open.org/odata/odata/v4.0/errata02/os/complete/part3-csdl/odata-v4.0-errata02-os-part3-csdl-complete.html#_The_edm:Documentation_Element `Edm.Stream`}.
69255
+ * This class represents the OData V4 primitive type {@link https://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/odata-csdl-xml-v4.01.html#_Toc38530338 `Edm.Stream`}.
69243
69256
  * The values for stream properties do not appear in the entity payload. Instead, the values are read or
69244
69257
  * written through URLs.
69245
69258
  *
@@ -69359,8 +69372,9 @@ declare module "sap/ui/model/odata/type/String" {
69359
69372
  import ValidateException from "sap/ui/model/ValidateException";
69360
69373
 
69361
69374
  /**
69362
- * This class represents the OData primitive type
69363
- * `Edm.String`.
69375
+ * This class represents the OData primitive type `Edm.String`, see
69376
+ * type definition for OData V4.01 or
69377
+ * type definition for OData V2.
69364
69378
  *
69365
69379
  * In both {@link sap.ui.model.odata.v2.ODataModel} and {@link sap.ui.model.odata.v4.ODataModel} this type
69366
69380
  * is represented as a `string`.
@@ -69675,7 +69689,7 @@ declare module "sap/ui/model/odata/type/TimeOfDay" {
69675
69689
  import ParseException from "sap/ui/model/ParseException";
69676
69690
 
69677
69691
  /**
69678
- * This class represents the OData V4 primitive type {@link http://docs.oasis-open.org/odata/odata/v4.0/errata02/os/complete/part3-csdl/odata-v4.0-errata02-os-part3-csdl-complete.html#_The_edm:Documentation_Element `Edm.TimeOfDay`}.
69692
+ * This class represents the OData V4 primitive type {@link https://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/odata-csdl-xml-v4.01.html#_Toc38530338 `Edm.TimeOfDay`}.
69679
69693
  * In {@link sap.ui.model.odata.v4.ODataModel} this type is represented as a `string`.
69680
69694
  *
69681
69695
  * @since 1.37.0
@@ -76178,7 +76192,8 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
76178
76192
  */
76179
76193
  metadataUrlParams?: object;
76180
76194
  /**
76181
- * The version of the OData service. Supported values are "2.0", "4.0", and "4.01".
76195
+ * The version of the OData service. Supported values are "2.0", "4.0", and "4.01". **Note:** "2.0" is deprecated
76196
+ * since 1.143.0. We recommend migrating your service to OData V4.
76182
76197
  */
76183
76198
  odataVersion?: string;
76184
76199
  /**
@@ -76524,9 +76539,9 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
76524
76539
  * An array of navigation property names which are omitted from the main list request (since 1.137.0). Instead,
76525
76540
  * each of them is loaded in a separate request. This results in the main list becoming available faster,
76526
76541
  * while the separate properties are merged as soon as the data is received. Note that the separate properties
76527
- * must be single valued and part of the '$expand' system query option, either automatically via the "autoExpandSelect"
76528
- * model parameter (see {@link #constructor}) or manually. The `$$separate` parameter must not be combined
76529
- * with `$$aggregation`.
76542
+ * must be single valued. If they are not part of the '$expand' system query option, either automatically
76543
+ * via the "autoExpandSelect" model parameter (see {@link #constructor}) or manually, they are ignored.
76544
+ * The `$$separate` parameter must not be combined with `$$aggregation`.
76530
76545
  */
76531
76546
  $$separate?: string[];
76532
76547
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/ui/dt/library" {
4
4
  export namespace designtime {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -712,7 +712,8 @@ declare module "sap/ui/fl/variants/VariantManagement" {
712
712
  mParameters?: VariantManagement$SelectEventParameters
713
713
  ): this;
714
714
  /**
715
- * Gets the currently selected variant key.
715
+ * Gets the variant key that is currently selected in the VM control. Can be different to the actually selected
716
+ * variant in the state during a variant switch.
716
717
  *
717
718
  *
718
719
  * @returns Key of the currently selected variant. In case the model is not yet set `null` will be returned
@@ -1514,8 +1515,6 @@ declare namespace sap {
1514
1515
 
1515
1516
  "sap/ui/fl/apply/_internal/changes/descriptor/app/AddNewDataSource": undefined;
1516
1517
 
1517
- "sap/ui/fl/apply/_internal/changes/descriptor/app/AddNewInbound": undefined;
1518
-
1519
1518
  "sap/ui/fl/apply/_internal/changes/descriptor/app/AddNewOutbound": undefined;
1520
1519
 
1521
1520
  "sap/ui/fl/apply/_internal/changes/descriptor/app/AddTechnicalAttributes": undefined;
@@ -1546,8 +1545,6 @@ declare namespace sap {
1546
1545
 
1547
1546
  "sap/ui/fl/apply/_internal/changes/descriptor/ovp/DeleteCard": undefined;
1548
1547
 
1549
- "sap/ui/fl/apply/_internal/changes/descriptor/Preprocessor": undefined;
1550
-
1551
1548
  "sap/ui/fl/apply/_internal/changes/descriptor/Registration": undefined;
1552
1549
 
1553
1550
  "sap/ui/fl/apply/_internal/changes/descriptor/RegistrationBuild": undefined;