@openui5/ts-types 1.145.1 → 1.147.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +0 -3
- package/types/sap.f.d.ts +214 -528
- package/types/sap.m.d.ts +607 -48
- package/types/sap.tnt.d.ts +9 -19
- package/types/sap.ui.codeeditor.d.ts +82 -46
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1209 -376
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +9 -1
- package/types/sap.ui.integration.d.ts +87 -289
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +108 -21
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +2 -2
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +41 -11
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.uxap.d.ts +146 -1
- package/types/sap.ui.webc.common.d.ts +0 -173
- package/types/sap.ui.webc.fiori.d.ts +0 -16012
- package/types/sap.ui.webc.main.d.ts +0 -51158
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.147.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -9880,8 +9880,10 @@ declare namespace sap {
|
|
|
9880
9880
|
interface $FilterBarBaseSettings extends sap.ui.mdc.$ControlSettings {
|
|
9881
9881
|
/**
|
|
9882
9882
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
9883
|
-
* The object has the following properties:
|
|
9884
|
-
*
|
|
9883
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
9884
|
+
*
|
|
9885
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/FilterBarDelegate FilterBarDelegate}.
|
|
9886
|
+
*
|
|
9885
9887
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
9886
9888
|
* Sample delegate object:
|
|
9887
9889
|
* ```javascript
|
|
@@ -9952,8 +9954,8 @@ declare namespace sap {
|
|
|
9952
9954
|
* aggregation) should be specified here, rather than in the `FilterField` configuration.
|
|
9953
9955
|
* **Note**: This property must not be bound.
|
|
9954
9956
|
* **Node**: Please check {@link sap.ui.mdc.filterbar.PropertyInfo} for more information about the supported
|
|
9955
|
-
* inner elements. **Note**: Existing properties (set via
|
|
9956
|
-
*
|
|
9957
|
+
* inner elements. **Note**: Existing properties (set via {@link #setPropertyInfo setPropertyInfo}) must
|
|
9958
|
+
* not be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
|
|
9957
9959
|
* callback. Otherwise validation errors might occur whenever personalization-related control features (such
|
|
9958
9960
|
* as the opening of any personalization dialog) are activated.
|
|
9959
9961
|
*
|
|
@@ -10149,6 +10151,28 @@ declare namespace sap {
|
|
|
10149
10151
|
*/
|
|
10150
10152
|
oInvisibleText: sap.ui.core.InvisibleText
|
|
10151
10153
|
): void;
|
|
10154
|
+
/**
|
|
10155
|
+
* Adds a message to the {@link sap.ui.model.message.MessageModel MessageModel} for a `propertyKey`. The
|
|
10156
|
+
* message is displayed on the corresponding {@link sap.ui.mdc.FilterField FilterField}.
|
|
10157
|
+
*
|
|
10158
|
+
* @since 1.147
|
|
10159
|
+
*
|
|
10160
|
+
* @returns The created message object
|
|
10161
|
+
*/
|
|
10162
|
+
addMessage(
|
|
10163
|
+
/**
|
|
10164
|
+
* The `propertyKey` of the {@link sap.ui.mdc.FilterField FilterField}
|
|
10165
|
+
*/
|
|
10166
|
+
sPropertyKey: string,
|
|
10167
|
+
/**
|
|
10168
|
+
* The message text
|
|
10169
|
+
*/
|
|
10170
|
+
sMessage: string,
|
|
10171
|
+
/**
|
|
10172
|
+
* The message type
|
|
10173
|
+
*/
|
|
10174
|
+
sMessageType: sap.ui.core.MessageType
|
|
10175
|
+
): sap.ui.core.message.Message;
|
|
10152
10176
|
/**
|
|
10153
10177
|
* Attaches event handler `fnFunction` to the {@link #event:filtersChanged filtersChanged} event of this
|
|
10154
10178
|
* `sap.ui.mdc.filterbar.FilterBarBase`.
|
|
@@ -10395,8 +10419,10 @@ declare namespace sap {
|
|
|
10395
10419
|
* Gets current value of property {@link #getDelegate delegate}.
|
|
10396
10420
|
*
|
|
10397
10421
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
10398
|
-
* The object has the following properties:
|
|
10399
|
-
*
|
|
10422
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
10423
|
+
*
|
|
10424
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/FilterBarDelegate FilterBarDelegate}.
|
|
10425
|
+
*
|
|
10400
10426
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
10401
10427
|
* Sample delegate object:
|
|
10402
10428
|
* ```javascript
|
|
@@ -10454,6 +10480,19 @@ declare namespace sap {
|
|
|
10454
10480
|
* @returns Value of property `liveMode`
|
|
10455
10481
|
*/
|
|
10456
10482
|
getLiveMode(): boolean;
|
|
10483
|
+
/**
|
|
10484
|
+
* Returns all messages associated with the given `propertyKey` from the {@link sap.ui.model.message.MessageModel MessageModel}.
|
|
10485
|
+
*
|
|
10486
|
+
* @since 1.147
|
|
10487
|
+
*
|
|
10488
|
+
* @returns Array of messages for the given `propertyKey`
|
|
10489
|
+
*/
|
|
10490
|
+
getMessages(
|
|
10491
|
+
/**
|
|
10492
|
+
* The `propertyKey` of the {@link sap.ui.mdc.FilterField FilterField}
|
|
10493
|
+
*/
|
|
10494
|
+
sPropertyKey: string
|
|
10495
|
+
): sap.ui.core.message.Message[];
|
|
10457
10496
|
/**
|
|
10458
10497
|
* Gets the value of the basic search condition.
|
|
10459
10498
|
*
|
|
@@ -10531,6 +10570,30 @@ declare namespace sap {
|
|
|
10531
10570
|
* @returns Resolves after the initial filters have been applied and the metadata has been obtained
|
|
10532
10571
|
*/
|
|
10533
10572
|
initializedWithMetadata(): Promise<any>;
|
|
10573
|
+
/**
|
|
10574
|
+
* Removes a given message from the {@link sap.ui.model.message.MessageModel MessageModel}. The message
|
|
10575
|
+
* is removed from the corresponding {@link sap.ui.mdc.FilterField FilterField}.
|
|
10576
|
+
*
|
|
10577
|
+
* @since 1.147
|
|
10578
|
+
*/
|
|
10579
|
+
removeMessage(
|
|
10580
|
+
/**
|
|
10581
|
+
* The message to remove
|
|
10582
|
+
*/
|
|
10583
|
+
oMessage: sap.ui.core.Message
|
|
10584
|
+
): void;
|
|
10585
|
+
/**
|
|
10586
|
+
* Removes all messages for the given `propertyKey` from the {@link sap.ui.model.message.MessageModel MessageModel}.
|
|
10587
|
+
* Clears the messages from the corresponding {@link sap.ui.mdc.FilterField FilterField}.
|
|
10588
|
+
*
|
|
10589
|
+
* @since 1.147
|
|
10590
|
+
*/
|
|
10591
|
+
removeMessages(
|
|
10592
|
+
/**
|
|
10593
|
+
* The `propertyKey` of the {@link sap.ui.mdc.FilterField FilterField}
|
|
10594
|
+
*/
|
|
10595
|
+
sPropertyKey: string
|
|
10596
|
+
): void;
|
|
10534
10597
|
/**
|
|
10535
10598
|
* Sets the aggregated {@link #getBasicSearchField basicSearchField}.
|
|
10536
10599
|
*
|
|
@@ -10547,8 +10610,10 @@ declare namespace sap {
|
|
|
10547
10610
|
* Sets a new value for property {@link #getDelegate delegate}.
|
|
10548
10611
|
*
|
|
10549
10612
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
10550
|
-
* The object has the following properties:
|
|
10551
|
-
*
|
|
10613
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
10614
|
+
*
|
|
10615
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/FilterBarDelegate FilterBarDelegate}.
|
|
10616
|
+
*
|
|
10552
10617
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
10553
10618
|
* Sample delegate object:
|
|
10554
10619
|
* ```javascript
|
|
@@ -10957,7 +11022,7 @@ declare namespace sap {
|
|
|
10957
11022
|
visible?: boolean;
|
|
10958
11023
|
/**
|
|
10959
11024
|
* Key of the group in which the property is located. Used to visually group properties in personalization
|
|
10960
|
-
* dialogs.
|
|
11025
|
+
* dialogs. The group with the `basic` key is always shown as the first group.
|
|
10961
11026
|
*/
|
|
10962
11027
|
group?: string;
|
|
10963
11028
|
/**
|
|
@@ -19744,8 +19809,10 @@ declare namespace sap {
|
|
|
19744
19809
|
|
|
19745
19810
|
/**
|
|
19746
19811
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
19747
|
-
* The object has the following properties:
|
|
19748
|
-
*
|
|
19812
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
19813
|
+
*
|
|
19814
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/ChartDelegate ChartDelegate}.
|
|
19815
|
+
*
|
|
19749
19816
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
19750
19817
|
* Sample delegate object:
|
|
19751
19818
|
* ```javascript
|
|
@@ -20020,7 +20087,8 @@ declare namespace sap {
|
|
|
20020
20087
|
interface $ControlSettings extends sap.ui.core.$ControlSettings {
|
|
20021
20088
|
/**
|
|
20022
20089
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
20023
|
-
* The object has the following properties:
|
|
20090
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
20091
|
+
*
|
|
20024
20092
|
* - `name` defines the path to the `Delegate` module
|
|
20025
20093
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
20026
20094
|
* Sample delegate object:
|
|
@@ -20045,7 +20113,8 @@ declare namespace sap {
|
|
|
20045
20113
|
interface $ElementSettings extends sap.ui.core.$ElementSettings {
|
|
20046
20114
|
/**
|
|
20047
20115
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
20048
|
-
* The object has the following properties:
|
|
20116
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
20117
|
+
*
|
|
20049
20118
|
* - `name` defines the path to the `Delegate` module
|
|
20050
20119
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
20051
20120
|
* Sample delegate object:
|
|
@@ -20476,7 +20545,8 @@ declare namespace sap {
|
|
|
20476
20545
|
/**
|
|
20477
20546
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
20478
20547
|
*
|
|
20479
|
-
* The object has the following properties:
|
|
20548
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
20549
|
+
*
|
|
20480
20550
|
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
|
|
20481
20551
|
*
|
|
20482
20552
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
@@ -21609,8 +21679,10 @@ declare namespace sap {
|
|
|
21609
21679
|
* Gets current value of property {@link #getDelegate delegate}.
|
|
21610
21680
|
*
|
|
21611
21681
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
21612
|
-
* The object has the following properties:
|
|
21613
|
-
*
|
|
21682
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
21683
|
+
*
|
|
21684
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/ChartDelegate ChartDelegate}.
|
|
21685
|
+
*
|
|
21614
21686
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
21615
21687
|
* Sample delegate object:
|
|
21616
21688
|
* ```javascript
|
|
@@ -21942,8 +22014,10 @@ declare namespace sap {
|
|
|
21942
22014
|
* Sets a new value for property {@link #getDelegate delegate}.
|
|
21943
22015
|
*
|
|
21944
22016
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
21945
|
-
* The object has the following properties:
|
|
21946
|
-
*
|
|
22017
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
22018
|
+
*
|
|
22019
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/ChartDelegate ChartDelegate}.
|
|
22020
|
+
*
|
|
21947
22021
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
21948
22022
|
* Sample delegate object:
|
|
21949
22023
|
* ```javascript
|
|
@@ -25677,7 +25751,8 @@ declare namespace sap {
|
|
|
25677
25751
|
*
|
|
25678
25752
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
25679
25753
|
*
|
|
25680
|
-
* The object has the following properties:
|
|
25754
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
25755
|
+
*
|
|
25681
25756
|
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
|
|
25682
25757
|
*
|
|
25683
25758
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
@@ -26238,7 +26313,8 @@ declare namespace sap {
|
|
|
26238
26313
|
*
|
|
26239
26314
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
26240
26315
|
*
|
|
26241
|
-
* The object has the following properties:
|
|
26316
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
26317
|
+
*
|
|
26242
26318
|
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
|
|
26243
26319
|
*
|
|
26244
26320
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
@@ -27178,6 +27254,17 @@ declare namespace sap {
|
|
|
27178
27254
|
): this;
|
|
27179
27255
|
}
|
|
27180
27256
|
|
|
27257
|
+
type DelegateConfig = {
|
|
27258
|
+
/**
|
|
27259
|
+
* Delegate module path
|
|
27260
|
+
*/
|
|
27261
|
+
name: string;
|
|
27262
|
+
/**
|
|
27263
|
+
* defines application-specific information that can be used in the given delegate
|
|
27264
|
+
*/
|
|
27265
|
+
payload?: any;
|
|
27266
|
+
};
|
|
27267
|
+
|
|
27181
27268
|
/**
|
|
27182
27269
|
* Acts a subset of the `FilterBarDelegate` that can be used in {@link module:sap/ui/mdc/TableDelegate.getFilterDelegate TableDelegate.getFilterDelegate }
|
|
27183
27270
|
* or {@link module:sap/ui/mdc/ChartDelegate.getFilterDelegate Chart.getFilterDelegate} to enable inbuilt
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.147.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -398,7 +398,7 @@ declare namespace sap {
|
|
|
398
398
|
/**
|
|
399
399
|
* Preset to find usages of deprecated controls, properties, aggregations and others.
|
|
400
400
|
*
|
|
401
|
-
* @
|
|
401
|
+
* @since 1.120
|
|
402
402
|
*/
|
|
403
403
|
Deprecations = "undefined",
|
|
404
404
|
}
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.147.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -7454,6 +7454,9 @@ declare namespace sap {
|
|
|
7454
7454
|
/**
|
|
7455
7455
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
7456
7456
|
*
|
|
7457
|
+
* **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
|
|
7458
|
+
* after version 50. **Note:** Multiple directory selection is not supported.
|
|
7459
|
+
*
|
|
7457
7460
|
* @since 1.105.0
|
|
7458
7461
|
*/
|
|
7459
7462
|
directory?:
|
|
@@ -7464,6 +7467,10 @@ declare namespace sap {
|
|
|
7464
7467
|
/**
|
|
7465
7468
|
* Indicates whether the file uploader is required.
|
|
7466
7469
|
*
|
|
7470
|
+
* **Note:** The control can be marked as required either by setting this property to `true` or by using
|
|
7471
|
+
* the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
|
|
7472
|
+
* property pointing to this control.
|
|
7473
|
+
*
|
|
7467
7474
|
* @since 1.144
|
|
7468
7475
|
*/
|
|
7469
7476
|
required?:
|
|
@@ -8321,7 +8328,7 @@ declare namespace sap {
|
|
|
8321
8328
|
/**
|
|
8322
8329
|
* Describes the settings that can be provided to the TimeRange constructor.
|
|
8323
8330
|
*
|
|
8324
|
-
* @experimental As of version 1.127.
|
|
8331
|
+
* @experimental As of version 1.127.
|
|
8325
8332
|
*/
|
|
8326
8333
|
interface $TimeRangeSettings extends sap.ui.core.$ElementSettings {
|
|
8327
8334
|
/**
|
|
@@ -16953,6 +16960,9 @@ declare namespace sap {
|
|
|
16953
16960
|
*
|
|
16954
16961
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
16955
16962
|
*
|
|
16963
|
+
* **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
|
|
16964
|
+
* after version 50. **Note:** Multiple directory selection is not supported.
|
|
16965
|
+
*
|
|
16956
16966
|
* Default value is `false`.
|
|
16957
16967
|
*
|
|
16958
16968
|
* @since 1.105.0
|
|
@@ -16995,7 +17005,7 @@ declare namespace sap {
|
|
|
16995
17005
|
*
|
|
16996
17006
|
* Chosen HTTP request method for file upload.
|
|
16997
17007
|
*
|
|
16998
|
-
* Default value is `
|
|
17008
|
+
* Default value is `POST`.
|
|
16999
17009
|
*
|
|
17000
17010
|
* @since 1.81.0
|
|
17001
17011
|
*
|
|
@@ -17184,6 +17194,10 @@ declare namespace sap {
|
|
|
17184
17194
|
*
|
|
17185
17195
|
* Indicates whether the file uploader is required.
|
|
17186
17196
|
*
|
|
17197
|
+
* **Note:** The control can be marked as required either by setting this property to `true` or by using
|
|
17198
|
+
* the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
|
|
17199
|
+
* property pointing to this control.
|
|
17200
|
+
*
|
|
17187
17201
|
* Default value is `false`.
|
|
17188
17202
|
*
|
|
17189
17203
|
* @since 1.144
|
|
@@ -17526,6 +17540,9 @@ declare namespace sap {
|
|
|
17526
17540
|
*
|
|
17527
17541
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
17528
17542
|
*
|
|
17543
|
+
* **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
|
|
17544
|
+
* after version 50. **Note:** Multiple directory selection is not supported.
|
|
17545
|
+
*
|
|
17529
17546
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17530
17547
|
*
|
|
17531
17548
|
* Default value is `false`.
|
|
@@ -17585,7 +17602,7 @@ declare namespace sap {
|
|
|
17585
17602
|
*
|
|
17586
17603
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17587
17604
|
*
|
|
17588
|
-
* Default value is `
|
|
17605
|
+
* Default value is `POST`.
|
|
17589
17606
|
*
|
|
17590
17607
|
* @since 1.81.0
|
|
17591
17608
|
*
|
|
@@ -17820,6 +17837,10 @@ declare namespace sap {
|
|
|
17820
17837
|
*
|
|
17821
17838
|
* Indicates whether the file uploader is required.
|
|
17822
17839
|
*
|
|
17840
|
+
* **Note:** The control can be marked as required either by setting this property to `true` or by using
|
|
17841
|
+
* the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
|
|
17842
|
+
* property pointing to this control.
|
|
17843
|
+
*
|
|
17823
17844
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17824
17845
|
*
|
|
17825
17846
|
* Default value is `false`.
|
|
@@ -19976,7 +19997,6 @@ declare namespace sap {
|
|
|
19976
19997
|
/**
|
|
19977
19998
|
* NonWorkingPeriod
|
|
19978
19999
|
*
|
|
19979
|
-
* @since 1.27.0
|
|
19980
20000
|
* @experimental As of version 1.127.0.
|
|
19981
20001
|
*/
|
|
19982
20002
|
class NonWorkingPeriod extends sap.ui.core.Element {
|
|
@@ -20105,7 +20125,6 @@ declare namespace sap {
|
|
|
20105
20125
|
*
|
|
20106
20126
|
* Applications can inherit from this element to add own fields.
|
|
20107
20127
|
*
|
|
20108
|
-
* @since 1.127.0
|
|
20109
20128
|
* @experimental As of version 1.127.0.
|
|
20110
20129
|
*/
|
|
20111
20130
|
class RecurringNonWorkingPeriod extends sap.ui.unified.NonWorkingPeriod {
|
|
@@ -22497,8 +22516,7 @@ declare namespace sap {
|
|
|
22497
22516
|
/**
|
|
22498
22517
|
* Time range for use in `NonWorkingPeriod`
|
|
22499
22518
|
*
|
|
22500
|
-
* @
|
|
22501
|
-
* @experimental As of version 1.127.0.
|
|
22519
|
+
* @experimental As of version 1.127.
|
|
22502
22520
|
*/
|
|
22503
22521
|
class TimeRange extends sap.ui.core.Element {
|
|
22504
22522
|
/**
|
|
@@ -22693,7 +22711,6 @@ declare namespace sap {
|
|
|
22693
22711
|
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
22694
22712
|
* 'CalendarAppointmentRoundWidth'.
|
|
22695
22713
|
*
|
|
22696
|
-
* @since 1.81.0
|
|
22697
22714
|
* @experimental As of version 1.81.0.
|
|
22698
22715
|
*/
|
|
22699
22716
|
enum CalendarAppointmentRoundWidth {
|
|
@@ -22911,8 +22928,9 @@ declare namespace sap {
|
|
|
22911
22928
|
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
22912
22929
|
* 'ContentSwitcherAnimation'.
|
|
22913
22930
|
*
|
|
22914
|
-
* @
|
|
22915
|
-
*
|
|
22931
|
+
* @deprecated As of version 1.147.0. the concept has been discarded. API is not yet finished and might
|
|
22932
|
+
* change completely
|
|
22933
|
+
* @experimental As of version 1.16.0.
|
|
22916
22934
|
*/
|
|
22917
22935
|
enum ContentSwitcherAnimation {
|
|
22918
22936
|
/**
|
|
@@ -22953,10 +22971,22 @@ declare namespace sap {
|
|
|
22953
22971
|
/**
|
|
22954
22972
|
* HTTP request POST method.
|
|
22955
22973
|
*/
|
|
22974
|
+
POST = "POST",
|
|
22975
|
+
/**
|
|
22976
|
+
* HTTP request POST method.
|
|
22977
|
+
*
|
|
22978
|
+
* @deprecated As of version 1.145.0. use {@link sap.ui.unified.FileUploaderHttpRequestMethod.POST} instead
|
|
22979
|
+
*/
|
|
22956
22980
|
Post = "POST",
|
|
22957
22981
|
/**
|
|
22958
22982
|
* HTTP request PUT method.
|
|
22959
22983
|
*/
|
|
22984
|
+
PUT = "PUT",
|
|
22985
|
+
/**
|
|
22986
|
+
* HTTP request PUT method.
|
|
22987
|
+
*
|
|
22988
|
+
* @deprecated As of version 1.145.0. use {@link sap.ui.unified.FileUploaderHttpRequestMethod.PUT} instead
|
|
22989
|
+
*/
|
|
22960
22990
|
Put = "PUT",
|
|
22961
22991
|
}
|
|
22962
22992
|
/**
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.147.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1080,6 +1080,16 @@ declare namespace sap {
|
|
|
1080
1080
|
subSectionVisibilityChange?: (
|
|
1081
1081
|
oEvent: ObjectPageLayout$SubSectionVisibilityChangeEvent
|
|
1082
1082
|
) => void;
|
|
1083
|
+
|
|
1084
|
+
/**
|
|
1085
|
+
* Fired when the media range of the control changes, allowing the application to adjust the UI accordingly
|
|
1086
|
+
* (e.g., change Avatar sizes responsively).
|
|
1087
|
+
*
|
|
1088
|
+
* @since 1.147
|
|
1089
|
+
*/
|
|
1090
|
+
breakpointChange?: (
|
|
1091
|
+
oEvent: ObjectPageLayout$BreakpointChangeEvent
|
|
1092
|
+
) => void;
|
|
1083
1093
|
}
|
|
1084
1094
|
|
|
1085
1095
|
/**
|
|
@@ -1387,6 +1397,21 @@ declare namespace sap {
|
|
|
1387
1397
|
subSection?: sap.uxap.ObjectPageSubSection;
|
|
1388
1398
|
}
|
|
1389
1399
|
|
|
1400
|
+
/**
|
|
1401
|
+
* Parameters of the ObjectPageLayout#breakpointChange event.
|
|
1402
|
+
*/
|
|
1403
|
+
interface ObjectPageLayout$BreakpointChangeEventParameters {
|
|
1404
|
+
/**
|
|
1405
|
+
* The name of the current media range ("Phone", "Tablet", "Desktop", or "DesktopExtraLarge").
|
|
1406
|
+
*/
|
|
1407
|
+
currentRange?: sap.uxap.ObjectPageLayoutMediaRange;
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* The current width of the control in pixels.
|
|
1411
|
+
*/
|
|
1412
|
+
currentWidth?: int;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1390
1415
|
/**
|
|
1391
1416
|
* Parameters of the ObjectPageLayout#editHeaderButtonPress event.
|
|
1392
1417
|
*/
|
|
@@ -5174,6 +5199,59 @@ declare namespace sap {
|
|
|
5174
5199
|
*/
|
|
5175
5200
|
oListener?: object
|
|
5176
5201
|
): this;
|
|
5202
|
+
/**
|
|
5203
|
+
* Attaches event handler `fnFunction` to the {@link #event:breakpointChange breakpointChange} event of
|
|
5204
|
+
* this `sap.uxap.ObjectPageLayout`.
|
|
5205
|
+
*
|
|
5206
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5207
|
+
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
5208
|
+
*
|
|
5209
|
+
* Fired when the media range of the control changes, allowing the application to adjust the UI accordingly
|
|
5210
|
+
* (e.g., change Avatar sizes responsively).
|
|
5211
|
+
*
|
|
5212
|
+
* @since 1.147
|
|
5213
|
+
*
|
|
5214
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5215
|
+
*/
|
|
5216
|
+
attachBreakpointChange(
|
|
5217
|
+
/**
|
|
5218
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
5219
|
+
* object when firing the event
|
|
5220
|
+
*/
|
|
5221
|
+
oData: object,
|
|
5222
|
+
/**
|
|
5223
|
+
* The function to be called when the event occurs
|
|
5224
|
+
*/
|
|
5225
|
+
fnFunction: (p1: ObjectPageLayout$BreakpointChangeEvent) => void,
|
|
5226
|
+
/**
|
|
5227
|
+
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
5228
|
+
*/
|
|
5229
|
+
oListener?: object
|
|
5230
|
+
): this;
|
|
5231
|
+
/**
|
|
5232
|
+
* Attaches event handler `fnFunction` to the {@link #event:breakpointChange breakpointChange} event of
|
|
5233
|
+
* this `sap.uxap.ObjectPageLayout`.
|
|
5234
|
+
*
|
|
5235
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5236
|
+
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
5237
|
+
*
|
|
5238
|
+
* Fired when the media range of the control changes, allowing the application to adjust the UI accordingly
|
|
5239
|
+
* (e.g., change Avatar sizes responsively).
|
|
5240
|
+
*
|
|
5241
|
+
* @since 1.147
|
|
5242
|
+
*
|
|
5243
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5244
|
+
*/
|
|
5245
|
+
attachBreakpointChange(
|
|
5246
|
+
/**
|
|
5247
|
+
* The function to be called when the event occurs
|
|
5248
|
+
*/
|
|
5249
|
+
fnFunction: (p1: ObjectPageLayout$BreakpointChangeEvent) => void,
|
|
5250
|
+
/**
|
|
5251
|
+
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
5252
|
+
*/
|
|
5253
|
+
oListener?: object
|
|
5254
|
+
): this;
|
|
5177
5255
|
/**
|
|
5178
5256
|
* Attaches event handler `fnFunction` to the {@link #event:editHeaderButtonPress editHeaderButtonPress }
|
|
5179
5257
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
@@ -5537,6 +5615,26 @@ declare namespace sap {
|
|
|
5537
5615
|
*/
|
|
5538
5616
|
oListener?: object
|
|
5539
5617
|
): this;
|
|
5618
|
+
/**
|
|
5619
|
+
* Detaches event handler `fnFunction` from the {@link #event:breakpointChange breakpointChange} event of
|
|
5620
|
+
* this `sap.uxap.ObjectPageLayout`.
|
|
5621
|
+
*
|
|
5622
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
5623
|
+
*
|
|
5624
|
+
* @since 1.147
|
|
5625
|
+
*
|
|
5626
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5627
|
+
*/
|
|
5628
|
+
detachBreakpointChange(
|
|
5629
|
+
/**
|
|
5630
|
+
* The function to be called, when the event occurs
|
|
5631
|
+
*/
|
|
5632
|
+
fnFunction: (p1: ObjectPageLayout$BreakpointChangeEvent) => void,
|
|
5633
|
+
/**
|
|
5634
|
+
* Context object on which the given function had to be called
|
|
5635
|
+
*/
|
|
5636
|
+
oListener?: object
|
|
5637
|
+
): this;
|
|
5540
5638
|
/**
|
|
5541
5639
|
* Detaches event handler `fnFunction` from the {@link #event:editHeaderButtonPress editHeaderButtonPress }
|
|
5542
5640
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
@@ -5675,6 +5773,20 @@ declare namespace sap {
|
|
|
5675
5773
|
*/
|
|
5676
5774
|
mParameters?: sap.uxap.ObjectPageLayout$BeforeNavigateEventParameters
|
|
5677
5775
|
): boolean;
|
|
5776
|
+
/**
|
|
5777
|
+
* Fires event {@link #event:breakpointChange breakpointChange} to attached listeners.
|
|
5778
|
+
*
|
|
5779
|
+
* @since 1.147
|
|
5780
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5781
|
+
*
|
|
5782
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5783
|
+
*/
|
|
5784
|
+
fireBreakpointChange(
|
|
5785
|
+
/**
|
|
5786
|
+
* Parameters to pass along with the event
|
|
5787
|
+
*/
|
|
5788
|
+
mParameters?: sap.uxap.ObjectPageLayout$BreakpointChangeEventParameters
|
|
5789
|
+
): this;
|
|
5678
5790
|
/**
|
|
5679
5791
|
* Fires event {@link #event:editHeaderButtonPress editHeaderButtonPress} to attached listeners.
|
|
5680
5792
|
*
|
|
@@ -8090,6 +8202,31 @@ declare namespace sap {
|
|
|
8090
8202
|
*/
|
|
8091
8203
|
Square = "Square",
|
|
8092
8204
|
}
|
|
8205
|
+
/**
|
|
8206
|
+
* Defines the media breakpoints for ObjectPageLayout.
|
|
8207
|
+
*
|
|
8208
|
+
* This enum is part of the 'sap/uxap/library' module export and must be accessed by the property 'ObjectPageLayoutMediaRange'.
|
|
8209
|
+
*
|
|
8210
|
+
* @since 1.147
|
|
8211
|
+
*/
|
|
8212
|
+
enum ObjectPageLayoutMediaRange {
|
|
8213
|
+
/**
|
|
8214
|
+
* Desktop breakpoint (1025px to 1439px).
|
|
8215
|
+
*/
|
|
8216
|
+
Desktop = "Desktop",
|
|
8217
|
+
/**
|
|
8218
|
+
* Extra large desktop breakpoint (1440px and above).
|
|
8219
|
+
*/
|
|
8220
|
+
DesktopExtraLarge = "DesktopExtraLarge",
|
|
8221
|
+
/**
|
|
8222
|
+
* Phone breakpoint (up to 600px).
|
|
8223
|
+
*/
|
|
8224
|
+
Phone = "Phone",
|
|
8225
|
+
/**
|
|
8226
|
+
* Tablet breakpoint (601px to 1024px).
|
|
8227
|
+
*/
|
|
8228
|
+
Tablet = "Tablet",
|
|
8229
|
+
}
|
|
8093
8230
|
/**
|
|
8094
8231
|
* Used by the `ObjectPagSubSection` control to define which layout to apply.
|
|
8095
8232
|
*
|
|
@@ -8168,6 +8305,14 @@ declare namespace sap {
|
|
|
8168
8305
|
ObjectPageLayout
|
|
8169
8306
|
>;
|
|
8170
8307
|
|
|
8308
|
+
/**
|
|
8309
|
+
* Event object of the ObjectPageLayout#breakpointChange event.
|
|
8310
|
+
*/
|
|
8311
|
+
type ObjectPageLayout$BreakpointChangeEvent = sap.ui.base.Event<
|
|
8312
|
+
ObjectPageLayout$BreakpointChangeEventParameters,
|
|
8313
|
+
ObjectPageLayout
|
|
8314
|
+
>;
|
|
8315
|
+
|
|
8171
8316
|
/**
|
|
8172
8317
|
* Event object of the ObjectPageLayout#editHeaderButtonPress event.
|
|
8173
8318
|
*/
|