@openui5/ts-types 1.102.0 → 1.102.4

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/ts-types",
3
- "version": "1.102.0",
3
+ "version": "1.102.4",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
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.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -7651,6 +7651,46 @@ declare namespace sap {
7651
7651
  * If not set, a predefined text is used.
7652
7652
  */
7653
7653
  lastColumnLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
7654
+
7655
+ /**
7656
+ * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
7657
+ * control.
7658
+ *
7659
+ * If not set, a predefined text is used.
7660
+ */
7661
+ firstColumnBackArrowLabel?:
7662
+ | string
7663
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
7664
+
7665
+ /**
7666
+ * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
7667
+ * control.
7668
+ *
7669
+ * If not set, a predefined text is used.
7670
+ */
7671
+ middleColumnForwardArrowLabel?:
7672
+ | string
7673
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
7674
+
7675
+ /**
7676
+ * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
7677
+ * control.
7678
+ *
7679
+ * If not set, a predefined text is used.
7680
+ */
7681
+ middleColumnBackArrowLabel?:
7682
+ | string
7683
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
7684
+
7685
+ /**
7686
+ * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
7687
+ * control.
7688
+ *
7689
+ * If not set, a predefined text is used.
7690
+ */
7691
+ lastColumnForwardArrowLabel?:
7692
+ | string
7693
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
7654
7694
  }
7655
7695
 
7656
7696
  interface $GridContainerSettings extends sap.ui.core.$ControlSettings {
@@ -13372,6 +13412,17 @@ declare namespace sap {
13372
13412
  * @returns Metadata object describing this class
13373
13413
  */
13374
13414
  static getMetadata(): sap.ui.core.ElementMetadata;
13415
+ /**
13416
+ * Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
13417
+ *
13418
+ * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
13419
+ * control.
13420
+ *
13421
+ * If not set, a predefined text is used.
13422
+ *
13423
+ * @returns Value of property `firstColumnBackArrowLabel`
13424
+ */
13425
+ getFirstColumnBackArrowLabel(): string;
13375
13426
  /**
13376
13427
  * Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
13377
13428
  *
@@ -13383,6 +13434,17 @@ declare namespace sap {
13383
13434
  * @returns Value of property `firstColumnLabel`
13384
13435
  */
13385
13436
  getFirstColumnLabel(): string;
13437
+ /**
13438
+ * Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
13439
+ *
13440
+ * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
13441
+ * control.
13442
+ *
13443
+ * If not set, a predefined text is used.
13444
+ *
13445
+ * @returns Value of property `lastColumnForwardArrowLabel`
13446
+ */
13447
+ getLastColumnForwardArrowLabel(): string;
13386
13448
  /**
13387
13449
  * Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
13388
13450
  *
@@ -13394,6 +13456,28 @@ declare namespace sap {
13394
13456
  * @returns Value of property `lastColumnLabel`
13395
13457
  */
13396
13458
  getLastColumnLabel(): string;
13459
+ /**
13460
+ * Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
13461
+ *
13462
+ * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
13463
+ * control.
13464
+ *
13465
+ * If not set, a predefined text is used.
13466
+ *
13467
+ * @returns Value of property `middleColumnBackArrowLabel`
13468
+ */
13469
+ getMiddleColumnBackArrowLabel(): string;
13470
+ /**
13471
+ * Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
13472
+ *
13473
+ * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
13474
+ * control.
13475
+ *
13476
+ * If not set, a predefined text is used.
13477
+ *
13478
+ * @returns Value of property `middleColumnForwardArrowLabel`
13479
+ */
13480
+ getMiddleColumnForwardArrowLabel(): string;
13397
13481
  /**
13398
13482
  * Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
13399
13483
  *
@@ -13405,6 +13489,24 @@ declare namespace sap {
13405
13489
  * @returns Value of property `middleColumnLabel`
13406
13490
  */
13407
13491
  getMiddleColumnLabel(): string;
13492
+ /**
13493
+ * Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
13494
+ *
13495
+ * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
13496
+ * control.
13497
+ *
13498
+ * If not set, a predefined text is used.
13499
+ *
13500
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13501
+ *
13502
+ * @returns Reference to `this` in order to allow method chaining
13503
+ */
13504
+ setFirstColumnBackArrowLabel(
13505
+ /**
13506
+ * New value for property `firstColumnBackArrowLabel`
13507
+ */
13508
+ sFirstColumnBackArrowLabel?: string
13509
+ ): this;
13408
13510
  /**
13409
13511
  * Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
13410
13512
  *
@@ -13423,6 +13525,24 @@ declare namespace sap {
13423
13525
  */
13424
13526
  sFirstColumnLabel?: string
13425
13527
  ): this;
13528
+ /**
13529
+ * Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
13530
+ *
13531
+ * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
13532
+ * control.
13533
+ *
13534
+ * If not set, a predefined text is used.
13535
+ *
13536
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13537
+ *
13538
+ * @returns Reference to `this` in order to allow method chaining
13539
+ */
13540
+ setLastColumnForwardArrowLabel(
13541
+ /**
13542
+ * New value for property `lastColumnForwardArrowLabel`
13543
+ */
13544
+ sLastColumnForwardArrowLabel?: string
13545
+ ): this;
13426
13546
  /**
13427
13547
  * Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
13428
13548
  *
@@ -13441,6 +13561,42 @@ declare namespace sap {
13441
13561
  */
13442
13562
  sLastColumnLabel?: string
13443
13563
  ): this;
