@openui5/types 1.117.1 → 1.118.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.117.1
1
+ // For Library Version: 1.118.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -498,6 +498,37 @@ declare module "sap/m/library" {
498
498
  */
499
499
  Saving = "Saving",
500
500
  }
501
+ /**
502
+ * @since 1.118
503
+ *
504
+ * Defines the groups in {@link sap.m.DynamicDateRange}.
505
+ */
506
+ export enum DynamicDateRangeGroups {
507
+ /**
508
+ * Group of options that provide selection of date ranges.
509
+ */
510
+ DateRanges = "DateRanges",
511
+ /**
512
+ * Group of options that provide selection of month related ranges.
513
+ */
514
+ Month = "Month",
515
+ /**
516
+ * Group of options that provide selection of quarter related ranges.
517
+ */
518
+ Quarters = "Quarters",
519
+ /**
520
+ * Group of options that provide selection of single dates.
521
+ */
522
+ SingleDates = "SingleDates",
523
+ /**
524
+ * Group of options that provide selection of week related ranges.
525
+ */
526
+ Weeks = "Weeks",
527
+ /**
528
+ * Group of options that provide selection of year related ranges.
529
+ */
530
+ Years = "Years",
531
+ }
501
532
  /**
502
533
  * @since 1.111
503
534
  *
@@ -1495,18 +1526,19 @@ declare module "sap/m/library" {
1495
1526
  */
1496
1527
  export enum ListKeyboardMode {
1497
1528
  /**
1498
- * This mode is suitable if the number of items is limited and if there are editable fields within the item.
1529
+ * This mode is suitable if there are only editable fields within the item.
1499
1530
  *
1500
- * While the last/first interactive element within an item has the focus, pressing tab/shift+tab moves the
1501
- * focus to the next/previous element in the tab chain after/before the item .
1531
+ * In this mode, the first focus goes to the first interactive element within the first item and this is
1532
+ * the only difference between the `Edit` and `Navigation` mode.
1502
1533
  */
1503
1534
  Edit = "Edit",
1504
1535
  /**
1505
- * This default mode is suitable if the number of items is unlimited or if there is no editable field within
1506
- * the item.
1536
+ * This default mode is suitable if the List or Table contains editable and/or non-editable fields.
1507
1537
  *
1508
- * While the last/first interactive element within an item has the focus, pressing tab/shift+tab moves the
1509
- * focus to the next/previous element in the tab chain after/before the `sap.m.List` or `sap.m.Table`.
1538
+ * In this mode, the first focus goes to the first item. If the focus is on the item, or cell, pressing
1539
+ * tab/shift+tab moves the focus to the next/previous element in the tab chain after/before the `sap.m.List`
1540
+ * or `sap.m.Table` control. If the focus is on the interactive element, pressing tab/shift+tab moves the
1541
+ * focus to the next/previous element in the tab chain after/before the focused interactive element.
1510
1542
  */
1511
1543
  Navigation = "Navigation",
1512
1544
  }
