@openui5/types 1.127.1 → 1.129.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/sap.f.d.ts +1414 -225
- package/types/sap.m.d.ts +525 -55
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +10 -4
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +100 -88
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +20 -2
- package/types/sap.ui.integration.d.ts +91 -5
- package/types/sap.ui.layout.d.ts +5 -5
- package/types/sap.ui.mdc.d.ts +998 -239
- 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 +1 -1
- package/types/sap.ui.table.d.ts +156 -38
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +807 -85
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +44 -1
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -3148,6 +3148,12 @@ declare module "sap/m/library" {
|
|
|
3148
3148
|
* The column headers remain in a fixed position.
|
|
3149
3149
|
*/
|
|
3150
3150
|
ColumnHeaders = "ColumnHeaders",
|
|
3151
|
+
/**
|
|
3152
|
+
* The group headers remain in a fixed position at the top of the page during vertical scrolling.
|
|
3153
|
+
*
|
|
3154
|
+
* @since 1.128
|
|
3155
|
+
*/
|
|
3156
|
+
GroupHeaders = "GroupHeaders",
|
|
3151
3157
|
/**
|
|
3152
3158
|
* The header toolbar remains in a fixed position.
|
|
3153
3159
|
*
|
|
@@ -41727,14 +41733,8 @@ declare module "sap/m/Input" {
|
|
|
41727
41733
|
* - If a `selectedKey` is bound and the user types before the data is loaded, the user's input will
|
|
41728
41734
|
* be overwritten by the binding update.
|
|
41729
41735
|
*/
|
|
41730
|
-
export default class Input
|
|
41731
|
-
extends InputBase
|
|
41732
|
-
implements
|
|
41733
|
-
IAccessKeySupport,
|
|
41734
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
41735
|
-
{
|
|
41736
|
+
export default class Input extends InputBase implements IAccessKeySupport {
|
|
41736
41737
|
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
41737
|
-
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
41738
41738
|
/**
|
|
41739
41739
|
* Constructor for a new `Input`.
|
|
41740
41740
|
*
|
|
@@ -44163,10 +44163,14 @@ declare module "sap/m/InputBase" {
|
|
|
44163
44163
|
*/
|
|
44164
44164
|
export default class InputBase
|
|
44165
44165
|
extends Control
|
|
44166
|
-
implements
|
|
44166
|
+
implements
|
|
44167
|
+
IFormContent,
|
|
44168
|
+
ISemanticFormContent,
|
|
44169
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
44167
44170
|
{
|
|
44168
44171
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
44169
44172
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
44173
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
44170
44174
|
/**
|
|
44171
44175
|
* Constructor for a new `sap.m.InputBase`.
|
|
44172
44176
|
*
|
|
@@ -47816,6 +47820,21 @@ declare module "sap/m/Link" {
|
|
|
47816
47820
|
* @returns Value of property `enabled`
|
|
47817
47821
|
*/
|
|
47818
47822
|
getEnabled(): boolean;
|
|
47823
|
+
/**
|
|
47824
|
+
* Gets current value of property {@link #getEndIcon endIcon}.
|
|
47825
|
+
*
|
|
47826
|
+
* Defines the icon to be displayed as graphical element in the end of the `Link`. It can be an icon from
|
|
47827
|
+
* the icon font. **Note:** Usage of icon-only link is not supported, the link must always have a text.
|
|
47828
|
+
* **Note:** We recommend using аn icon in the beginning or the end only, and always with text. **Note:**
|
|
47829
|
+
* Using an image instead of icon is not supported.
|
|
47830
|
+
*
|
|
47831
|
+
* Default value is `empty string`.
|
|
47832
|
+
*
|
|
47833
|
+
* @since 1.128.0
|
|
47834
|
+
*
|
|
47835
|
+
* @returns Value of property `endIcon`
|
|
47836
|
+
*/
|
|
47837
|
+
getEndIcon(): URI;
|
|
47819
47838
|
/**
|
|
47820
47839
|
* Gets current value of property {@link #getHref href}.
|
|
47821
47840
|
*
|
|
@@ -47827,6 +47846,21 @@ declare module "sap/m/Link" {
|
|
|
47827
47846
|
* @returns Value of property `href`
|
|
47828
47847
|
*/
|
|
47829
47848
|
getHref(): URI;
|
|
47849
|
+
/**
|
|
47850
|
+
* Gets current value of property {@link #getIcon icon}.
|
|
47851
|
+
*
|
|
47852
|
+
* Defines the icon to be displayed as graphical element in the beginning of the `Link`. It can be an icon
|
|
47853
|
+
* from the icon font. **Note:** Usage of icon-only link is not supported, the link must always have a text.
|
|
47854
|
+
* **Note:** We recommend using аn icon in the beginning or the end only, and always with text. **Note:**
|
|
47855
|
+
* Using an image instead of icon is not supported.
|
|
47856
|
+
*
|
|
47857
|
+
* Default value is `empty string`.
|
|
47858
|
+
*
|
|
47859
|
+
* @since 1.128.0
|
|
47860
|
+
*
|
|
47861
|
+
* @returns Value of property `icon`
|
|
47862
|
+
*/
|
|
47863
|
+
getIcon(): URI;
|
|
47830
47864
|
/**
|
|
47831
47865
|
* Gets current value of property {@link #getRel rel}.
|
|
47832
47866
|
*
|
|
@@ -48086,6 +48120,28 @@ declare module "sap/m/Link" {
|
|
|
48086
48120
|
*/
|
|
48087
48121
|
bEnabled?: boolean
|
|
48088
48122
|
): this;
|
|
48123
|
+
/**
|
|
48124
|
+
* Sets a new value for property {@link #getEndIcon endIcon}.
|
|
48125
|
+
*
|
|
48126
|
+
* Defines the icon to be displayed as graphical element in the end of the `Link`. It can be an icon from
|
|
48127
|
+
* the icon font. **Note:** Usage of icon-only link is not supported, the link must always have a text.
|
|
48128
|
+
* **Note:** We recommend using аn icon in the beginning or the end only, and always with text. **Note:**
|
|
48129
|
+
* Using an image instead of icon is not supported.
|
|
48130
|
+
*
|
|
48131
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
48132
|
+
*
|
|
48133
|
+
* Default value is `empty string`.
|
|
48134
|
+
*
|
|
48135
|
+
* @since 1.128.0
|
|
48136
|
+
*
|
|
48137
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
48138
|
+
*/
|
|
48139
|
+
setEndIcon(
|
|
48140
|
+
/**
|
|
48141
|
+
* New value for property `endIcon`
|
|
48142
|
+
*/
|
|
48143
|
+
sEndIcon?: URI
|
|
48144
|
+
): this;
|
|
48089
48145
|
/**
|
|
48090
48146
|
* Sets a new value for property {@link #getHref href}.
|
|
48091
48147
|
*
|
|
@@ -48104,6 +48160,28 @@ declare module "sap/m/Link" {
|
|
|
48104
48160
|
*/
|
|
48105
48161
|
sHref?: URI
|
|
48106
48162
|
): this;
|
|
48163
|
+
/**
|
|
48164
|
+
* Sets a new value for property {@link #getIcon icon}.
|
|
48165
|
+
*
|
|
48166
|
+
* Defines the icon to be displayed as graphical element in the beginning of the `Link`. It can be an icon
|
|
48167
|
+
* from the icon font. **Note:** Usage of icon-only link is not supported, the link must always have a text.
|
|
48168
|
+
* **Note:** We recommend using аn icon in the beginning or the end only, and always with text. **Note:**
|
|
48169
|
+
* Using an image instead of icon is not supported.
|
|
48170
|
+
*
|
|
48171
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
48172
|
+
*
|
|
48173
|
+
* Default value is `empty string`.
|
|
48174
|
+
*
|
|
48175
|
+
* @since 1.128.0
|
|
48176
|
+
*
|
|
48177
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
48178
|
+
*/
|
|
48179
|
+
setIcon(
|
|
48180
|
+
/**
|
|
48181
|
+
* New value for property `icon`
|
|
48182
|
+
*/
|
|
48183
|
+
sIcon?: URI
|
|
48184
|
+
): this;
|
|
48107
48185
|
/**
|
|
48108
48186
|
* Sets a new value for property {@link #getRel rel}.
|
|
48109
48187
|
*
|
|
@@ -48291,6 +48369,26 @@ declare module "sap/m/Link" {
|
|
|
48291
48369
|
*/
|
|
48292
48370
|
text?: string | PropertyBindingInfo;
|
|
48293
48371
|
|
|
48372
|
+
/**
|
|
48373
|
+
* Defines the icon to be displayed as graphical element in the beginning of the `Link`. It can be an icon
|
|
48374
|
+
* from the icon font. **Note:** Usage of icon-only link is not supported, the link must always have a text.
|
|
48375
|
+
* **Note:** We recommend using аn icon in the beginning or the end only, and always with text. **Note:**
|
|
48376
|
+
* Using an image instead of icon is not supported.
|
|
48377
|
+
*
|
|
48378
|
+
* @since 1.128.0
|
|
48379
|
+
*/
|
|
48380
|
+
icon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
48381
|
+
|
|
48382
|
+
/**
|
|
48383
|
+
* Defines the icon to be displayed as graphical element in the end of the `Link`. It can be an icon from
|
|
48384
|
+
* the icon font. **Note:** Usage of icon-only link is not supported, the link must always have a text.
|
|
48385
|
+
* **Note:** We recommend using аn icon in the beginning or the end only, and always with text. **Note:**
|
|
48386
|
+
* Using an image instead of icon is not supported.
|
|
48387
|
+
*
|
|
48388
|
+
* @since 1.128.0
|
|
48389
|
+
*/
|
|
48390
|
+
endIcon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
48391
|
+
|
|
48294
48392
|
/**
|
|
48295
48393
|
* Determines whether the link can be triggered by the user.
|
|
48296
48394
|
*/
|
|
@@ -50298,7 +50396,8 @@ declare module "sap/m/ListBase" {
|
|
|
50298
50396
|
* corresponding binding context when the OData V4 model is used. Therefore, all binding-relevant limitations
|
|
50299
50397
|
* apply in this context as well. For more details, see the {@link sap.ui.model.odata.v4.Context#setSelected setSelected},
|
|
50300
50398
|
* the {@link sap.ui.model.odata.v4.ODataModel#bindList bindList}, and the {@link sap.ui.model.odata.v4.ODataMetaModel#requestValueListInfo requestValueListInfo }
|
|
50301
|
-
* API documentation. Do not enable this feature when `$$SharedRequests` is
|
|
50399
|
+
* API documentation. Do not enable this feature when `$$SharedRequests` or `$$clearSelectionOnFilter` is
|
|
50400
|
+
* active.
|
|
50302
50401
|
*
|
|
50303
50402
|
* Default value is `true`.
|
|
50304
50403
|
*
|
|
@@ -50973,7 +51072,8 @@ declare module "sap/m/ListBase" {
|
|
|
50973
51072
|
* corresponding binding context when the OData V4 model is used. Therefore, all binding-relevant limitations
|
|
50974
51073
|
* apply in this context as well. For more details, see the {@link sap.ui.model.odata.v4.Context#setSelected setSelected},
|
|
50975
51074
|
* the {@link sap.ui.model.odata.v4.ODataModel#bindList bindList}, and the {@link sap.ui.model.odata.v4.ODataMetaModel#requestValueListInfo requestValueListInfo }
|
|
50976
|
-
* API documentation. Do not enable this feature when `$$SharedRequests` is
|
|
51075
|
+
* API documentation. Do not enable this feature when `$$SharedRequests` or `$$clearSelectionOnFilter` is
|
|
51076
|
+
* active.
|
|
50977
51077
|
*
|
|
50978
51078
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
50979
51079
|
*
|
|
@@ -51348,7 +51448,8 @@ declare module "sap/m/ListBase" {
|
|
|
51348
51448
|
* corresponding binding context when the OData V4 model is used. Therefore, all binding-relevant limitations
|
|
51349
51449
|
* apply in this context as well. For more details, see the {@link sap.ui.model.odata.v4.Context#setSelected setSelected},
|
|
51350
51450
|
* the {@link sap.ui.model.odata.v4.ODataModel#bindList bindList}, and the {@link sap.ui.model.odata.v4.ODataMetaModel#requestValueListInfo requestValueListInfo }
|
|
51351
|
-
* API documentation. Do not enable this feature when `$$SharedRequests` is
|
|
51451
|
+
* API documentation. Do not enable this feature when `$$SharedRequests` or `$$clearSelectionOnFilter` is
|
|
51452
|
+
* active.
|
|
51352
51453
|
*
|
|
51353
51454
|
* @since 1.16.6
|
|
51354
51455
|
*/
|
|
@@ -55740,6 +55841,10 @@ declare module "sap/m/MessageBox" {
|
|
|
55740
55841
|
* a default error message will be displayed
|
|
55741
55842
|
*/
|
|
55742
55843
|
details?: string | object | (() => Promise<string | object>);
|
|
55844
|
+
/**
|
|
55845
|
+
* The width of the MessageBox
|
|
55846
|
+
*/
|
|
55847
|
+
contentWidth?: CSSSize;
|
|
55743
55848
|
/**
|
|
55744
55849
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
55745
55850
|
* occurs.
|
|
@@ -55866,6 +55971,10 @@ declare module "sap/m/MessageBox" {
|
|
|
55866
55971
|
* a default error message will be displayed
|
|
55867
55972
|
*/
|
|
55868
55973
|
details?: string | object | (() => Promise<string | object>);
|
|
55974
|
+
/**
|
|
55975
|
+
* The width of the MessageBox
|
|
55976
|
+
*/
|
|
55977
|
+
contentWidth?: CSSSize;
|
|
55869
55978
|
/**
|
|
55870
55979
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
55871
55980
|
* occurs.
|
|
@@ -55987,6 +56096,10 @@ declare module "sap/m/MessageBox" {
|
|
|
55987
56096
|
* a default error message will be displayed
|
|
55988
56097
|
*/
|
|
55989
56098
|
details?: string | object | (() => Promise<string | object>);
|
|
56099
|
+
/**
|
|
56100
|
+
* The width of the MessageBox
|
|
56101
|
+
*/
|
|
56102
|
+
contentWidth?: CSSSize;
|
|
55990
56103
|
/**
|
|
55991
56104
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
55992
56105
|
* occurs.
|
|
@@ -56106,6 +56219,10 @@ declare module "sap/m/MessageBox" {
|
|
|
56106
56219
|
* a default error message will be displayed
|
|
56107
56220
|
*/
|
|
56108
56221
|
details?: string | object | (() => Promise<string | object>);
|
|
56222
|
+
/**
|
|
56223
|
+
* The width of the MessageBox
|
|
56224
|
+
*/
|
|
56225
|
+
contentWidth?: CSSSize;
|
|
56109
56226
|
/**
|
|
56110
56227
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
56111
56228
|
* occurs.
|
|
@@ -56357,6 +56474,10 @@ declare module "sap/m/MessageBox" {
|
|
|
56357
56474
|
* a default error message will be displayed
|
|
56358
56475
|
*/
|
|
56359
56476
|
details?: string | object | (() => Promise<string | object>);
|
|
56477
|
+
/**
|
|
56478
|
+
* The width of the MessageBox
|
|
56479
|
+
*/
|
|
56480
|
+
contentWidth?: CSSSize;
|
|
56360
56481
|
/**
|
|
56361
56482
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
56362
56483
|
* occurs.
|
|
@@ -56476,6 +56597,10 @@ declare module "sap/m/MessageBox" {
|
|
|
56476
56597
|
* a default error message will be displayed
|
|
56477
56598
|
*/
|
|
56478
56599
|
details?: string | object | (() => Promise<string | object>);
|
|
56600
|
+
/**
|
|
56601
|
+
* The width of the MessageBox
|
|
56602
|
+
*/
|
|
56603
|
+
contentWidth?: CSSSize;
|
|
56479
56604
|
/**
|
|
56480
56605
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
56481
56606
|
* occurs.
|
|
@@ -59317,15 +59442,18 @@ declare module "sap/m/MessagePopoverItem" {
|
|
|
59317
59442
|
declare module "sap/m/MessageStrip" {
|
|
59318
59443
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
59319
59444
|
|
|
59445
|
+
import Link from "sap/m/Link";
|
|
59446
|
+
|
|
59320
59447
|
import Event from "sap/ui/base/Event";
|
|
59321
59448
|
|
|
59322
59449
|
import { URI, MessageType } from "sap/ui/core/library";
|
|
59323
59450
|
|
|
59324
|
-
import Link from "sap/m/Link";
|
|
59325
|
-
|
|
59326
59451
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
59327
59452
|
|
|
59328
|
-
import {
|
|
59453
|
+
import {
|
|
59454
|
+
PropertyBindingInfo,
|
|
59455
|
+
AggregationBindingInfo,
|
|
59456
|
+
} from "sap/ui/base/ManagedObject";
|
|
59329
59457
|
|
|
59330
59458
|
/**
|
|
59331
59459
|
* MessageStrip is a control that enables the embedding of application-related messages in the application.
|
|
@@ -59422,6 +59550,19 @@ declare module "sap/m/MessageStrip" {
|
|
|
59422
59550
|
* @returns Metadata object describing this class
|
|
59423
59551
|
*/
|
|
59424
59552
|
static getMetadata(): ElementMetadata;
|
|
59553
|
+
/**
|
|
59554
|
+
* Adds some control to the aggregation {@link #getControls controls}.
|
|
59555
|
+
*
|
|
59556
|
+
* @since 1.129
|
|
59557
|
+
*
|
|
59558
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
59559
|
+
*/
|
|
59560
|
+
addControl(
|
|
59561
|
+
/**
|
|
59562
|
+
* The control to add; if empty, nothing is inserted
|
|
59563
|
+
*/
|
|
59564
|
+
oControl: Link
|
|
59565
|
+
): this;
|
|
59425
59566
|
/**
|
|
59426
59567
|
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.MessageStrip`.
|
|
59427
59568
|
*
|
|
@@ -59474,6 +59615,14 @@ declare module "sap/m/MessageStrip" {
|
|
|
59474
59615
|
* can be shown again by setting the visible property to true.
|
|
59475
59616
|
*/
|
|
59476
59617
|
close(): void;
|
|
59618
|
+
/**
|
|
59619
|
+
* Destroys all the controls in the aggregation {@link #getControls controls}.
|
|
59620
|
+
*
|
|
59621
|
+
* @since 1.129
|
|
59622
|
+
*
|
|
59623
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
59624
|
+
*/
|
|
59625
|
+
destroyControls(): this;
|
|
59477
59626
|
/**
|
|
59478
59627
|
* Destroys the link in the aggregation {@link #getLink link}.
|
|
59479
59628
|
*
|
|
@@ -59512,6 +59661,16 @@ declare module "sap/m/MessageStrip" {
|
|
|
59512
59661
|
*/
|
|
59513
59662
|
mParameters?: object
|
|
59514
59663
|
): this;
|
|
59664
|
+
/**
|
|
59665
|
+
* Gets content of aggregation {@link #getControls controls}.
|
|
59666
|
+
*
|
|
59667
|
+
* List of `sap.m.Link` controls that replace the placeholders in the text. Placeholders are replaced according
|
|
59668
|
+
* to their indexes. The first link in the aggregation replaces the placeholder with index %%0, and so on.
|
|
59669
|
+
* **Note:** Placeholders are replaced if the `enableFormattedText` property is set to true.
|
|
59670
|
+
*
|
|
59671
|
+
* @since 1.129
|
|
59672
|
+
*/
|
|
59673
|
+
getControls(): Link[];
|
|
59515
59674
|
/**
|
|
59516
59675
|
* Gets current value of property {@link #getCustomIcon customIcon}.
|
|
59517
59676
|
*
|
|
@@ -59528,6 +59687,7 @@ declare module "sap/m/MessageStrip" {
|
|
|
59528
59687
|
* Gets current value of property {@link #getEnableFormattedText enableFormattedText}.
|
|
59529
59688
|
*
|
|
59530
59689
|
* Determines the limited collection of HTML elements passed to the `text` property should be evaluated.
|
|
59690
|
+
* The `text` property value is set as `htmlText` to an internal instance of {@link sap.m.FormattedText}
|
|
59531
59691
|
*
|
|
59532
59692
|
* **Note:** If this property is set to true the string passed to `text` property can evaluate the following
|
|
59533
59693
|
* list of limited HTML elements. All other HTML elements and their nested content will not be rendered
|
|
@@ -59597,6 +59757,62 @@ declare module "sap/m/MessageStrip" {
|
|
|
59597
59757
|
* @returns Value of property `type`
|
|
59598
59758
|
*/
|
|
59599
59759
|
getType(): MessageType;
|
|
59760
|
+
/**
|
|
59761
|
+
* Checks for the provided `sap.m.Link` in the aggregation {@link #getControls controls}. and returns its
|
|
59762
|
+
* index if found or -1 otherwise.
|
|
59763
|
+
*
|
|
59764
|
+
* @since 1.129
|
|
59765
|
+
*
|
|
59766
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
59767
|
+
*/
|
|
59768
|
+
indexOfControl(
|
|
59769
|
+
/**
|
|
59770
|
+
* The control whose index is looked for
|
|
59771
|
+
*/
|
|
59772
|
+
oControl: Link
|
|
59773
|
+
): int;
|
|
59774
|
+
/**
|
|
59775
|
+
* Inserts a control into the aggregation {@link #getControls controls}.
|
|
59776
|
+
*
|
|
59777
|
+
* @since 1.129
|
|
59778
|
+
*
|
|
59779
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
59780
|
+
*/
|
|
59781
|
+
insertControl(
|
|
59782
|
+
/**
|
|
59783
|
+
* The control to insert; if empty, nothing is inserted
|
|
59784
|
+
*/
|
|
59785
|
+
oControl: Link,
|
|
59786
|
+
/**
|
|
59787
|
+
* The `0`-based index the control should be inserted at; for a negative value of `iIndex`, the control
|
|
59788
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the control
|
|
59789
|
+
* is inserted at the last position
|
|
59790
|
+
*/
|
|
59791
|
+
iIndex: int
|
|
59792
|
+
): this;
|
|
59793
|
+
/**
|
|
59794
|
+
* Removes all the controls from the aggregation {@link #getControls controls}.
|
|
59795
|
+
*
|
|
59796
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
59797
|
+
*
|
|
59798
|
+
* @since 1.129
|
|
59799
|
+
*
|
|
59800
|
+
* @returns An array of the removed elements (might be empty)
|
|
59801
|
+
*/
|
|
59802
|
+
removeAllControls(): Link[];
|
|
59803
|
+
/**
|
|
59804
|
+
* Removes a control from the aggregation {@link #getControls controls}.
|
|
59805
|
+
*
|
|
59806
|
+
* @since 1.129
|
|
59807
|
+
*
|
|
59808
|
+
* @returns The removed control or `null`
|
|
59809
|
+
*/
|
|
59810
|
+
removeControl(
|
|
59811
|
+
/**
|
|
59812
|
+
* The control to remove or its index or id
|
|
59813
|
+
*/
|
|
59814
|
+
vControl: int | string | Link
|
|
59815
|
+
): Link | null;
|
|
59600
59816
|
/**
|
|
59601
59817
|
* Sets a new value for property {@link #getCustomIcon customIcon}.
|
|
59602
59818
|
*
|
|
@@ -59620,6 +59836,7 @@ declare module "sap/m/MessageStrip" {
|
|
|
59620
59836
|
* Sets a new value for property {@link #getEnableFormattedText enableFormattedText}.
|
|
59621
59837
|
*
|
|
59622
59838
|
* Determines the limited collection of HTML elements passed to the `text` property should be evaluated.
|
|
59839
|
+
* The `text` property value is set as `htmlText` to an internal instance of {@link sap.m.FormattedText}
|
|
59623
59840
|
*
|
|
59624
59841
|
* **Note:** If this property is set to true the string passed to `text` property can evaluate the following
|
|
59625
59842
|
* list of limited HTML elements. All other HTML elements and their nested content will not be rendered
|
|
@@ -59759,6 +59976,7 @@ declare module "sap/m/MessageStrip" {
|
|
|
59759
59976
|
|
|
59760
59977
|
/**
|
|
59761
59978
|
* Determines the limited collection of HTML elements passed to the `text` property should be evaluated.
|
|
59979
|
+
* The `text` property value is set as `htmlText` to an internal instance of {@link sap.m.FormattedText}
|
|
59762
59980
|
*
|
|
59763
59981
|
* **Note:** If this property is set to true the string passed to `text` property can evaluate the following
|
|
59764
59982
|
* list of limited HTML elements. All other HTML elements and their nested content will not be rendered
|
|
@@ -59778,6 +59996,15 @@ declare module "sap/m/MessageStrip" {
|
|
|
59778
59996
|
*/
|
|
59779
59997
|
link?: Link;
|
|
59780
59998
|
|
|
59999
|
+
/**
|
|
60000
|
+
* List of `sap.m.Link` controls that replace the placeholders in the text. Placeholders are replaced according
|
|
60001
|
+
* to their indexes. The first link in the aggregation replaces the placeholder with index %%0, and so on.
|
|
60002
|
+
* **Note:** Placeholders are replaced if the `enableFormattedText` property is set to true.
|
|
60003
|
+
*
|
|
60004
|
+
* @since 1.129
|
|
60005
|
+
*/
|
|
60006
|
+
controls?: Link[] | Link | AggregationBindingInfo | `{${string}}`;
|
|
60007
|
+
|
|
59781
60008
|
/**
|
|
59782
60009
|
* This event will be fired after the container is closed.
|
|
59783
60010
|
*/
|
|
@@ -89267,6 +89494,8 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
89267
89494
|
|
|
89268
89495
|
import Control from "sap/ui/core/Control";
|
|
89269
89496
|
|
|
89497
|
+
import NonWorkingPeriod from "sap/ui/unified/NonWorkingPeriod";
|
|
89498
|
+
|
|
89270
89499
|
import DateTypeRange from "sap/ui/unified/DateTypeRange";
|
|
89271
89500
|
|
|
89272
89501
|
import { URI } from "sap/ui/core/library";
|
|
@@ -89389,6 +89618,19 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
89389
89618
|
*/
|
|
89390
89619
|
oIntervalHeader: CalendarAppointment
|
|
89391
89620
|
): this;
|
|
89621
|
+
/**
|
|
89622
|
+
* Adds some nonWorkingPeriod to the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
89623
|
+
*
|
|
89624
|
+
* @since 1.128
|
|
89625
|
+
*
|
|
89626
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
89627
|
+
*/
|
|
89628
|
+
addNonWorkingPeriod(
|
|
89629
|
+
/**
|
|
89630
|
+
* The nonWorkingPeriod to add; if empty, nothing is inserted
|
|
89631
|
+
*/
|
|
89632
|
+
oNonWorkingPeriod: NonWorkingPeriod
|
|
89633
|
+
): this;
|
|
89392
89634
|
/**
|
|
89393
89635
|
* Adds some specialDate to the aggregation {@link #getSpecialDates specialDates}.
|
|
89394
89636
|
*
|
|
@@ -89642,6 +89884,14 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
89642
89884
|
* @returns Reference to `this` in order to allow method chaining
|
|
89643
89885
|
*/
|
|
89644
89886
|
destroyIntervalHeaders(): this;
|
|
89887
|
+
/**
|
|
89888
|
+
* Destroys all the nonWorkingPeriods in the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
89889
|
+
*
|
|
89890
|
+
* @since 1.128
|
|
89891
|
+
*
|
|
89892
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
89893
|
+
*/
|
|
89894
|
+
destroyNonWorkingPeriods(): this;
|
|
89645
89895
|
/**
|
|
89646
89896
|
* Destroys all the specialDates in the aggregation {@link #getSpecialDates specialDates}.
|
|
89647
89897
|
*
|
|
@@ -89830,13 +90080,13 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
89830
90080
|
* Specifics based on the intervals (hours, days or months) displayed in the `PlanningCalendar` views:
|
|
89831
90081
|
*
|
|
89832
90082
|
* Hours:
|
|
89833
|
-
* For views where the displayed intervals are hours, the placeholder snaps on every interval of
|
|
90083
|
+
* For views where the displayed intervals are hours, the placeholder snaps on every interval of 15 minutes.
|
|
89834
90084
|
* After the appointment is dropped, the {@link #event:appointmentDrop appointmentDrop} event is fired,
|
|
89835
90085
|
* containing the new start and end UI5Date or JavaScript Date objects.
|
|
89836
90086
|
* For example, an appointment with start date "Nov 13 2017 12:17:00" and end date "Nov 13 2017 12:45:30"
|
|
89837
90087
|
* lasts for 27 minutes and 30 seconds. After dragging and dropping to a new time, the possible new start
|
|
89838
|
-
* date has time that is either "hh:00:00" or "hh:
|
|
89839
|
-
*
|
|
90088
|
+
* date has time that is either "hh:00:00" or "hh:15:00" because of the placeholder that can snap on every
|
|
90089
|
+
* 15 minutes. The new end date is calculated to be 27 minutes and 30 seconds later and would be either
|
|
89840
90090
|
* "hh:27:30" or "hh:57:30".
|
|
89841
90091
|
*
|
|
89842
90092
|
* Days:
|
|
@@ -89899,7 +90149,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
89899
90149
|
* Specifics based on the intervals (hours, days or months) displayed in the `PlanningCalendar` views:
|
|
89900
90150
|
*
|
|
89901
90151
|
* Hours: For views where the displayed intervals are hours, the appointment snaps on every interval of
|
|
89902
|
-
*
|
|
90152
|
+
* 15 minutes. After the resize is finished, the {@link #event:appointmentResize appointmentResize} event
|
|
89903
90153
|
* is fired, containing the new start and end UI5Date or JavaScript Date objects.
|
|
89904
90154
|
*
|
|
89905
90155
|
* Days: For views where intervals are days, the appointment snaps to the end of the day. After the resize
|
|
@@ -90005,6 +90255,14 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
90005
90255
|
* @returns Value of property `nonWorkingHours`
|
|
90006
90256
|
*/
|
|
90007
90257
|
getNonWorkingHours(): int[];
|
|
90258
|
+
/**
|
|
90259
|
+
* Gets content of aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
90260
|
+
*
|
|
90261
|
+
* Sets the provided period to be displayed as a non-working.
|
|
90262
|
+
*
|
|
90263
|
+
* @since 1.128
|
|
90264
|
+
*/
|
|
90265
|
+
getNonWorkingPeriods(): NonWorkingPeriod[];
|
|
90008
90266
|
/**
|
|
90009
90267
|
* Gets current value of property {@link #getRowHeaderDescription rowHeaderDescription}.
|
|
90010
90268
|
*
|
|
@@ -90100,6 +90358,20 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
90100
90358
|
*/
|
|
90101
90359
|
oIntervalHeader: CalendarAppointment
|
|
90102
90360
|
): int;
|
|
90361
|
+
/**
|
|
90362
|
+
* Checks for the provided `sap.ui.unified.NonWorkingPeriod` in the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
90363
|
+
* and returns its index if found or -1 otherwise.
|
|
90364
|
+
*
|
|
90365
|
+
* @since 1.128
|
|
90366
|
+
*
|
|
90367
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
90368
|
+
*/
|
|
90369
|
+
indexOfNonWorkingPeriod(
|
|
90370
|
+
/**
|
|
90371
|
+
* The nonWorkingPeriod whose index is looked for
|
|
90372
|
+
*/
|
|
90373
|
+
oNonWorkingPeriod: NonWorkingPeriod
|
|
90374
|
+
): int;
|
|
90103
90375
|
/**
|
|
90104
90376
|
* Checks for the provided `sap.ui.unified.DateTypeRange` in the aggregation {@link #getSpecialDates specialDates}.
|
|
90105
90377
|
* and returns its index if found or -1 otherwise.
|
|
@@ -90169,6 +90441,25 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
90169
90441
|
*/
|
|
90170
90442
|
iIndex: int
|
|
90171
90443
|
): this;
|
|
90444
|
+
/**
|
|
90445
|
+
* Inserts a nonWorkingPeriod into the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
90446
|
+
*
|
|
90447
|
+
* @since 1.128
|
|
90448
|
+
*
|
|
90449
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
90450
|
+
*/
|
|
90451
|
+
insertNonWorkingPeriod(
|
|
90452
|
+
/**
|
|
90453
|
+
* The nonWorkingPeriod to insert; if empty, nothing is inserted
|
|
90454
|
+
*/
|
|
90455
|
+
oNonWorkingPeriod: NonWorkingPeriod,
|
|
90456
|
+
/**
|
|
90457
|
+
* The `0`-based index the nonWorkingPeriod should be inserted at; for a negative value of `iIndex`, the
|
|
90458
|
+
* nonWorkingPeriod is inserted at position 0; for a value greater than the current size of the aggregation,
|
|
90459
|
+
* the nonWorkingPeriod is inserted at the last position
|
|
90460
|
+
*/
|
|
90461
|
+
iIndex: int
|
|
90462
|
+
): this;
|
|
90172
90463
|
/**
|
|
90173
90464
|
* Inserts a specialDate into the aggregation {@link #getSpecialDates specialDates}.
|
|
90174
90465
|
*
|
|
@@ -90216,6 +90507,16 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
90216
90507
|
* @returns An array of the removed elements (might be empty)
|
|
90217
90508
|
*/
|
|
90218
90509
|
removeAllIntervalHeaders(): CalendarAppointment[];
|
|
90510
|
+
/**
|
|
90511
|
+
* Removes all the controls from the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
90512
|
+
*
|
|
90513
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
90514
|
+
*
|
|
90515
|
+
* @since 1.128
|
|
90516
|
+
*
|
|
90517
|
+
* @returns An array of the removed elements (might be empty)
|
|
90518
|
+
*/
|
|
90519
|
+
removeAllNonWorkingPeriods(): NonWorkingPeriod[];
|
|
90219
90520
|
/**
|
|
90220
90521
|
* Removes all the controls from the aggregation {@link #getSpecialDates specialDates}.
|
|
90221
90522
|
*
|
|
@@ -90263,6 +90564,19 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
90263
90564
|
*/
|
|
90264
90565
|
vIntervalHeader: int | string | CalendarAppointment
|
|
90265
90566
|
): CalendarAppointment | null;
|
|
90567
|
+
/**
|
|
90568
|
+
* Removes a nonWorkingPeriod from the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
90569
|
+
*
|
|
90570
|
+
* @since 1.128
|
|
90571
|
+
*
|
|
90572
|
+
* @returns The removed nonWorkingPeriod or `null`
|
|
90573
|
+
*/
|
|
90574
|
+
removeNonWorkingPeriod(
|
|
90575
|
+
/**
|
|
90576
|
+
* The nonWorkingPeriod to remove or its index or id
|
|
90577
|
+
*/
|
|
90578
|
+
vNonWorkingPeriod: int | string | NonWorkingPeriod
|
|
90579
|
+
): NonWorkingPeriod | null;
|
|
90266
90580
|
/**
|
|
90267
90581
|
* Removes a specialDate from the aggregation {@link #getSpecialDates specialDates}.
|
|
90268
90582
|
*
|
|
@@ -90315,13 +90629,13 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
90315
90629
|
* Specifics based on the intervals (hours, days or months) displayed in the `PlanningCalendar` views:
|
|
90316
90630
|
*
|
|
90317
90631
|
* Hours:
|
|
90318
|
-
* For views where the displayed intervals are hours, the placeholder snaps on every interval of
|
|
90632
|
+
* For views where the displayed intervals are hours, the placeholder snaps on every interval of 15 minutes.
|
|
90319
90633
|
* After the appointment is dropped, the {@link #event:appointmentDrop appointmentDrop} event is fired,
|
|
90320
90634
|
* containing the new start and end UI5Date or JavaScript Date objects.
|
|
90321
90635
|
* For example, an appointment with start date "Nov 13 2017 12:17:00" and end date "Nov 13 2017 12:45:30"
|
|
90322
90636
|
* lasts for 27 minutes and 30 seconds. After dragging and dropping to a new time, the possible new start
|
|
90323
|
-
* date has time that is either "hh:00:00" or "hh:
|
|
90324
|
-
*
|
|
90637
|
+
* date has time that is either "hh:00:00" or "hh:15:00" because of the placeholder that can snap on every
|
|
90638
|
+
* 15 minutes. The new end date is calculated to be 27 minutes and 30 seconds later and would be either
|
|
90325
90639
|
* "hh:27:30" or "hh:57:30".
|
|
90326
90640
|
*
|
|
90327
90641
|
* Days:
|
|
@@ -90391,7 +90705,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
90391
90705
|
* Specifics based on the intervals (hours, days or months) displayed in the `PlanningCalendar` views:
|
|
90392
90706
|
*
|
|
90393
90707
|
* Hours: For views where the displayed intervals are hours, the appointment snaps on every interval of
|
|
90394
|
-
*
|
|
90708
|
+
* 15 minutes. After the resize is finished, the {@link #event:appointmentResize appointmentResize} event
|
|
90395
90709
|
* is fired, containing the new start and end UI5Date or JavaScript Date objects.
|
|
90396
90710
|
*
|
|
90397
90711
|
* Days: For views where intervals are days, the appointment snaps to the end of the day. After the resize
|
|
@@ -90647,13 +90961,13 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
90647
90961
|
* Specifics based on the intervals (hours, days or months) displayed in the `PlanningCalendar` views:
|
|
90648
90962
|
*
|
|
90649
90963
|
* Hours:
|
|
90650
|
-
* For views where the displayed intervals are hours, the placeholder snaps on every interval of
|
|
90964
|
+
* For views where the displayed intervals are hours, the placeholder snaps on every interval of 15 minutes.
|
|
90651
90965
|
* After the appointment is dropped, the {@link #event:appointmentDrop appointmentDrop} event is fired,
|
|
90652
90966
|
* containing the new start and end UI5Date or JavaScript Date objects.
|
|
90653
90967
|
* For example, an appointment with start date "Nov 13 2017 12:17:00" and end date "Nov 13 2017 12:45:30"
|
|
90654
90968
|
* lasts for 27 minutes and 30 seconds. After dragging and dropping to a new time, the possible new start
|
|
90655
|
-
* date has time that is either "hh:00:00" or "hh:
|
|
90656
|
-
*
|
|
90969
|
+
* date has time that is either "hh:00:00" or "hh:15:00" because of the placeholder that can snap on every
|
|
90970
|
+
* 15 minutes. The new end date is calculated to be 27 minutes and 30 seconds later and would be either
|
|
90657
90971
|
* "hh:27:30" or "hh:57:30".
|
|
90658
90972
|
*
|
|
90659
90973
|
* Days:
|
|
@@ -90714,7 +91028,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
90714
91028
|
* Specifics based on the intervals (hours, days or months) displayed in the `PlanningCalendar` views:
|
|
90715
91029
|
*
|
|
90716
91030
|
* Hours: For views where the displayed intervals are hours, the appointment snaps on every interval of
|
|
90717
|
-
*
|
|
91031
|
+
* 15 minutes. After the resize is finished, the {@link #event:appointmentResize appointmentResize} event
|
|
90718
91032
|
* is fired, containing the new start and end UI5Date or JavaScript Date objects.
|
|
90719
91033
|
*
|
|
90720
91034
|
* Days: For views where intervals are days, the appointment snaps to the end of the day. After the resize
|
|
@@ -90771,6 +91085,17 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
90771
91085
|
| AggregationBindingInfo
|
|
90772
91086
|
| `{${string}}`;
|
|
90773
91087
|
|
|
91088
|
+
/**
|
|
91089
|
+
* Sets the provided period to be displayed as a non-working.
|
|
91090
|
+
*
|
|
91091
|
+
* @since 1.128
|
|
91092
|
+
*/
|
|
91093
|
+
nonWorkingPeriods?:
|
|
91094
|
+
| NonWorkingPeriod[]
|
|
91095
|
+
| NonWorkingPeriod
|
|
91096
|
+
| AggregationBindingInfo
|
|
91097
|
+
| `{${string}}`;
|
|
91098
|
+
|
|
90774
91099
|
/**
|
|
90775
91100
|
* The appointments to be displayed at the top of the intervals (for example, for public holidays). Appointments
|
|
90776
91101
|
* outside the visible time frame are not rendered.
|
|
@@ -91523,8 +91848,6 @@ declare module "sap/m/plugins/CellSelector" {
|
|
|
91523
91848
|
* - Drag for rows is active
|
|
91524
91849
|
* - If used in combination with {@link sap.ui.table.Table#cellClick} or {@link sap.m.Table#itemPress }
|
|
91525
91850
|
*
|
|
91526
|
-
* - If the `sap.ui.table.SelectionBehavior.RowOnly` or `sap.ui.table.SelectionBehavior.Row` selection
|
|
91527
|
-
* behavior is used in the `sap.ui.table.Table`
|
|
91528
91851
|
* - If the `sap.m.ListType.SingleSelectMaster` mode is used in the `sap.m.Table`
|
|
91529
91852
|
*
|
|
91530
91853
|
* When the `CellSelector` is used in combination with the {@link sap.ui.mdc.Table}, modifying the following
|
|
@@ -93686,7 +94009,6 @@ declare module "sap/m/plugins/UploadSetwithTable" {
|
|
|
93686
94009
|
* such as rename, download etc.
|
|
93687
94010
|
*
|
|
93688
94011
|
* @since 1.124
|
|
93689
|
-
* @experimental (since 1.124)
|
|
93690
94012
|
*/
|
|
93691
94013
|
export default class UploadSetwithTable extends UI5Element {
|
|
93692
94014
|
/**
|
|
@@ -95375,8 +95697,6 @@ declare module "sap/m/plugins/UploadSetwithTable" {
|
|
|
95375
95697
|
|
|
95376
95698
|
/**
|
|
95377
95699
|
* Describes the settings that can be provided to the UploadSetwithTable constructor.
|
|
95378
|
-
*
|
|
95379
|
-
* @experimental (since 1.124)
|
|
95380
95700
|
*/
|
|
95381
95701
|
export interface $UploadSetwithTableSettings extends $ElementSettings {
|
|
95382
95702
|
/**
|
|
@@ -102663,10 +102983,12 @@ declare module "sap/m/RatingIndicator" {
|
|
|
102663
102983
|
* The preferred number of icons is between 5 (default) and 7. Responsive Behavior: You can display icons
|
|
102664
102984
|
* in 4 recommended sizes:
|
|
102665
102985
|
* - large - 32px
|
|
102666
|
-
* - medium(default) -
|
|
102667
|
-
* - small -
|
|
102668
|
-
* - XS - 12px **Note:**
|
|
102669
|
-
*
|
|
102986
|
+
* - medium(default) - 24px
|
|
102987
|
+
* - small - 22px
|
|
102988
|
+
* - XS - 12px **Note:** It is not recommended to use the XS size as an editable rating indicator.
|
|
102989
|
+
* If an editable rating indicator is needed then it is recommended to set the size S or above to be compliant
|
|
102990
|
+
* with minimum touch size. **Note:** If no icon size is set, the rating indicator will set it according
|
|
102991
|
+
* to the content density.
|
|
102670
102992
|
*
|
|
102671
102993
|
* @since 1.14
|
|
102672
102994
|
*/
|
|
@@ -103025,7 +103347,7 @@ declare module "sap/m/RatingIndicator" {
|
|
|
103025
103347
|
*
|
|
103026
103348
|
* The Size of the image or icon to be displayed. The default value depends on the theme. Please be sure
|
|
103027
103349
|
* that the size is corresponding to a full pixel value as some browsers don't support subpixel calculations.
|
|
103028
|
-
* Recommended size is 1.
|
|
103350
|
+
* Recommended size is 1.5rem (24px) for normal, 1.375rem (22px) for small, and 2rem (32px) for large icons
|
|
103029
103351
|
* correspondingly.
|
|
103030
103352
|
*
|
|
103031
103353
|
*
|
|
@@ -103227,7 +103549,7 @@ declare module "sap/m/RatingIndicator" {
|
|
|
103227
103549
|
*
|
|
103228
103550
|
* The Size of the image or icon to be displayed. The default value depends on the theme. Please be sure
|
|
103229
103551
|
* that the size is corresponding to a full pixel value as some browsers don't support subpixel calculations.
|
|
103230
|
-
* Recommended size is 1.
|
|
103552
|
+
* Recommended size is 1.5rem (24px) for normal, 1.375rem (22px) for small, and 2rem (32px) for large icons
|
|
103231
103553
|
* correspondingly.
|
|
103232
103554
|
*
|
|
103233
103555
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -103362,7 +103684,7 @@ declare module "sap/m/RatingIndicator" {
|
|
|
103362
103684
|
/**
|
|
103363
103685
|
* The Size of the image or icon to be displayed. The default value depends on the theme. Please be sure
|
|
103364
103686
|
* that the size is corresponding to a full pixel value as some browsers don't support subpixel calculations.
|
|
103365
|
-
* Recommended size is 1.
|
|
103687
|
+
* Recommended size is 1.5rem (24px) for normal, 1.375rem (22px) for small, and 2rem (32px) for large icons
|
|
103366
103688
|
* correspondingly.
|
|
103367
103689
|
*/
|
|
103368
103690
|
iconSize?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
@@ -103485,6 +103807,8 @@ declare module "sap/m/ResponsivePopover" {
|
|
|
103485
103807
|
|
|
103486
103808
|
import { IBar, PlacementType, TitleAlignment } from "sap/m/library";
|
|
103487
103809
|
|
|
103810
|
+
import Toolbar from "sap/m/Toolbar";
|
|
103811
|
+
|
|
103488
103812
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
103489
103813
|
|
|
103490
103814
|
import Popover from "sap/m/Popover";
|
|
@@ -103835,6 +104159,14 @@ declare module "sap/m/ResponsivePopover" {
|
|
|
103835
104159
|
* @returns Reference to `this` in order to allow method chaining
|
|
103836
104160
|
*/
|
|
103837
104161
|
destroyEndButton(): this;
|
|
104162
|
+
/**
|
|
104163
|
+
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
104164
|
+
*
|
|
104165
|
+
* @since 1.129
|
|
104166
|
+
*
|
|
104167
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
104168
|
+
*/
|
|
104169
|
+
destroyFooter(): this;
|
|
103838
104170
|
/**
|
|
103839
104171
|
* Destroys the subHeader in the aggregation {@link #getSubHeader subHeader}.
|
|
103840
104172
|
*
|
|
@@ -104021,6 +104353,14 @@ declare module "sap/m/ResponsivePopover" {
|
|
|
104021
104353
|
* @returns The button that is set as an endButton aggregation
|
|
104022
104354
|
*/
|
|
104023
104355
|
getEndButton(): Button;
|
|
104356
|
+
/**
|
|
104357
|
+
* Gets content of aggregation {@link #getFooter footer}.
|
|
104358
|
+
*
|
|
104359
|
+
* The footer of this popover.
|
|
104360
|
+
*
|
|
104361
|
+
* @since 1.129
|
|
104362
|
+
*/
|
|
104363
|
+
getFooter(): Toolbar;
|
|
104024
104364
|
/**
|
|
104025
104365
|
* Gets current value of property {@link #getHorizontalScrolling horizontalScrolling}.
|
|
104026
104366
|
*
|
|
@@ -104358,6 +104698,19 @@ declare module "sap/m/ResponsivePopover" {
|
|
|
104358
104698
|
*/
|
|
104359
104699
|
oButton: Button
|
|
104360
104700
|
): this;
|
|
104701
|
+
/**
|
|
104702
|
+
* Sets the aggregated {@link #getFooter footer}.
|
|
104703
|
+
*
|
|
104704
|
+
* @since 1.129
|
|
104705
|
+
*
|
|
104706
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
104707
|
+
*/
|
|
104708
|
+
setFooter(
|
|
104709
|
+
/**
|
|
104710
|
+
* The footer to set
|
|
104711
|
+
*/
|
|
104712
|
+
oFooter: Toolbar
|
|
104713
|
+
): this;
|
|
104361
104714
|
/**
|
|
104362
104715
|
* Sets a new value for property {@link #getHorizontalScrolling horizontalScrolling}.
|
|
104363
104716
|
*
|
|
@@ -104741,6 +105094,13 @@ declare module "sap/m/ResponsivePopover" {
|
|
|
104741
105094
|
*/
|
|
104742
105095
|
endButton?: Button;
|
|
104743
105096
|
|
|
105097
|
+
/**
|
|
105098
|
+
* The footer of this popover.
|
|
105099
|
+
*
|
|
105100
|
+
* @since 1.129
|
|
105101
|
+
*/
|
|
105102
|
+
footer?: Toolbar;
|
|
105103
|
+
|
|
104744
105104
|
/**
|
|
104745
105105
|
* InitialFocus is supported by both variants. Please see the documentation on sap.m.Popover#initialFocus
|
|
104746
105106
|
* and sap.m.Dialog#initialFocus
|
|
@@ -123666,6 +124026,8 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
123666
124026
|
|
|
123667
124027
|
import CalendarAppointment from "sap/ui/unified/CalendarAppointment";
|
|
123668
124028
|
|
|
124029
|
+
import NonWorkingPeriod from "sap/ui/unified/NonWorkingPeriod";
|
|
124030
|
+
|
|
123669
124031
|
import DateRange from "sap/ui/unified/DateRange";
|
|
123670
124032
|
|
|
123671
124033
|
import DateTypeRange from "sap/ui/unified/DateTypeRange";
|
|
@@ -123819,6 +124181,19 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
123819
124181
|
*/
|
|
123820
124182
|
oAppointment: CalendarAppointment
|
|
123821
124183
|
): this;
|
|
124184
|
+
/**
|
|
124185
|
+
* Adds some nonWorkingPeriod to the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
124186
|
+
*
|
|
124187
|
+
* @since 1.128
|
|
124188
|
+
*
|
|
124189
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
124190
|
+
*/
|
|
124191
|
+
addNonWorkingPeriod(
|
|
124192
|
+
/**
|
|
124193
|
+
* The nonWorkingPeriod to add; if empty, nothing is inserted
|
|
124194
|
+
*/
|
|
124195
|
+
oNonWorkingPeriod: NonWorkingPeriod
|
|
124196
|
+
): this;
|
|
123822
124197
|
/**
|
|
123823
124198
|
* Adds a selected date to the grid.
|
|
123824
124199
|
*
|
|
@@ -124431,6 +124806,14 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
124431
124806
|
* @returns Reference to `this` in order to allow method chaining
|
|
124432
124807
|
*/
|
|
124433
124808
|
destroyAppointments(): this;
|
|
124809
|
+
/**
|
|
124810
|
+
* Destroys all the nonWorkingPeriods in the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
124811
|
+
*
|
|
124812
|
+
* @since 1.128
|
|
124813
|
+
*
|
|
124814
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
124815
|
+
*/
|
|
124816
|
+
destroyNonWorkingPeriods(): this;
|
|
124434
124817
|
/**
|
|
124435
124818
|
* Destroys all the selectedDates in the aggregation {@link #getSelectedDates selectedDates}.
|
|
124436
124819
|
*
|
|
@@ -124980,6 +125363,16 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
124980
125363
|
* @since 1.65.0
|
|
124981
125364
|
*/
|
|
124982
125365
|
getLegend(): ID | null;
|
|
125366
|
+
/**
|
|
125367
|
+
* Gets content of aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
125368
|
+
*
|
|
125369
|
+
* Sets the provided period to be displayed as a non-working.
|
|
125370
|
+
*
|
|
125371
|
+
* **Note:** The visualization of non-working periods is present in all views that include hours representation.
|
|
125372
|
+
*
|
|
125373
|
+
* @since 1.128
|
|
125374
|
+
*/
|
|
125375
|
+
getNonWorkingPeriods(): NonWorkingPeriod[];
|
|
124983
125376
|
/**
|
|
124984
125377
|
* Gets current value of property {@link #getScaleFactor scaleFactor}.
|
|
124985
125378
|
*
|
|
@@ -125153,6 +125546,20 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
125153
125546
|
*/
|
|
125154
125547
|
oAppointment: CalendarAppointment
|
|
125155
125548
|
): int;
|
|
125549
|
+
/**
|
|
125550
|
+
* Checks for the provided `sap.ui.unified.NonWorkingPeriod` in the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
125551
|
+
* and returns its index if found or -1 otherwise.
|
|
125552
|
+
*
|
|
125553
|
+
* @since 1.128
|
|
125554
|
+
*
|
|
125555
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
125556
|
+
*/
|
|
125557
|
+
indexOfNonWorkingPeriod(
|
|
125558
|
+
/**
|
|
125559
|
+
* The nonWorkingPeriod whose index is looked for
|
|
125560
|
+
*/
|
|
125561
|
+
oNonWorkingPeriod: NonWorkingPeriod
|
|
125562
|
+
): int;
|
|
125156
125563
|
/**
|
|
125157
125564
|
* Checks for the provided `sap.ui.unified.DateRange` in the aggregation {@link #getSelectedDates selectedDates}.
|
|
125158
125565
|
* and returns its index if found or -1 otherwise.
|
|
@@ -125229,6 +125636,25 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
125229
125636
|
*/
|
|
125230
125637
|
iIndex: int
|
|
125231
125638
|
): this;
|
|
125639
|
+
/**
|
|
125640
|
+
* Inserts a nonWorkingPeriod into the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
125641
|
+
*
|
|
125642
|
+
* @since 1.128
|
|
125643
|
+
*
|
|
125644
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
125645
|
+
*/
|
|
125646
|
+
insertNonWorkingPeriod(
|
|
125647
|
+
/**
|
|
125648
|
+
* The nonWorkingPeriod to insert; if empty, nothing is inserted
|
|
125649
|
+
*/
|
|
125650
|
+
oNonWorkingPeriod: NonWorkingPeriod,
|
|
125651
|
+
/**
|
|
125652
|
+
* The `0`-based index the nonWorkingPeriod should be inserted at; for a negative value of `iIndex`, the
|
|
125653
|
+
* nonWorkingPeriod is inserted at position 0; for a value greater than the current size of the aggregation,
|
|
125654
|
+
* the nonWorkingPeriod is inserted at the last position
|
|
125655
|
+
*/
|
|
125656
|
+
iIndex: int
|
|
125657
|
+
): this;
|
|
125232
125658
|
/**
|
|
125233
125659
|
* Inserts a selectedDate into the aggregation {@link #getSelectedDates selectedDates}.
|
|
125234
125660
|
*
|
|
@@ -125314,6 +125740,16 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
125314
125740
|
* @returns An array of the removed elements (might be empty)
|
|
125315
125741
|
*/
|
|
125316
125742
|
removeAllAppointments(): CalendarAppointment[];
|
|
125743
|
+
/**
|
|
125744
|
+
* Removes all the controls from the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
125745
|
+
*
|
|
125746
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
125747
|
+
*
|
|
125748
|
+
* @since 1.128
|
|
125749
|
+
*
|
|
125750
|
+
* @returns An array of the removed elements (might be empty)
|
|
125751
|
+
*/
|
|
125752
|
+
removeAllNonWorkingPeriods(): NonWorkingPeriod[];
|
|
125317
125753
|
/**
|
|
125318
125754
|
* Removes the selected dates of the grid.
|
|
125319
125755
|
*
|
|
@@ -125352,6 +125788,19 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
125352
125788
|
*/
|
|
125353
125789
|
vAppointment: int | string | CalendarAppointment
|
|
125354
125790
|
): CalendarAppointment | null;
|
|
125791
|
+
/**
|
|
125792
|
+
* Removes a nonWorkingPeriod from the aggregation {@link #getNonWorkingPeriods nonWorkingPeriods}.
|
|
125793
|
+
*
|
|
125794
|
+
* @since 1.128
|
|
125795
|
+
*
|
|
125796
|
+
* @returns The removed nonWorkingPeriod or `null`
|
|
125797
|
+
*/
|
|
125798
|
+
removeNonWorkingPeriod(
|
|
125799
|
+
/**
|
|
125800
|
+
* The nonWorkingPeriod to remove or its index or id
|
|
125801
|
+
*/
|
|
125802
|
+
vNonWorkingPeriod: int | string | NonWorkingPeriod
|
|
125803
|
+
): NonWorkingPeriod | null;
|
|
125355
125804
|
/**
|
|
125356
125805
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
125357
125806
|
*
|
|
@@ -125878,6 +126327,19 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
125878
126327
|
| AggregationBindingInfo
|
|
125879
126328
|
| `{${string}}`;
|
|
125880
126329
|
|
|
126330
|
+
/**
|
|
126331
|
+
* Sets the provided period to be displayed as a non-working.
|
|
126332
|
+
*
|
|
126333
|
+
* **Note:** The visualization of non-working periods is present in all views that include hours representation.
|
|
126334
|
+
*
|
|
126335
|
+
* @since 1.128
|
|
126336
|
+
*/
|
|
126337
|
+
nonWorkingPeriods?:
|
|
126338
|
+
| NonWorkingPeriod[]
|
|
126339
|
+
| NonWorkingPeriod
|
|
126340
|
+
| AggregationBindingInfo
|
|
126341
|
+
| `{${string}}`;
|
|
126342
|
+
|
|
125881
126343
|
/**
|
|
125882
126344
|
* Views of the `SinglePlanningCalendar`.
|
|
125883
126345
|
*
|
|
@@ -151833,15 +152295,14 @@ declare module "sap/m/upload/ActionsPlaceholder" {
|
|
|
151833
152295
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
151834
152296
|
|
|
151835
152297
|
/**
|
|
151836
|
-
* The control acts as placeholder to position specific action controls (Upload,
|
|
151837
|
-
*
|
|
152298
|
+
* The control acts as placeholder to position specific action controls (Upload, Upload from cloud) on headertoolbar
|
|
152299
|
+
* of table with connected plugin {@link sap.m.plugins.UploadSetwithTable UploadSetwithTable} Plugin.
|
|
151838
152300
|
* The type of action control placed on the headertoolbar is determined by the {@link sap.m.UploadSetwithTableActionPlaceHolder UploadSetwithTableActionPlaceHolder }
|
|
151839
152301
|
* enum set.
|
|
151840
|
-
* This control is supposed to be used only within the
|
|
151841
|
-
*
|
|
152302
|
+
* This control is supposed to be used only within the association of the {@link sap.m.plugins.UploadSetwithTable UploadSetwithTable }
|
|
152303
|
+
* Plugin.
|
|
151842
152304
|
*
|
|
151843
152305
|
* @since 1.120
|
|
151844
|
-
* @experimental (since 1.120)
|
|
151845
152306
|
*/
|
|
151846
152307
|
export default class ActionsPlaceholder extends Control {
|
|
151847
152308
|
/**
|
|
@@ -151938,8 +152399,6 @@ declare module "sap/m/upload/ActionsPlaceholder" {
|
|
|
151938
152399
|
}
|
|
151939
152400
|
/**
|
|
151940
152401
|
* Describes the settings that can be provided to the ActionsPlaceholder constructor.
|
|
151941
|
-
*
|
|
151942
|
-
* @experimental (since 1.120)
|
|
151943
152402
|
*/
|
|
151944
152403
|
export interface $ActionsPlaceholderSettings extends $ControlSettings {
|
|
151945
152404
|
/**
|
|
@@ -152621,6 +153080,7 @@ declare module "sap/m/upload/Uploader" {
|
|
|
152621
153080
|
* A basic implementation for uploading and downloading one or multiple files.
|
|
152622
153081
|
*
|
|
152623
153082
|
* @since 1.63
|
|
153083
|
+
* @deprecated (since 1.129) - replaced by {@link sap.m.upload.UploaderTableItem}
|
|
152624
153084
|
*/
|
|
152625
153085
|
export default class Uploader extends UI5Element {
|
|
152626
153086
|
/**
|
|
@@ -153185,6 +153645,8 @@ declare module "sap/m/upload/Uploader" {
|
|
|
153185
153645
|
}
|
|
153186
153646
|
/**
|
|
153187
153647
|
* Describes the settings that can be provided to the Uploader constructor.
|
|
153648
|
+
*
|
|
153649
|
+
* @deprecated (since 1.129) - replaced by {@link sap.m.upload.UploaderTableItem}
|
|
153188
153650
|
*/
|
|
153189
153651
|
export interface $UploaderSettings extends $ElementSettings {
|
|
153190
153652
|
/**
|
|
@@ -153377,7 +153839,6 @@ declare module "sap/m/upload/UploaderTableItem" {
|
|
|
153377
153839
|
* A basic implementation for uploading and downloading one or multiple files.
|
|
153378
153840
|
*
|
|
153379
153841
|
* @since 1.120
|
|
153380
|
-
* @experimental (since 1.120)
|
|
153381
153842
|
*/
|
|
153382
153843
|
export default class UploaderTableItem extends UI5Element {
|
|
153383
153844
|
/**
|
|
@@ -153828,8 +154289,6 @@ declare module "sap/m/upload/UploaderTableItem" {
|
|
|
153828
154289
|
}
|
|
153829
154290
|
/**
|
|
153830
154291
|
* Describes the settings that can be provided to the UploaderTableItem constructor.
|
|
153831
|
-
*
|
|
153832
|
-
* @experimental (since 1.120)
|
|
153833
154292
|
*/
|
|
153834
154293
|
export interface $UploaderTableItemSettings extends $ElementSettings {
|
|
153835
154294
|
/**
|
|
@@ -153981,7 +154440,6 @@ declare module "sap/m/upload/UploadItem" {
|
|
|
153981
154440
|
* plugin.
|
|
153982
154441
|
*
|
|
153983
154442
|
* @since 1.124
|
|
153984
|
-
* @experimental (since 1.124)
|
|
153985
154443
|
*/
|
|
153986
154444
|
export default class UploadItem extends UI5Element {
|
|
153987
154445
|
/**
|
|
@@ -154378,8 +154836,6 @@ declare module "sap/m/upload/UploadItem" {
|
|
|
154378
154836
|
}
|
|
154379
154837
|
/**
|
|
154380
154838
|
* Describes the settings that can be provided to the UploadItem constructor.
|
|
154381
|
-
*
|
|
154382
|
-
* @experimental (since 1.124)
|
|
154383
154839
|
*/
|
|
154384
154840
|
export interface $UploadItemSettings extends $ElementSettings {
|
|
154385
154841
|
/**
|
|
@@ -154455,7 +154911,6 @@ declare module "sap/m/upload/UploadItemConfiguration" {
|
|
|
154455
154911
|
* plugin.
|
|
154456
154912
|
*
|
|
154457
154913
|
* @since 1.124
|
|
154458
|
-
* @experimental (since 1.124)
|
|
154459
154914
|
*/
|
|
154460
154915
|
export default class UploadItemConfiguration extends UI5Element {
|
|
154461
154916
|
/**
|
|
@@ -154706,8 +155161,6 @@ declare module "sap/m/upload/UploadItemConfiguration" {
|
|
|
154706
155161
|
}
|
|
154707
155162
|
/**
|
|
154708
155163
|
* Describes the settings that can be provided to the UploadItemConfiguration constructor.
|
|
154709
|
-
*
|
|
154710
|
-
* @experimental (since 1.124)
|
|
154711
155164
|
*/
|
|
154712
155165
|
export interface $UploadItemConfigurationSettings extends $ElementSettings {
|
|
154713
155166
|
/**
|
|
@@ -154793,6 +155246,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
154793
155246
|
* and requests, unified behavior of instant and deferred uploads, as well as improved progress indication.
|
|
154794
155247
|
*
|
|
154795
155248
|
* @since 1.63
|
|
155249
|
+
* @deprecated (since 1.129) - replaced by {@link sap.m.plugins.UploadSetwithTable}
|
|
154796
155250
|
*/
|
|
154797
155251
|
export default class UploadSet extends Control {
|
|
154798
155252
|
/**
|
|
@@ -157498,6 +157952,8 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
157498
157952
|
}
|
|
157499
157953
|
/**
|
|
157500
157954
|
* Describes the settings that can be provided to the UploadSet constructor.
|
|
157955
|
+
*
|
|
157956
|
+
* @deprecated (since 1.129) - replaced by {@link sap.m.plugins.UploadSetwithTable}
|
|
157501
157957
|
*/
|
|
157502
157958
|
export interface $UploadSetSettings extends $ControlSettings {
|
|
157503
157959
|
/**
|
|
@@ -158012,6 +158468,12 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
158012
158468
|
* The file that fails to meet the file size restriction specified in the `maxFileSize` property.
|
|
158013
158469
|
*/
|
|
158014
158470
|
item?: UploadSetItem;
|
|
158471
|
+
|
|
158472
|
+
/**
|
|
158473
|
+
* The size of a file in MB, that fails to meet the file size restriction specified in the `maxFileSize`
|
|
158474
|
+
* property.
|
|
158475
|
+
*/
|
|
158476
|
+
fileSize?: float;
|
|
158015
158477
|
}
|
|
158016
158478
|
|
|
158017
158479
|
/**
|
|
@@ -158212,6 +158674,7 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
158212
158674
|
* Item that represents one file to be uploaded using the {@link sap.m.upload.UploadSet} control.
|
|
158213
158675
|
*
|
|
158214
158676
|
* @since 1.63
|
|
158677
|
+
* @deprecated (since 1.129) - replaced by {@link sap.m.upload.UploadItem}
|
|
158215
158678
|
*/
|
|
158216
158679
|
export default class UploadSetItem extends UI5Element {
|
|
158217
158680
|
/**
|
|
@@ -159210,6 +159673,8 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
159210
159673
|
}
|
|
159211
159674
|
/**
|
|
159212
159675
|
* Describes the settings that can be provided to the UploadSetItem constructor.
|
|
159676
|
+
*
|
|
159677
|
+
* @deprecated (since 1.129) - replaced by {@link sap.m.upload.UploadItem}
|
|
159213
159678
|
*/
|
|
159214
159679
|
export interface $UploadSetItemSettings extends $ElementSettings {
|
|
159215
159680
|
/**
|
|
@@ -159379,6 +159844,7 @@ declare module "sap/m/upload/UploadSetToolbarPlaceholder" {
|
|
|
159379
159844
|
* and it is placed by the application.
|
|
159380
159845
|
*
|
|
159381
159846
|
* @since 1.103.0
|
|
159847
|
+
* @deprecated (since 1.129) - replaced by {@link sap.m.upload.ActionsPlaceholder}
|
|
159382
159848
|
*/
|
|
159383
159849
|
export default class UploadSetToolbarPlaceholder extends Control {
|
|
159384
159850
|
/**
|
|
@@ -159452,6 +159918,8 @@ declare module "sap/m/upload/UploadSetToolbarPlaceholder" {
|
|
|
159452
159918
|
}
|
|
159453
159919
|
/**
|
|
159454
159920
|
* Describes the settings that can be provided to the UploadSetToolbarPlaceholder constructor.
|
|
159921
|
+
*
|
|
159922
|
+
* @deprecated (since 1.129) - replaced by {@link sap.m.upload.ActionsPlaceholder}
|
|
159455
159923
|
*/
|
|
159456
159924
|
export interface $UploadSetToolbarPlaceholderSettings
|
|
159457
159925
|
extends $ControlSettings {}
|
|
@@ -171405,6 +171873,8 @@ declare namespace sap {
|
|
|
171405
171873
|
|
|
171406
171874
|
"sap/m/p13n/GroupPanel": undefined;
|
|
171407
171875
|
|
|
171876
|
+
"sap/m/p13n/MessageStrip": undefined;
|
|
171877
|
+
|
|
171408
171878
|
"sap/m/p13n/MetadataHelper": undefined;
|
|
171409
171879
|
|
|
171410
171880
|
"sap/m/p13n/modules/AdaptationProvider": undefined;
|