13564
+ /**
13565
+ * Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
13566
+ *
13567
+ * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
13568
+ * control.
13569
+ *
13570
+ * If not set, a predefined text is used.
13571
+ *
13572
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13573
+ *
13574
+ * @returns Reference to `this` in order to allow method chaining
13575
+ */
13576
+ setMiddleColumnBackArrowLabel(
13577
+ /**
13578
+ * New value for property `middleColumnBackArrowLabel`
13579
+ */
13580
+ sMiddleColumnBackArrowLabel?: string
13581
+ ): this;
13582
+ /**
13583
+ * Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
13584
+ *
13585
+ * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
13586
+ * control.
13587
+ *
13588
+ * If not set, a predefined text is used.
13589
+ *
13590
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13591
+ *
13592
+ * @returns Reference to `this` in order to allow method chaining
13593
+ */
13594
+ setMiddleColumnForwardArrowLabel(
13595
+ /**
13596
+ * New value for property `middleColumnForwardArrowLabel`
13597
+ */
13598
+ sMiddleColumnForwardArrowLabel?: string
13599
+ ): this;
13444
13600
  /**
13445
13601
  * Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
13446
13602
  *
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -9232,6 +9232,9 @@ declare namespace sap {
9232
9232
  removePressed?: (oEvent: sap.ui.base.Event) => void;
9233
9233
  }
9234
9234
 
9235
+ interface $UploadSetToolbarPlaceholderSettings
9236
+ extends sap.ui.core.$ControlSettings {}
9237
+
9235
9238
  /**
9236
9239
  * @SINCE 1.63
9237
9240
  *
@@ -11818,6 +11821,18 @@ declare namespace sap {
11818
11821
  */
11819
11822
  iIndex: int
11820
11823
  ): this;