@@ -3339,23 +3371,28 @@ declare module "sap/m/library" {
3339
3371
  export namespace p13n {
3340
3372
  /**
3341
3373
  * @since 1.97
3342
- * @experimental
3343
3374
  *
3344
3375
  * Interface for P13nPopup which are suitable as content for the `sap.m.p13n.Popup`. Implementation of this
3345
3376
  * interface should include the following methods:
3346
3377
  * - `getTitle`
3378
+ * - `getVerticalScrolling`
3347
3379
  */
3348
3380
  interface IContent {
3349
3381
  __implements__sap_m_p13n_IContent: boolean;
3350
3382
 
3351
3383
  /**
3352
- * @experimental
3353
- *
3354
3384
  * Returns the title, which should be displayed in the P13nPopup to describe related content.
3355
3385
  *
3356
3386
  * @returns The title for the corresponding content to be displayed in the `sap.m.p13n.Popup`.
3357
3387
  */
3358
3388
  getTitle(): string;
3389
+ /**
3390
+ * Optionally returns the enablement of the contents vertical scrolling in case only one panel is used to
3391
+ * determine if the content provides its own scrolling capabilites.
3392
+ *
3393
+ * @returns The enablement of the vertical scrolling enablement for the `sap.m.p13n.Popup`.
3394
+ */
3395
+ getVerticalScrolling?(): boolean;
3359
3396
  }
3360
3397
  }
3361
3398
 
@@ -21475,9 +21512,9 @@ declare module "sap/m/DynamicDateOption" {
21475
21512
  * popup. Standard options are arranged in 6 groups - from 1 to 6. 1 - Single Dates 2 - Date Ranges 3 -
21476
21513
  * Weeks 4 - Months 5 - Quarters 6 - Years
21477
21514
  *
21478
- * @returns A group index
21515
+ * @returns A group key from {@link sap.m.DynamicDateRangeGroups}
21479
21516
  */
21480
- getGroup(): int;
21517
+ getGroup(): int | string;
21481
21518
  /**
21482
21519
  * Provides the option's group header text.
21483
21520
  *
@@ -21787,6 +21824,21 @@ declare module "sap/m/DynamicDateRange" {
21787
21824
  */
21788
21825
  oCustomOption: DynamicDateOption
21789
21826
  ): this;
21827
+ /**
21828
+ * @since 1.118
21829
+ *
21830
+ * Adds a group to the enumeration containing the current groups in `sap.m.DynamicDateRange`
21831
+ */
21832
+ addGroup(
21833
+ /**
21834
+ * the name that the group will be selected by.
21835
+ */
21836
+ sGroupName: string,
21837
+ /**
21838
+ * the group header that will be presented in the list.
21839
+ */
21840
+ sGroupHeader: string
21841
+ ): void;
21790
21842
  /**
21791
21843
  * @since 1.92
21792
21844
  *
@@ -21948,6 +22000,14 @@ declare module "sap/m/DynamicDateRange" {
21948
22000
  * @returns Value of property `enableGroupHeaders`
21949
22001
  */
21950
22002
  getEnableGroupHeaders(): boolean;
22003
+ /**
22004
+ * @since 1.118
22005
+ *
22006
+ * Provides the option's group header text.
22007
+ *
22008
+ * @returns A group header
22009
+ */
22010
+ getGroupHeader(): string;
21951
22011
  /**
21952
22012
  * @since 1.105
21953
22013
  *
@@ -22197,6 +22257,10 @@ declare module "sap/m/DynamicDateRange" {
22197
22257
  */
22198
22258
  vAriaLabelledBy: int | ID | Control
22199
22259
  ): ID | null;
22260
+ /**
22261
+ * Removes all additionally added groups
22262
+ */
22263
+ removeCustomGroups(): void;
22200
22264
  /**
22201
22265
  * Removes a customOption from the aggregation {@link #getCustomOptions customOptions}.
22202
22266
  *
@@ -22285,6 +22349,19 @@ declare module "sap/m/DynamicDateRange" {
22285
22349
  */
22286
22350
  bEnableGroupHeaders?: boolean
22287
22351
  ): this;
22352
+ /**
22353
+ * Sets a new header to an existing custom group.
22354
+ */
22355
+ setGroupHeader(
22356
+ /**
22357
+ * the name that the group will be selected by.
22358
+ */
22359
+ sGroupName: string,
22360
+ /**
22361
+ * the group header that will be presented in the list.
22362
+ */
22363
+ sGroupHeader: string
22364
+ ): void;
22288
22365
  /**
22289
22366
  * @since 1.105
22290
22367
  *
@@ -24116,23 +24193,6 @@ declare module "sap/m/FacetFilterItem" {
24116
24193
  * @returns Value of property `text`
24117
24194
  */
24118
24195
  getText(): string;
