@openui5/ts-types 1.102.0 → 1.102.3

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.3",
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.3
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.3
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
  *
@@ -53334,6 +53454,16 @@ declare namespace sap {
53334
53454
  * to display an icon or image use sap.m.ImageContent control instead.
53335
53455
  */
53336
53456
  getIcon(): sap.ui.core.Control;
53457
+ /**
53458
+ * Gets current value of property {@link #getIconLoaded iconLoaded}.
53459
+ *
53460
+ * The load state of the tileIcon.
53461
+ *
53462
+ * Default value is `true`.
53463
+ *
53464
+ * @returns Value of property `iconLoaded`
53465
+ */
53466
+ getIconLoaded(): boolean;
53337
53467
  /**
53338
53468
  * Gets current value of property {@link #getImageDescription imageDescription}.
53339
53469
  *
@@ -53469,7 +53599,7 @@ declare namespace sap {
53469
53599
  getUrl(): sap.ui.core.URI;
53470
53600
  /**
53471
53601
  * @SINCE 1.95
53472
- * @EXPERIMENTAL
53602
+ * @EXPERIMENTAL (since 1.95)
53473
53603
  *
53474
53604
  * Gets current value of property {@link #getValueColor valueColor}.
53475
53605
  *
@@ -53823,6 +53953,23 @@ declare namespace sap {
53823
53953
  */
53824
53954
  oIcon: sap.ui.core.Control
53825
53955
  ): this;
53956
+ /**
53957
+ * Sets a new value for property {@link #getIconLoaded iconLoaded}.
53958
+ *
53959
+ * The load state of the tileIcon.
53960
+ *
53961
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
53962
+ *
53963
+ * Default value is `true`.
53964
+ *
53965
+ * @returns Reference to `this` in order to allow method chaining
53966
+ */
53967
+ setIconLoaded(
53968
+ /**
53969
+ * New value for property `iconLoaded`
53970
+ */
53971
+ bIconLoaded?: boolean
53972
+ ): this;
53826
53973
  /**
53827
53974
  * Sets a new value for property {@link #getImageDescription imageDescription}.
53828
53975
  *
@@ -54028,7 +54175,7 @@ declare namespace sap {
54028
54175
  ): this;
54029
54176
  /**
54030
54177
  * @SINCE 1.95
54031
- * @EXPERIMENTAL
54178
+ * @EXPERIMENTAL (since 1.95)
54032
54179
  *
54033
54180
  * Sets a new value for property {@link #getValueColor valueColor}.
54034
54181
  *
@@ -63225,6 +63372,24 @@ declare namespace sap {
63225
63372
  * @returns The `sap.m.Link` accessibility information
63226
63373
  */
63227
63374
  getAccessibilityInfo(): object;
63375
+ /**
63376
+ * @SINCE 1.102.2
63377
+ *
63378
+ * Gets current value of property {@link #getAccessibleRole accessibleRole}.
63379
+ *
63380
+ * Describes the accessibility role of the link:
63381
+ * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
63382
+ *
63383
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
63384
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
63385
+ *
63386
+ * **Note:** This is a downported feature introduced in version 1.104
63387
+ *
63388
+ * Default value is `Default`.
63389
+ *
63390
+ * @returns Value of property `accessibleRole`
63391
+ */
63392
+ getAccessibleRole(): sap.m.LinkAccessibleRole;
63228
63393
  /**
63229
63394
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
63230
63395
  * ariaDescribedBy}.
@@ -63293,8 +63458,9 @@ declare namespace sap {
63293
63458
  /**
63294
63459
  * Gets current value of property {@link #getHref href}.
63295
63460
  *
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.
63461
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
63462
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
63463
+ * and register a `press` event handler.
63298
63464
  *
63299
63465
  * @returns Value of property `href`
63300
63466
  */
@@ -63443,6 +63609,31 @@ declare namespace sap {
63443
63609
  */
63444
63610
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
63445
63611
  ): sap.ui.core.ID;
63612
+ /**
63613
+ * @SINCE 1.102.2
63614
+ *
63615
+ * Sets a new value for property {@link #getAccessibleRole accessibleRole}.
63616
+ *
63617
+ * Describes the accessibility role of the link:
63618
+ * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
63619
+ *
63620
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
63621
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
63622
+ *
63623
+ * **Note:** This is a downported feature introduced in version 1.104
63624
+ *
63625
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
63626
+ *
63627
+ * Default value is `Default`.
63628
+ *
63629
+ * @returns Reference to `this` in order to allow method chaining
63630
+ */
63631
+ setAccessibleRole(
63632
+ /**
63633
+ * New value for property `accessibleRole`
63634
+ */
63635
+ sAccessibleRole?: sap.m.LinkAccessibleRole
63636
+ ): this;
63446
63637
  /**
63447
63638
  * @SINCE 1.86.0
63448
63639
  *
@@ -63529,8 +63720,9 @@ declare namespace sap {
63529
63720
  /**
63530
63721
  * Sets a new value for property {@link #getHref href}.
63531
63722
  *
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.
63723
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
63724
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
63725
+ * and register a `press` event handler.
63534
63726
  *
63535
63727
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
63536
63728
  *
@@ -121375,7 +121567,15 @@ declare namespace sap {
121375
121567
  *
121376
121568
  * @returns Value of property `priority`
121377
121569
  */