11824
+ /**
11825
+ * Opens the FileUploader dialog. When an UploadSetItem is provided, this method can be used to update a
11826
+ * file with a new version.
11827
+ *
11828
+ * @returns this to allow method chaining
11829
+ */
11830
+ openFileDialog(
11831
+ /**
11832
+ * The UploadSetItem to update with a new version. This parameter is mandatory.
11833
+ */
11834
+ item: /* was: sap.m.UploadSetItem */ any
11835
+ ): this;
11821
11836
  /**
11822
11837
  * Attaches all necessary handlers to the given uploader instance, so that the progress and status of the
11823
11838
  * upload can be displayed and monitored. This is necessary in case when custom uploader is used.
@@ -13093,6 +13108,81 @@ declare namespace sap {
13093
13108
  bVisibleRemove?: boolean
13094
13109
  ): this;
13095
13110
  }
13111
+ /**
13112
+ * Used to create a customizable toolbar for the UploadSet. A FileUploader instance is required in the toolbar
13113
+ * and it is placed by the application.
13114
+ */
13115
+ class UploadSetToolbarPlaceholder extends sap.ui.core.Control {
13116
+ /**
13117
+ * Constructor for a new UploadSetToolbarPlaceholder.
13118
+ *
13119
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
13120
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
13121
+ * of the syntax of the settings object.
13122
+ *
13123
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor
13124
+ * sap.ui.core.Control} can be used.
13125
+ */
13126
+ constructor(
13127
+ /**
13128
+ * initial settings for the new control
13129
+ */
13130
+ mSettings?: sap.m.upload.$UploadSetToolbarPlaceholderSettings
13131
+ );
13132
+ /**
13133
+ * Constructor for a new UploadSetToolbarPlaceholder.
13134
+ *
13135
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
13136
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
13137
+ * of the syntax of the settings object.
13138
+ *
13139
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor
13140
+ * sap.ui.core.Control} can be used.
13141
+ */
13142
+ constructor(
13143
+ /**
13144
+ * ID for the new control, generated automatically if no ID is given
13145
+ */
13146
+ sId?: string,
13147
+ /**
13148
+ * initial settings for the new control
13149
+ */
13150
+ mSettings?: sap.m.upload.$UploadSetToolbarPlaceholderSettings
13151
+ );
13152
+
13153
+ /**
13154
+ * Creates a new subclass of class sap.m.upload.UploadSetToolbarPlaceholder with name `sClassName` and enriches
13155
+ * it with the information contained in `oClassInfo`.
13156
+ *
13157
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
13158
+ *
13159
+ * @returns Created class / constructor function
13160
+ */
13161
+ static extend<T extends Record<string, unknown>>(
13162
+ /**
13163
+ * Name of the class being created
13164
+ */
13165
+ sClassName: string,
13166
+ /**
13167
+ * Object literal with information about the class
13168
+ */
13169
+ oClassInfo?: sap.ClassInfo<
13170
+ T,
13171
+ sap.m.upload.UploadSetToolbarPlaceholder
13172
+ >,
13173
+ /**
13174
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13175
+ * used by this class
13176
+ */
13177
+ FNMetaImpl?: Function
13178
+ ): Function;
13179
+ /**
13180
+ * Returns a metadata object for class sap.m.upload.UploadSetToolbarPlaceholder.
13181
+ *
13182
+ * @returns Metadata object describing this class
13183
+ */
13184
+ static getMetadata(): sap.ui.core.ElementMetadata;
13185
+ }
13096
13186
  /**
13097
13187
  * @SINCE 1.90
13098
13188
  *
@@ -17295,7 +17385,7 @@ declare namespace sap {
17295
17385
 
17296
17386
  /**
17297
17387
  * @SINCE 1.95
17298
- * @EXPERIMENTAL
17388
+ * @EXPERIMENTAL (since 1.95)
17299
17389
  *
17300
17390
  * The semantic color of the value.
17301
17391
  */