24119
- /**
24120
- * @deprecated (since 1.18.11) - replaced by `setCounter` method
24121
- *
24122
- * Sets a new value for property {@link #getCount count}.
24123
- *
24124
- * Defines the number of objects that match this item in the target data set.
24125
- *
24126
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
24127
- *
24128
- * @returns Reference to `this` in order to allow method chaining
24129
- */
24130
- setCount(
24131
- /**
24132
- * New value for property `count`
24133
- */
24134
- iCount?: int
24135
- ): this;
24136
24196
  /**
24137
24197
  * Sets a new value for property {@link #getKey key}.
24138
24198
  *
@@ -24786,27 +24846,6 @@ declare module "sap/m/FacetFilterList" {
24786
24846
  */
24787
24847
  mode: ListMode | keyof typeof ListMode
24788
24848
  ): this;
24789
- /**
24790
- * @deprecated (since 1.20.0) - replaced by `setMode` method. `FacetFilterList` overrides the `setMode`
24791
- * method to restrict the possible modes to `MultiSelect` and `SingleSelectMaster`. All other modes are
24792
- * ignored and will not be set.
24793
- *
24794
- * Sets a new value for property {@link #getMultiSelect multiSelect}.
24795
- *
24796
- * Specifies whether multiple or single selection is used.
24797
- *
24798
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
24799
- *
24800
- * Default value is `true`.
24801
- *
24802
- * @returns Reference to `this` in order to allow method chaining
24803
- */
24804
- setMultiSelect(
24805
- /**
24806
- * New value for property `multiSelect`
24807
- */
24808
- bMultiSelect?: boolean
24809
- ): this;
24810
24849
  /**
24811
24850
  * @since 1.22.1
24812
24851
  *
@@ -29872,6 +29911,20 @@ declare module "sap/m/GenericTile" {
29872
29911
  * @returns An array containing all of the tile's bounding rectangles
29873
29912
  */
29874
29913
  getBoundingRects(): object[];
29914
+ /**
29915
+ * @since 1.118
29916
+ * @experimental (since 1.113)
29917
+ *
29918
+ * Gets current value of property {@link #getDropAreaOffset dropAreaOffset}.
29919
+ *
29920
+ * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
29921
+ * all the tile edges.
29922
+ *
29923
+ * Default value is `0`.
29924
+ *
29925
+ * @returns Value of property `dropAreaOffset`
29926
+ */
29927
+ getDropAreaOffset(): int;
29875
29928
  /**
29876
29929
  * @experimental (since 1.96)
29877
29930
  *
@@ -30365,6 +30418,27 @@ declare module "sap/m/GenericTile" {
30365
30418
  */
30366
30419
  sBackgroundImage?: URI
30367
30420
  ): this;
30421
+ /**
30422
+ * @since 1.118
30423
+ * @experimental (since 1.113)
30424
+ *
30425
+ * Sets a new value for property {@link #getDropAreaOffset dropAreaOffset}.
30426
+ *
30427
+ * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
30428
+ * all the tile edges.
30429
+ *
30430
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
30431
+ *
30432
+ * Default value is `0`.
30433
+ *
30434
+ * @returns Reference to `this` in order to allow method chaining
30435
+ */
30436
+ setDropAreaOffset(
30437
+ /**
30438
+ * New value for property `dropAreaOffset`
30439
+ */
30440
+ iDropAreaOffset?: int
30441
+ ): this;
30368
30442
  /**
30369
30443
  * @experimental (since 1.96)
30370
30444
  *
@@ -31042,6 +31116,15 @@ declare module "sap/m/GenericTile" {
31042
31116
  */
31043
31117
  tileBadge?: string | PropertyBindingInfo;
31044
31118
 
31119
+ /**
31120
+ * @since 1.118
31121
+ * @experimental (since 1.113)
31122
+ *
31123
+ * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
31124
+ * all the tile edges.
31125
+ */
31126
+ dropAreaOffset?: int | PropertyBindingInfo | `{${string}}`;
31127
+
31045
31128
  /**
31046
31129
  * The content of the tile.
31047
31130
  */
