@openui5/types 1.133.1 → 1.135.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 +54 -16
- package/types/sap.m.d.ts +890 -159
- package/types/sap.tnt.d.ts +318 -22
- package/types/sap.ui.codeeditor.d.ts +9 -7
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +46891 -46482
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +14 -6
- package/types/sap.ui.integration.d.ts +2 -6
- package/types/sap.ui.layout.d.ts +17 -14
- package/types/sap.ui.mdc.d.ts +252 -17
- package/types/sap.ui.rta.d.ts +102 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +30 -16
- package/types/sap.ui.table.d.ts +10 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +54 -29
- 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 +16 -1
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -1647,6 +1647,17 @@ declare module "sap/m/library" {
|
|
|
1647
1647
|
__implements__sap_m_ITableItem: boolean;
|
|
1648
1648
|
}
|
|
1649
1649
|
|
|
1650
|
+
/**
|
|
1651
|
+
* Interface for controls placed in the `content` aggregation of `{@link sap.m.Toolbar}` or `{@link sap.m.OverflowToolbar}`,
|
|
1652
|
+
* which need to indicate whether they are interactive or not.
|
|
1653
|
+
*
|
|
1654
|
+
* Controls that implement this interface should have the following method: `_getToolbarInteractive` - returns
|
|
1655
|
+
* boolean value that shows whether the control is interactive or not
|
|
1656
|
+
*/
|
|
1657
|
+
export interface IToolbarInteractiveControl {
|
|
1658
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1650
1661
|
/**
|
|
1651
1662
|
* Available label display modes.
|
|
1652
1663
|
*
|
|
@@ -3896,6 +3907,8 @@ declare module "sap/m/library" {
|
|
|
3896
3907
|
* In case the less parameter color cannot be determined, the validation fails. You need to check if less
|
|
3897
3908
|
* parameters are supported on control level. An empty string is also allowed and has the same effect as
|
|
3898
3909
|
* setting no color.
|
|
3910
|
+
*
|
|
3911
|
+
* @deprecated As of version 1.135. the concept has been discarded.
|
|
3899
3912
|
*/
|
|
3900
3913
|
export type ValueCSSColor = string;
|
|
3901
3914
|
|
|
@@ -9106,6 +9119,7 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
9106
9119
|
import {
|
|
9107
9120
|
IBreadcrumbs,
|
|
9108
9121
|
IOverflowToolbarContent,
|
|
9122
|
+
IToolbarInteractiveControl,
|
|
9109
9123
|
BreadcrumbsSeparatorStyle,
|
|
9110
9124
|
} from "sap/m/library";
|
|
9111
9125
|
|
|
@@ -9133,7 +9147,7 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
9133
9147
|
IBreadcrumbs,
|
|
9134
9148
|
IOverflowToolbarContent,
|
|
9135
9149
|
IShrinkable,
|
|
9136
|
-
|
|
9150
|
+
IToolbarInteractiveControl
|
|
9137
9151
|
{
|
|
9138
9152
|
__implements__sap_m_IBreadcrumbs: boolean;
|
|
9139
9153
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -10566,9 +10580,14 @@ declare module "sap/m/Button" {
|
|
|
10566
10580
|
CSSSize,
|
|
10567
10581
|
} from "sap/ui/core/library";
|
|
10568
10582
|
|
|
10569
|
-
import
|
|
10583
|
+
import {
|
|
10584
|
+
IToolbarInteractiveControl,
|
|
10585
|
+
ButtonAccessibleRole,
|
|
10586
|
+
BadgeStyle,
|
|
10587
|
+
ButtonType,
|
|
10588
|
+
} from "sap/m/library";
|
|
10570
10589
|
|
|
10571
|
-
import
|
|
10590
|
+
import Event from "sap/ui/base/Event";
|
|
10572
10591
|
|
|
10573
10592
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
10574
10593
|
|
|
@@ -10596,10 +10615,7 @@ declare module "sap/m/Button" {
|
|
|
10596
10615
|
*/
|
|
10597
10616
|
export default class Button
|
|
10598
10617
|
extends Control
|
|
10599
|
-
implements
|
|
10600
|
-
IFormContent,
|
|
10601
|
-
IAccessKeySupport,
|
|
10602
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
10618
|
+
implements IFormContent, IAccessKeySupport, IToolbarInteractiveControl
|
|
10603
10619
|
{
|
|
10604
10620
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
10605
10621
|
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
@@ -12905,6 +12921,8 @@ declare module "sap/m/CheckBox" {
|
|
|
12905
12921
|
CSSSize,
|
|
12906
12922
|
} from "sap/ui/core/library";
|
|
12907
12923
|
|
|
12924
|
+
import { IToolbarInteractiveControl } from "sap/m/library";
|
|
12925
|
+
|
|
12908
12926
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
12909
12927
|
|
|
12910
12928
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
@@ -12951,7 +12969,7 @@ declare module "sap/m/CheckBox" {
|
|
|
12951
12969
|
IFormContent,
|
|
12952
12970
|
ISemanticFormContent,
|
|
12953
12971
|
IAccessKeySupport,
|
|
12954
|
-
|
|
12972
|
+
IToolbarInteractiveControl
|
|
12955
12973
|
{
|
|
12956
12974
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
12957
12975
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
@@ -14201,7 +14219,7 @@ declare module "sap/m/ColorPalette" {
|
|
|
14201
14219
|
/**
|
|
14202
14220
|
* the selected color
|
|
14203
14221
|
*/
|
|
14204
|
-
|
|
14222
|
+
sColor: CSSColor
|
|
14205
14223
|
): this;
|
|
14206
14224
|
/**
|
|
14207
14225
|
* Sets a new value for property {@link #getColors colors}.
|
|
@@ -16233,6 +16251,8 @@ declare module "sap/m/ComboBox" {
|
|
|
16233
16251
|
$ComboBoxBaseSettings,
|
|
16234
16252
|
} from "sap/m/ComboBoxBase";
|
|
16235
16253
|
|
|
16254
|
+
import { IToolbarInteractiveControl } from "sap/m/library";
|
|
16255
|
+
|
|
16236
16256
|
import List from "sap/m/List";
|
|
16237
16257
|
|
|
16238
16258
|
import Popover from "sap/m/Popover";
|
|
@@ -16305,7 +16325,7 @@ declare module "sap/m/ComboBox" {
|
|
|
16305
16325
|
*/
|
|
16306
16326
|
export default class ComboBox
|
|
16307
16327
|
extends ComboBoxBase
|
|
16308
|
-
implements
|
|
16328
|
+
implements IToolbarInteractiveControl
|
|
16309
16329
|
{
|
|
16310
16330
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
16311
16331
|
/**
|
|
@@ -17481,7 +17501,7 @@ declare module "sap/m/ComboBoxBase" {
|
|
|
17481
17501
|
/**
|
|
17482
17502
|
* A callback function called when typing in a ComboBoxBase control or ancestor.
|
|
17483
17503
|
*/
|
|
17484
|
-
fnFilter?: (p1
|
|
17504
|
+
fnFilter?: (p1?: string, p2?: Item) => boolean
|
|
17485
17505
|
): this;
|
|
17486
17506
|
/**
|
|
17487
17507
|
* Sets the property `_sPickerType`.
|
|
@@ -19163,7 +19183,7 @@ declare module "sap/m/DatePicker" {
|
|
|
19163
19183
|
*
|
|
19164
19184
|
* @returns the value of property `dateValue`
|
|
19165
19185
|
*/
|
|
19166
|
-
getDateValue(): Date | UI5Date;
|
|
19186
|
+
getDateValue(): Date | UI5Date | null;
|
|
19167
19187
|
/**
|
|
19168
19188
|
* The date is displayed in the input field using this format. By default, the medium format of the used
|
|
19169
19189
|
* locale is used.
|
|
@@ -20052,7 +20072,7 @@ declare module "sap/m/DateRangeSelection" {
|
|
|
20052
20072
|
*
|
|
20053
20073
|
* @returns the value of property `dateValue`
|
|
20054
20074
|
*/
|
|
20055
|
-
getDateValue(): Date | UI5Date;
|
|
20075
|
+
getDateValue(): Date | UI5Date | null;
|
|
20056
20076
|
/**
|
|
20057
20077
|
* Gets current value of property {@link #getDelimiter delimiter}.
|
|
20058
20078
|
*
|
|
@@ -20072,7 +20092,7 @@ declare module "sap/m/DateRangeSelection" {
|
|
|
20072
20092
|
*
|
|
20073
20093
|
* @returns the start date of the date range
|
|
20074
20094
|
*/
|
|
20075
|
-
getFrom(): Date;
|
|
20095
|
+
getFrom(): Date | UI5Date | null;
|
|
20076
20096
|
/**
|
|
20077
20097
|
* Getter for property `secondDateValue`.
|
|
20078
20098
|
*
|
|
@@ -20083,7 +20103,7 @@ declare module "sap/m/DateRangeSelection" {
|
|
|
20083
20103
|
*
|
|
20084
20104
|
* @returns the value of property `secondDateValue`
|
|
20085
20105
|
*/
|
|
20086
|
-
getSecondDateValue(): Date | UI5Date;
|
|
20106
|
+
getSecondDateValue(): Date | UI5Date | null;
|
|
20087
20107
|
/**
|
|
20088
20108
|
* Get the end date of the range.
|
|
20089
20109
|
*
|
|
@@ -20091,7 +20111,7 @@ declare module "sap/m/DateRangeSelection" {
|
|
|
20091
20111
|
*
|
|
20092
20112
|
* @returns the end date of the date range
|
|
20093
20113
|
*/
|
|
20094
|
-
getTo(): Date | UI5Date;
|
|
20114
|
+
getTo(): Date | UI5Date | null;
|
|
20095
20115
|
/**
|
|
20096
20116
|
* Getter for property `value`.
|
|
20097
20117
|
*
|
|
@@ -20128,7 +20148,7 @@ declare module "sap/m/DateRangeSelection" {
|
|
|
20128
20148
|
/**
|
|
20129
20149
|
* New value for property `dateValue`
|
|
20130
20150
|
*/
|
|
20131
|
-
oDateValue: Date | UI5Date
|
|
20151
|
+
oDateValue: Date | UI5Date | null
|
|
20132
20152
|
): this;
|
|
20133
20153
|
/**
|
|
20134
20154
|
* Sets a new value for property {@link #getDelimiter delimiter}.
|
|
@@ -20172,7 +20192,7 @@ declare module "sap/m/DateRangeSelection" {
|
|
|
20172
20192
|
/**
|
|
20173
20193
|
* A date instance
|
|
20174
20194
|
*/
|
|
20175
|
-
oFrom: Date | UI5Date
|
|
20195
|
+
oFrom: Date | UI5Date | null
|
|
20176
20196
|
): this;
|
|
20177
20197
|
/**
|
|
20178
20198
|
* Set maximum date that can be shown and selected in the `DatePicker`. This must be a UI5Date or JavaScript
|
|
@@ -20214,7 +20234,7 @@ declare module "sap/m/DateRangeSelection" {
|
|
|
20214
20234
|
/**
|
|
20215
20235
|
* New value for property `dateValue`
|
|
20216
20236
|
*/
|
|
20217
|
-
oSecondDateValue: Date | UI5Date
|
|
20237
|
+
oSecondDateValue: Date | UI5Date | null
|
|
20218
20238
|
): this;
|
|
20219
20239
|
/**
|
|
20220
20240
|
* Set the end date of the range.
|
|
@@ -20227,7 +20247,7 @@ declare module "sap/m/DateRangeSelection" {
|
|
|
20227
20247
|
/**
|
|
20228
20248
|
* A date instance
|
|
20229
20249
|
*/
|
|
20230
|
-
oTo: Date | UI5Date
|
|
20250
|
+
oTo: Date | UI5Date | null
|
|
20231
20251
|
): this;
|
|
20232
20252
|
/**
|
|
20233
20253
|
* Setter for property `value`.
|
|
@@ -20322,10 +20342,10 @@ declare module "sap/m/DateRangeSelection" {
|
|
|
20322
20342
|
declare module "sap/m/DateTimeField" {
|
|
20323
20343
|
import { default as InputBase, $InputBaseSettings } from "sap/m/InputBase";
|
|
20324
20344
|
|
|
20325
|
-
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
20326
|
-
|
|
20327
20345
|
import UI5Date from "sap/ui/core/date/UI5Date";
|
|
20328
20346
|
|
|
20347
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
20348
|
+
|
|
20329
20349
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
20330
20350
|
|
|
20331
20351
|
import Event from "sap/ui/base/Event";
|
|
@@ -20489,18 +20509,16 @@ declare module "sap/m/DateTimeField" {
|
|
|
20489
20509
|
mParameters?: DateTimeField$LiveChangeEventParameters
|
|
20490
20510
|
): this;
|
|
20491
20511
|
/**
|
|
20492
|
-
*
|
|
20512
|
+
* Getter for property `dateValue`.
|
|
20493
20513
|
*
|
|
20494
|
-
*
|
|
20495
|
-
* to it. Alternatively, if the `value` and `valueFormat` pair properties are supplied instead, the `dateValue`
|
|
20496
|
-
* will be instantiated according to the parsed `value`. Use `dateValue` as a helper property to easily
|
|
20497
|
-
* obtain the day, month, year, hours, minutes and seconds of the chosen date and time. Although possible
|
|
20498
|
-
* to bind it, the recommendation is not to do it. When binding is needed, use `value` property instead.
|
|
20514
|
+
* The date and time in DateTimeField as UI5Date or JavaScript Date object.
|
|
20499
20515
|
*
|
|
20516
|
+
* **Note:** If this property is used, the `value` property should not be changed from the caller.
|
|
20500
20517
|
*
|
|
20501
|
-
*
|
|
20518
|
+
*
|
|
20519
|
+
* @returns the value of property `dateValue`
|
|
20502
20520
|
*/
|
|
20503
|
-
getDateValue():
|
|
20521
|
+
getDateValue(): Date | UI5Date | null;
|
|
20504
20522
|
/**
|
|
20505
20523
|
* Gets current value of property {@link #getDisplayFormat displayFormat}.
|
|
20506
20524
|
*
|
|
@@ -20565,7 +20583,7 @@ declare module "sap/m/DateTimeField" {
|
|
|
20565
20583
|
/**
|
|
20566
20584
|
* A date instance
|
|
20567
20585
|
*/
|
|
20568
|
-
oDate: Date | UI5Date
|
|
20586
|
+
oDate: Date | UI5Date | null
|
|
20569
20587
|
): this;
|
|
20570
20588
|
/**
|
|
20571
20589
|
* Sets a new value for property {@link #getDisplayFormat displayFormat}.
|
|
@@ -20699,6 +20717,8 @@ declare module "sap/m/DateTimeField" {
|
|
|
20699
20717
|
declare module "sap/m/DateTimeInput" {
|
|
20700
20718
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
20701
20719
|
|
|
20720
|
+
import { IToolbarInteractiveControl, DateTimeInputType } from "sap/m/library";
|
|
20721
|
+
|
|
20702
20722
|
import {
|
|
20703
20723
|
ID,
|
|
20704
20724
|
AccessibilityInfo,
|
|
@@ -20712,8 +20732,6 @@ declare module "sap/m/DateTimeInput" {
|
|
|
20712
20732
|
|
|
20713
20733
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
20714
20734
|
|
|
20715
|
-
import { DateTimeInputType } from "sap/m/library";
|
|
20716
|
-
|
|
20717
20735
|
import Event from "sap/ui/base/Event";
|
|
20718
20736
|
|
|
20719
20737
|
/**
|
|
@@ -20728,7 +20746,7 @@ declare module "sap/m/DateTimeInput" {
|
|
|
20728
20746
|
*/
|
|
20729
20747
|
export default class DateTimeInput
|
|
20730
20748
|
extends Control
|
|
20731
|
-
implements
|
|
20749
|
+
implements IToolbarInteractiveControl
|
|
20732
20750
|
{
|
|
20733
20751
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
20734
20752
|
/**
|
|
@@ -22686,21 +22704,16 @@ declare module "sap/m/Dialog" {
|
|
|
22686
22704
|
/**
|
|
22687
22705
|
* Gets current value of property {@link #getEscapeHandler escapeHandler}.
|
|
22688
22706
|
*
|
|
22689
|
-
* This property
|
|
22690
|
-
*
|
|
22691
|
-
*
|
|
22692
|
-
* dialog
|
|
22707
|
+
* This property allows to define custom behavior if the Escape key is pressed. By default, the Dialog is
|
|
22708
|
+
* closed.
|
|
22709
|
+
* The property expects a function with one object parameter with `resolve` and `reject` properties. In
|
|
22710
|
+
* the function, either call `resolve` to close the dialog or call `reject` to prevent it from being closed.
|
|
22693
22711
|
*
|
|
22712
|
+
* @since 1.44
|
|
22694
22713
|
*
|
|
22695
22714
|
* @returns Value of property `escapeHandler`
|
|
22696
22715
|
*/
|
|
22697
|
-
getEscapeHandler():
|
|
22698
|
-
| ((p1: {
|
|
22699
|
-
resolve: Function;
|
|
22700
|
-
|
|
22701
|
-
reject: Function;
|
|
22702
|
-
}) => void)
|
|
22703
|
-
| null;
|
|
22716
|
+
getEscapeHandler(): EscapeHandler;
|
|
22704
22717
|
/**
|
|
22705
22718
|
* Gets content of aggregation {@link #getFooter footer}.
|
|
22706
22719
|
*
|
|
@@ -23176,15 +23189,16 @@ declare module "sap/m/Dialog" {
|
|
|
23176
23189
|
oEndButton: Button
|
|
23177
23190
|
): this;
|
|
23178
23191
|
/**
|
|
23179
|
-
* Sets a new value for property {@link #
|
|
23192
|
+
* Sets a new value for property {@link #getEscapeHandler escapeHandler}.
|
|
23180
23193
|
*
|
|
23181
|
-
* This property
|
|
23182
|
-
*
|
|
23183
|
-
*
|
|
23184
|
-
* dialog
|
|
23194
|
+
* This property allows to define custom behavior if the Escape key is pressed. By default, the Dialog is
|
|
23195
|
+
* closed.
|
|
23196
|
+
* The property expects a function with one object parameter with `resolve` and `reject` properties. In
|
|
23197
|
+
* the function, either call `resolve` to close the dialog or call `reject` to prevent it from being closed.
|
|
23185
23198
|
*
|
|
23186
23199
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23187
23200
|
*
|
|
23201
|
+
* @since 1.44
|
|
23188
23202
|
*
|
|
23189
23203
|
* @returns Reference to `this` in order to allow method chaining
|
|
23190
23204
|
*/
|
|
@@ -23192,11 +23206,7 @@ declare module "sap/m/Dialog" {
|
|
|
23192
23206
|
/**
|
|
23193
23207
|
* New value for property `escapeHandler`
|
|
23194
23208
|
*/
|
|
23195
|
-
|
|
23196
|
-
resolve: Function;
|
|
23197
|
-
|
|
23198
|
-
reject: Function;
|
|
23199
|
-
}) => void
|
|
23209
|
+
sEscapeHandler?: EscapeHandler
|
|
23200
23210
|
): this;
|
|
23201
23211
|
/**
|
|
23202
23212
|
* Sets the aggregated {@link #getFooter footer}.
|
|
@@ -23495,6 +23505,11 @@ declare module "sap/m/Dialog" {
|
|
|
23495
23505
|
bVerticalScrolling?: boolean
|
|
23496
23506
|
): this;
|
|
23497
23507
|
}
|
|
23508
|
+
/**
|
|
23509
|
+
* Escape handler for sap.m.Dialog control.
|
|
23510
|
+
*/
|
|
23511
|
+
export type EscapeHandler = (oHandlers: object) => void;
|
|
23512
|
+
|
|
23498
23513
|
/**
|
|
23499
23514
|
* Describes the settings that can be provided to the Dialog constructor.
|
|
23500
23515
|
*/
|
|
@@ -23621,14 +23636,14 @@ declare module "sap/m/Dialog" {
|
|
|
23621
23636
|
draggable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
23622
23637
|
|
|
23623
23638
|
/**
|
|
23624
|
-
* This property
|
|
23625
|
-
*
|
|
23626
|
-
* The
|
|
23627
|
-
*
|
|
23639
|
+
* This property allows to define custom behavior if the Escape key is pressed. By default, the Dialog is
|
|
23640
|
+
* closed.
|
|
23641
|
+
* The property expects a function with one object parameter with `resolve` and `reject` properties. In
|
|
23642
|
+
* the function, either call `resolve` to close the dialog or call `reject` to prevent it from being closed.
|
|
23628
23643
|
*
|
|
23629
23644
|
* @since 1.44
|
|
23630
23645
|
*/
|
|
23631
|
-
escapeHandler?:
|
|
23646
|
+
escapeHandler?: EscapeHandler | PropertyBindingInfo | `{${string}}`;
|
|
23632
23647
|
|
|
23633
23648
|
/**
|
|
23634
23649
|
* Indicates whether the Dialog will be closed automatically when a routing navigation occurs.
|
|
@@ -31080,7 +31095,11 @@ declare module "sap/m/FeedListItemAction" {
|
|
|
31080
31095
|
declare module "sap/m/FlexBox" {
|
|
31081
31096
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
31082
31097
|
|
|
31083
|
-
import {
|
|
31098
|
+
import {
|
|
31099
|
+
AccessibilityInfo,
|
|
31100
|
+
CSSSize,
|
|
31101
|
+
CSSGapShortHand,
|
|
31102
|
+
} from "sap/ui/core/library";
|
|
31084
31103
|
|
|
31085
31104
|
import {
|
|
31086
31105
|
FlexAlignContent,
|
|
@@ -31239,6 +31258,18 @@ declare module "sap/m/FlexBox" {
|
|
|
31239
31258
|
* @returns Value of property `backgroundDesign`
|
|
31240
31259
|
*/
|
|
31241
31260
|
getBackgroundDesign(): BackgroundDesign;
|
|
31261
|
+
/**
|
|
31262
|
+
* Gets current value of property {@link #getColumnGap columnGap}.
|
|
31263
|
+
*
|
|
31264
|
+
* The size of the gap between columns.
|
|
31265
|
+
*
|
|
31266
|
+
* Default value is `empty string`.
|
|
31267
|
+
*
|
|
31268
|
+
* @since 1.134
|
|
31269
|
+
*
|
|
31270
|
+
* @returns Value of property `columnGap`
|
|
31271
|
+
*/
|
|
31272
|
+
getColumnGap(): CSSSize;
|
|
31242
31273
|
/**
|
|
31243
31274
|
* Gets current value of property {@link #getDirection direction}.
|
|
31244
31275
|
*
|
|
@@ -31274,6 +31305,20 @@ declare module "sap/m/FlexBox" {
|
|
|
31274
31305
|
* @returns Value of property `fitContainer`
|
|
31275
31306
|
*/
|
|
31276
31307
|
getFitContainer(): boolean;
|
|
31308
|
+
/**
|
|
31309
|
+
* Gets current value of property {@link #getGap gap}.
|
|
31310
|
+
*
|
|
31311
|
+
* The size of the gap between columns and rows. It serves as a shorthand property for `rowGap` and `columnGap`
|
|
31312
|
+
* properties. If either of the properties is set, the `gap` value will have lower priority and will be
|
|
31313
|
+
* overwritten.
|
|
31314
|
+
*
|
|
31315
|
+
* Default value is `empty string`.
|
|
31316
|
+
*
|
|
31317
|
+
* @since 1.134
|
|
31318
|
+
*
|
|
31319
|
+
* @returns Value of property `gap`
|
|
31320
|
+
*/
|
|
31321
|
+
getGap(): CSSGapShortHand;
|
|
31277
31322
|
/**
|
|
31278
31323
|
* Gets current value of property {@link #getHeight height}.
|
|
31279
31324
|
*
|
|
@@ -31317,6 +31362,18 @@ declare module "sap/m/FlexBox" {
|
|
|
31317
31362
|
* @returns Value of property `renderType`
|
|
31318
31363
|
*/
|
|
31319
31364
|
getRenderType(): FlexRendertype;
|
|
31365
|
+
/**
|
|
31366
|
+
* Gets current value of property {@link #getRowGap rowGap}.
|
|
31367
|
+
*
|
|
31368
|
+
* The size of the gap between rows.
|
|
31369
|
+
*
|
|
31370
|
+
* Default value is `empty string`.
|
|
31371
|
+
*
|
|
31372
|
+
* @since 1.134
|
|
31373
|
+
*
|
|
31374
|
+
* @returns Value of property `rowGap`
|
|
31375
|
+
*/
|
|
31376
|
+
getRowGap(): CSSSize;
|
|
31320
31377
|
/**
|
|
31321
31378
|
* Gets current value of property {@link #getWidth width}.
|
|
31322
31379
|
*
|
|
@@ -31451,6 +31508,25 @@ declare module "sap/m/FlexBox" {
|
|
|
31451
31508
|
*/
|
|
31452
31509
|
sBackgroundDesign?: BackgroundDesign | keyof typeof BackgroundDesign
|
|
31453
31510
|
): this;
|
|
31511
|
+
/**
|
|
31512
|
+
* Sets a new value for property {@link #getColumnGap columnGap}.
|
|
31513
|
+
*
|
|
31514
|
+
* The size of the gap between columns.
|
|
31515
|
+
*
|
|
31516
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31517
|
+
*
|
|
31518
|
+
* Default value is `empty string`.
|
|
31519
|
+
*
|
|
31520
|
+
* @since 1.134
|
|
31521
|
+
*
|
|
31522
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
31523
|
+
*/
|
|
31524
|
+
setColumnGap(
|
|
31525
|
+
/**
|
|
31526
|
+
* New value for property `columnGap`
|
|
31527
|
+
*/
|
|
31528
|
+
sColumnGap?: CSSSize
|
|
31529
|
+
): this;
|
|
31454
31530
|
/**
|
|
31455
31531
|
* Sets a new value for property {@link #getDirection direction}.
|
|
31456
31532
|
*
|
|
@@ -31507,6 +31583,27 @@ declare module "sap/m/FlexBox" {
|
|
|
31507
31583
|
*/
|
|
31508
31584
|
bFitContainer?: boolean
|
|
31509
31585
|
): this;
|
|
31586
|
+
/**
|
|
31587
|
+
* Sets a new value for property {@link #getGap gap}.
|
|
31588
|
+
*
|
|
31589
|
+
* The size of the gap between columns and rows. It serves as a shorthand property for `rowGap` and `columnGap`
|
|
31590
|
+
* properties. If either of the properties is set, the `gap` value will have lower priority and will be
|
|
31591
|
+
* overwritten.
|
|
31592
|
+
*
|
|
31593
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31594
|
+
*
|
|
31595
|
+
* Default value is `empty string`.
|
|
31596
|
+
*
|
|
31597
|
+
* @since 1.134
|
|
31598
|
+
*
|
|
31599
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
31600
|
+
*/
|
|
31601
|
+
setGap(
|
|
31602
|
+
/**
|
|
31603
|
+
* New value for property `gap`
|
|
31604
|
+
*/
|
|
31605
|
+
sGap?: CSSGapShortHand
|
|
31606
|
+
): this;
|
|
31510
31607
|
/**
|
|
31511
31608
|
* Sets a new value for property {@link #getHeight height}.
|
|
31512
31609
|
*
|
|
@@ -31557,6 +31654,25 @@ declare module "sap/m/FlexBox" {
|
|
|
31557
31654
|
*/
|
|
31558
31655
|
sValue: FlexRendertype | keyof typeof FlexRendertype
|
|
31559
31656
|
): this;
|
|
31657
|
+
/**
|
|
31658
|
+
* Sets a new value for property {@link #getRowGap rowGap}.
|
|
31659
|
+
*
|
|
31660
|
+
* The size of the gap between rows.
|
|
31661
|
+
*
|
|
31662
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31663
|
+
*
|
|
31664
|
+
* Default value is `empty string`.
|
|
31665
|
+
*
|
|
31666
|
+
* @since 1.134
|
|
31667
|
+
*
|
|
31668
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
31669
|
+
*/
|
|
31670
|
+
setRowGap(
|
|
31671
|
+
/**
|
|
31672
|
+
* New value for property `rowGap`
|
|
31673
|
+
*/
|
|
31674
|
+
sRowGap?: CSSSize
|
|
31675
|
+
): this;
|
|
31560
31676
|
/**
|
|
31561
31677
|
* Sets a new value for property {@link #getWidth width}.
|
|
31562
31678
|
*
|
|
@@ -31695,6 +31811,29 @@ declare module "sap/m/FlexBox" {
|
|
|
31695
31811
|
| PropertyBindingInfo
|
|
31696
31812
|
| `{${string}}`;
|
|
31697
31813
|
|
|
31814
|
+
/**
|
|
31815
|
+
* The size of the gap between columns and rows. It serves as a shorthand property for `rowGap` and `columnGap`
|
|
31816
|
+
* properties. If either of the properties is set, the `gap` value will have lower priority and will be
|
|
31817
|
+
* overwritten.
|
|
31818
|
+
*
|
|
31819
|
+
* @since 1.134
|
|
31820
|
+
*/
|
|
31821
|
+
gap?: CSSGapShortHand | PropertyBindingInfo | `{${string}}`;
|
|
31822
|
+
|
|
31823
|
+
/**
|
|
31824
|
+
* The size of the gap between rows.
|
|
31825
|
+
*
|
|
31826
|
+
* @since 1.134
|
|
31827
|
+
*/
|
|
31828
|
+
rowGap?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
31829
|
+
|
|
31830
|
+
/**
|
|
31831
|
+
* The size of the gap between columns.
|
|
31832
|
+
*
|
|
31833
|
+
* @since 1.134
|
|
31834
|
+
*/
|
|
31835
|
+
columnGap?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
31836
|
+
|
|
31698
31837
|
/**
|
|
31699
31838
|
* Flex items within the flexible box layout
|
|
31700
31839
|
*/
|
|
@@ -32718,6 +32857,7 @@ declare module "sap/m/GenericTag" {
|
|
|
32718
32857
|
|
|
32719
32858
|
import {
|
|
32720
32859
|
IOverflowToolbarContent,
|
|
32860
|
+
IToolbarInteractiveControl,
|
|
32721
32861
|
GenericTagDesign,
|
|
32722
32862
|
OverflowToolbarConfig,
|
|
32723
32863
|
GenericTagValueState,
|
|
@@ -32746,9 +32886,7 @@ declare module "sap/m/GenericTag" {
|
|
|
32746
32886
|
*/
|
|
32747
32887
|
export default class GenericTag
|
|
32748
32888
|
extends Control
|
|
32749
|
-
implements
|
|
32750
|
-
IOverflowToolbarContent,
|
|
32751
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
32889
|
+
implements IOverflowToolbarContent, IToolbarInteractiveControl
|
|
32752
32890
|
{
|
|
32753
32891
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
32754
32892
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
@@ -33193,7 +33331,11 @@ declare module "sap/m/GenericTile" {
|
|
|
33193
33331
|
*
|
|
33194
33332
|
* @since 1.34.0
|
|
33195
33333
|
*/
|
|
33196
|
-
export default class GenericTile
|
|
33334
|
+
export default class GenericTile
|
|
33335
|
+
extends Control
|
|
33336
|
+
implements /* was: sap.f.IGridContainerItem */ Object
|
|
33337
|
+
{
|
|
33338
|
+
__implements__sap_f_IGridContainerItem: boolean;
|
|
33197
33339
|
/**
|
|
33198
33340
|
* Constructor for a new sap.m.GenericTile control.
|
|
33199
33341
|
*
|
|
@@ -33500,7 +33642,8 @@ declare module "sap/m/GenericTile" {
|
|
|
33500
33642
|
/**
|
|
33501
33643
|
* Gets current value of property {@link #getAriaRole ariaRole}.
|
|
33502
33644
|
*
|
|
33503
|
-
* Additional description for aria-role.
|
|
33645
|
+
* Additional description for aria-role. *Note:** When the control is placed inside a `sap.f.GridContainer`,
|
|
33646
|
+
* its accessibility role is overridden by the accessibility role specified by the `sap.f.GridContainer`.
|
|
33504
33647
|
*
|
|
33505
33648
|
* @since 1.83
|
|
33506
33649
|
*
|
|
@@ -33589,6 +33732,13 @@ declare module "sap/m/GenericTile" {
|
|
|
33589
33732
|
* @returns Value of property `frameType`
|
|
33590
33733
|
*/
|
|
33591
33734
|
getFrameType(): FrameType;
|
|
33735
|
+
/**
|
|
33736
|
+
* Returns the accessibility role for the `sap.f.GridContainer` item.
|
|
33737
|
+
*
|
|
33738
|
+
*
|
|
33739
|
+
* @returns The accessibility role for the `sap.f.GridContainer` item
|
|
33740
|
+
*/
|
|
33741
|
+
getGridItemRole(): string;
|
|
33592
33742
|
/**
|
|
33593
33743
|
* Gets current value of property {@link #getHeader header}.
|
|
33594
33744
|
*
|
|
@@ -34052,7 +34202,8 @@ declare module "sap/m/GenericTile" {
|
|
|
34052
34202
|
/**
|
|
34053
34203
|
* Sets a new value for property {@link #getAriaRole ariaRole}.
|
|
34054
34204
|
*
|
|
34055
|
-
* Additional description for aria-role.
|
|
34205
|
+
* Additional description for aria-role. *Note:** When the control is placed inside a `sap.f.GridContainer`,
|
|
34206
|
+
* its accessibility role is overridden by the accessibility role specified by the `sap.f.GridContainer`.
|
|
34056
34207
|
*
|
|
34057
34208
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
34058
34209
|
*
|
|
@@ -34703,6 +34854,9 @@ declare module "sap/m/GenericTile" {
|
|
|
34703
34854
|
/**
|
|
34704
34855
|
* Additional description for aria-role.
|
|
34705
34856
|
*
|
|
34857
|
+
* **Note:** When the control is placed inside a `sap.f.GridContainer`, its accessibility role is overridden
|
|
34858
|
+
* by the accessibility role specified by the `sap.f.GridContainer`.
|
|
34859
|
+
*
|
|
34706
34860
|
* @since 1.83
|
|
34707
34861
|
*/
|
|
34708
34862
|
ariaRole?: string | PropertyBindingInfo;
|
|
@@ -34914,6 +35068,11 @@ declare module "sap/m/GroupHeaderListItem" {
|
|
|
34914
35068
|
* in `sap.m.List` and `sap.m.Table`. **Note:** The inherited properties `unread`, `selected`, `counter`
|
|
34915
35069
|
* and `press` event from `sap.m.ListItemBase` are not supported.
|
|
34916
35070
|
*
|
|
35071
|
+
* There are the following known restrictions:
|
|
35072
|
+
* - When a list is manually populated with items and groups without using data binding, changes to the
|
|
35073
|
+
* order or group structure will only be correctly applied when all items are removed and reinserted again.
|
|
35074
|
+
*
|
|
35075
|
+
*
|
|
34917
35076
|
* @since 1.12
|
|
34918
35077
|
*/
|
|
34919
35078
|
export default class GroupHeaderListItem
|
|
@@ -39677,9 +39836,7 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
39677
39836
|
/**
|
|
39678
39837
|
* New value for property `illustrationSize`
|
|
39679
39838
|
*/
|
|
39680
|
-
sIllustrationSize?:
|
|
39681
|
-
| IllustratedMessageSize
|
|
39682
|
-
| keyof typeof IllustratedMessageSize
|
|
39839
|
+
sIllustrationSize?: IllustratedMessageSize
|
|
39683
39840
|
): this;
|
|
39684
39841
|
/**
|
|
39685
39842
|
* Sets a new value for property {@link #getIllustrationType illustrationType}.
|
|
@@ -39815,7 +39972,7 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
39815
39972
|
* @since 1.98
|
|
39816
39973
|
*/
|
|
39817
39974
|
illustrationSize?:
|
|
39818
|
-
|
|
|
39975
|
+
| IllustratedMessageSize
|
|
39819
39976
|
| PropertyBindingInfo
|
|
39820
39977
|
| `{${string}}`;
|
|
39821
39978
|
|
|
@@ -39925,20 +40082,52 @@ declare module "sap/m/IllustratedMessageSize" {
|
|
|
39925
40082
|
Base = "Base",
|
|
39926
40083
|
/**
|
|
39927
40084
|
* Dialog `Illustration` size (M breakpoint). Suitable for dialogs.
|
|
40085
|
+
*
|
|
40086
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Medium}
|
|
39928
40087
|
*/
|
|
39929
40088
|
Dialog = "Dialog",
|
|
39930
40089
|
/**
|
|
39931
40090
|
* Dot `Illustration` size (XS breakpoint). Suitable for spaces with little vertical space.
|
|
39932
40091
|
*
|
|
39933
40092
|
* @since 1.108
|
|
40093
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.ExtraSmall}
|
|
39934
40094
|
*/
|
|
39935
40095
|
Dot = "Dot",
|
|
40096
|
+
/**
|
|
40097
|
+
* Extra Small `Illustration` size. Alias for `Dot` size (XS breakpoint). Suitable for spaces with little
|
|
40098
|
+
* vertical space.
|
|
40099
|
+
*
|
|
40100
|
+
* @since 1.136
|
|
40101
|
+
*/
|
|
40102
|
+
ExtraSmall = "Dot",
|
|
40103
|
+
/**
|
|
40104
|
+
* Large `Illustration` size. Alias for `Scene` size (L breakpoint). Suitable for a `Page` or a table.
|
|
40105
|
+
*
|
|
40106
|
+
* @since 1.136
|
|
40107
|
+
*/
|
|
40108
|
+
Large = "Scene",
|
|
40109
|
+
/**
|
|
40110
|
+
* Medium `Illustration` size. Alias for `Dialog` size (M breakpoint). Suitable for dialogs.
|
|
40111
|
+
*
|
|
40112
|
+
* @since 1.136
|
|
40113
|
+
*/
|
|
40114
|
+
Medium = "Dialog",
|
|
39936
40115
|
/**
|
|
39937
40116
|
* Scene `Illustration` size (L breakpoint). Suitable for a `Page` or a table.
|
|
40117
|
+
*
|
|
40118
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Large}
|
|
39938
40119
|
*/
|
|
39939
40120
|
Scene = "Scene",
|
|
40121
|
+
/**
|
|
40122
|
+
* Small `Illustration` size. Alias for `Spot` size (S breakpoint). Suitable for cards (four columns).
|
|
40123
|
+
*
|
|
40124
|
+
* @since 1.136
|
|
40125
|
+
*/
|
|
40126
|
+
Small = "Spot",
|
|
39940
40127
|
/**
|
|
39941
40128
|
* Spot `Illustration` size (S breakpoint). Suitable for cards (four columns).
|
|
40129
|
+
*
|
|
40130
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Small}
|
|
39942
40131
|
*/
|
|
39943
40132
|
Spot = "Spot",
|
|
39944
40133
|
}
|
|
@@ -39952,18 +40141,34 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
39952
40141
|
* @since 1.98
|
|
39953
40142
|
*/
|
|
39954
40143
|
enum IllustratedMessageType {
|
|
40144
|
+
/**
|
|
40145
|
+
* "Achievement" illustration type.
|
|
40146
|
+
*/
|
|
40147
|
+
Achievement = "sapIllus-Achievement",
|
|
39955
40148
|
/**
|
|
39956
40149
|
* "Add Column" illustration type.
|
|
40150
|
+
*
|
|
40151
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddingColumns}
|
|
39957
40152
|
*/
|
|
39958
40153
|
AddColumn = "sapIllus-AddColumn",
|
|
39959
40154
|
/**
|
|
39960
40155
|
* "Add Dimensions" illustration type.
|
|
39961
40156
|
*/
|
|
39962
40157
|
AddDimensions = "sapIllus-AddDimensions",
|
|
40158
|
+
/**
|
|
40159
|
+
* "Adding Columns" illustration type.
|
|
40160
|
+
*/
|
|
40161
|
+
AddingColumns = "sapIllus-AddingColumns",
|
|
39963
40162
|
/**
|
|
39964
40163
|
* "Add People" illustration type.
|
|
40164
|
+
*
|
|
40165
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddPeopleToCalendar}
|
|
39965
40166
|
*/
|
|
39966
40167
|
AddPeople = "sapIllus-AddPeople",
|
|
40168
|
+
/**
|
|
40169
|
+
* "Add People To Calendar" illustration type.
|
|
40170
|
+
*/
|
|
40171
|
+
AddPeopleToCalendar = "sapIllus-AddPeopleToCalendar",
|
|
39967
40172
|
/**
|
|
39968
40173
|
* "Balloon Sky" illustration type.
|
|
39969
40174
|
*/
|
|
@@ -39976,12 +40181,20 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
39976
40181
|
* "Connection" illustration type.
|
|
39977
40182
|
*/
|
|
39978
40183
|
Connection = "sapIllus-Connection",
|
|
40184
|
+
/**
|
|
40185
|
+
* "Drag Files To Upload" illustration type.
|
|
40186
|
+
*/
|
|
40187
|
+
DragFilesToUpload = "sapIllus-DragFilesToUpload",
|
|
39979
40188
|
/**
|
|
39980
40189
|
* "Empty Calendar" illustration type.
|
|
40190
|
+
*
|
|
40191
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
|
|
39981
40192
|
*/
|
|
39982
40193
|
EmptyCalendar = "sapIllus-EmptyCalendar",
|
|
39983
40194
|
/**
|
|
39984
40195
|
* "Empty List" illustration type.
|
|
40196
|
+
*
|
|
40197
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
|
|
39985
40198
|
*/
|
|
39986
40199
|
EmptyList = "sapIllus-EmptyList",
|
|
39987
40200
|
/**
|
|
@@ -39990,16 +40203,34 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
39990
40203
|
EmptyPlanningCalendar = "sapIllus-EmptyPlanningCalendar",
|
|
39991
40204
|
/**
|
|
39992
40205
|
* "Error Screen" illustration type.
|
|
40206
|
+
*
|
|
40207
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
|
|
39993
40208
|
*/
|
|
39994
40209
|
ErrorScreen = "sapIllus-ErrorScreen",
|
|
40210
|
+
/**
|
|
40211
|
+
* "Filtering Columns" illustration type.
|
|
40212
|
+
*/
|
|
40213
|
+
FilteringColumns = "sapIllus-FilteringColumns",
|
|
39995
40214
|
/**
|
|
39996
40215
|
* "Filter Table" illustration type.
|
|
40216
|
+
*
|
|
40217
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.FilteringColumns}
|
|
39997
40218
|
*/
|
|
39998
40219
|
FilterTable = "sapIllus-FilterTable",
|
|
40220
|
+
/**
|
|
40221
|
+
* "Grouping Columns" illustration type.
|
|
40222
|
+
*/
|
|
40223
|
+
GroupingColumns = "sapIllus-GroupingColumns",
|
|
39999
40224
|
/**
|
|
40000
40225
|
* "Group Table" illustration type.
|
|
40226
|
+
*
|
|
40227
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.GroupingColumns}
|
|
40001
40228
|
*/
|
|
40002
40229
|
GroupTable = "sapIllus-GroupTable",
|
|
40230
|
+
/**
|
|
40231
|
+
* "KeyTask" illustration type.
|
|
40232
|
+
*/
|
|
40233
|
+
KeyTask = "sapIllus-KeyTask",
|
|
40003
40234
|
/**
|
|
40004
40235
|
* "New Mail" illustration type.
|
|
40005
40236
|
*/
|
|
@@ -40008,6 +40239,10 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
40008
40239
|
* "No Activities" illustration type.
|
|
40009
40240
|
*/
|
|
40010
40241
|
NoActivities = "sapIllus-NoActivities",
|
|
40242
|
+
/**
|
|
40243
|
+
* "No Chart Data" illustration type.
|
|
40244
|
+
*/
|
|
40245
|
+
NoChartData = "sapIllus-NoChartData",
|
|
40011
40246
|
/**
|
|
40012
40247
|
* "No Columns Set" illustration type.
|
|
40013
40248
|
*/
|
|
@@ -40018,6 +40253,8 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
40018
40253
|
NoData = "sapIllus-NoData",
|
|
40019
40254
|
/**
|
|
40020
40255
|
* "No Dimensions Set" illustration type.
|
|
40256
|
+
*
|
|
40257
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoChartData}
|
|
40021
40258
|
*/
|
|
40022
40259
|
NoDimensionsSet = "sapIllus-NoDimensionsSet",
|
|
40023
40260
|
/**
|
|
@@ -40034,6 +40271,8 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
40034
40271
|
NoMail = "sapIllus-NoMail",
|
|
40035
40272
|
/**
|
|
40036
40273
|
* "No Email v1" illustration type.
|
|
40274
|
+
*
|
|
40275
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
|
|
40037
40276
|
*/
|
|
40038
40277
|
NoMailV1 = "sapIllus-NoMail_v1",
|
|
40039
40278
|
/**
|
|
@@ -40046,6 +40285,8 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
40046
40285
|
NoSavedItems = "sapIllus-NoSavedItems",
|
|
40047
40286
|
/**
|
|
40048
40287
|
* "No Saved Items v1" illustration type.
|
|
40288
|
+
*
|
|
40289
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
|
|
40049
40290
|
*/
|
|
40050
40291
|
NoSavedItemsV1 = "sapIllus-NoSavedItems_v1",
|
|
40051
40292
|
/**
|
|
@@ -40058,26 +40299,44 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
40058
40299
|
NoTasks = "sapIllus-NoTasks",
|
|
40059
40300
|
/**
|
|
40060
40301
|
* "No Tasks v1" illustration type.
|
|
40302
|
+
*
|
|
40303
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
|
|
40061
40304
|
*/
|
|
40062
40305
|
NoTasksV1 = "sapIllus-NoTasks_v1",
|
|
40063
40306
|
/**
|
|
40064
40307
|
* "Page Not Found" illustration type.
|
|
40065
40308
|
*/
|
|
40066
40309
|
PageNotFound = "sapIllus-PageNotFound",
|
|
40310
|
+
/**
|
|
40311
|
+
* "Receive Appreciation" illustration type.
|
|
40312
|
+
*/
|
|
40313
|
+
ReceiveAppreciation = "sapIllus-ReceiveAppreciation",
|
|
40067
40314
|
/**
|
|
40068
40315
|
* "Reload Screen" illustration type.
|
|
40316
|
+
*
|
|
40317
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
|
|
40069
40318
|
*/
|
|
40070
40319
|
ReloadScreen = "sapIllus-ReloadScreen",
|
|
40071
40320
|
/**
|
|
40072
40321
|
* "Resize Column" illustration type.
|
|
40322
|
+
*
|
|
40323
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ResizingColumns}
|
|
40073
40324
|
*/
|
|
40074
40325
|
ResizeColumn = "sapIllus-ResizeColumn",
|
|
40326
|
+
/**
|
|
40327
|
+
* "Resizing Columns" illustration type.
|
|
40328
|
+
*/
|
|
40329
|
+
ResizingColumns = "sapIllus-ResizingColumns",
|
|
40075
40330
|
/**
|
|
40076
40331
|
* "Search Earth" illustration type.
|
|
40332
|
+
*
|
|
40333
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
|
|
40077
40334
|
*/
|
|
40078
40335
|
SearchEarth = "sapIllus-SearchEarth",
|
|
40079
40336
|
/**
|
|
40080
40337
|
* "Search Folder" illustration type.
|
|
40338
|
+
*
|
|
40339
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
|
|
40081
40340
|
*/
|
|
40082
40341
|
SearchFolder = "sapIllus-SearchFolder",
|
|
40083
40342
|
/**
|
|
@@ -40086,18 +40345,26 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
40086
40345
|
SignOut = "sapIllus-SignOut",
|
|
40087
40346
|
/**
|
|
40088
40347
|
* "Simple Balloon" illustration type.
|
|
40348
|
+
*
|
|
40349
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
|
|
40089
40350
|
*/
|
|
40090
40351
|
SimpleBalloon = "sapIllus-SimpleBalloon",
|
|
40091
40352
|
/**
|
|
40092
40353
|
* "Simple Bell" illustration type.
|
|
40354
|
+
*
|
|
40355
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
|
|
40093
40356
|
*/
|
|
40094
40357
|
SimpleBell = "sapIllus-SimpleBell",
|
|
40095
40358
|
/**
|
|
40096
40359
|
* "Simple Calendar" illustration type.
|
|
40360
|
+
*
|
|
40361
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
|
|
40097
40362
|
*/
|
|
40098
40363
|
SimpleCalendar = "sapIllus-SimpleCalendar",
|
|
40099
40364
|
/**
|
|
40100
40365
|
* "Simple CheckMark" illustration type.
|
|
40366
|
+
*
|
|
40367
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
|
|
40101
40368
|
*/
|
|
40102
40369
|
SimpleCheckMark = "sapIllus-SimpleCheckMark",
|
|
40103
40370
|
/**
|
|
@@ -40106,62 +40373,96 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
40106
40373
|
SimpleConnection = "sapIllus-SimpleConnection",
|
|
40107
40374
|
/**
|
|
40108
40375
|
* "Simple Empty Doc" illustration type.
|
|
40376
|
+
*
|
|
40377
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
|
|
40109
40378
|
*/
|
|
40110
40379
|
SimpleEmptyDoc = "sapIllus-SimpleEmptyDoc",
|
|
40111
40380
|
/**
|
|
40112
40381
|
* "Simple Empty List" illustration type.
|
|
40382
|
+
*
|
|
40383
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
|
|
40113
40384
|
*/
|
|
40114
40385
|
SimpleEmptyList = "sapIllus-SimpleEmptyList",
|
|
40115
40386
|
/**
|
|
40116
40387
|
* "Simple Error" illustration type.
|
|
40388
|
+
*
|
|
40389
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
|
|
40117
40390
|
*/
|
|
40118
40391
|
SimpleError = "sapIllus-SimpleError",
|
|
40119
40392
|
/**
|
|
40120
40393
|
* "Simple Magnifier" illustration type.
|
|
40394
|
+
*
|
|
40395
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
|
|
40121
40396
|
*/
|
|
40122
40397
|
SimpleMagnifier = "sapIllus-SimpleMagnifier",
|
|
40123
40398
|
/**
|
|
40124
40399
|
* "Simple Mail" illustration type.
|
|
40400
|
+
*
|
|
40401
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
|
|
40125
40402
|
*/
|
|
40126
40403
|
SimpleMail = "sapIllus-SimpleMail",
|
|
40127
40404
|
/**
|
|
40128
40405
|
* "Simple No Saved Items" illustration type.
|
|
40406
|
+
*
|
|
40407
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
|
|
40129
40408
|
*/
|
|
40130
40409
|
SimpleNoSavedItems = "sapIllus-SimpleNoSavedItems",
|
|
40131
40410
|
/**
|
|
40132
40411
|
* "Simple Not Found Magnifier" illustration type.
|
|
40412
|
+
*
|
|
40413
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
|
|
40133
40414
|
*/
|
|
40134
40415
|
SimpleNotFoundMagnifier = "sapIllus-SimpleNotFoundMagnifier",
|
|
40135
40416
|
/**
|
|
40136
40417
|
* "Simple Reload" illustration type.
|
|
40418
|
+
*
|
|
40419
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
|
|
40137
40420
|
*/
|
|
40138
40421
|
SimpleReload = "sapIllus-SimpleReload",
|
|
40139
40422
|
/**
|
|
40140
40423
|
* "Simple Task" illustration type.
|
|
40424
|
+
*
|
|
40425
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
|
|
40141
40426
|
*/
|
|
40142
40427
|
SimpleTask = "sapIllus-SimpleTask",
|
|
40143
40428
|
/**
|
|
40144
40429
|
* "Sleeping Bell" illustration type.
|
|
40430
|
+
*
|
|
40431
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
|
|
40145
40432
|
*/
|
|
40146
40433
|
SleepingBell = "sapIllus-SleepingBell",
|
|
40147
40434
|
/**
|
|
40148
40435
|
* "Sort Column" illustration type.
|
|
40436
|
+
*
|
|
40437
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.SortingColumns}
|
|
40149
40438
|
*/
|
|
40150
40439
|
SortColumn = "sapIllus-SortColumn",
|
|
40440
|
+
/**
|
|
40441
|
+
* "Sorting Columns" illustration type.
|
|
40442
|
+
*/
|
|
40443
|
+
SortingColumns = "sapIllus-SortingColumns",
|
|
40151
40444
|
/**
|
|
40152
40445
|
* "Success Balloon" illustration type.
|
|
40446
|
+
*
|
|
40447
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
|
|
40153
40448
|
*/
|
|
40154
40449
|
SuccessBalloon = "sapIllus-SuccessBalloon",
|
|
40155
40450
|
/**
|
|
40156
40451
|
* "Success CheckMark" illustration type.
|
|
40452
|
+
*
|
|
40453
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
|
|
40157
40454
|
*/
|
|
40158
40455
|
SuccessCheckMark = "sapIllus-SuccessCheckMark",
|
|
40159
40456
|
/**
|
|
40160
40457
|
* "Success HighFive" illustration type.
|
|
40458
|
+
*
|
|
40459
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
|
|
40161
40460
|
*/
|
|
40162
40461
|
SuccessHighFive = "sapIllus-SuccessHighFive",
|
|
40163
40462
|
/**
|
|
40164
40463
|
* "Success Screen" illustration type.
|
|
40464
|
+
*
|
|
40465
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
|
|
40165
40466
|
*/
|
|
40166
40467
|
SuccessScreen = "sapIllus-SuccessScreen",
|
|
40167
40468
|
/**
|
|
@@ -40170,6 +40471,8 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
40170
40471
|
Survey = "sapIllus-Survey",
|
|
40171
40472
|
/**
|
|
40172
40473
|
* "Tent" illustration type.
|
|
40474
|
+
*
|
|
40475
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
|
|
40173
40476
|
*/
|
|
40174
40477
|
Tent = "sapIllus-Tent",
|
|
40175
40478
|
/**
|
|
@@ -40186,12 +40489,18 @@ declare module "sap/m/IllustratedMessageType" {
|
|
|
40186
40489
|
UnableToUpload = "sapIllus-UnableToUpload",
|
|
40187
40490
|
/**
|
|
40188
40491
|
* "Upload Collection" illustration type.
|
|
40492
|
+
*
|
|
40493
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.DragFilesToUpload}
|
|
40189
40494
|
*/
|
|
40190
40495
|
UploadCollection = "sapIllus-UploadCollection",
|
|
40191
40496
|
/**
|
|
40192
40497
|
* "Upload To Cloud" illustration type.
|
|
40193
40498
|
*/
|
|
40194
40499
|
UploadToCloud = "sapIllus-UploadToCloud",
|
|
40500
|
+
/**
|
|
40501
|
+
* "User has signed up for an application" illustration type.
|
|
40502
|
+
*/
|
|
40503
|
+
UserHasSignedUp = "sapIllus-UserHasSignedUp",
|
|
40195
40504
|
}
|
|
40196
40505
|
export default IllustratedMessageType;
|
|
40197
40506
|
}
|
|
@@ -40561,7 +40870,11 @@ declare module "sap/m/IllustrationPool" {
|
|
|
40561
40870
|
/**
|
|
40562
40871
|
* whether or not all of the assets for the Illustration Set should be loaded once the metadata is loaded
|
|
40563
40872
|
*/
|
|
40564
|
-
bLoadAllResources: boolean
|
|
40873
|
+
bLoadAllResources: boolean,
|
|
40874
|
+
/**
|
|
40875
|
+
* optional array containing the Illustration Set symbols
|
|
40876
|
+
*/
|
|
40877
|
+
aOptionalSymbols: any[]
|
|
40565
40878
|
): void;
|
|
40566
40879
|
}
|
|
40567
40880
|
const IllustrationPool: IllustrationPool;
|
|
@@ -43735,9 +44048,9 @@ declare module "sap/m/Input" {
|
|
|
43735
44048
|
* filtered. Returning true will add this item to the popup, returning false will not display it.
|
|
43736
44049
|
*/
|
|
43737
44050
|
fnFilter: (
|
|
43738
|
-
p1
|
|
43739
|
-
p2
|
|
43740
|
-
p3
|
|
44051
|
+
p1?: string,
|
|
44052
|
+
p2?: Item,
|
|
44053
|
+
p3?: boolean
|
|
43741
44054
|
) => boolean | undefined | Function
|
|
43742
44055
|
): this;
|
|
43743
44056
|
/**
|
|
@@ -43815,9 +44128,9 @@ declare module "sap/m/Input" {
|
|
|
43815
44128
|
* must return a result string that will be displayed as the input field's value.
|
|
43816
44129
|
*/
|
|
43817
44130
|
fnFilter: (
|
|
43818
|
-
p1
|
|
43819
|
-
p2
|
|
43820
|
-
p3
|
|
44131
|
+
p1?: string,
|
|
44132
|
+
p2?: Item,
|
|
44133
|
+
p3?: boolean
|
|
43821
44134
|
) => boolean | undefined | Function
|
|
43822
44135
|
): this;
|
|
43823
44136
|
/**
|
|
@@ -44690,6 +45003,8 @@ declare module "sap/m/InputBase" {
|
|
|
44690
45003
|
CSSSize,
|
|
44691
45004
|
} from "sap/ui/core/library";
|
|
44692
45005
|
|
|
45006
|
+
import { IToolbarInteractiveControl } from "sap/m/library";
|
|
45007
|
+
|
|
44693
45008
|
import Icon from "sap/ui/core/Icon";
|
|
44694
45009
|
|
|
44695
45010
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
@@ -44713,7 +45028,7 @@ declare module "sap/m/InputBase" {
|
|
|
44713
45028
|
IFormContent,
|
|
44714
45029
|
ISemanticFormContent,
|
|
44715
45030
|
ILabelable,
|
|
44716
|
-
|
|
45031
|
+
IToolbarInteractiveControl
|
|
44717
45032
|
{
|
|
44718
45033
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
44719
45034
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
@@ -45187,6 +45502,22 @@ declare module "sap/m/InputBase" {
|
|
|
45187
45502
|
* @returns Value of property `valueState`
|
|
45188
45503
|
*/
|
|
45189
45504
|
getValueState(): ValueState;
|
|
45505
|
+
/**
|
|
45506
|
+
* Gets the ID of the hidden value state message related to value state links
|
|
45507
|
+
*
|
|
45508
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
45509
|
+
*
|
|
45510
|
+
* @returns The ID of the hidden value state message related to value state links
|
|
45511
|
+
*/
|
|
45512
|
+
getValueStateLinksShortcutsId(): string;
|
|
45513
|
+
/**
|
|
45514
|
+
* Returns the keyboard shortcuts announcement for the value state links
|
|
45515
|
+
*
|
|
45516
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
45517
|
+
*
|
|
45518
|
+
* @returns The text for value state links shortcuts
|
|
45519
|
+
*/
|
|
45520
|
+
getValueStateLinksShortcutsTextAcc(): string;
|
|
45190
45521
|
/**
|
|
45191
45522
|
* Gets current value of property {@link #getValueStateText valueStateText}.
|
|
45192
45523
|
*
|
|
@@ -47015,6 +47346,7 @@ declare module "sap/m/Label" {
|
|
|
47015
47346
|
|
|
47016
47347
|
import {
|
|
47017
47348
|
IOverflowToolbarContent,
|
|
47349
|
+
IToolbarInteractiveControl,
|
|
47018
47350
|
LabelDesign,
|
|
47019
47351
|
OverflowToolbarConfig,
|
|
47020
47352
|
WrappingType,
|
|
@@ -47051,7 +47383,7 @@ declare module "sap/m/Label" {
|
|
|
47051
47383
|
IAccessKeySupport,
|
|
47052
47384
|
ILabelable,
|
|
47053
47385
|
IOverflowToolbarContent,
|
|
47054
|
-
|
|
47386
|
+
IToolbarInteractiveControl
|
|
47055
47387
|
{
|
|
47056
47388
|
__implements__sap_ui_core_Label: boolean;
|
|
47057
47389
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
@@ -48121,6 +48453,7 @@ declare module "sap/m/Link" {
|
|
|
48121
48453
|
} from "sap/ui/core/library";
|
|
48122
48454
|
|
|
48123
48455
|
import {
|
|
48456
|
+
IToolbarInteractiveControl,
|
|
48124
48457
|
LinkAccessibleRole,
|
|
48125
48458
|
EmptyIndicatorMode,
|
|
48126
48459
|
ReactiveAreaMode,
|
|
@@ -48165,7 +48498,7 @@ declare module "sap/m/Link" {
|
|
|
48165
48498
|
ITitleContent,
|
|
48166
48499
|
IAccessKeySupport,
|
|
48167
48500
|
ILabelable,
|
|
48168
|
-
|
|
48501
|
+
IToolbarInteractiveControl
|
|
48169
48502
|
{
|
|
48170
48503
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
48171
48504
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
@@ -54818,12 +55151,16 @@ declare module "sap/m/Menu" {
|
|
|
54818
55151
|
declare module "sap/m/MenuButton" {
|
|
54819
55152
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
54820
55153
|
|
|
55154
|
+
import {
|
|
55155
|
+
IToolbarInteractiveControl,
|
|
55156
|
+
MenuButtonMode,
|
|
55157
|
+
ButtonType,
|
|
55158
|
+
} from "sap/m/library";
|
|
55159
|
+
|
|
54821
55160
|
import { ID, URI, TextDirection, CSSSize } from "sap/ui/core/library";
|
|
54822
55161
|
|
|
54823
55162
|
import Event from "sap/ui/base/Event";
|
|
54824
55163
|
|
|
54825
|
-
import { MenuButtonMode, ButtonType } from "sap/m/library";
|
|
54826
|
-
|
|
54827
55164
|
import Menu from "sap/m/Menu";
|
|
54828
55165
|
|
|
54829
55166
|
import Popup from "sap/ui/core/Popup";
|
|
@@ -54839,7 +55176,7 @@ declare module "sap/m/MenuButton" {
|
|
|
54839
55176
|
*/
|
|
54840
55177
|
export default class MenuButton
|
|
54841
55178
|
extends Control
|
|
54842
|
-
implements
|
|
55179
|
+
implements IToolbarInteractiveControl
|
|
54843
55180
|
{
|
|
54844
55181
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
54845
55182
|
/**
|
|
@@ -62857,8 +63194,8 @@ declare module "sap/m/MultiInput" {
|
|
|
62857
63194
|
* When not to use::
|
|
62858
63195
|
* - When you need to select only one value.
|
|
62859
63196
|
* - When you want the user to select from a predefined set of options. Use {@link sap.m.MultiComboBox }
|
|
62860
|
-
* instead. Responsive Behavior: If there are many tokens, the control shows only the
|
|
62861
|
-
* tokens that fit and for the others a label N-more is provided. In case the length of the
|
|
63197
|
+
* instead. Responsive Behavior: If there are many tokens, the control shows only the first selected
|
|
63198
|
+
* tokens that fit and for the others a label N-more is provided. In case the length of the first
|
|
62862
63199
|
* selected token is exceeding the width of the control, only a label N-Items is shown. In both cases,
|
|
62863
63200
|
* pressing on the label will show the tokens in a popup. On Phones:
|
|
62864
63201
|
* - Only the last entered token is displayed.
|
|
@@ -74138,7 +74475,10 @@ declare module "sap/m/OverflowToolbarButton" {
|
|
|
74138
74475
|
|
|
74139
74476
|
import { IShellBar } from "sap/f/library";
|
|
74140
74477
|
|
|
74141
|
-
import {
|
|
74478
|
+
import {
|
|
74479
|
+
IOverflowToolbarContent,
|
|
74480
|
+
IToolbarInteractiveControl,
|
|
74481
|
+
} from "sap/m/library";
|
|
74142
74482
|
|
|
74143
74483
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
74144
74484
|
|
|
@@ -74153,10 +74493,7 @@ declare module "sap/m/OverflowToolbarButton" {
|
|
|
74153
74493
|
*/
|
|
74154
74494
|
export default class OverflowToolbarButton
|
|
74155
74495
|
extends Button
|
|
74156
|
-
implements
|
|
74157
|
-
IShellBar,
|
|
74158
|
-
IOverflowToolbarContent,
|
|
74159
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
74496
|
+
implements IShellBar, IOverflowToolbarContent, IToolbarInteractiveControl
|
|
74160
74497
|
{
|
|
74161
74498
|
__implements__sap_f_IShellBar: boolean;
|
|
74162
74499
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -75679,6 +76016,15 @@ declare module "sap/m/p13n/MetadataHelper" {
|
|
|
75679
76016
|
*/
|
|
75680
76017
|
sKey: string
|
|
75681
76018
|
): MetadataObject | undefined;
|
|
76019
|
+
/**
|
|
76020
|
+
* Gets a list of properties that are redundant and should be filtered out in the {@link sap.ui.mdc.p13n.SelectionController }
|
|
76021
|
+
* for personalization.
|
|
76022
|
+
*
|
|
76023
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
76024
|
+
*
|
|
76025
|
+
* @returns A list of properties
|
|
76026
|
+
*/
|
|
76027
|
+
getRedundantProperties(): object[];
|
|
75682
76028
|
}
|
|
75683
76029
|
/**
|
|
75684
76030
|
* Personalization `MetadataObject` type.
|
|
@@ -76059,6 +76405,10 @@ declare module "sap/m/p13n/Popup" {
|
|
|
76059
76405
|
* Width configuration for the related popup container
|
|
76060
76406
|
*/
|
|
76061
76407
|
contentWidth?: CSSSize;
|
|
76408
|
+
/**
|
|
76409
|
+
* Key of active panel that is opened initially
|
|
76410
|
+
*/
|
|
76411
|
+
activePanel?: string;
|
|
76062
76412
|
}
|
|
76063
76413
|
): void;
|
|
76064
76414
|
/**
|
|
@@ -89525,27 +89875,17 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
89525
89875
|
| keyof typeof CalendarAppointmentRoundWidth
|
|
89526
89876
|
): this;
|
|
89527
89877
|
/**
|
|
89528
|
-
*
|
|
89529
|
-
*
|
|
89530
|
-
* Determines whether the appointments that have only title without text are rendered with smaller height.
|
|
89531
|
-
*
|
|
89532
|
-
* **Note:** On phone devices this property is ignored, appointments are always rendered in full height
|
|
89533
|
-
* to facilitate touching.
|
|
89534
|
-
*
|
|
89535
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
89536
|
-
*
|
|
89537
|
-
* Default value is `false`.
|
|
89878
|
+
* Set the appointment reduced height property to the appointments in the calendar
|
|
89538
89879
|
*
|
|
89539
|
-
* @since 1.38.0
|
|
89540
89880
|
* @deprecated As of version 1.119. Please use the `appointmentHeight` with value "Automatic" property instead.
|
|
89541
89881
|
*
|
|
89542
|
-
* @returns Reference to `this`
|
|
89882
|
+
* @returns Reference to `this` for method chaining
|
|
89543
89883
|
*/
|
|
89544
89884
|
setAppointmentsReducedHeight(
|
|
89545
89885
|
/**
|
|
89546
|
-
*
|
|
89886
|
+
* if set to true, the appointments will have a reduced height
|
|
89547
89887
|
*/
|
|
89548
|
-
bAppointmentsReducedHeight
|
|
89888
|
+
bAppointmentsReducedHeight: boolean
|
|
89549
89889
|
): this;
|
|
89550
89890
|
/**
|
|
89551
89891
|
* Sets a new value for property {@link #getAppointmentsVisualization appointmentsVisualization}.
|
|
@@ -102695,9 +103035,9 @@ declare module "sap/m/RadioButton" {
|
|
|
102695
103035
|
CSSSize,
|
|
102696
103036
|
} from "sap/ui/core/library";
|
|
102697
103037
|
|
|
102698
|
-
import
|
|
103038
|
+
import { IToolbarInteractiveControl, WrappingType } from "sap/m/library";
|
|
102699
103039
|
|
|
102700
|
-
import
|
|
103040
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
102701
103041
|
|
|
102702
103042
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
102703
103043
|
|
|
@@ -102738,7 +103078,7 @@ declare module "sap/m/RadioButton" {
|
|
|
102738
103078
|
*/
|
|
102739
103079
|
export default class RadioButton
|
|
102740
103080
|
extends Control
|
|
102741
|
-
implements IFormContent,
|
|
103081
|
+
implements IFormContent, IToolbarInteractiveControl
|
|
102742
103082
|
{
|
|
102743
103083
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
102744
103084
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
@@ -108142,6 +108482,8 @@ declare module "sap/m/SearchField" {
|
|
|
108142
108482
|
|
|
108143
108483
|
import { IShellBar } from "sap/f/library";
|
|
108144
108484
|
|
|
108485
|
+
import { IToolbarInteractiveControl } from "sap/m/library";
|
|
108486
|
+
|
|
108145
108487
|
import SuggestionItem from "sap/m/SuggestionItem";
|
|
108146
108488
|
|
|
108147
108489
|
import {
|
|
@@ -108171,10 +108513,7 @@ declare module "sap/m/SearchField" {
|
|
|
108171
108513
|
*/
|
|
108172
108514
|
export default class SearchField
|
|
108173
108515
|
extends Control
|
|
108174
|
-
implements
|
|
108175
|
-
IFormContent,
|
|
108176
|
-
IShellBar,
|
|
108177
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
108516
|
+
implements IFormContent, IShellBar, IToolbarInteractiveControl
|
|
108178
108517
|
{
|
|
108179
108518
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
108180
108519
|
__implements__sap_f_IShellBar: boolean;
|
|
@@ -109417,7 +109756,10 @@ declare module "sap/m/SegmentedButton" {
|
|
|
109417
109756
|
CSSSize,
|
|
109418
109757
|
} from "sap/ui/core/library";
|
|
109419
109758
|
|
|
109420
|
-
import {
|
|
109759
|
+
import {
|
|
109760
|
+
IOverflowToolbarContent,
|
|
109761
|
+
IToolbarInteractiveControl,
|
|
109762
|
+
} from "sap/m/library";
|
|
109421
109763
|
|
|
109422
109764
|
import Button from "sap/m/Button";
|
|
109423
109765
|
|
|
@@ -109443,10 +109785,7 @@ declare module "sap/m/SegmentedButton" {
|
|
|
109443
109785
|
*/
|
|
109444
109786
|
export default class SegmentedButton
|
|
109445
109787
|
extends Control
|
|
109446
|
-
implements
|
|
109447
|
-
IFormContent,
|
|
109448
|
-
IOverflowToolbarContent,
|
|
109449
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
109788
|
+
implements IFormContent, IOverflowToolbarContent, IToolbarInteractiveControl
|
|
109450
109789
|
{
|
|
109451
109790
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
109452
109791
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -110590,6 +110929,7 @@ declare module "sap/m/Select" {
|
|
|
110590
110929
|
|
|
110591
110930
|
import {
|
|
110592
110931
|
IOverflowToolbarContent,
|
|
110932
|
+
IToolbarInteractiveControl,
|
|
110593
110933
|
SelectColumnRatio,
|
|
110594
110934
|
OverflowToolbarConfig,
|
|
110595
110935
|
SelectType,
|
|
@@ -110618,7 +110958,7 @@ declare module "sap/m/Select" {
|
|
|
110618
110958
|
ISemanticFormContent,
|
|
110619
110959
|
ILabelable,
|
|
110620
110960
|
IOverflowToolbarContent,
|
|
110621
|
-
|
|
110961
|
+
IToolbarInteractiveControl,
|
|
110622
110962
|
IShellBar
|
|
110623
110963
|
{
|
|
110624
110964
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
@@ -112271,7 +112611,10 @@ declare module "sap/m/SelectDialog" {
|
|
|
112271
112611
|
* instead. Note:: The property `growing` determines the progressive loading. If it's set to `true`
|
|
112272
112612
|
* (the default value), the selected count (if present) and search, will work for currently loaded items
|
|
112273
112613
|
* only. To make sure that all items in the list are loaded at once and the above features works properly,
|
|
112274
|
-
* we recommend setting the `growing` property to `false`.
|
|
112614
|
+
* we recommend setting the `growing` property to `false`. **Note: **The default size limit for entries
|
|
112615
|
+
* used for list bindings is set to 100. To change this behavior, you can adjust the size limit by using
|
|
112616
|
+
* `sap.ui.model.Model.prototype.setSizeLimit`; see {@link sap.ui.model.Model#setSizeLimit}. Responsive
|
|
112617
|
+
* Behavior:
|
|
112275
112618
|
* - On phones, the select dialog takes up the whole screen.
|
|
112276
112619
|
* - On desktop and tablet devices, the select dialog appears as a popover. When using the `sap.m.SelectDialog`
|
|
112277
112620
|
* in SAP Quartz and Horizon themes, the breakpoints and layout paddings could be determined by the dialog's
|
|
@@ -112757,8 +113100,8 @@ declare module "sap/m/SelectDialog" {
|
|
|
112757
113100
|
* bound model (progressive loading). **Note:** This feature only works when an `items` aggregation is bound.
|
|
112758
113101
|
* **Note:** Growing property, must not be used together with two-way binding. **Note:** If the property
|
|
112759
113102
|
* is set to `true`, selected count (if present) and search, will work for currently loaded items only.
|
|
112760
|
-
* To make sure that all items in the
|
|
112761
|
-
*
|
|
113103
|
+
* To make sure that all items in the list are loaded at once and the above features work properly, we recommend
|
|
113104
|
+
* setting the `growing` property to false.
|
|
112762
113105
|
*
|
|
112763
113106
|
* Default value is `true`.
|
|
112764
113107
|
*
|
|
@@ -113263,8 +113606,8 @@ declare module "sap/m/SelectDialog" {
|
|
|
113263
113606
|
* bound model (progressive loading). **Note:** This feature only works when an `items` aggregation is bound.
|
|
113264
113607
|
* **Note:** Growing property, must not be used together with two-way binding. **Note:** If the property
|
|
113265
113608
|
* is set to `true`, selected count (if present) and search, will work for currently loaded items only.
|
|
113266
|
-
* To make sure that all items in the
|
|
113267
|
-
*
|
|
113609
|
+
* To make sure that all items in the list are loaded at once and the above features work properly, we recommend
|
|
113610
|
+
* setting the `growing` property to false.
|
|
113268
113611
|
*
|
|
113269
113612
|
* @since 1.56
|
|
113270
113613
|
*/
|
|
@@ -129057,14 +129400,14 @@ declare module "sap/m/Slider" {
|
|
|
129057
129400
|
CSSSize,
|
|
129058
129401
|
} from "sap/ui/core/library";
|
|
129059
129402
|
|
|
129403
|
+
import { IToolbarInteractiveControl, IScale } from "sap/m/library";
|
|
129404
|
+
|
|
129060
129405
|
import SliderTooltipBase from "sap/m/SliderTooltipBase";
|
|
129061
129406
|
|
|
129062
129407
|
import UI5Element from "sap/ui/core/Element";
|
|
129063
129408
|
|
|
129064
129409
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
129065
129410
|
|
|
129066
|
-
import { IScale } from "sap/m/library";
|
|
129067
|
-
|
|
129068
129411
|
import {
|
|
129069
129412
|
PropertyBindingInfo,
|
|
129070
129413
|
AggregationBindingInfo,
|
|
@@ -129114,10 +129457,7 @@ declare module "sap/m/Slider" {
|
|
|
129114
129457
|
*/
|
|
129115
129458
|
export default class Slider
|
|
129116
129459
|
extends Control
|
|
129117
|
-
implements
|
|
129118
|
-
IFormContent,
|
|
129119
|
-
ISemanticFormContent,
|
|
129120
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
129460
|
+
implements IFormContent, ISemanticFormContent, IToolbarInteractiveControl
|
|
129121
129461
|
{
|
|
129122
129462
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
129123
129463
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
@@ -135953,7 +136293,11 @@ declare module "sap/m/Switch" {
|
|
|
135953
136293
|
|
|
135954
136294
|
import { IFormContent, ID } from "sap/ui/core/library";
|
|
135955
136295
|
|
|
135956
|
-
import {
|
|
136296
|
+
import {
|
|
136297
|
+
IOverflowToolbarContent,
|
|
136298
|
+
IToolbarInteractiveControl,
|
|
136299
|
+
SwitchType,
|
|
136300
|
+
} from "sap/m/library";
|
|
135957
136301
|
|
|
135958
136302
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
135959
136303
|
|
|
@@ -135967,10 +136311,7 @@ declare module "sap/m/Switch" {
|
|
|
135967
136311
|
*/
|
|
135968
136312
|
export default class Switch
|
|
135969
136313
|
extends Control
|
|
135970
|
-
implements
|
|
135971
|
-
IFormContent,
|
|
135972
|
-
IOverflowToolbarContent,
|
|
135973
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
136314
|
+
implements IFormContent, IOverflowToolbarContent, IToolbarInteractiveControl
|
|
135974
136315
|
{
|
|
135975
136316
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
135976
136317
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -143635,12 +143976,15 @@ declare module "sap/m/TableSelectDialog" {
|
|
|
143635
143976
|
* - The property `growing` must not be used together with two-way binding. When the property `growing`
|
|
143636
143977
|
* is set to `true` (default value), selected count (if present) and search, will work for currently loaded
|
|
143637
143978
|
* items only. To make sure that all items in the table are loaded at once and the above features work properly,
|
|
143638
|
-
* set the property to `false`.
|
|
143639
|
-
*
|
|
143640
|
-
*
|
|
143641
|
-
*
|
|
143642
|
-
*
|
|
143643
|
-
* `
|
|
143979
|
+
* set the property to `false`. **Note: **The default size limit for entries used for table bindings is
|
|
143980
|
+
* set to 100. To change this behavior, you can adjust the size limit by using `sap.ui.model.Model.prototype.setSizeLimit`;
|
|
143981
|
+
* see {@link sap.ui.model.Model#setSizeLimit}. Since version 1.58, the columns headers and the info
|
|
143982
|
+
* toolbar are sticky (remain fixed on top when scrolling). This feature is not supported in all browsers.
|
|
143983
|
+
* The TableSelectDialog is usually displayed at the center of the screen. Its size and position can
|
|
143984
|
+
* be changed by the user. To enable this you need to set the `resizable` and `draggable` properties. Both
|
|
143985
|
+
* properties are available only in desktop mode. For more information on current restrictions, you can
|
|
143986
|
+
* refer to the {@link sap.m.ListBase sap.m.ListBase} `sticky` property. Responsive Behavior:
|
|
143987
|
+
*
|
|
143644
143988
|
* - On smaller screens, the columns of the table wrap and build a list that shows all the information.
|
|
143645
143989
|
* When using the `sap.m.TableSelectDialog` in SAP Quartz and Horizon themes, the breakpoints and
|
|
143646
143990
|
* layout paddings could be determined by the dialog's width. To enable this concept and add responsive
|
|
@@ -145001,9 +145345,13 @@ declare module "sap/m/Text" {
|
|
|
145001
145345
|
CSSSize,
|
|
145002
145346
|
} from "sap/ui/core/library";
|
|
145003
145347
|
|
|
145004
|
-
import {
|
|
145348
|
+
import {
|
|
145349
|
+
IToolbarInteractiveControl,
|
|
145350
|
+
EmptyIndicatorMode,
|
|
145351
|
+
WrappingType,
|
|
145352
|
+
} from "sap/m/library";
|
|
145005
145353
|
|
|
145006
|
-
import {
|
|
145354
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
145007
145355
|
|
|
145008
145356
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
145009
145357
|
|
|
@@ -145024,7 +145372,7 @@ declare module "sap/m/Text" {
|
|
|
145024
145372
|
IFormContent,
|
|
145025
145373
|
ISemanticFormContent,
|
|
145026
145374
|
ILabelable,
|
|
145027
|
-
|
|
145375
|
+
IToolbarInteractiveControl
|
|
145028
145376
|
{
|
|
145029
145377
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
145030
145378
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
@@ -149267,6 +149615,8 @@ declare module "sap/m/TimePickerClocks" {
|
|
|
149267
149615
|
|
|
149268
149616
|
import UI5Date from "sap/ui/core/date/UI5Date";
|
|
149269
149617
|
|
|
149618
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
149619
|
+
|
|
149270
149620
|
/**
|
|
149271
149621
|
* A picker clocks container control used inside the {@link sap.m.TimePicker}.
|
|
149272
149622
|
*
|
|
@@ -149335,6 +149685,17 @@ declare module "sap/m/TimePickerClocks" {
|
|
|
149335
149685
|
* @returns Metadata object describing this class
|
|
149336
149686
|
*/
|
|
149337
149687
|
static getMetadata(): ElementMetadata;
|
|
149688
|
+
/**
|
|
149689
|
+
* Gets current value of property {@link #getSkipAnimation skipAnimation}.
|
|
149690
|
+
*
|
|
149691
|
+
* When set to `true`, the clock will be displayed without the animation.
|
|
149692
|
+
*
|
|
149693
|
+
* Default value is `false`.
|
|
149694
|
+
*
|
|
149695
|
+
*
|
|
149696
|
+
* @returns Value of property `skipAnimation`
|
|
149697
|
+
*/
|
|
149698
|
+
getSkipAnimation(): boolean;
|
|
149338
149699
|
/**
|
|
149339
149700
|
* Gets the time values from the clocks, as a date object.
|
|
149340
149701
|
*
|
|
@@ -149347,29 +149708,53 @@ declare module "sap/m/TimePickerClocks" {
|
|
|
149347
149708
|
*/
|
|
149348
149709
|
init(): void;
|
|
149349
149710
|
/**
|
|
149350
|
-
*
|
|
149711
|
+
* Prepare the control for opening. If there are already clock and button objects created, set their appearance-related
|
|
149712
|
+
* properties.
|
|
149351
149713
|
*
|
|
149352
149714
|
*
|
|
149353
149715
|
* @returns Pointer to the control instance to allow method chaining
|
|
149354
149716
|
*/
|
|
149355
|
-
|
|
149717
|
+
prepareForOpen(): this;
|
|
149718
|
+
/**
|
|
149719
|
+
* Sets a new value for property {@link #getSkipAnimation skipAnimation}.
|
|
149720
|
+
*
|
|
149721
|
+
* When set to `true`, the clock will be displayed without the animation.
|
|
149722
|
+
*
|
|
149723
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
149724
|
+
*
|
|
149725
|
+
* Default value is `false`.
|
|
149726
|
+
*
|
|
149727
|
+
*
|
|
149728
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
149729
|
+
*/
|
|
149730
|
+
setSkipAnimation(
|
|
149356
149731
|
/**
|
|
149357
|
-
*
|
|
149732
|
+
* New value for property `skipAnimation`
|
|
149358
149733
|
*/
|
|
149359
|
-
|
|
149734
|
+
bSkipAnimation?: boolean
|
|
149360
149735
|
): this;
|
|
149361
149736
|
/**
|
|
149362
|
-
*
|
|
149737
|
+
* Sets the value of the `TimePickerClocks` container.
|
|
149363
149738
|
*
|
|
149364
149739
|
*
|
|
149365
149740
|
* @returns Pointer to the control instance to allow method chaining
|
|
149366
149741
|
*/
|
|
149367
|
-
|
|
149742
|
+
setValue(
|
|
149743
|
+
/**
|
|
149744
|
+
* The value of the `TimePickerClocks`
|
|
149745
|
+
*/
|
|
149746
|
+
sValue: string
|
|
149747
|
+
): this;
|
|
149368
149748
|
}
|
|
149369
149749
|
/**
|
|
149370
149750
|
* Describes the settings that can be provided to the TimePickerClocks constructor.
|
|
149371
149751
|
*/
|
|
149372
|
-
export interface $TimePickerClocksSettings extends $ControlSettings {
|
|
149752
|
+
export interface $TimePickerClocksSettings extends $ControlSettings {
|
|
149753
|
+
/**
|
|
149754
|
+
* When set to `true`, the clock will be displayed without the animation.
|
|
149755
|
+
*/
|
|
149756
|
+
skipAnimation?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
149757
|
+
}
|
|
149373
149758
|
}
|
|
149374
149759
|
|
|
149375
149760
|
declare module "sap/m/TimePickerInputs" {
|
|
@@ -150005,9 +150390,9 @@ declare module "sap/m/Title" {
|
|
|
150005
150390
|
CSSSize,
|
|
150006
150391
|
} from "sap/ui/core/library";
|
|
150007
150392
|
|
|
150008
|
-
import
|
|
150393
|
+
import { IToolbarInteractiveControl, WrappingType } from "sap/m/library";
|
|
150009
150394
|
|
|
150010
|
-
import
|
|
150395
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
150011
150396
|
|
|
150012
150397
|
import Title1 from "sap/ui/core/Title";
|
|
150013
150398
|
|
|
@@ -150043,7 +150428,7 @@ declare module "sap/m/Title" {
|
|
|
150043
150428
|
*/
|
|
150044
150429
|
export default class Title
|
|
150045
150430
|
extends Control
|
|
150046
|
-
implements IShrinkable,
|
|
150431
|
+
implements IShrinkable, IToolbarInteractiveControl
|
|
150047
150432
|
{
|
|
150048
150433
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
150049
150434
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
@@ -150570,6 +150955,8 @@ declare module "sap/m/ToggleButton" {
|
|
|
150570
150955
|
Button$PressEventParameters,
|
|
150571
150956
|
} from "sap/m/Button";
|
|
150572
150957
|
|
|
150958
|
+
import { IToolbarInteractiveControl } from "sap/m/library";
|
|
150959
|
+
|
|
150573
150960
|
import { AccessibilityInfo } from "sap/ui/core/library";
|
|
150574
150961
|
|
|
150575
150962
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -150586,7 +150973,7 @@ declare module "sap/m/ToggleButton" {
|
|
|
150586
150973
|
*/
|
|
150587
150974
|
export default class ToggleButton
|
|
150588
150975
|
extends Button
|
|
150589
|
-
implements
|
|
150976
|
+
implements IToolbarInteractiveControl
|
|
150590
150977
|
{
|
|
150591
150978
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
150592
150979
|
/**
|
|
@@ -151703,6 +152090,12 @@ declare module "sap/m/Tokenizer" {
|
|
|
151703
152090
|
*/
|
|
151704
152091
|
fValidator: Function
|
|
151705
152092
|
): void;
|
|
152093
|
+
/**
|
|
152094
|
+
* Function to execute after the n-more popover is closed.
|
|
152095
|
+
*
|
|
152096
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
152097
|
+
*/
|
|
152098
|
+
afterPopupClose(): void;
|
|
151706
152099
|
/**
|
|
151707
152100
|
* Attaches event handler `fnFunction` to the {@link #event:renderModeChange renderModeChange} event of
|
|
151708
152101
|
* this `sap.m.Tokenizer`.
|
|
@@ -155891,6 +156284,55 @@ declare module "sap/m/upload/UploaderTableItem" {
|
|
|
155891
156284
|
*/
|
|
155892
156285
|
oListener?: object
|
|
155893
156286
|
): this;
|
|
156287
|
+
/**
|
|
156288
|
+
* Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
|
|
156289
|
+
* this `sap.m.upload.UploaderTableItem`.
|
|
156290
|
+
*
|
|
156291
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
156292
|
+
* otherwise it will be bound to this `sap.m.upload.UploaderTableItem` itself.
|
|
156293
|
+
*
|
|
156294
|
+
* The event is fired when an XHR request reports its termination.
|
|
156295
|
+
*
|
|
156296
|
+
*
|
|
156297
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
156298
|
+
*/
|
|
156299
|
+
attachUploadTerminated(
|
|
156300
|
+
/**
|
|
156301
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
156302
|
+
* object when firing the event
|
|
156303
|
+
*/
|
|
156304
|
+
oData: object,
|
|
156305
|
+
/**
|
|
156306
|
+
* The function to be called when the event occurs
|
|
156307
|
+
*/
|
|
156308
|
+
fnFunction: (p1: UploaderTableItem$UploadTerminatedEvent) => void,
|
|
156309
|
+
/**
|
|
156310
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploaderTableItem` itself
|
|
156311
|
+
*/
|
|
156312
|
+
oListener?: object
|
|
156313
|
+
): this;
|
|
156314
|
+
/**
|
|
156315
|
+
* Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
|
|
156316
|
+
* this `sap.m.upload.UploaderTableItem`.
|
|
156317
|
+
*
|
|
156318
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
156319
|
+
* otherwise it will be bound to this `sap.m.upload.UploaderTableItem` itself.
|
|
156320
|
+
*
|
|
156321
|
+
* The event is fired when an XHR request reports its termination.
|
|
156322
|
+
*
|
|
156323
|
+
*
|
|
156324
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
156325
|
+
*/
|
|
156326
|
+
attachUploadTerminated(
|
|
156327
|
+
/**
|
|
156328
|
+
* The function to be called when the event occurs
|
|
156329
|
+
*/
|
|
156330
|
+
fnFunction: (p1: UploaderTableItem$UploadTerminatedEvent) => void,
|
|
156331
|
+
/**
|
|
156332
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploaderTableItem` itself
|
|
156333
|
+
*/
|
|
156334
|
+
oListener?: object
|
|
156335
|
+
): this;
|
|
155894
156336
|
/**
|
|
155895
156337
|
* Detaches event handler `fnFunction` from the {@link #event:uploadCompleted uploadCompleted} event of
|
|
155896
156338
|
* this `sap.m.upload.UploaderTableItem`.
|
|
@@ -155948,6 +156390,25 @@ declare module "sap/m/upload/UploaderTableItem" {
|
|
|
155948
156390
|
*/
|
|
155949
156391
|
oListener?: object
|
|
155950
156392
|
): this;
|
|
156393
|
+
/**
|
|
156394
|
+
* Detaches event handler `fnFunction` from the {@link #event:uploadTerminated uploadTerminated} event of
|
|
156395
|
+
* this `sap.m.upload.UploaderTableItem`.
|
|
156396
|
+
*
|
|
156397
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
156398
|
+
*
|
|
156399
|
+
*
|
|
156400
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
156401
|
+
*/
|
|
156402
|
+
detachUploadTerminated(
|
|
156403
|
+
/**
|
|
156404
|
+
* The function to be called, when the event occurs
|
|
156405
|
+
*/
|
|
156406
|
+
fnFunction: (p1: UploaderTableItem$UploadTerminatedEvent) => void,
|
|
156407
|
+
/**
|
|
156408
|
+
* Context object on which the given function had to be called
|
|
156409
|
+
*/
|
|
156410
|
+
oListener?: object
|
|
156411
|
+
): this;
|
|
155951
156412
|
/**
|
|
155952
156413
|
* Starts the process of downloading a file.
|
|
155953
156414
|
*
|
|
@@ -156007,6 +156468,19 @@ declare module "sap/m/upload/UploaderTableItem" {
|
|
|
156007
156468
|
*/
|
|
156008
156469
|
mParameters?: UploaderTableItem$UploadStartedEventParameters
|
|
156009
156470
|
): this;
|
|
156471
|
+
/**
|
|
156472
|
+
* Fires event {@link #event:uploadTerminated uploadTerminated} to attached listeners.
|
|
156473
|
+
*
|
|
156474
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
156475
|
+
*
|
|
156476
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
156477
|
+
*/
|
|
156478
|
+
fireUploadTerminated(
|
|
156479
|
+
/**
|
|
156480
|
+
* Parameters to pass along with the event
|
|
156481
|
+
*/
|
|
156482
|
+
mParameters?: UploaderTableItem$UploadTerminatedEventParameters
|
|
156483
|
+
): this;
|
|
156010
156484
|
/**
|
|
156011
156485
|
* Gets current value of property {@link #getDownloadUrl downloadUrl}.
|
|
156012
156486
|
*
|
|
@@ -156117,6 +156591,15 @@ declare module "sap/m/upload/UploaderTableItem" {
|
|
|
156117
156591
|
*/
|
|
156118
156592
|
bUseMultipart?: boolean
|
|
156119
156593
|
): this;
|
|
156594
|
+
/**
|
|
156595
|
+
* Attempts to terminate the process of uploading the specified file.
|
|
156596
|
+
*/
|
|
156597
|
+
terminateItem(
|
|
156598
|
+
/**
|
|
156599
|
+
* Item representing the file whose ongoing upload process is to be terminated.
|
|
156600
|
+
*/
|
|
156601
|
+
oItem: UploadItem
|
|
156602
|
+
): void;
|
|
156120
156603
|
/**
|
|
156121
156604
|
* Starts the process of uploading the specified file.
|
|
156122
156605
|
*/
|
|
@@ -156175,6 +156658,13 @@ declare module "sap/m/upload/UploaderTableItem" {
|
|
|
156175
156658
|
* The event is fired when an XHR request reports successful completion of upload process.
|
|
156176
156659
|
*/
|
|
156177
156660
|
uploadCompleted?: (oEvent: UploaderTableItem$UploadCompletedEvent) => void;
|
|
156661
|
+
|
|
156662
|
+
/**
|
|
156663
|
+
* The event is fired when an XHR request reports its termination.
|
|
156664
|
+
*/
|
|
156665
|
+
uploadTerminated?: (
|
|
156666
|
+
oEvent: UploaderTableItem$UploadTerminatedEvent
|
|
156667
|
+
) => void;
|
|
156178
156668
|
}
|
|
156179
156669
|
|
|
156180
156670
|
/**
|
|
@@ -156258,6 +156748,24 @@ declare module "sap/m/upload/UploaderTableItem" {
|
|
|
156258
156748
|
UploaderTableItem$UploadStartedEventParameters,
|
|
156259
156749
|
UploaderTableItem
|
|
156260
156750
|
>;
|
|
156751
|
+
|
|
156752
|
+
/**
|
|
156753
|
+
* Parameters of the UploaderTableItem#uploadTerminated event.
|
|
156754
|
+
*/
|
|
156755
|
+
export interface UploaderTableItem$UploadTerminatedEventParameters {
|
|
156756
|
+
/**
|
|
156757
|
+
* The item that is going to be deleted.
|
|
156758
|
+
*/
|
|
156759
|
+
item?: UploadItem;
|
|
156760
|
+
}
|
|
156761
|
+
|
|
156762
|
+
/**
|
|
156763
|
+
* Event object of the UploaderTableItem#uploadTerminated event.
|
|
156764
|
+
*/
|
|
156765
|
+
export type UploaderTableItem$UploadTerminatedEvent = Event<
|
|
156766
|
+
UploaderTableItem$UploadTerminatedEventParameters,
|
|
156767
|
+
UploaderTableItem
|
|
156768
|
+
>;
|
|
156261
156769
|
}
|
|
156262
156770
|
|
|
156263
156771
|
declare module "sap/m/upload/UploadItem" {
|
|
@@ -156274,6 +156782,8 @@ declare module "sap/m/upload/UploadItem" {
|
|
|
156274
156782
|
AggregationBindingInfo,
|
|
156275
156783
|
} from "sap/ui/base/ManagedObject";
|
|
156276
156784
|
|
|
156785
|
+
import Event from "sap/ui/base/Event";
|
|
156786
|
+
|
|
156277
156787
|
/**
|
|
156278
156788
|
* `sap.m.upload.UploadItem` represents one item to be uploaded using the {@link sap.m.plugins.UploadSetwithTable UploadSetwithTable}
|
|
156279
156789
|
*
|
|
@@ -156357,6 +156867,104 @@ declare module "sap/m/upload/UploadItem" {
|
|
|
156357
156867
|
*/
|
|
156358
156868
|
oHeaderField: Item
|
|
156359
156869
|
): this;
|
|
156870
|
+
/**
|
|
156871
|
+
* Attaches event handler `fnFunction` to the {@link #event:uploadProgress uploadProgress} event of this
|
|
156872
|
+
* `sap.m.upload.UploadItem`.
|
|
156873
|
+
*
|
|
156874
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
156875
|
+
* otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
|
|
156876
|
+
*
|
|
156877
|
+
* The event is fired every time an XHR request reports progress while uploading.
|
|
156878
|
+
*
|
|
156879
|
+
*
|
|
156880
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
156881
|
+
*/
|
|
156882
|
+
attachUploadProgress(
|
|
156883
|
+
/**
|
|
156884
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
156885
|
+
* object when firing the event
|
|
156886
|
+
*/
|
|
156887
|
+
oData: object,
|
|
156888
|
+
/**
|
|
156889
|
+
* The function to be called when the event occurs
|
|
156890
|
+
*/
|
|
156891
|
+
fnFunction: (p1: UploadItem$UploadProgressEvent) => void,
|
|
156892
|
+
/**
|
|
156893
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
|
|
156894
|
+
*/
|
|
156895
|
+
oListener?: object
|
|
156896
|
+
): this;
|
|
156897
|
+
/**
|
|
156898
|
+
* Attaches event handler `fnFunction` to the {@link #event:uploadProgress uploadProgress} event of this
|
|
156899
|
+
* `sap.m.upload.UploadItem`.
|
|
156900
|
+
*
|
|
156901
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
156902
|
+
* otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
|
|
156903
|
+
*
|
|
156904
|
+
* The event is fired every time an XHR request reports progress while uploading.
|
|
156905
|
+
*
|
|
156906
|
+
*
|
|
156907
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
156908
|
+
*/
|
|
156909
|
+
attachUploadProgress(
|
|
156910
|
+
/**
|
|
156911
|
+
* The function to be called when the event occurs
|
|
156912
|
+
*/
|
|
156913
|
+
fnFunction: (p1: UploadItem$UploadProgressEvent) => void,
|
|
156914
|
+
/**
|
|
156915
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
|
|
156916
|
+
*/
|
|
156917
|
+
oListener?: object
|
|
156918
|
+
): this;
|
|
156919
|
+
/**
|
|
156920
|
+
* Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
|
|
156921
|
+
* this `sap.m.upload.UploadItem`.
|
|
156922
|
+
*
|
|
156923
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
156924
|
+
* otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
|
|
156925
|
+
*
|
|
156926
|
+
* This event is fired right after the upload is terminated.
|
|
156927
|
+
*
|
|
156928
|
+
*
|
|
156929
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
156930
|
+
*/
|
|
156931
|
+
attachUploadTerminated(
|
|
156932
|
+
/**
|
|
156933
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
156934
|
+
* object when firing the event
|
|
156935
|
+
*/
|
|
156936
|
+
oData: object,
|
|
156937
|
+
/**
|
|
156938
|
+
* The function to be called when the event occurs
|
|
156939
|
+
*/
|
|
156940
|
+
fnFunction: (p1: UploadItem$UploadTerminatedEvent) => void,
|
|
156941
|
+
/**
|
|
156942
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
|
|
156943
|
+
*/
|
|
156944
|
+
oListener?: object
|
|
156945
|
+
): this;
|
|
156946
|
+
/**
|
|
156947
|
+
* Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
|
|
156948
|
+
* this `sap.m.upload.UploadItem`.
|
|
156949
|
+
*
|
|
156950
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
156951
|
+
* otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
|
|
156952
|
+
*
|
|
156953
|
+
* This event is fired right after the upload is terminated.
|
|
156954
|
+
*
|
|
156955
|
+
*
|
|
156956
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
156957
|
+
*/
|
|
156958
|
+
attachUploadTerminated(
|
|
156959
|
+
/**
|
|
156960
|
+
* The function to be called when the event occurs
|
|
156961
|
+
*/
|
|
156962
|
+
fnFunction: (p1: UploadItem$UploadTerminatedEvent) => void,
|
|
156963
|
+
/**
|
|
156964
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
|
|
156965
|
+
*/
|
|
156966
|
+
oListener?: object
|
|
156967
|
+
): this;
|
|
156360
156968
|
/**
|
|
156361
156969
|
* Destroys all the headerFields in the aggregation {@link #getHeaderFields headerFields}.
|
|
156362
156970
|
*
|
|
@@ -156364,6 +156972,44 @@ declare module "sap/m/upload/UploadItem" {
|
|
|
156364
156972
|
* @returns Reference to `this` in order to allow method chaining
|
|
156365
156973
|
*/
|
|
156366
156974
|
destroyHeaderFields(): this;
|
|
156975
|
+
/**
|
|
156976
|
+
* Detaches event handler `fnFunction` from the {@link #event:uploadProgress uploadProgress} event of this
|
|
156977
|
+
* `sap.m.upload.UploadItem`.
|
|
156978
|
+
*
|
|
156979
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
156980
|
+
*
|
|
156981
|
+
*
|
|
156982
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
156983
|
+
*/
|
|
156984
|
+
detachUploadProgress(
|
|
156985
|
+
/**
|
|
156986
|
+
* The function to be called, when the event occurs
|
|
156987
|
+
*/
|
|
156988
|
+
fnFunction: (p1: UploadItem$UploadProgressEvent) => void,
|
|
156989
|
+
/**
|
|
156990
|
+
* Context object on which the given function had to be called
|
|
156991
|
+
*/
|
|
156992
|
+
oListener?: object
|
|
156993
|
+
): this;
|
|
156994
|
+
/**
|
|
156995
|
+
* Detaches event handler `fnFunction` from the {@link #event:uploadTerminated uploadTerminated} event of
|
|
156996
|
+
* this `sap.m.upload.UploadItem`.
|
|
156997
|
+
*
|
|
156998
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
156999
|
+
*
|
|
157000
|
+
*
|
|
157001
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
157002
|
+
*/
|
|
157003
|
+
detachUploadTerminated(
|
|
157004
|
+
/**
|
|
157005
|
+
* The function to be called, when the event occurs
|
|
157006
|
+
*/
|
|
157007
|
+
fnFunction: (p1: UploadItem$UploadTerminatedEvent) => void,
|
|
157008
|
+
/**
|
|
157009
|
+
* Context object on which the given function had to be called
|
|
157010
|
+
*/
|
|
157011
|
+
oListener?: object
|
|
157012
|
+
): this;
|
|
156367
157013
|
/**
|
|
156368
157014
|
* Downloads the item. Only possible when the item has a valid URL specified in the `url` property.
|
|
156369
157015
|
*
|
|
@@ -156376,6 +157022,32 @@ declare module "sap/m/upload/UploadItem" {
|
|
|
156376
157022
|
*/
|
|
156377
157023
|
bAskForLocation: boolean
|
|
156378
157024
|
): boolean;
|
|
157025
|
+
/**
|
|
157026
|
+
* Fires event {@link #event:uploadProgress uploadProgress} to attached listeners.
|
|
157027
|
+
*
|
|
157028
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
157029
|
+
*
|
|
157030
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
157031
|
+
*/
|
|
157032
|
+
fireUploadProgress(
|
|
157033
|
+
/**
|
|
157034
|
+
* Parameters to pass along with the event
|
|
157035
|
+
*/
|
|
157036
|
+
mParameters?: UploadItem$UploadProgressEventParameters
|
|
157037
|
+
): this;
|
|
157038
|
+
/**
|
|
157039
|
+
* Fires event {@link #event:uploadTerminated uploadTerminated} to attached listeners.
|
|
157040
|
+
*
|
|
157041
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
157042
|
+
*
|
|
157043
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
157044
|
+
*/
|
|
157045
|
+
fireUploadTerminated(
|
|
157046
|
+
/**
|
|
157047
|
+
* Parameters to pass along with the event
|
|
157048
|
+
*/
|
|
157049
|
+
mParameters?: UploadItem$UploadTerminatedEventParameters
|
|
157050
|
+
): this;
|
|
156379
157051
|
/**
|
|
156380
157052
|
* Returns the details of the file selected from the CloudFilePicker control.
|
|
156381
157053
|
*
|
|
@@ -156674,6 +157346,14 @@ declare module "sap/m/upload/UploadItem" {
|
|
|
156674
157346
|
*/
|
|
156675
157347
|
sUrl?: string
|
|
156676
157348
|
): this;
|
|
157349
|
+
/**
|
|
157350
|
+
* API to terminate the upload of an item. With success, the event `uploadTerminated` is fired on the `UploadItem`.
|
|
157351
|
+
* Termination is only possible if the item is in `Uploading` state and uploadItem is associated with `UploadSetwithTable`
|
|
157352
|
+
* plugin.
|
|
157353
|
+
*
|
|
157354
|
+
* @since 1.134
|
|
157355
|
+
*/
|
|
157356
|
+
terminateUpload(): void;
|
|
156677
157357
|
}
|
|
156678
157358
|
/**
|
|
156679
157359
|
* Describes the settings that can be provided to the UploadItem constructor.
|
|
@@ -156730,7 +157410,60 @@ declare module "sap/m/upload/UploadItem" {
|
|
|
156730
157410
|
* Header fields to be included in the header section of an XMLHttpRequest (XHR) request
|
|
156731
157411
|
*/
|
|
156732
157412
|
headerFields?: Item[] | Item | AggregationBindingInfo | `{${string}}`;
|
|
157413
|
+
|
|
157414
|
+
/**
|
|
157415
|
+
* The event is fired every time an XHR request reports progress while uploading.
|
|
157416
|
+
*/
|
|
157417
|
+
uploadProgress?: (oEvent: UploadItem$UploadProgressEvent) => void;
|
|
157418
|
+
|
|
157419
|
+
/**
|
|
157420
|
+
* This event is fired right after the upload is terminated.
|
|
157421
|
+
*/
|
|
157422
|
+
uploadTerminated?: (oEvent: UploadItem$UploadTerminatedEvent) => void;
|
|
156733
157423
|
}
|
|
157424
|
+
|
|
157425
|
+
/**
|
|
157426
|
+
* Parameters of the UploadItem#uploadProgress event.
|
|
157427
|
+
*/
|
|
157428
|
+
export interface UploadItem$UploadProgressEventParameters {
|
|
157429
|
+
/**
|
|
157430
|
+
* The number of bytes transferred since the beginning of the operation. laoded parameter doesn't include
|
|
157431
|
+
* headers and other overhead, but only the content itself
|
|
157432
|
+
*/
|
|
157433
|
+
loaded?: int;
|
|
157434
|
+
|
|
157435
|
+
/**
|
|
157436
|
+
* The total number of bytes of content that is transferred during the operation. If the total size is unknown,
|
|
157437
|
+
* this value is zero.
|
|
157438
|
+
*/
|
|
157439
|
+
total?: int;
|
|
157440
|
+
}
|
|
157441
|
+
|
|
157442
|
+
/**
|
|
157443
|
+
* Event object of the UploadItem#uploadProgress event.
|
|
157444
|
+
*/
|
|
157445
|
+
export type UploadItem$UploadProgressEvent = Event<
|
|
157446
|
+
UploadItem$UploadProgressEventParameters,
|
|
157447
|
+
UploadItem
|
|
157448
|
+
>;
|
|
157449
|
+
|
|
157450
|
+
/**
|
|
157451
|
+
* Parameters of the UploadItem#uploadTerminated event.
|
|
157452
|
+
*/
|
|
157453
|
+
export interface UploadItem$UploadTerminatedEventParameters {
|
|
157454
|
+
/**
|
|
157455
|
+
* The file whose upload has just been terminated.
|
|
157456
|
+
*/
|
|
157457
|
+
item?: UploadItem;
|
|
157458
|
+
}
|
|
157459
|
+
|
|
157460
|
+
/**
|
|
157461
|
+
* Event object of the UploadItem#uploadTerminated event.
|
|
157462
|
+
*/
|
|
157463
|
+
export type UploadItem$UploadTerminatedEvent = Event<
|
|
157464
|
+
UploadItem$UploadTerminatedEventParameters,
|
|
157465
|
+
UploadItem
|
|
157466
|
+
>;
|
|
156734
157467
|
}
|
|
156735
157468
|
|
|
156736
157469
|
declare module "sap/m/upload/UploadItemConfiguration" {
|
|
@@ -166022,6 +166755,7 @@ declare module "sap/m/VariantManagement" {
|
|
|
166022
166755
|
|
|
166023
166756
|
import {
|
|
166024
166757
|
IOverflowToolbarContent,
|
|
166758
|
+
IToolbarInteractiveControl,
|
|
166025
166759
|
VariantManagementRename,
|
|
166026
166760
|
VariantManagementExe,
|
|
166027
166761
|
VariantManagementFav,
|
|
@@ -166049,10 +166783,7 @@ declare module "sap/m/VariantManagement" {
|
|
|
166049
166783
|
*/
|
|
166050
166784
|
export default class VariantManagement
|
|
166051
166785
|
extends Control
|
|
166052
|
-
implements
|
|
166053
|
-
IShrinkable,
|
|
166054
|
-
IOverflowToolbarContent,
|
|
166055
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
166786
|
+
implements IShrinkable, IOverflowToolbarContent, IToolbarInteractiveControl
|
|
166056
166787
|
{
|
|
166057
166788
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
166058
166789
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|