@@ -17304,6 +17394,14 @@ declare namespace sap {
17304
17394
  | sap.ui.base.ManagedObject.PropertyBindingInfo
17305
17395
  | `{${string}}`;
17306
17396
 
17397
+ /**
17398
+ * The load state of the tileIcon.
17399
+ */
17400
+ iconLoaded?:
17401
+ | boolean
17402
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
17403
+ | `{${string}}`;
17404
+
17307
17405
  /**
17308
17406
  * The content of the tile.
17309
17407
  */
@@ -19060,8 +19158,9 @@ declare namespace sap {
19060
19158
  | `{${string}}`;
19061
19159
 
19062
19160
  /**
19063
- * Defines the link target URI. Supports standard hyperlink behavior. If a JavaScript action should be triggered,
19064
- * this should not be set, but instead an event handler for the `press` event should be registered.
19161
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
19162
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
19163
+ * and register a `press` event handler.
19065
19164
  */
19066
19165
  href?:
19067
19166
  | sap.ui.core.URI
@@ -19153,6 +19252,22 @@ declare namespace sap {
19153
19252
  | sap.ui.base.ManagedObject.PropertyBindingInfo
19154
19253
  | `{${string}}`;
19155
19254
 
19255
+ /**
19256
+ * @SINCE 1.102.2
19257
+ *
19258
+ * Describes the accessibility role of the link:
19259
+ * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
19260
+ *
19261
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
19262
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
19263
+ *
19264
+ * **Note:** This is a downported feature introduced in version 1.104
19265
+ */
19266
+ accessibleRole?:
19267
+ | sap.m.LinkAccessibleRole
19268
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
19269
+ | `{${string}}`;
19270
+
19156
19271
  /**
19157
19272
  * @SINCE 1.89
19158
19273
  *
@@ -28723,10 +28838,15 @@ declare namespace sap {
28723
28838
  * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
28724
28839
  */
28725
28840
  priority?:
28726
- | sap.ui.core.Priority
28841
+ | sap.m.Priority
28727
28842
  | sap.ui.base.ManagedObject.PropertyBindingInfo
28728
28843
  | `{${string}}`;
28729
28844
 
28845
+ /**
28846
+ * Sets the Text inside the Priority badge in Generic Tile ActionMode.
28847
+ */
28848
+ priorityText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
28849
+
28730
28850
  /**
28731
28851
  * @SINCE 1.100.0
28732
28852
  *
@@ -30411,6 +30531,17 @@ declare namespace sap {
30411
30531
  */
30412
30532
  aOptionKeys: any[]
30413
30533
  ): object[];
30534
+ /**
30535
+ * Returns a date in machine timezone setting, removing the offset added by the application configuration.
30536
+ *
30537
+ * @returns A local JS date with removed offset
30538
+ */
30539
+ removeTimezoneOffset(
30540
+ /**
30541
+ * A local JS date with added offset
30542
+ */
30543
+ oDate: Object
30544
+ ): Object;
30414
30545
  /**
30415
30546
  * Calculates a date range from a provided object in the format of the DynamicDateRange's value.
30416
30547
  *
@@ -53334,6 +53465,16 @@ declare namespace sap {
53334
53465
  * to display an icon or image use sap.m.ImageContent control instead.
53335
53466
  */
53336
53467
  getIcon(): sap.ui.core.Control;
53468
+ /**
53469
+ * Gets current value of property {@link #getIconLoaded iconLoaded}.
53470
+ *
53471
+ * The load state of the tileIcon.
53472
+ *
53473
+ * Default value is `true`.
53474
+ *
53475
+ * @returns Value of property `iconLoaded`
53476
+ */
53477
+ getIconLoaded(): boolean;
53337
53478
  /**
53338
53479
  * Gets current value of property {@link #getImageDescription imageDescription}.
53339
53480
  *
@@ -53469,7 +53610,7 @@ declare namespace sap {
53469
53610
  getUrl(): sap.ui.core.URI;
53470
53611
  /**
53471
53612
  * @SINCE 1.95
53472
- * @EXPERIMENTAL
53613
+ * @EXPERIMENTAL (since 1.95)
53473
53614
  *
53474
53615
  * Gets current value of property {@link #getValueColor valueColor}.
53475
53616
  *
@@ -53823,6 +53964,23 @@ declare namespace sap {
53823
53964
  */
53824
53965
  oIcon: sap.ui.core.Control
53825
53966
  ): this;
53967
+ /**
53968
+ * Sets a new value for property {@link #getIconLoaded iconLoaded}.
53969
+ *
53970
+ * The load state of the tileIcon.
53971
+ *
53972
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
53973
+ *
53974
+ * Default value is `true`.
53975
+ *
53976
+ * @returns Reference to `this` in order to allow method chaining
53977
+ */
53978
+ setIconLoaded(
53979
+ /**
53980
+ * New value for property `iconLoaded`
53981
+ */
53982
+ bIconLoaded?: boolean
53983
+ ): this;
53826
53984
  /**
53827
53985
  * Sets a new value for property {@link #getImageDescription imageDescription}.
53828
53986
  *
@@ -54028,7 +54186,7 @@ declare namespace sap {
54028
54186
  ): this;
54029
54187
  /**
54030
54188
  * @SINCE 1.95
54031
- * @EXPERIMENTAL
54189
+ * @EXPERIMENTAL (since 1.95)
54032
54190
  *
54033
54191
  * Sets a new value for property {@link #getValueColor valueColor}.
54034
54192
  *
@@ -55635,9 +55793,15 @@ declare namespace sap {
55635
55793
  */
55636
55794
  getShowOverflowSelectList(): boolean;
55637
55795
  /**
55638
- * Reflector for the internal header's showSelection property.
55796
+ * @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
55639
55797
  *
55640
- * @returns The current property value.
55798
+ * Gets current value of property {@link #getShowSelection showSelection}.
55799
+ *
55800
+ * Defines whether the current selection should be visualized.
55801
+ *
55802
+ * Default value is `true`.
55803
+ *
55804
+ * @returns Value of property `showSelection`
55641
55805
  */
55642
55806
  getShowSelection(): boolean;
55643
55807
  /**
@@ -63225,6 +63389,24 @@ declare namespace sap {
63225
63389
  * @returns The `sap.m.Link` accessibility information
63226
63390
  */
63227
63391
  getAccessibilityInfo(): object;
63392
+ /**
63393
+ * @SINCE 1.102.2
63394
+ *
63395
+ * Gets current value of property {@link #getAccessibleRole accessibleRole}.
63396
+ *
63397
+ * Describes the accessibility role of the link:
63398
+ * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
63399
+ *
63400
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
63401
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
63402
+ *
63403
+ * **Note:** This is a downported feature introduced in version 1.104
63404
+ *
63405
+ * Default value is `Default`.
63406
+ *
63407
+ * @returns Value of property `accessibleRole`
63408
+ */
63409
+ getAccessibleRole(): sap.m.LinkAccessibleRole;
63228
63410
  /**
63229
63411
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
63230
63412
  * ariaDescribedBy}.
@@ -63293,8 +63475,9 @@ declare namespace sap {
63293
63475
  /**
63294
63476
  * Gets current value of property {@link #getHref href}.
63295
63477
  *
63296
- * Defines the link target URI. Supports standard hyperlink behavior. If a JavaScript action should be triggered,
63297
- * this should not be set, but instead an event handler for the `press` event should be registered.
63478
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
63479
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
63480
+ * and register a `press` event handler.
63298
63481
  *
63299
63482
  * @returns Value of property `href`
63300
63483
  */
@@ -63443,6 +63626,31 @@ declare namespace sap {
63443
63626
  */
63444
63627
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
63445
63628
  ): sap.ui.core.ID;
63629
+ /**
63630
+ * @SINCE 1.102.2
63631
+ *
63632
+ * Sets a new value for property {@link #getAccessibleRole accessibleRole}.
63633
+ *
63634
+ * Describes the accessibility role of the link:
63635
+ * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
63636
+ *
63637
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
63638
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
63639
+ *
63640
+ * **Note:** This is a downported feature introduced in version 1.104
63641
+ *
63642
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
63643
+ *
63644
+ * Default value is `Default`.
63645
+ *
63646
+ * @returns Reference to `this` in order to allow method chaining
63647
+ */
63648
+ setAccessibleRole(
63649
+ /**
63650
+ * New value for property `accessibleRole`
63651
+ */
63652
+ sAccessibleRole?: sap.m.LinkAccessibleRole
63653
+ ): this;
63446
63654
  /**
63447
63655
  * @SINCE 1.86.0
63448
63656
  *
@@ -63529,8 +63737,9 @@ declare namespace sap {
63529
63737
  /**
63530
63738
  * Sets a new value for property {@link #getHref href}.
63531
63739
  *
63532
- * Defines the link target URI. Supports standard hyperlink behavior. If a JavaScript action should be triggered,
63533
- * this should not be set, but instead an event handler for the `press` event should be registered.
63740
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
63741
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
63742
+ * and register a `press` event handler.
63534
63743
  *
63535
63744
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
63536
63745
  *
@@ -121375,7 +121584,15 @@ declare namespace sap {
121375
121584
  *
121376
121585
  * @returns Value of property `priority`
121377
121586
  */
121378
- getPriority(): sap.ui.core.Priority;
121587
+ getPriority(): sap.m.Priority;
121588
+ /**
121589
+ * Gets current value of property {@link #getPriorityText priorityText}.
121590
+ *
121591
+ * Sets the Text inside the Priority badge in Generic Tile ActionMode.
121592
+ *
121593
+ * @returns Value of property `priorityText`
121594
+ */
121595
+ getPriorityText(): string;
121379
121596
  /**
121380
121597
  * @deprecated (since 1.38.0) - The TileContent control has now a fixed size, depending on the used media
121381
121598
  * (desktop, tablet or phone).
@@ -121506,7 +121723,22 @@ declare namespace sap {
121506
121723
  /**
121507
121724
  * New value for property `priority`
121508
121725
  */
121509
- sPriority?: sap.ui.core.Priority
121726
+ sPriority?: sap.m.Priority
121727
+ ): this;
121728
+ /**
121729
+ * Sets a new value for property {@link #getPriorityText priorityText}.
121730
+ *
121731
+ * Sets the Text inside the Priority badge in Generic Tile ActionMode.
121732
+ *
121733
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
121734
+ *
121735
+ * @returns Reference to `this` in order to allow method chaining
121736
+ */
121737
+ setPriorityText(
121738
+ /**
121739
+ * New value for property `priorityText`
121740
+ */
121741
+ sPriorityText?: string
121510
121742
  ): this;