@@ -36251,6 +36334,20 @@ declare module "sap/m/IllustrationPool" {
36251
36334
  * {@link sap.m.IllustrationPool.loadRestOfTheAssets} API.
36252
36335
  */
36253
36336
  interface IllustrationPool {
36337
+ /**
36338
+ * @since 1.116.0
36339
+ *
36340
+ * Returns the metadata of an Illustration Set. The metadata contains the names of the symbols and the theme
36341
+ * mappings. If the Illustration Set is not registered, an error is logged and null is returned.
36342
+ *
36343
+ * @returns The metadata of the Illustration Set
36344
+ */
36345
+ getIllustrationSetMetadata(
36346
+ /**
36347
+ * The name of the illustration set
36348
+ */
36349
+ sSet: string
36350
+ ): object;
36254
36351
  /**
36255
36352
  * Loads an SVG asset depending on the input asset ID.
36256
36353
  */
@@ -36262,7 +36359,13 @@ declare module "sap/m/IllustrationPool" {
36262
36359
  /**
36263
36360
  * the ID of the Illustration instance which is requiring the asset
36264
36361
  */
36265
- sInstanceId: string
36362
+ sInstanceId: string,
36363
+ /**
36364
+ * The prefix of the path of the asset being loaded. Used for loading assets from different collections.
36365
+ * Used to store the asset ID in the DOM pool, so it can be distinguished from other assets with the same
36366
+ * ID.
36367
+ */
36368
+ sIdPrefix: string
36266
36369
  ): void;
36267
36370
  /**
36268
36371
  * Loads the rest of the SVG assets for a given illustration set.
@@ -45453,22 +45556,6 @@ declare module "sap/m/ListBase" {
45453
45556
  */
45454
45557
  oListener?: object
45455
45558
  ): this;
45456
- /**
45457
- * @ui5-protected Do not call from applications (only from related classes in the framework)
45458
- *
45459
- * This method is a hook for the RenderManager that gets called during the rendering of child Controls.
45460
- * It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
45461
- */
45462
- enhanceAccessibilityState(
45463
- /**
45464
- * The Control that gets rendered by the RenderManager
45465
- */
45466
- oElement: Control,
45467
- /**
45468
- * The mapping of "aria-" prefixed attributes
45469
- */
45470
- mAriaProps: object
45471
- ): void;
45472
45559
  /**
45473
45560
  * @since 1.54
45474
45561
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -45832,7 +45919,7 @@ declare module "sap/m/ListBase" {
45832
45919
  *
45833
45920
  * Defines keyboard handling behavior of the control.
45834
45921
  *
45835
- * Default value is `Navigation`.
45922
+ * Default value is `"Navigation"`.
45836
45923
  *
45837
45924
  * @returns Value of property `keyboardMode`
45838
45925
  */
@@ -46444,7 +46531,7 @@ declare module "sap/m/ListBase" {
46444
46531
  *
46445
46532
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
46446
46533
  *
46447
- * Default value is `Navigation`.
46534
+ * Default value is `"Navigation"`.
46448
46535
  *
46449
46536
  * @returns Reference to `this` in order to allow method chaining
46450
46537
  */
@@ -51685,7 +51772,7 @@ declare module "sap/m/MessageItem" {
51685
51772
  *
51686
51773
  * @returns Value of property `type`
51687
51774
  */
51688
- getType(): MessageType | keyof typeof MessageType;
51775
+ getType(): MessageType;
51689
51776
  /**
51690
51777
  * @since 1.58
51691
51778
  *
@@ -51840,7 +51927,7 @@ declare module "sap/m/MessageItem" {
51840
51927
  /**
51841
51928
  * Type of Message
51842
51929
  */
51843
- sType: MessageType | keyof typeof MessageType
51930
+ sType: MessageType
51844
51931
  ): this;
51845
51932
  }
51846
51933
 
@@ -51848,10 +51935,7 @@ declare module "sap/m/MessageItem" {
51848
51935
  /**
51849
51936
  * Specifies the type of the message
51850
51937
  */
51851
- type?:
51852
- | (MessageType | keyof typeof MessageType)
51853
- | PropertyBindingInfo
51854
- | `{${string}}`;
51938
+ type?: MessageType | PropertyBindingInfo | `{${string}}`;
51855
51939
 
51856
51940
  /**
51857
51941
  * Specifies the title of the message
@@ -53975,7 +54059,7 @@ declare module "sap/m/MessagePopover" {
53975
54059
  /**
53976
54060
  * Refers to the type of messages being shown.
53977
54061
  */
53978
- messageTypeFilter?: MessageType | keyof typeof MessageType;
54062
+ messageTypeFilter?: MessageType;
53979
54063
  }
53980
54064
 
53981
54065
  export type MessagePopover$ItemSelectEvent = Event<
@@ -53987,7 +54071,7 @@ declare module "sap/m/MessagePopover" {
53987
54071
  /**
53988
54072
  * This parameter refers to the type of messages being shown.
53989
54073
  */
53990
- messageTypeFilter?: MessageType | keyof typeof MessageType;
54074
+ messageTypeFilter?: MessageType;
53991
54075
  }
53992
54076
 
53993
54077
  export type MessagePopover$ListSelectEvent = Event<
@@ -54353,7 +54437,7 @@ declare module "sap/m/MessageStrip" {
54353
54437
  *
54354
54438
  * @returns Value of property `type`
54355
54439
  */
54356
- getType(): MessageType | keyof typeof MessageType;
54440
+ getType(): MessageType;
54357
54441
  /**
54358
54442
  * Sets a new value for property {@link #getCustomIcon customIcon}.
54359
54443
  *
@@ -54473,7 +54557,7 @@ declare module "sap/m/MessageStrip" {
54473
54557
  /**
54474
54558
  * New value for property `type`
54475
54559
  */
54476
- sType?: MessageType | keyof typeof MessageType
54560
+ sType?: MessageType
54477
54561
  ): this;
54478
54562
  }