121378
- getPriority(): sap.ui.core.Priority;
121570
+ getPriority(): sap.m.Priority;
121571
+ /**
121572
+ * Gets current value of property {@link #getPriorityText priorityText}.
121573
+ *
121574
+ * Sets the Text inside the Priority badge in Generic Tile ActionMode.
121575
+ *
121576
+ * @returns Value of property `priorityText`
121577
+ */
121578
+ getPriorityText(): string;
121379
121579
  /**
121380
121580
  * @deprecated (since 1.38.0) - The TileContent control has now a fixed size, depending on the used media
121381
121581
  * (desktop, tablet or phone).
@@ -121506,7 +121706,22 @@ declare namespace sap {
121506
121706
  /**
121507
121707
  * New value for property `priority`
121508
121708
  */
121509
- sPriority?: sap.ui.core.Priority
121709
+ sPriority?: sap.m.Priority
121710
+ ): this;
121711
+ /**
121712
+ * Sets a new value for property {@link #getPriorityText priorityText}.
121713
+ *
121714
+ * Sets the Text inside the Priority badge in Generic Tile ActionMode.
121715
+ *
121716
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
121717
+ *
121718
+ * @returns Reference to `this` in order to allow method chaining
121719
+ */
121720
+ setPriorityText(
121721
+ /**
121722
+ * New value for property `priorityText`
121723
+ */
121724
+ sPriorityText?: string
121510
121725
  ): this;
121511
121726
  /**
121512
121727
  * Setter for protected property to enable or disable content rendering. This function does not invalidate
@@ -134713,6 +134928,21 @@ declare namespace sap {
134713
134928
  */
134714
134929
  TimeOutError = "TIME_OUT_ERROR",
134715
134930
  }
134931
+ /**
134932
+ * @SINCE 1.102.2
134933
+ *
134934
+ * Enumeration for possible Link accessibility roles.
134935
+ */
134936
+ enum LinkAccessibleRole {
134937
+ /**
134938
+ * Link will receive `role="Button"` attibute.
134939
+ */
134940
+ Button = "Button",
134941
+ /**
134942
+ * Default mode.
134943
+ */
134944
+ Default = "Default",
134945
+ }
134716
134946
  /**
134717
134947
  * @SINCE 1.45.5
134718
134948
  *
@@ -135401,6 +135631,31 @@ declare namespace sap {
135401
135631
  */
135402
135632
  GridSmall = "GridSmall",
135403
135633
  }
135634
+ /**
135635
+ * Defines the priority for the TileContent in ActionMode
135636
+ */
135637
+ enum Priority {
135638
+ /**
135639
+ * It displays high priority color for the GenericTag
135640
+ */
135641
+ High = "High",
135642
+ /**
135643
+ * It displays low priority color for the GenericTag
135644
+ */
135645
+ Low = "Low",
135646
+ /**
135647
+ * It displays medium priority color for the GenericTag
135648
+ */
135649
+ Medium = "Medium",
135650
+ /**
135651
+ * The priority is not set
135652
+ */
135653
+ None = "None",
135654
+ /**
135655
+ * It displays very high priority color for the GenericTag
135656
+ */
135657
+ VeryHigh = "VeryHigh",
135658
+ }
135404
135659
  /**
135405
135660
  * QuickViewGroupElement is a combination of one label and another control (Link or Text) associated to
135406
135661
  * this label.
@@ -136796,6 +137051,8 @@ declare namespace sap {
136796
137051
 
136797
137052
  "sap/m/upload/UploadSetItem": undefined;
136798
137053
 
137054
+ "sap/m/upload/UploadSetToolbarPlaceholder": undefined;
137055
+
136799
137056
  "sap/m/UploadCollection": undefined;
136800
137057
 
136801
137058
  "sap/m/UploadCollectionItem": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.3
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.3
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.3
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.3
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.3
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.3
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.3
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.3
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.3
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.3
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.3
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.3
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.3
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.3
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.3
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.3
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.3
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.3
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.3
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.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**