121511
121743
  /**
121512
121744
  * Setter for protected property to enable or disable content rendering. This function does not invalidate
@@ -134713,6 +134945,21 @@ declare namespace sap {
134713
134945
  */
134714
134946
  TimeOutError = "TIME_OUT_ERROR",
134715
134947
  }
134948
+ /**
134949
+ * @SINCE 1.102.2
134950
+ *
134951
+ * Enumeration for possible Link accessibility roles.
134952
+ */
134953
+ enum LinkAccessibleRole {
134954
+ /**
134955
+ * Link will receive `role="Button"` attibute.
134956
+ */
134957
+ Button = "Button",
134958
+ /**
134959
+ * Default mode.
134960
+ */
134961
+ Default = "Default",
134962
+ }
134716
134963
  /**
134717
134964
  * @SINCE 1.45.5
134718
134965
  *
@@ -135401,6 +135648,31 @@ declare namespace sap {
135401
135648
  */
135402
135649
  GridSmall = "GridSmall",
135403
135650
  }
135651
+ /**
135652
+ * Defines the priority for the TileContent in ActionMode
135653
+ */
135654
+ enum Priority {
135655
+ /**
135656
+ * It displays high priority color for the GenericTag
135657
+ */
135658
+ High = "High",
135659
+ /**
135660
+ * It displays low priority color for the GenericTag
135661
+ */
135662
+ Low = "Low",
135663
+ /**
135664
+ * It displays medium priority color for the GenericTag
135665
+ */
135666
+ Medium = "Medium",
135667
+ /**
135668
+ * The priority is not set
135669
+ */
135670
+ None = "None",
135671
+ /**
135672
+ * It displays very high priority color for the GenericTag
135673
+ */
135674
+ VeryHigh = "VeryHigh",
135675
+ }
135404
135676
  /**
135405
135677
  * QuickViewGroupElement is a combination of one label and another control (Link or Text) associated to
135406
135678
  * this label.
@@ -136796,6 +137068,8 @@ declare namespace sap {
136796
137068
 
136797
137069
  "sap/m/upload/UploadSetItem": undefined;
136798
137070
 
137071
+ "sap/m/upload/UploadSetToolbarPlaceholder": undefined;
137072
+
136799
137073
  "sap/m/UploadCollection": undefined;
136800
137074
 
136801
137075
  "sap/m/UploadCollectionItem": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.102.0
267
+ // For Library Version: 1.102.4
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -13773,6 +13773,11 @@ declare namespace sap {
13773
13773
  * only when the 'style' options is set to either 'short' or 'long'.
13774
13774
  */