54479
54563
 
@@ -54488,10 +54572,7 @@ declare module "sap/m/MessageStrip" {
54488
54572
  * (default), Success, Warning, Error. If None is passed, the value is set to Information and a warning
54489
54573
  * is displayed in the console.
54490
54574
  */
54491
- type?:
54492
- | (MessageType | keyof typeof MessageType)
54493
- | PropertyBindingInfo
54494
- | `{${string}}`;
54575
+ type?: MessageType | PropertyBindingInfo | `{${string}}`;
54495
54576
 
54496
54577
  /**
54497
54578
  * Determines a custom icon which is displayed. If none is set, the default icon for this message type is
@@ -55589,7 +55670,7 @@ declare module "sap/m/MessageView" {
55589
55670
  /**
55590
55671
  * Refers to the type of messages being shown. See sap.ui.core.MessageType values for types.
55591
55672
  */
55592
- messageTypeFilter?: MessageType | keyof typeof MessageType;
55673
+ messageTypeFilter?: MessageType;
55593
55674
  }
55594
55675
 
55595
55676
  export type MessageView$ItemSelectEvent = Event<
@@ -55601,7 +55682,7 @@ declare module "sap/m/MessageView" {
55601
55682
  /**
55602
55683
  * This parameter refers to the type of messages being shown.
55603
55684
  */
55604
- messageTypeFilter?: MessageType | keyof typeof MessageType;
55685
+ messageTypeFilter?: MessageType;
55605
55686
  }
55606
55687
 
55607
55688
  export type MessageView$ListSelectEvent = Event<
