@openui5/types 1.145.0 → 1.146.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.145.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -1658,8 +1658,6 @@ declare module "sap/m/library" {
1658
1658
  * feature works under the Browser's Cross-Origin Resource Sharing (CORS) policy. This means that a web
1659
1659
  * application using those APIs can only request resources from the same origin the application was loaded
1660
1660
  * from unless the response from other origins includes the right CORS headers.
1661
- *
1662
- * @experimental As of version 1.106.
1663
1661
  */
1664
1662
  InlineSvg = "InlineSvg",
1665
1663
  }
@@ -12154,6 +12152,8 @@ declare module "sap/m/Carousel" {
12154
12152
  * the navigation arrows.
12155
12153
  * - On desktop, navigation is done with the navigation arrows.
12156
12154
  * - The paging indicator (when activated) is visible on each form factor.
12155
+ * - When using {@link sap.m.CarouselLayout CarouselLayout} with the `responsive` property set to `true`,
12156
+ * the number of visible pages adjusts automatically based on the available width and the specified `minPageWidth`.
12157
12157
  */
12158
12158
  export default class Carousel extends Control {
12159
12159
  /**
@@ -13383,6 +13383,41 @@ declare module "sap/m/CarouselLayout" {
13383
13383
  * @returns Metadata object describing this class
13384
13384
  */
13385
13385
  static getMetadata(): ManagedObjectMetadata;
13386
+ /**
13387
+ * Gets current value of property {@link #getMinPageWidth minPageWidth}.
13388
+ *
13389
+ * Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
13390
+ *
13391
+ * This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
13392
+ * rendered smaller than this specified width. The carousel automatically calculates the number of pages
13393
+ * that can fit within the available viewport while respecting the specified minimum width requirement.
13394
+ *
13395
+ * **Note:** This property is only effective when the `responsive` property is set to `true`.
13396
+ *
13397
+ * Default value is `148`.
13398
+ *
13399
+ *
13400
+ * @returns Value of property `minPageWidth`
13401
+ */
13402
+ getMinPageWidth(): int;
13403
+ /**
13404
+ * Gets current value of property {@link #getResponsive responsive}.
13405
+ *
13406
+ * Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
13407
+ * based on the available width and the specified page width.
13408
+ *
13409
+ * When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
13410
+ * within the viewport while adhering to the `minPageWidth` constraint.
13411
+ *
13412
+ * **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
13413
+ * of the carousel.
13414
+ *
13415
+ * Default value is `false`.
13416
+ *
13417
+ *
13418
+ * @returns Value of property `responsive`
13419
+ */
13420
+ getResponsive(): boolean;
13386
13421
  /**
13387
13422
  * Gets current value of property {@link #getScrollMode scrollMode}.
13388
13423
  *
@@ -13405,15 +13440,66 @@ declare module "sap/m/CarouselLayout" {
13405
13440
  * Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
13406
13441
  * positive number.
13407
13442
  *
13408
- * **Note:** When this property is set to something different than the default value, the `loop` property
13443
+ * **Note:** When this property is set to something different from the default value, the `loop` property
13409
13444
  * of `Carousel` is ignored.
13410
13445
  *
13446
+ * **Note:** This property is ignored when the `responsive` property is set to `true`.
13447
+ *
13411
13448
  * Default value is `1`.
13412
13449
  *
13413
13450
  *
13414
13451
  * @returns Value of property `visiblePagesCount`
13415
13452
  */
13416
13453
  getVisiblePagesCount(): int;
13454
+ /**
13455
+ * Sets a new value for property {@link #getMinPageWidth minPageWidth}.
13456
+ *
13457
+ * Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
13458
+ *
13459
+ * This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
13460
+ * rendered smaller than this specified width. The carousel automatically calculates the number of pages
13461
+ * that can fit within the available viewport while respecting the specified minimum width requirement.
13462
+ *
13463
+ * **Note:** This property is only effective when the `responsive` property is set to `true`.
13464
+ *
13465
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13466
+ *
13467
+ * Default value is `148`.
13468
+ *
13469
+ *
13470
+ * @returns Reference to `this` in order to allow method chaining
13471
+ */
13472
+ setMinPageWidth(
13473
+ /**
13474
+ * New value for property `minPageWidth`
13475
+ */
13476
+ iMinPageWidth?: int
13477
+ ): this;
13478
+ /**
13479
+ * Sets a new value for property {@link #getResponsive responsive}.
13480
+ *
13481
+ * Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
13482
+ * based on the available width and the specified page width.
13483
+ *
13484
+ * When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
13485
+ * within the viewport while adhering to the `minPageWidth` constraint.
13486
+ *
13487
+ * **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
13488
+ * of the carousel.
13489
+ *
13490
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13491
+ *
13492
+ * Default value is `false`.
13493
+ *
13494
+ *
13495
+ * @returns Reference to `this` in order to allow method chaining
13496
+ */
13497
+ setResponsive(
13498
+ /**
13499
+ * New value for property `responsive`
13500
+ */
13501
+ bResponsive?: boolean
13502
+ ): this;
13417
13503
  /**
13418
13504
  * Sets a new value for property {@link #getScrollMode scrollMode}.
13419
13505
  *
@@ -13443,9 +13529,11 @@ declare module "sap/m/CarouselLayout" {
13443
13529
  * Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
13444
13530
  * positive number.
13445
13531
  *
13446
- * **Note:** When this property is set to something different than the default value, the `loop` property
13532
+ * **Note:** When this property is set to something different from the default value, the `loop` property
13447
13533
  * of `Carousel` is ignored.
13448
13534
  *
13535
+ * **Note:** This property is ignored when the `responsive` property is set to `true`.
13536
+ *
13449
13537
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13450
13538
  *
13451
13539
  * Default value is `1`.
@@ -13468,8 +13556,10 @@ declare module "sap/m/CarouselLayout" {
13468
13556
  * Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
13469
13557
  * positive number.
13470
13558
  *
13471
- * **Note:** When this property is set to something different than the default value, the `loop` property
13559
+ * **Note:** When this property is set to something different from the default value, the `loop` property
13472
13560
  * of `Carousel` is ignored.
13561
+ *
13562
+ * **Note:** This property is ignored when the `responsive` property is set to `true`.
13473
13563
  */
13474
13564
  visiblePagesCount?: int | PropertyBindingInfo | `{${string}}`;
13475
13565
 
@@ -13486,6 +13576,29 @@ declare module "sap/m/CarouselLayout" {
13486
13576
  | (CarouselScrollMode | keyof typeof CarouselScrollMode)
13487
13577
  | PropertyBindingInfo
13488
13578
  | `{${string}}`;
13579
+
13580
+ /**
13581
+ * Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
13582
+ * based on the available width and the specified page width.
13583
+ *
13584
+ * When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
13585
+ * within the viewport while adhering to the `minPageWidth` constraint.
13586
+ *
13587
+ * **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
13588
+ * of the carousel.
13589
+ */
13590
+ responsive?: boolean | PropertyBindingInfo | `{${string}}`;
13591
+
13592
+ /**
13593
+ * Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
13594
+ *
13595
+ * This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
13596
+ * rendered smaller than this specified width. The carousel automatically calculates the number of pages
13597
+ * that can fit within the available viewport while respecting the specified minimum width requirement.
13598
+ *
13599
+ * **Note:** This property is only effective when the `responsive` property is set to `true`.
13600
+ */
13601
+ minPageWidth?: int | PropertyBindingInfo | `{${string}}`;
13489
13602
  }
13490
13603
  }
13491
13604
 
@@ -32977,6 +33090,7 @@ declare module "sap/m/FormattedText" {
32977
33090
  * - `strong`
32978
33091
  * - `span`
32979
33092
  * - `u`
33093
+ * - `s`
32980
33094
  * - `dl`
32981
33095
  * - `dt`
32982
33096
  * - `dd`
@@ -33262,6 +33376,7 @@ declare module "sap/m/FormattedText" {
33262
33376
  * - `strong`
33263
33377
  * - `span`
33264
33378
  * - `u`
33379
+ * - `s`
33265
33380
  * - `dl`
33266
33381
  * - `dt`
33267
33382
  * - `dd`
@@ -38295,8 +38410,7 @@ declare module "sap/m/IconTabFilter" {
38295
38410
  *
38296
38411
  * Default value is `Auto`.
38297
38412
  *
38298
- * @experimental As of version 1.121. Disclaimer: this property is in a beta state - incompatible API changes
38299
- * may be done before its official public release. Use at your own discretion.
38413
+ * @experimental As of version 1.121.
38300
38414
  *
38301
38415
  * @returns Value of property `interactionMode`
38302
38416
  */
@@ -38599,8 +38713,7 @@ declare module "sap/m/IconTabFilter" {
38599
38713
  *
38600
38714
  * Default value is `Auto`.
38601
38715
  *
38602
- * @experimental As of version 1.121. Disclaimer: this property is in a beta state - incompatible API changes
38603
- * may be done before its official public release. Use at your own discretion.
38716
+ * @experimental As of version 1.121.
38604
38717
  *
38605
38718
  * @returns Reference to `this` in order to allow method chaining
38606
38719
  */
@@ -38711,8 +38824,7 @@ declare module "sap/m/IconTabFilter" {
38711
38824
  /**
38712
38825
  * Specifies the interaction mode.
38713
38826
  *
38714
- * @experimental As of version 1.121. Disclaimer: this property is in a beta state - incompatible API changes
38715
- * may be done before its official public release. Use at your own discretion.
38827
+ * @experimental As of version 1.121.
38716
38828
  */
38717
38829
  interactionMode?:
38718
38830
  | (
@@ -55975,6 +56087,55 @@ declare module "sap/m/Menu" {
55975
56087
  */
55976
56088
  oListener?: object
55977
56089
  ): this;
56090
+ /**
56091
+ * Attaches event handler `fnFunction` to the {@link #event:open open} event of this `sap.m.Menu`.
56092
+ *
56093
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
56094
+ * otherwise it will be bound to this `sap.m.Menu` itself.
56095
+ *
56096
+ * Fired when the menu is opened.
56097
+ *
56098
+ * @since 1.146
56099
+ *
56100
+ * @returns Reference to `this` in order to allow method chaining
56101
+ */
56102
+ attachOpen(
56103
+ /**
56104
+ * An application-specific payload object that will be passed to the event handler along with the event
56105
+ * object when firing the event
56106
+ */
56107
+ oData: object,
56108
+ /**
56109
+ * The function to be called when the event occurs
56110
+ */
56111
+ fnFunction: (p1: Event) => void,
56112
+ /**
56113
+ * Context object to call the event handler with. Defaults to this `sap.m.Menu` itself
56114
+ */
56115
+ oListener?: object
56116
+ ): this;
56117
+ /**
56118
+ * Attaches event handler `fnFunction` to the {@link #event:open open} event of this `sap.m.Menu`.
56119
+ *
56120
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
56121
+ * otherwise it will be bound to this `sap.m.Menu` itself.
56122
+ *
56123
+ * Fired when the menu is opened.
56124
+ *
56125
+ * @since 1.146
56126
+ *
56127
+ * @returns Reference to `this` in order to allow method chaining
56128
+ */
56129
+ attachOpen(
56130
+ /**
56131
+ * The function to be called when the event occurs
56132
+ */
56133
+ fnFunction: (p1: Event) => void,
56134
+ /**
56135
+ * Context object to call the event handler with. Defaults to this `sap.m.Menu` itself
56136
+ */
56137
+ oListener?: object
56138
+ ): this;
55978
56139
  /**
55979
56140
  * Binds aggregation {@link #getItems items} to model data.
55980
56141
  *
@@ -56064,6 +56225,25 @@ declare module "sap/m/Menu" {
56064
56225
  */
56065
56226
  oListener?: object
56066
56227
  ): this;
56228
+ /**
56229
+ * Detaches event handler `fnFunction` from the {@link #event:open open} event of this `sap.m.Menu`.
56230
+ *
56231
+ * The passed function and listener object must match the ones used for event registration.
56232
+ *
56233
+ * @since 1.146
56234
+ *
56235
+ * @returns Reference to `this` in order to allow method chaining
56236
+ */
56237
+ detachOpen(
56238
+ /**
56239
+ * The function to be called, when the event occurs
56240
+ */
56241
+ fnFunction: (p1: Event) => void,
56242
+ /**
56243
+ * Context object on which the given function had to be called
56244
+ */
56245
+ oListener?: object
56246
+ ): this;
56067
56247
  /**
56068
56248
  * Fires event {@link #event:beforeClose beforeClose} to attached listeners.
56069
56249
  *
@@ -56107,6 +56287,20 @@ declare module "sap/m/Menu" {
56107
56287
  */
56108
56288
  mParameters?: Menu$ItemSelectedEventParameters
56109
56289
  ): this;
56290
+ /**
56291
+ * Fires event {@link #event:open open} to attached listeners.
56292
+ *
56293
+ * @since 1.146
56294
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
56295
+ *
56296
+ * @returns Reference to `this` in order to allow method chaining
56297
+ */
56298
+ fireOpen(
56299
+ /**
56300
+ * Parameters to pass along with the event
56301
+ */
56302
+ mParameters?: object
56303
+ ): this;
56110
56304
  /**
56111
56305
  * Gets content of aggregation {@link #getItems items}.
56112
56306
  *
@@ -56265,6 +56459,13 @@ declare module "sap/m/Menu" {
56265
56459
  */
56266
56460
  closed?: (oEvent: Event) => void;
56267
56461
 
56462
+ /**
56463
+ * Fired when the menu is opened.
56464
+ *
56465
+ * @since 1.146
56466
+ */
56467
+ open?: (oEvent: Event) => void;
56468
+
56268
56469
  /**
56269
56470
  * Fired before the menu is closed. This event can be prevented which effectively prevents the menu from
56270
56471
  * closing.
@@ -56319,6 +56520,16 @@ declare module "sap/m/Menu" {
56319
56520
  Menu$ItemSelectedEventParameters,
56320
56521
  Menu
56321
56522
  >;
56523
+
56524
+ /**
56525
+ * Parameters of the Menu#open event.
56526
+ */
56527
+ export interface Menu$OpenEventParameters {}
56528
+
56529
+ /**
56530
+ * Event object of the Menu#open event.
56531
+ */
56532
+ export type Menu$OpenEvent = Event<Menu$OpenEventParameters, Menu>;
56322
56533
  }
56323
56534
 
56324
56535
  declare module "sap/m/MenuButton" {
@@ -140342,8 +140553,7 @@ declare module "sap/m/Table" {
140342
140553
  /**
140343
140554
  * Gets current value of property {@link #getAlternateRowColors alternateRowColors}.
140344
140555
  *
140345
- * Enables alternating table row colors. **Note:** This property can only be used with the Belize and Belize
140346
- * Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
140556
+ * Enables alternating table row colors.
140347
140557
  *
140348
140558
  * Default value is `false`.
140349
140559
  *
@@ -140566,8 +140776,7 @@ declare module "sap/m/Table" {
140566
140776
  /**
140567
140777
  * Sets a new value for property {@link #getAlternateRowColors alternateRowColors}.
140568
140778
  *
140569
- * Enables alternating table row colors. **Note:** This property can only be used with the Belize and Belize
140570
- * Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
140779
+ * Enables alternating table row colors.
140571
140780
  *
140572
140781
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
140573
140782
  *
@@ -140843,8 +141052,7 @@ declare module "sap/m/Table" {
140843
141052
  showOverlay?: boolean | PropertyBindingInfo | `{${string}}`;
140844
141053
 
140845
141054
  /**
140846
- * Enables alternating table row colors. **Note:** This property can only be used with the Belize and Belize
140847
- * Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
141055
+ * Enables alternating table row colors.
140848
141056
  *
140849
141057
  * @since 1.52
140850
141058
  */
@@ -169784,6 +169992,53 @@ declare module "sap/m/VariantManagement" {
169784
169992
  */
169785
169993
  oListener?: object
169786
169994
  ): this;
169995
+ /**
169996
+ * Attaches event handler `fnFunction` to the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
169997
+ *
169998
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
169999
+ * otherwise it will be bound to this `sap.m.VariantManagement` itself.
170000
+ *
170001
+ * This event is fired when users opens the Manage Views dialog.
170002
+ *
170003
+ *
170004
+ * @returns Reference to `this` in order to allow method chaining
170005
+ */
170006
+ attachManageOpen(
170007
+ /**
170008
+ * An application-specific payload object that will be passed to the event handler along with the event
170009
+ * object when firing the event
170010
+ */
170011
+ oData: object,
170012
+ /**
170013
+ * The function to be called when the event occurs
170014
+ */
170015
+ fnFunction: (p1: Event) => void,
170016
+ /**
170017
+ * Context object to call the event handler with. Defaults to this `sap.m.VariantManagement` itself
170018
+ */
170019
+ oListener?: object
170020
+ ): this;
170021
+ /**
170022
+ * Attaches event handler `fnFunction` to the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
170023
+ *
170024
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
170025
+ * otherwise it will be bound to this `sap.m.VariantManagement` itself.
170026
+ *
170027
+ * This event is fired when users opens the Manage Views dialog.
170028
+ *
170029
+ *
170030
+ * @returns Reference to `this` in order to allow method chaining
170031
+ */
170032
+ attachManageOpen(
170033
+ /**
170034
+ * The function to be called when the event occurs
170035
+ */
170036
+ fnFunction: (p1: Event) => void,
170037
+ /**
170038
+ * Context object to call the event handler with. Defaults to this `sap.m.VariantManagement` itself
170039
+ */
170040
+ oListener?: object
170041
+ ): this;
169787
170042
  /**
169788
170043
  * Attaches event handler `fnFunction` to the {@link #event:save save} event of this `sap.m.VariantManagement`.
169789
170044
  *
@@ -169939,6 +170194,24 @@ declare module "sap/m/VariantManagement" {
169939
170194
  */
169940
170195
  oListener?: object
169941
170196
  ): this;
170197
+ /**
170198
+ * Detaches event handler `fnFunction` from the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
170199
+ *
170200
+ * The passed function and listener object must match the ones used for event registration.
170201
+ *
170202
+ *
170203
+ * @returns Reference to `this` in order to allow method chaining
170204
+ */
170205
+ detachManageOpen(
170206
+ /**
170207
+ * The function to be called, when the event occurs
170208
+ */
170209
+ fnFunction: (p1: Event) => void,
170210
+ /**
170211
+ * Context object on which the given function had to be called
170212
+ */
170213
+ oListener?: object
170214
+ ): this;
169942
170215
  /**
169943
170216
  * Detaches event handler `fnFunction` from the {@link #event:save save} event of this `sap.m.VariantManagement`.
169944
170217
  *
@@ -170014,6 +170287,19 @@ declare module "sap/m/VariantManagement" {
170014
170287
  */
170015
170288
  mParameters?: object
170016
170289
  ): this;
170290
+ /**
170291
+ * Fires event {@link #event:manageOpen manageOpen} to attached listeners.
170292
+ *
170293
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
170294
+ *
170295
+ * @returns Reference to `this` in order to allow method chaining
170296
+ */
170297
+ fireManageOpen(
170298
+ /**
170299
+ * Parameters to pass along with the event
170300
+ */
170301
+ mParameters?: object
170302
+ ): this;
170017
170303
  /**
170018
170304
  * Fires event {@link #event:save save} to attached listeners.
170019
170305
  *
@@ -170744,6 +171030,11 @@ declare module "sap/m/VariantManagement" {
170744
171030
  */
170745
171031
  manageCancel?: (oEvent: Event) => void;
170746
171032
 
171033
+ /**
171034
+ * This event is fired when users opens the Manage Views dialog.
171035
+ */
171036
+ manageOpen?: (oEvent: Event) => void;
171037
+
170747
171038
  /**
170748
171039
  * This event is fired when users apply changes variant information in the Manage Views dialog. Some
170749
171040
  * of the parameters may be ommitted, depending on user selection.
@@ -170827,6 +171118,19 @@ declare module "sap/m/VariantManagement" {
170827
171118
  VariantManagement
170828
171119
  >;
170829
171120
 
171121
+ /**
171122
+ * Parameters of the VariantManagement#manageOpen event.
171123
+ */
171124
+ export interface VariantManagement$ManageOpenEventParameters {}
171125
+
171126
+ /**
171127
+ * Event object of the VariantManagement#manageOpen event.
171128
+ */
171129
+ export type VariantManagement$ManageOpenEvent = Event<
171130
+ VariantManagement$ManageOpenEventParameters,
171131
+ VariantManagement
171132
+ >;
171133
+
170830
171134
  /**
170831
171135
  * Parameters of the VariantManagement#save event.
170832
171136
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.145.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -18,7 +18,6 @@ declare module "sap/tnt/library" {
18
18
  * This enum is part of the 'sap/tnt/library' module export and must be accessed by the property 'NavigationListItemDesign'.
19
19
  *
20
20
  * @since 1.133.0
21
- * @experimental Behavior might change.
22
21
  */
23
22
  export enum NavigationListItemDesign {
24
23
  /**
@@ -51,7 +50,6 @@ declare module "sap/tnt/library" {
51
50
  * This enum is part of the 'sap/tnt/library' module export and must be accessed by the property 'SideNavigationDesign'.
52
51
  *
53
52
  * @since 1.134.0
54
- * @experimental Behavior might change.
55
53
  */
56
54
  export enum SideNavigationDesign {
57
55
  /**
@@ -1664,7 +1662,6 @@ declare module "sap/tnt/NavigationListItem" {
1664
1662
  * Default value is `Default`.
1665
1663
  *
1666
1664
  * @since 1.133.0
1667
- * @experimental Behavior might change.
1668
1665
  *
1669
1666
  * @returns Value of property `design`
1670
1667
  */
@@ -1716,8 +1713,6 @@ declare module "sap/tnt/NavigationListItem" {
1716
1713
  * Default value is `true`.
1717
1714
  *
1718
1715
  * @since 1.116
1719
- * @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
1720
- * may be done before its official public release.
1721
1716
  *
1722
1717
  * @returns Value of property `selectable`
1723
1718
  */
@@ -1833,7 +1828,6 @@ declare module "sap/tnt/NavigationListItem" {
1833
1828
  * Default value is `Default`.
1834
1829
  *
1835
1830
  * @since 1.133.0
1836
- * @experimental Behavior might change.
1837
1831
  *
1838
1832
  * @returns Reference to `this` in order to allow method chaining
1839
1833
  */
@@ -1900,8 +1894,6 @@ declare module "sap/tnt/NavigationListItem" {
1900
1894
  * Default value is `true`.
1901
1895
  *
1902
1896
  * @since 1.116
1903
- * @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
1904
- * may be done before its official public release.
1905
1897
  *
1906
1898
  * @returns Reference to `this` in order to allow method chaining
1907
1899
  */
@@ -1988,8 +1980,6 @@ declare module "sap/tnt/NavigationListItem" {
1988
1980
  * - Items that trigger actions (with design "Action") should not be selectable.
1989
1981
  *
1990
1982
  * @since 1.116
1991
- * @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
1992
- * may be done before its official public release.
1993
1983
  */
1994
1984
  selectable?: boolean | PropertyBindingInfo | `{${string}}`;
1995
1985
 
@@ -2017,7 +2007,6 @@ declare module "sap/tnt/NavigationListItem" {
2017
2007
  * sub-items cannot be added.
2018
2008
  *
2019
2009
  * @since 1.133.0
2020
- * @experimental Behavior might change.
2021
2010
  */
2022
2011
  design?:
2023
2012
  | (NavigationListItemDesign | keyof typeof NavigationListItemDesign)
@@ -3080,10 +3069,14 @@ declare module "sap/tnt/ToolHeader" {
3080
3069
  * - If an app implements side navigation in addition to the tool header menu, the menu icon must be the
3081
3070
  * first item on the left-hand side of the tool header.
3082
3071
  * - The app menu and the side navigation must not have any dependencies and must work independently.
3083
- * Horizon theme specifics: Only the following controls are supported: sap.m.Button, sap.m.Image,
3084
- * sap.m.Title, sap.m.Text, sap.m.SearchField, sap.m.Avatar. Fiori 3 theme specifics: In Fiori 3 Default
3085
- * theme the ToolHeader is with dark design unlike most of the other controls. This defines the usage of
3086
- * limited controls inside it, which will result in good design combination.
3072
+ *
3073
+ * - Not recommended: In accordance with the UX Consistency initiative, it is recommended to use the seamlessly
3074
+ * integrated UI5 Web Components' ui5-shellbar, as demonstrated in this UXC
3075
+ * integration sample app with UXC integration
3076
+ * sample source code. Horizon theme specifics: Only the following controls are supported: sap.m.Button,
3077
+ * sap.m.Image, sap.m.Title, sap.m.Text, sap.m.SearchField, sap.m.Avatar. Fiori 3 theme specifics: In Fiori
3078
+ * 3 Default theme the ToolHeader is with dark design unlike most of the other controls. This defines the
3079
+ * usage of limited controls inside it, which will result in good design combination.
3087
3080
  * The ToolHeader stylizes the contained controls with the Shell color parameters, to match the dark design
3088
3081
  * requirement. However, that's not a dark theme.
3089
3082
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.145.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.145.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";