13775
13775
  showScale?: boolean;
13776
+ /**
13777
+ * whether the positions of grouping separators are validated. Space characters used as grouping separators
13778
+ * are not validated.
13779
+ */
13780
+ strictGroupingValidation?: boolean;
13776
13781
  /**
13777
13782
  * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on the CLDR decimalFormat).
13778
13783
  * When set to 'short' or 'long', numbers are formatted into compact forms. When this option is set, the
@@ -13964,6 +13969,11 @@ declare namespace sap {
13964
13969
  * only when the 'style' options is set to either 'short' or 'long'.
13965
13970
  */
13966
13971
  showScale?: boolean;
13972
+ /**
13973
+ * whether the positions of grouping separators are validated. Space characters used as grouping separators
13974
+ * are not validated.
13975
+ */
13976
+ strictGroupingValidation?: boolean;
13967
13977
  /**
13968
13978
  * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on the CLDR decimalFormat).
13969
13979
  * When set to 'short' or 'long', numbers are formatted into compact forms. When this option is set, the
@@ -14112,6 +14122,11 @@ declare namespace sap {
14112
14122
  * only when the 'style' options is set to either 'short' or 'long'.
14113
14123
  */
14114
14124
  showScale?: boolean;
14125
+ /**
14126
+ * whether the positions of grouping separators are validated. Space characters used as grouping separators
14127
+ * are not validated.
14128
+ */
14129
+ strictGroupingValidation?: boolean;
14115
14130
  /**
14116
14131
  * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on the CLDR decimalFormat).
14117
14132
  * When set to 'short' or 'long', numbers are formatted into compact forms. When this option is set, the
@@ -14274,6 +14289,11 @@ declare namespace sap {
14274
14289
  * only when the 'style' options is set to either 'short' or 'long'.
14275
14290
  */
14276
14291
  showScale?: boolean;
14292
+ /**
14293
+ * whether the positions of grouping separators are validated. Space characters used as grouping separators
14294
+ * are not validated.
14295
+ */
14296
+ strictGroupingValidation?: boolean;
14277
14297
  /**
14278
14298
  * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on the CLDR decimalFormat).
14279
14299
  * When set to 'short' or 'long', numbers are formatted into compact forms. When this option is set, the
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.4
2
2
 
3
3
  declare namespace sap {
4
4
  /**