@@ -79094,6 +79175,8 @@ declare module "sap/m/PlanningCalendar" {
79094
79175
 
79095
79176
  import UI5Date from "sap/ui/core/date/UI5Date";
79096
79177
 
79178
+ import AvatarShape from "sap/m/AvatarShape";
79179
+
79097
79180
  import ElementMetadata from "sap/ui/core/ElementMetadata";
79098
79181
 
79099
79182
  import CalendarType from "sap/ui/core/CalendarType";
@@ -79932,6 +80015,16 @@ declare module "sap/m/PlanningCalendar" {
79932
80015
  * @returns Value of property `height`
79933
80016
  */
79934
80017
  getHeight(): CSSSize;
80018
+ /**
80019
+ * Gets current value of property {@link #getIconShape iconShape}.
80020
+ *
80021
+ * Defines the shape of the `Avatar`.
80022
+ *
80023
+ * Default value is `Circle`.
80024
+ *
80025
+ * @returns Value of property `iconShape`
80026
+ */
80027
+ getIconShape(): AvatarShape | keyof typeof AvatarShape;
79935
80028
  /**
79936
80029
  * @since 1.40.0
79937
80030
  *
@@ -80628,6 +80721,23 @@ declare module "sap/m/PlanningCalendar" {
80628
80721
  */
80629
80722
  sHeight?: CSSSize
80630
80723
  ): this;
80724
+ /**
80725
+ * Sets a new value for property {@link #getIconShape iconShape}.
80726
+ *
80727
+ * Defines the shape of the `Avatar`.
80728
+ *
80729
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
80730
+ *
80731
+ * Default value is `Circle`.
80732
+ *
80733
+ * @returns Reference to `this` in order to allow method chaining
80734
+ */
80735
+ setIconShape(
80736
+ /**
80737
+ * New value for property `iconShape`
80738
+ */
80739
+ sIconShape?: AvatarShape | keyof typeof AvatarShape
80740
+ ): this;
80631
80741
  /**
80632
80742
  * @since 1.40.0
80633
80743
  *
@@ -81162,6 +81272,14 @@ declare module "sap/m/PlanningCalendar" {
81162
81272
  | PropertyBindingInfo
81163
81273
  | `{${string}}`;
81164
81274
 
81275
+ /**
81276
+ * Defines the shape of the `Avatar`.
81277
+ */
81278
+ iconShape?:
81279
+ | (AvatarShape | keyof typeof AvatarShape)
81280
+ | PropertyBindingInfo
81281
+ | `{${string}}`;
81282
+
81165
81283
  /**
81166
81284
  * Rows of the `PlanningCalendar`.
81167
81285
  */
@@ -124279,27 +124397,33 @@ declare module "sap/m/table/columnmenu/Item" {
124279
124397
  *
124280
124398
  * Fires event {@link #event:cancel cancel} to attached listeners.
124281
124399
  *
124282
- * @returns Reference to `this` in order to allow method chaining
124400
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
124401
+ * event object. The return value of this method indicates whether the default action should be executed.
124402
+ *
124403
+ * @returns Whether or not to prevent the default action
124283
124404
  */
124284
124405
  fireCancel(
124285
124406
  /**
124286
124407
  * Parameters to pass along with the event
124287
124408
  */
124288
124409
  mParameters?: object
124289
- ): this;
124410
+ ): boolean;
124290
124411
  /**
124291
124412
  * @ui5-protected Do not call from applications (only from related classes in the framework)
124292
124413
  *
124293
124414
  * Fires event {@link #event:confirm confirm} to attached listeners.
124294
124415
  *
124295
- * @returns Reference to `this` in order to allow method chaining
124416
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
124417
+ * event object. The return value of this method indicates whether the default action should be executed.
124418
+ *
124419
+ * @returns Whether or not to prevent the default action
124296
124420
  */
124297
124421
  fireConfirm(
124298
124422
  /**
124299
124423
  * Parameters to pass along with the event
124300
124424
  */
124301
124425
  mParameters?: object
124302
- ): this;
124426
+ ): boolean;
124303
124427
  /**
124304
124428
  * @ui5-protected Do not call from applications (only from related classes in the framework)
124305
124429
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.118.0
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.118.0
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -392,7 +392,10 @@ declare module "sap/ui/codeeditor/CodeEditor" {
392
392
  /**
393
393
  * @since 1.54.1
394
394
  *
395
- * Pretty-prints the content of the editor
395
+ * Pretty-prints the content of the editor.
396
+ *
397
+ * **Note:** Works well only for PHP. For other programming languages, the content might not be formatted
398
+ * well. In such cases it is recommended to use your own formatting.
396
399
  */
397
400
  prettyPrint(): void;
398
401
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.118.0
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";