@sapui5/ts-types-esm 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 +3 -6
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +4 -7
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +56 -67
- package/types/sap.f.d.ts +220 -527
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +3921 -3221
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +49 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +228 -1
- package/types/sap.insights.d.ts +14 -1
- package/types/{mobile-1.145.0-esm-d.ts → sap.m.d.ts} +596 -48
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +299 -10
- package/types/sap.suite.ui.generic.template.d.ts +79 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- 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.comp.d.ts +5 -15
- package/types/{core-1.145.0-esm-d.ts → sap.ui.core.d.ts} +1214 -396
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +9 -1
- package/types/sap.ui.generic.app.d.ts +5 -5
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +87 -290
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/{mdc-1.145.0-esm-d.ts → sap.ui.mdc.d.ts} +113 -22
- package/types/sap.ui.richtexteditor.d.ts +6 -6
- 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.ui.vbm.d.ts +8 -24
- package/types/sap.ui.vk.d.ts +209 -2
- package/types/sap.ui.vtm.d.ts +2 -2
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +609 -202
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +151 -2
- package/types/sap.viz.d.ts +4 -5
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +0 -164
- package/types/sap.ui.webc.fiori.d.ts +0 -16235
- package/types/sap.ui.webc.main.d.ts +0 -51365
package/types/sap.ui.layout.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";
|
|
@@ -3767,6 +3767,17 @@ declare module "sap/ui/mdc/library" {
|
|
|
3767
3767
|
|
|
3768
3768
|
import ParseException from "sap/ui/model/ParseException";
|
|
3769
3769
|
|
|
3770
|
+
export type DelegateConfig = {
|
|
3771
|
+
/**
|
|
3772
|
+
* Delegate module path
|
|
3773
|
+
*/
|
|
3774
|
+
name: string;
|
|
3775
|
+
/**
|
|
3776
|
+
* defines application-specific information that can be used in the given delegate
|
|
3777
|
+
*/
|
|
3778
|
+
payload?: any;
|
|
3779
|
+
};
|
|
3780
|
+
|
|
3770
3781
|
/**
|
|
3771
3782
|
* Acts a subset of the `FilterBarDelegate` that can be used in {@link module:sap/ui/mdc/TableDelegate.getFilterDelegate TableDelegate.getFilterDelegate }
|
|
3772
3783
|
* or {@link module:sap/ui/mdc/ChartDelegate.getFilterDelegate Chart.getFilterDelegate} to enable inbuilt
|
|
@@ -4819,8 +4830,10 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4819
4830
|
* Gets current value of property {@link #getDelegate delegate}.
|
|
4820
4831
|
*
|
|
4821
4832
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
4822
|
-
* The object has the following properties:
|
|
4823
|
-
*
|
|
4833
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
4834
|
+
*
|
|
4835
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/ChartDelegate ChartDelegate}.
|
|
4836
|
+
*
|
|
4824
4837
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
4825
4838
|
* Sample delegate object:
|
|
4826
4839
|
* ```javascript
|
|
@@ -5152,8 +5165,10 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5152
5165
|
* Sets a new value for property {@link #getDelegate delegate}.
|
|
5153
5166
|
*
|
|
5154
5167
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
5155
|
-
* The object has the following properties:
|
|
5156
|
-
*
|
|
5168
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
5169
|
+
*
|
|
5170
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/ChartDelegate ChartDelegate}.
|
|
5171
|
+
*
|
|
5157
5172
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
5158
5173
|
* Sample delegate object:
|
|
5159
5174
|
* ```javascript
|
|
@@ -5518,8 +5533,10 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5518
5533
|
|
|
5519
5534
|
/**
|
|
5520
5535
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
5521
|
-
* The object has the following properties:
|
|
5522
|
-
*
|
|
5536
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
5537
|
+
*
|
|
5538
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/ChartDelegate ChartDelegate}.
|
|
5539
|
+
*
|
|
5523
5540
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
5524
5541
|
* Sample delegate object:
|
|
5525
5542
|
* ```javascript
|
|
@@ -7769,7 +7786,8 @@ declare module "sap/ui/mdc/Control" {
|
|
|
7769
7786
|
export interface $ControlSettings extends $ControlSettings1 {
|
|
7770
7787
|
/**
|
|
7771
7788
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
7772
|
-
* The object has the following properties:
|
|
7789
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
7790
|
+
*
|
|
7773
7791
|
* - `name` defines the path to the `Delegate` module
|
|
7774
7792
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
7775
7793
|
* Sample delegate object:
|
|
@@ -7991,7 +8009,8 @@ declare module "sap/ui/mdc/Element" {
|
|
|
7991
8009
|
export interface $ElementSettings extends $ElementSettings1 {
|
|
7992
8010
|
/**
|
|
7993
8011
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
7994
|
-
* The object has the following properties:
|
|
8012
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
8013
|
+
*
|
|
7995
8014
|
* - `name` defines the path to the `Delegate` module
|
|
7996
8015
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
7997
8016
|
* Sample delegate object:
|
|
@@ -13483,13 +13502,17 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
13483
13502
|
|
|
13484
13503
|
import InvisibleText from "sap/ui/core/InvisibleText";
|
|
13485
13504
|
|
|
13505
|
+
import { MessageType, ID } from "sap/ui/core/library";
|
|
13506
|
+
|
|
13507
|
+
import Message from "sap/ui/core/message/Message";
|
|
13508
|
+
|
|
13486
13509
|
import FilterBarValidationStatus from "sap/ui/mdc/enums/FilterBarValidationStatus";
|
|
13487
13510
|
|
|
13488
13511
|
import FilterField from "sap/ui/mdc/FilterField";
|
|
13489
13512
|
|
|
13490
13513
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
13491
13514
|
|
|
13492
|
-
import
|
|
13515
|
+
import Message1 from "sap/ui/core/Message";
|
|
13493
13516
|
|
|
13494
13517
|
import VariantManagement from "sap/ui/fl/variants/VariantManagement";
|
|
13495
13518
|
|
|
@@ -13588,6 +13611,28 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
13588
13611
|
*/
|
|
13589
13612
|
oInvisibleText: InvisibleText
|
|
13590
13613
|
): void;
|
|
13614
|
+
/**
|
|
13615
|
+
* Adds a message to the {@link sap.ui.model.message.MessageModel MessageModel} for a `propertyKey`. The
|
|
13616
|
+
* message is displayed on the corresponding {@link sap.ui.mdc.FilterField FilterField}.
|
|
13617
|
+
*
|
|
13618
|
+
* @since 1.147
|
|
13619
|
+
*
|
|
13620
|
+
* @returns The created message object
|
|
13621
|
+
*/
|
|
13622
|
+
addMessage(
|
|
13623
|
+
/**
|
|
13624
|
+
* The `propertyKey` of the {@link sap.ui.mdc.FilterField FilterField}
|
|
13625
|
+
*/
|
|
13626
|
+
sPropertyKey: string,
|
|
13627
|
+
/**
|
|
13628
|
+
* The message text
|
|
13629
|
+
*/
|
|
13630
|
+
sMessage: string,
|
|
13631
|
+
/**
|
|
13632
|
+
* The message type
|
|
13633
|
+
*/
|
|
13634
|
+
sMessageType: MessageType | keyof typeof MessageType
|
|
13635
|
+
): Message;
|
|
13591
13636
|
/**
|
|
13592
13637
|
* Attaches event handler `fnFunction` to the {@link #event:filtersChanged filtersChanged} event of this
|
|
13593
13638
|
* `sap.ui.mdc.filterbar.FilterBarBase`.
|
|
@@ -13834,8 +13879,10 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
13834
13879
|
* Gets current value of property {@link #getDelegate delegate}.
|
|
13835
13880
|
*
|
|
13836
13881
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
13837
|
-
* The object has the following properties:
|
|
13838
|
-
*
|
|
13882
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
13883
|
+
*
|
|
13884
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/FilterBarDelegate FilterBarDelegate}.
|
|
13885
|
+
*
|
|
13839
13886
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
13840
13887
|
* Sample delegate object:
|
|
13841
13888
|
* ```javascript
|
|
@@ -13893,6 +13940,19 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
13893
13940
|
* @returns Value of property `liveMode`
|
|
13894
13941
|
*/
|
|
13895
13942
|
getLiveMode(): boolean;
|
|
13943
|
+
/**
|
|
13944
|
+
* Returns all messages associated with the given `propertyKey` from the {@link sap.ui.model.message.MessageModel MessageModel}.
|
|
13945
|
+
*
|
|
13946
|
+
* @since 1.147
|
|
13947
|
+
*
|
|
13948
|
+
* @returns Array of messages for the given `propertyKey`
|
|
13949
|
+
*/
|
|
13950
|
+
getMessages(
|
|
13951
|
+
/**
|
|
13952
|
+
* The `propertyKey` of the {@link sap.ui.mdc.FilterField FilterField}
|
|
13953
|
+
*/
|
|
13954
|
+
sPropertyKey: string
|
|
13955
|
+
): Message[];
|
|
13896
13956
|
/**
|
|
13897
13957
|
* Gets the value of the basic search condition.
|
|
13898
13958
|
*
|
|
@@ -13970,6 +14030,30 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
13970
14030
|
* @returns Resolves after the initial filters have been applied and the metadata has been obtained
|
|
13971
14031
|
*/
|
|
13972
14032
|
initializedWithMetadata(): Promise<any>;
|
|
14033
|
+
/**
|
|
14034
|
+
* Removes a given message from the {@link sap.ui.model.message.MessageModel MessageModel}. The message
|
|
14035
|
+
* is removed from the corresponding {@link sap.ui.mdc.FilterField FilterField}.
|
|
14036
|
+
*
|
|
14037
|
+
* @since 1.147
|
|
14038
|
+
*/
|
|
14039
|
+
removeMessage(
|
|
14040
|
+
/**
|
|
14041
|
+
* The message to remove
|
|
14042
|
+
*/
|
|
14043
|
+
oMessage: Message1
|
|
14044
|
+
): void;
|
|
14045
|
+
/**
|
|
14046
|
+
* Removes all messages for the given `propertyKey` from the {@link sap.ui.model.message.MessageModel MessageModel}.
|
|
14047
|
+
* Clears the messages from the corresponding {@link sap.ui.mdc.FilterField FilterField}.
|
|
14048
|
+
*
|
|
14049
|
+
* @since 1.147
|
|
14050
|
+
*/
|
|
14051
|
+
removeMessages(
|
|
14052
|
+
/**
|
|
14053
|
+
* The `propertyKey` of the {@link sap.ui.mdc.FilterField FilterField}
|
|
14054
|
+
*/
|
|
14055
|
+
sPropertyKey: string
|
|
14056
|
+
): void;
|
|
13973
14057
|
/**
|
|
13974
14058
|
* Sets the aggregated {@link #getBasicSearchField basicSearchField}.
|
|
13975
14059
|
*
|
|
@@ -13986,8 +14070,10 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
13986
14070
|
* Sets a new value for property {@link #getDelegate delegate}.
|
|
13987
14071
|
*
|
|
13988
14072
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
13989
|
-
* The object has the following properties:
|
|
13990
|
-
*
|
|
14073
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
14074
|
+
*
|
|
14075
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/FilterBarDelegate FilterBarDelegate}.
|
|
14076
|
+
*
|
|
13991
14077
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
13992
14078
|
* Sample delegate object:
|
|
13993
14079
|
* ```javascript
|
|
@@ -14141,8 +14227,10 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
14141
14227
|
export interface $FilterBarBaseSettings extends $ControlSettings {
|
|
14142
14228
|
/**
|
|
14143
14229
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
14144
|
-
* The object has the following properties:
|
|
14145
|
-
*
|
|
14230
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
14231
|
+
*
|
|
14232
|
+
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/FilterBarDelegate FilterBarDelegate}.
|
|
14233
|
+
*
|
|
14146
14234
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
14147
14235
|
* Sample delegate object:
|
|
14148
14236
|
* ```javascript
|
|
@@ -14198,8 +14286,8 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
14198
14286
|
* aggregation) should be specified here, rather than in the `FilterField` configuration.
|
|
14199
14287
|
* **Note**: This property must not be bound.
|
|
14200
14288
|
* **Node**: Please check {@link sap.ui.mdc.filterbar.PropertyInfo} for more information about the supported
|
|
14201
|
-
* inner elements. **Note**: Existing properties (set via
|
|
14202
|
-
*
|
|
14289
|
+
* inner elements. **Note**: Existing properties (set via {@link #setPropertyInfo setPropertyInfo}) must
|
|
14290
|
+
* not be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
|
|
14203
14291
|
* callback. Otherwise validation errors might occur whenever personalization-related control features (such
|
|
14204
14292
|
* as the opening of any personalization dialog) are activated.
|
|
14205
14293
|
*
|
|
@@ -18088,7 +18176,8 @@ declare module "sap/ui/mdc/Table" {
|
|
|
18088
18176
|
*
|
|
18089
18177
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
18090
18178
|
*
|
|
18091
|
-
* The object has the following properties:
|
|
18179
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
18180
|
+
*
|
|
18092
18181
|
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
|
|
18093
18182
|
*
|
|
18094
18183
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
@@ -18649,7 +18738,8 @@ declare module "sap/ui/mdc/Table" {
|
|
|
18649
18738
|
*
|
|
18650
18739
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
18651
18740
|
*
|
|
18652
|
-
* The object has the following properties:
|
|
18741
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
18742
|
+
*
|
|
18653
18743
|
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
|
|
18654
18744
|
*
|
|
18655
18745
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
@@ -19325,7 +19415,8 @@ declare module "sap/ui/mdc/Table" {
|
|
|
19325
19415
|
/**
|
|
19326
19416
|
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
19327
19417
|
*
|
|
19328
|
-
* The object has the following properties:
|
|
19418
|
+
* The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
|
|
19419
|
+
*
|
|
19329
19420
|
* - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
|
|
19330
19421
|
*
|
|
19331
19422
|
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
@@ -23253,7 +23344,7 @@ declare module "sap/ui/mdc/util/PropertyHelper" {
|
|
|
23253
23344
|
visible?: boolean;
|
|
23254
23345
|
/**
|
|
23255
23346
|
* Key of the group in which the property is located. Used to visually group properties in personalization
|
|
23256
|
-
* dialogs.
|
|
23347
|
+
* dialogs. The group with the `basic` key is always shown as the first group.
|
|
23257
23348
|
*/
|
|
23258
23349
|
group?: string;
|
|
23259
23350
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.147.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/richtexteditor/library" {
|
|
4
4
|
/**
|
|
@@ -19,7 +19,7 @@ declare module "sap/ui/richtexteditor/library" {
|
|
|
19
19
|
/**
|
|
20
20
|
* Uses TinyMCE version 6 as editor
|
|
21
21
|
*
|
|
22
|
-
* @deprecated As of version 1.
|
|
22
|
+
* @deprecated As of version 1.136.13. TinyMCE 6 is no longer supported. Use the {@link sap.ui.richtexteditor.EditorType.TinyMCE }
|
|
23
23
|
* instead.
|
|
24
24
|
*/
|
|
25
25
|
TinyMCE6 = "TinyMCE6",
|
|
@@ -532,7 +532,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
532
532
|
/**
|
|
533
533
|
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
534
534
|
*
|
|
535
|
-
* @
|
|
535
|
+
* @since 1.135
|
|
536
536
|
*
|
|
537
537
|
* @returns Reference to `this` in order to allow method chaining
|
|
538
538
|
*/
|
|
@@ -781,7 +781,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
781
781
|
* Defines the footer of the control. The footer will be available only with custom toolbar. **Note:** The
|
|
782
782
|
* footer aggregation accepts only controls inheriting `sap.m.IBar`.
|
|
783
783
|
*
|
|
784
|
-
* @
|
|
784
|
+
* @since 1.135
|
|
785
785
|
*/
|
|
786
786
|
getFooter(): Control;
|
|
787
787
|
/**
|
|
@@ -1287,7 +1287,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1287
1287
|
/**
|
|
1288
1288
|
* Sets the aggregated {@link #getFooter footer}.
|
|
1289
1289
|
*
|
|
1290
|
-
* @
|
|
1290
|
+
* @since 1.135
|
|
1291
1291
|
*
|
|
1292
1292
|
* @returns Reference to `this` in order to allow method chaining
|
|
1293
1293
|
*/
|
|
@@ -1874,7 +1874,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1874
1874
|
* Defines the footer of the control. The footer will be available only with custom toolbar. **Note:** The
|
|
1875
1875
|
* footer aggregation accepts only controls inheriting `sap.m.IBar`.
|
|
1876
1876
|
*
|
|
1877
|
-
* @
|
|
1877
|
+
* @since 1.135
|
|
1878
1878
|
*/
|
|
1879
1879
|
footer?: Control;
|
|
1880
1880
|
|
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 module "sap/ui/support/library" {
|
|
4
4
|
/**
|
|
@@ -166,7 +166,7 @@ declare module "sap/ui/support/library" {
|
|
|
166
166
|
/**
|
|
167
167
|
* Preset to find usages of deprecated controls, properties, aggregations and others.
|
|
168
168
|
*
|
|
169
|
-
* @
|
|
169
|
+
* @since 1.120
|
|
170
170
|
*/
|
|
171
171
|
Deprecations = "undefined",
|
|
172
172
|
}
|
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 module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -33,7 +33,6 @@ declare module "sap/ui/unified/library" {
|
|
|
33
33
|
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
34
34
|
* 'CalendarAppointmentRoundWidth'.
|
|
35
35
|
*
|
|
36
|
-
* @since 1.81.0
|
|
37
36
|
* @experimental As of version 1.81.0.
|
|
38
37
|
*/
|
|
39
38
|
export enum CalendarAppointmentRoundWidth {
|
|
@@ -232,8 +231,9 @@ declare module "sap/ui/unified/library" {
|
|
|
232
231
|
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
233
232
|
* 'ContentSwitcherAnimation'.
|
|
234
233
|
*
|
|
235
|
-
* @
|
|
236
|
-
*
|
|
234
|
+
* @deprecated As of version 1.147.0. the concept has been discarded. API is not yet finished and might
|
|
235
|
+
* change completely
|
|
236
|
+
* @experimental As of version 1.16.0.
|
|
237
237
|
*/
|
|
238
238
|
export enum ContentSwitcherAnimation {
|
|
239
239
|
/**
|
|
@@ -16049,6 +16049,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16049
16049
|
*
|
|
16050
16050
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
16051
16051
|
*
|
|
16052
|
+
* **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
|
|
16053
|
+
* after version 50. **Note:** Multiple directory selection is not supported.
|
|
16054
|
+
*
|
|
16052
16055
|
* Default value is `false`.
|
|
16053
16056
|
*
|
|
16054
16057
|
* @since 1.105.0
|
|
@@ -16091,7 +16094,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16091
16094
|
*
|
|
16092
16095
|
* Chosen HTTP request method for file upload.
|
|
16093
16096
|
*
|
|
16094
|
-
* Default value is `
|
|
16097
|
+
* Default value is `POST`.
|
|
16095
16098
|
*
|
|
16096
16099
|
* @since 1.81.0
|
|
16097
16100
|
*
|
|
@@ -16280,6 +16283,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16280
16283
|
*
|
|
16281
16284
|
* Indicates whether the file uploader is required.
|
|
16282
16285
|
*
|
|
16286
|
+
* **Note:** The control can be marked as required either by setting this property to `true` or by using
|
|
16287
|
+
* the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
|
|
16288
|
+
* property pointing to this control.
|
|
16289
|
+
*
|
|
16283
16290
|
* Default value is `false`.
|
|
16284
16291
|
*
|
|
16285
16292
|
* @since 1.144
|
|
@@ -16622,6 +16629,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16622
16629
|
*
|
|
16623
16630
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
16624
16631
|
*
|
|
16632
|
+
* **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
|
|
16633
|
+
* after version 50. **Note:** Multiple directory selection is not supported.
|
|
16634
|
+
*
|
|
16625
16635
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16626
16636
|
*
|
|
16627
16637
|
* Default value is `false`.
|
|
@@ -16681,7 +16691,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16681
16691
|
*
|
|
16682
16692
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16683
16693
|
*
|
|
16684
|
-
* Default value is `
|
|
16694
|
+
* Default value is `POST`.
|
|
16685
16695
|
*
|
|
16686
16696
|
* @since 1.81.0
|
|
16687
16697
|
*
|
|
@@ -16916,6 +16926,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16916
16926
|
*
|
|
16917
16927
|
* Indicates whether the file uploader is required.
|
|
16918
16928
|
*
|
|
16929
|
+
* **Note:** The control can be marked as required either by setting this property to `true` or by using
|
|
16930
|
+
* the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
|
|
16931
|
+
* property pointing to this control.
|
|
16932
|
+
*
|
|
16919
16933
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16920
16934
|
*
|
|
16921
16935
|
* Default value is `false`.
|
|
@@ -17358,6 +17372,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17358
17372
|
/**
|
|
17359
17373
|
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
17360
17374
|
*
|
|
17375
|
+
* **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
|
|
17376
|
+
* after version 50. **Note:** Multiple directory selection is not supported.
|
|
17377
|
+
*
|
|
17361
17378
|
* @since 1.105.0
|
|
17362
17379
|
*/
|
|
17363
17380
|
directory?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -17365,6 +17382,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17365
17382
|
/**
|
|
17366
17383
|
* Indicates whether the file uploader is required.
|
|
17367
17384
|
*
|
|
17385
|
+
* **Note:** The control can be marked as required either by setting this property to `true` or by using
|
|
17386
|
+
* the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
|
|
17387
|
+
* property pointing to this control.
|
|
17388
|
+
*
|
|
17368
17389
|
* @since 1.144
|
|
17369
17390
|
*/
|
|
17370
17391
|
required?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -17812,10 +17833,22 @@ declare module "sap/ui/unified/FileUploaderHttpRequestMethod" {
|
|
|
17812
17833
|
/**
|
|
17813
17834
|
* HTTP request POST method.
|
|
17814
17835
|
*/
|
|
17836
|
+
POST = "POST",
|
|
17837
|
+
/**
|
|
17838
|
+
* HTTP request POST method.
|
|
17839
|
+
*
|
|
17840
|
+
* @deprecated As of version 1.145.0. use {@link sap.ui.unified.FileUploaderHttpRequestMethod.POST} instead
|
|
17841
|
+
*/
|
|
17815
17842
|
Post = "POST",
|
|
17816
17843
|
/**
|
|
17817
17844
|
* HTTP request PUT method.
|
|
17818
17845
|
*/
|
|
17846
|
+
PUT = "PUT",
|
|
17847
|
+
/**
|
|
17848
|
+
* HTTP request PUT method.
|
|
17849
|
+
*
|
|
17850
|
+
* @deprecated As of version 1.145.0. use {@link sap.ui.unified.FileUploaderHttpRequestMethod.PUT} instead
|
|
17851
|
+
*/
|
|
17819
17852
|
Put = "PUT",
|
|
17820
17853
|
}
|
|
17821
17854
|
export default FileUploaderHttpRequestMethod;
|
|
@@ -20212,7 +20245,6 @@ declare module "sap/ui/unified/NonWorkingPeriod" {
|
|
|
20212
20245
|
/**
|
|
20213
20246
|
* NonWorkingPeriod
|
|
20214
20247
|
*
|
|
20215
|
-
* @since 1.27.0
|
|
20216
20248
|
* @experimental As of version 1.127.0.
|
|
20217
20249
|
*/
|
|
20218
20250
|
export default class NonWorkingPeriod extends UI5Element {
|
|
@@ -20371,7 +20403,6 @@ declare module "sap/ui/unified/RecurringNonWorkingPeriod" {
|
|
|
20371
20403
|
*
|
|
20372
20404
|
* Applications can inherit from this element to add own fields.
|
|
20373
20405
|
*
|
|
20374
|
-
* @since 1.127.0
|
|
20375
20406
|
* @experimental As of version 1.127.0.
|
|
20376
20407
|
*/
|
|
20377
20408
|
export default class RecurringNonWorkingPeriod extends NonWorkingPeriod {
|
|
@@ -23233,8 +23264,7 @@ declare module "sap/ui/unified/TimeRange" {
|
|
|
23233
23264
|
/**
|
|
23234
23265
|
* Time range for use in `NonWorkingPeriod`
|
|
23235
23266
|
*
|
|
23236
|
-
* @
|
|
23237
|
-
* @experimental As of version 1.127.0.
|
|
23267
|
+
* @experimental As of version 1.127.
|
|
23238
23268
|
*/
|
|
23239
23269
|
export default class TimeRange extends UI5Element {
|
|
23240
23270
|
/**
|
|
@@ -23400,7 +23430,7 @@ declare module "sap/ui/unified/TimeRange" {
|
|
|
23400
23430
|
/**
|
|
23401
23431
|
* Describes the settings that can be provided to the TimeRange constructor.
|
|
23402
23432
|
*
|
|
23403
|
-
* @experimental As of version 1.127.
|
|
23433
|
+
* @experimental As of version 1.127.
|
|
23404
23434
|
*/
|
|
23405
23435
|
export interface $TimeRangeSettings extends $ElementSettings {
|
|
23406
23436
|
/**
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.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/vbm/library" {
|
|
4
4
|
/**
|
|
@@ -5405,8 +5405,7 @@ declare module "sap/ui/vbm/ContainerLegendItem" {
|
|
|
5405
5405
|
/**
|
|
5406
5406
|
* Legend item control
|
|
5407
5407
|
*
|
|
5408
|
-
* @
|
|
5409
|
-
* versions.
|
|
5408
|
+
* @since 1.38.0
|
|
5410
5409
|
*/
|
|
5411
5410
|
export default class ContainerLegendItem extends StandardListItem {
|
|
5412
5411
|
/**
|
|
@@ -5524,9 +5523,6 @@ declare module "sap/ui/vbm/ContainerLegendItem" {
|
|
|
5524
5523
|
}
|
|
5525
5524
|
/**
|
|
5526
5525
|
* Describes the settings that can be provided to the ContainerLegendItem constructor.
|
|
5527
|
-
*
|
|
5528
|
-
* @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
|
|
5529
|
-
* versions.
|
|
5530
5526
|
*/
|
|
5531
5527
|
export interface $ContainerLegendItemSettings
|
|
5532
5528
|
extends $StandardListItemSettings {
|
|
@@ -8869,8 +8865,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
8869
8865
|
/**
|
|
8870
8866
|
* Trigger the interactive creation mode to get a position or position array.
|
|
8871
8867
|
*
|
|
8872
|
-
* @
|
|
8873
|
-
* future versions.
|
|
8868
|
+
* @since 1.30.0
|
|
8874
8869
|
*
|
|
8875
8870
|
* @returns Indicator whether the creation mode could be triggered successfully or not.
|
|
8876
8871
|
*/
|
|
@@ -11311,8 +11306,7 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11311
11306
|
/**
|
|
11312
11307
|
* Aggregation control for the Legend
|
|
11313
11308
|
*
|
|
11314
|
-
* @
|
|
11315
|
-
* versions.
|
|
11309
|
+
* @since 1.38.0
|
|
11316
11310
|
*/
|
|
11317
11311
|
export default class ListPanel extends Control {
|
|
11318
11312
|
/**
|
|
@@ -11944,9 +11938,6 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11944
11938
|
}
|
|
11945
11939
|
/**
|
|
11946
11940
|
* Describes the settings that can be provided to the ListPanel constructor.
|
|
11947
|
-
*
|
|
11948
|
-
* @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
|
|
11949
|
-
* versions.
|
|
11950
11941
|
*/
|
|
11951
11942
|
export interface $ListPanelSettings extends $ControlSettings {
|
|
11952
11943
|
/**
|
|
@@ -12103,8 +12094,7 @@ declare module "sap/ui/vbm/ListPanelStack" {
|
|
|
12103
12094
|
/**
|
|
12104
12095
|
* ListPanelStack control
|
|
12105
12096
|
*
|
|
12106
|
-
* @
|
|
12107
|
-
* versions.
|
|
12097
|
+
* @since 1.38.0
|
|
12108
12098
|
*/
|
|
12109
12099
|
export default class ListPanelStack extends Control {
|
|
12110
12100
|
/**
|
|
@@ -12363,9 +12353,6 @@ declare module "sap/ui/vbm/ListPanelStack" {
|
|
|
12363
12353
|
}
|
|
12364
12354
|
/**
|
|
12365
12355
|
* Describes the settings that can be provided to the ListPanelStack constructor.
|
|
12366
|
-
*
|
|
12367
|
-
* @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
|
|
12368
|
-
* versions.
|
|
12369
12356
|
*/
|
|
12370
12357
|
export interface $ListPanelStackSettings extends $ControlSettings {
|
|
12371
12358
|
/**
|
|
@@ -14494,8 +14481,7 @@ declare module "sap/ui/vbm/Route" {
|
|
|
14494
14481
|
*
|
|
14495
14482
|
* Default value is `'Straight'`.
|
|
14496
14483
|
*
|
|
14497
|
-
* @
|
|
14498
|
-
* versions.
|
|
14484
|
+
* @since 1.32.0
|
|
14499
14485
|
*
|
|
14500
14486
|
* @returns Value of property `routetype`
|
|
14501
14487
|
*/
|
|
@@ -14808,8 +14794,7 @@ declare module "sap/ui/vbm/Route" {
|
|
|
14808
14794
|
*
|
|
14809
14795
|
* Default value is `'Straight'`.
|
|
14810
14796
|
*
|
|
14811
|
-
* @
|
|
14812
|
-
* versions.
|
|
14797
|
+
* @since 1.32.0
|
|
14813
14798
|
*
|
|
14814
14799
|
* @returns Reference to `this` in order to allow method chaining
|
|
14815
14800
|
*/
|
|
@@ -14904,8 +14889,7 @@ declare module "sap/ui/vbm/Route" {
|
|
|
14904
14889
|
* Defines the type of the route, default is 'Straight'. Other types are 'Geodesic' which show the shortest
|
|
14905
14890
|
* path between two points, e.g. flightroutes
|
|
14906
14891
|
*
|
|
14907
|
-
* @
|
|
14908
|
-
* versions.
|
|
14892
|
+
* @since 1.32.0
|
|
14909
14893
|
*/
|
|
14910
14894
|
routetype?:
|
|
14911
14895
|
| (RouteType | keyof typeof RouteType)
|