@sapui5/ts-types-esm 1.96.15 → 1.96.17
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.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.semantics.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +36 -1
- package/types/sap.m.d.ts +122 -19
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +148 -28
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +5 -2
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.11
|
|
2
2
|
|
|
3
3
|
declare module "sap/gantt/library" {
|
|
4
4
|
/**
|
|
@@ -1296,6 +1296,8 @@ declare module "sap/gantt/axistime/AxisTimeStrategyBase" {
|
|
|
1296
1296
|
|
|
1297
1297
|
import Locale from "sap/gantt/config/Locale";
|
|
1298
1298
|
|
|
1299
|
+
import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
|
|
1300
|
+
|
|
1299
1301
|
import DateFormat from "sap/ui/core/format/DateFormat";
|
|
1300
1302
|
|
|
1301
1303
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -1463,6 +1465,15 @@ declare module "sap/gantt/axistime/AxisTimeStrategyBase" {
|
|
|
1463
1465
|
* Default value is `sap.ui.core.CalendarType.Gregorian`.
|
|
1464
1466
|
*/
|
|
1465
1467
|
getCalendarType(): string;
|
|
1468
|
+
/**
|
|
1469
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
1470
|
+
*
|
|
1471
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
1472
|
+
* global configuration is used.
|
|
1473
|
+
*/
|
|
1474
|
+
getCalendarWeekNumbering():
|
|
1475
|
+
| CalendarWeekNumbering
|
|
1476
|
+
| keyof typeof CalendarWeekNumbering;
|
|
1466
1477
|
/**
|
|
1467
1478
|
* Gets current value of property {@link #getCoarsestTimeLineOption coarsestTimeLineOption}.
|
|
1468
1479
|
*
|
|
@@ -1641,6 +1652,22 @@ declare module "sap/gantt/axistime/AxisTimeStrategyBase" {
|
|
|
1641
1652
|
*/
|
|
1642
1653
|
sCalendarType?: string
|
|
1643
1654
|
): this;
|
|
1655
|
+
/**
|
|
1656
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
1657
|
+
*
|
|
1658
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
1659
|
+
* global configuration is used.
|
|
1660
|
+
*
|
|
1661
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1662
|
+
*/
|
|
1663
|
+
setCalendarWeekNumbering(
|
|
1664
|
+
/**
|
|
1665
|
+
* New value for property `calendarWeekNumbering`
|
|
1666
|
+
*/
|
|
1667
|
+
sCalendarWeekNumbering?:
|
|
1668
|
+
| CalendarWeekNumbering
|
|
1669
|
+
| keyof typeof CalendarWeekNumbering
|
|
1670
|
+
): this;
|
|
1644
1671
|
/**
|
|
1645
1672
|
* Sets a new value for property {@link #getCoarsestTimeLineOption coarsestTimeLineOption}.
|
|
1646
1673
|
*
|
|
@@ -2030,6 +2057,14 @@ declare module "sap/gantt/axistime/AxisTimeStrategyBase" {
|
|
|
2030
2057
|
| (MouseWheelZoomType | keyof typeof MouseWheelZoomType)
|
|
2031
2058
|
| PropertyBindingInfo;
|
|
2032
2059
|
|
|
2060
|
+
/**
|
|
2061
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
2062
|
+
* global configuration is used.
|
|
2063
|
+
*/
|
|
2064
|
+
calendarWeekNumbering?:
|
|
2065
|
+
| (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
|
|
2066
|
+
| PropertyBindingInfo;
|
|
2067
|
+
|
|
2033
2068
|
/**
|
|
2034
2069
|
* Entire time span Gantt Chart can display in the chart area We recommend that you set the type of this
|
|
2035
2070
|
* argument to `sap.gantt.config.TimeHorizon`. Otherwise some properties you set may not function properly.
|
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.16
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -6039,8 +6039,13 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
6039
6039
|
* navigation path. The last three steps can be accessed as links directly, while the remaining links prior
|
|
6040
6040
|
* to them are available in a drop-down menu.
|
|
6041
6041
|
*/
|
|
6042
|
-
export default class Breadcrumbs
|
|
6042
|
+
export default class Breadcrumbs
|
|
6043
|
+
extends Control
|
|
6044
|
+
implements
|
|
6045
|
+
IBreadcrumbs,
|
|
6046
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
6043
6047
|
__implements__sap_m_IBreadcrumbs: boolean;
|
|
6048
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
6044
6049
|
/**
|
|
6045
6050
|
* Constructor for a new `Breadcrumbs`.
|
|
6046
6051
|
*
|
|
@@ -7244,8 +7249,13 @@ declare module "sap/m/Button" {
|
|
|
7244
7249
|
* it and it changes its style to provide visual feedback to the user that it is pressed or hovered over
|
|
7245
7250
|
* with the mouse cursor. A disabled `Button` appears inactive and cannot be pressed.
|
|
7246
7251
|
*/
|
|
7247
|
-
export default class Button
|
|
7252
|
+
export default class Button
|
|
7253
|
+
extends Control
|
|
7254
|
+
implements
|
|
7255
|
+
IFormContent,
|
|
7256
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
7248
7257
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
7258
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
7249
7259
|
/**
|
|
7250
7260
|
* Constructor for a new `Button`.
|
|
7251
7261
|
*
|
|
@@ -8882,9 +8892,13 @@ declare module "sap/m/CheckBox" {
|
|
|
8882
8892
|
*/
|
|
8883
8893
|
export default class CheckBox
|
|
8884
8894
|
extends Control
|
|
8885
|
-
implements
|
|
8895
|
+
implements
|
|
8896
|
+
IFormContent,
|
|
8897
|
+
ISemanticFormContent,
|
|
8898
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
8886
8899
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
8887
8900
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
8901
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
8888
8902
|
/**
|
|
8889
8903
|
* Constructor for a new `CheckBox`.
|
|
8890
8904
|
*
|
|
@@ -11542,7 +11556,10 @@ declare module "sap/m/ComboBox" {
|
|
|
11542
11556
|
* truncated.
|
|
11543
11557
|
* - On phone devices the combo box option list opens a dialog.
|
|
11544
11558
|
*/
|
|
11545
|
-
export default class ComboBox
|
|
11559
|
+
export default class ComboBox
|
|
11560
|
+
extends ComboBoxBase
|
|
11561
|
+
implements /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
11562
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
11546
11563
|
/**
|
|
11547
11564
|
* Constructor for a new ComboBox.
|
|
11548
11565
|
*
|
|
@@ -14957,7 +14974,10 @@ declare module "sap/m/DateTimeInput" {
|
|
|
14957
14974
|
* **Note:** This control should not be used any longer, instead please use the dedicated `sap.m.DatePicker`,
|
|
14958
14975
|
* `sap.m.TimePicker` or `sap.m.DateTimePicker` control.
|
|
14959
14976
|
*/
|
|
14960
|
-
export default class DateTimeInput
|
|
14977
|
+
export default class DateTimeInput
|
|
14978
|
+
extends Control
|
|
14979
|
+
implements /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
14980
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
14961
14981
|
/**
|
|
14962
14982
|
* Constructor for a new DateTimeInput.
|
|
14963
14983
|
*
|
|
@@ -24380,8 +24400,11 @@ declare module "sap/m/GenericTag" {
|
|
|
24380
24400
|
*/
|
|
24381
24401
|
export default class GenericTag
|
|
24382
24402
|
extends Control
|
|
24383
|
-
implements
|
|
24403
|
+
implements
|
|
24404
|
+
IOverflowToolbarContent,
|
|
24405
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
24384
24406
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
24407
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
24385
24408
|
/**
|
|
24386
24409
|
* Constructor for a new `sap.m.GenericTag`.
|
|
24387
24410
|
*
|
|
@@ -30866,7 +30889,10 @@ declare module "sap/m/Input" {
|
|
|
30866
30889
|
* - If a `selectedKey` is bound and the user types before the data is loaded, the user's input will
|
|
30867
30890
|
* be overwritten by the binding update.
|
|
30868
30891
|
*/
|
|
30869
|
-
export default class Input
|
|
30892
|
+
export default class Input
|
|
30893
|
+
extends InputBase
|
|
30894
|
+
implements /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
30895
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
30870
30896
|
/**
|
|
30871
30897
|
* Constructor for a new `Input`.
|
|
30872
30898
|
*
|
|
@@ -34229,10 +34255,15 @@ declare module "sap/m/Label" {
|
|
|
34229
34255
|
*/
|
|
34230
34256
|
export default class Label
|
|
34231
34257
|
extends Control
|
|
34232
|
-
implements
|
|
34258
|
+
implements
|
|
34259
|
+
Label1,
|
|
34260
|
+
IShrinkable,
|
|
34261
|
+
IOverflowToolbarContent,
|
|
34262
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
34233
34263
|
__implements__sap_ui_core_Label: boolean;
|
|
34234
34264
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
34235
34265
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
34266
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
34236
34267
|
/**
|
|
34237
34268
|
* Constructor for a new Label.
|
|
34238
34269
|
*
|
|
@@ -35101,10 +35132,15 @@ declare module "sap/m/Link" {
|
|
|
35101
35132
|
*/
|
|
35102
35133
|
export default class Link
|
|
35103
35134
|
extends Control
|
|
35104
|
-
implements
|
|
35135
|
+
implements
|
|
35136
|
+
IShrinkable,
|
|
35137
|
+
IFormContent,
|
|
35138
|
+
ITitleContent,
|
|
35139
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
35105
35140
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
35106
35141
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
35107
35142
|
__implements__sap_ui_core_ITitleContent: boolean;
|
|
35143
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
35108
35144
|
/**
|
|
35109
35145
|
* Constructor for a new `Link`.
|
|
35110
35146
|
*
|
|
@@ -39757,7 +39793,10 @@ declare module "sap/m/MenuButton" {
|
|
|
39757
39793
|
/**
|
|
39758
39794
|
* The `sap.m.MenuButton` control enables the user to show a hierarchical menu.
|
|
39759
39795
|
*/
|
|
39760
|
-
export default class MenuButton
|
|
39796
|
+
export default class MenuButton
|
|
39797
|
+
extends Control
|
|
39798
|
+
implements /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
39799
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
39761
39800
|
/**
|
|
39762
39801
|
* Constructor for a new MenuButton.
|
|
39763
39802
|
*
|
|
@@ -54206,6 +54245,14 @@ declare module "sap/m/ObjectStatus" {
|
|
|
54206
54245
|
* Default value is `ValueState.None`.
|
|
54207
54246
|
*/
|
|
54208
54247
|
getState(): string;
|
|
54248
|
+
/**
|
|
54249
|
+
* @SINCE 1.110
|
|
54250
|
+
*
|
|
54251
|
+
* Gets current value of property {@link #getStateAnnouncementText stateAnnouncementText}.
|
|
54252
|
+
*
|
|
54253
|
+
* Еnables overriding of the default state announcement.
|
|
54254
|
+
*/
|
|
54255
|
+
getStateAnnouncementText(): string;
|
|
54209
54256
|
/**
|
|
54210
54257
|
* Gets current value of property {@link #getText text}.
|
|
54211
54258
|
*
|
|
@@ -54334,6 +54381,21 @@ declare module "sap/m/ObjectStatus" {
|
|
|
54334
54381
|
*/
|
|
54335
54382
|
sValue: string
|
|
54336
54383
|
): this;
|
|
54384
|
+
/**
|
|
54385
|
+
* @SINCE 1.110
|
|
54386
|
+
*
|
|
54387
|
+
* Sets a new value for property {@link #getStateAnnouncementText stateAnnouncementText}.
|
|
54388
|
+
*
|
|
54389
|
+
* Еnables overriding of the default state announcement.
|
|
54390
|
+
*
|
|
54391
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
54392
|
+
*/
|
|
54393
|
+
setStateAnnouncementText(
|
|
54394
|
+
/**
|
|
54395
|
+
* New value for property `stateAnnouncementText`
|
|
54396
|
+
*/
|
|
54397
|
+
sStateAnnouncementText: string
|
|
54398
|
+
): this;
|
|
54337
54399
|
/**
|
|
54338
54400
|
* Sets a new value for property {@link #getText text}.
|
|
54339
54401
|
*
|
|
@@ -54443,6 +54505,13 @@ declare module "sap/m/ObjectStatus" {
|
|
|
54443
54505
|
| (EmptyIndicatorMode | keyof typeof EmptyIndicatorMode)
|
|
54444
54506
|
| PropertyBindingInfo;
|
|
54445
54507
|
|
|
54508
|
+
/**
|
|
54509
|
+
* @SINCE 1.110
|
|
54510
|
+
*
|
|
54511
|
+
* Еnables overriding of the default state announcement.
|
|
54512
|
+
*/
|
|
54513
|
+
stateAnnouncementText?: string | PropertyBindingInfo;
|
|
54514
|
+
|
|
54446
54515
|
/**
|
|
54447
54516
|
* Association to controls / IDs, which describe this control (see WAI-ARIA attribute aria-describedby).
|
|
54448
54517
|
*/
|
|
@@ -54669,9 +54738,13 @@ declare module "sap/m/OverflowToolbarButton" {
|
|
|
54669
54738
|
*/
|
|
54670
54739
|
export default class OverflowToolbarButton
|
|
54671
54740
|
extends Button
|
|
54672
|
-
implements
|
|
54741
|
+
implements
|
|
54742
|
+
IShellBar,
|
|
54743
|
+
IOverflowToolbarContent,
|
|
54744
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
54673
54745
|
__implements__sap_f_IShellBar: boolean;
|
|
54674
54746
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
54747
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
54675
54748
|
/**
|
|
54676
54749
|
* Constructor for a new `OverflowToolbarButton`.
|
|
54677
54750
|
*/
|
|
@@ -72884,8 +72957,13 @@ declare module "sap/m/RadioButton" {
|
|
|
72884
72957
|
* to a new group and then `button2` is added to the same group, their TAB order and position in this group
|
|
72885
72958
|
* will be `button1, button3, button2`.
|
|
72886
72959
|
*/
|
|
72887
|
-
export default class RadioButton
|
|
72960
|
+
export default class RadioButton
|
|
72961
|
+
extends Control
|
|
72962
|
+
implements
|
|
72963
|
+
IFormContent,
|
|
72964
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
72888
72965
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
72966
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
72889
72967
|
/**
|
|
72890
72968
|
* Constructor for a new RadioButton.
|
|
72891
72969
|
*
|
|
@@ -77304,9 +77382,13 @@ declare module "sap/m/SearchField" {
|
|
|
77304
77382
|
*/
|
|
77305
77383
|
export default class SearchField
|
|
77306
77384
|
extends Control
|
|
77307
|
-
implements
|
|
77385
|
+
implements
|
|
77386
|
+
IFormContent,
|
|
77387
|
+
IShellBar,
|
|
77388
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
77308
77389
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
77309
77390
|
__implements__sap_f_IShellBar: boolean;
|
|
77391
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
77310
77392
|
/**
|
|
77311
77393
|
* Constructor for a new SearchField.
|
|
77312
77394
|
*
|
|
@@ -78344,9 +78426,13 @@ declare module "sap/m/SegmentedButton" {
|
|
|
78344
78426
|
*/
|
|
78345
78427
|
export default class SegmentedButton
|
|
78346
78428
|
extends Control
|
|
78347
|
-
implements
|
|
78429
|
+
implements
|
|
78430
|
+
IFormContent,
|
|
78431
|
+
IOverflowToolbarContent,
|
|
78432
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
78348
78433
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
78349
78434
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
78435
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
78350
78436
|
/**
|
|
78351
78437
|
* Constructor for a new `SegmentedButton`.
|
|
78352
78438
|
*
|
|
@@ -79312,10 +79398,12 @@ declare module "sap/m/Select" {
|
|
|
79312
79398
|
IFormContent,
|
|
79313
79399
|
ISemanticFormContent,
|
|
79314
79400
|
IOverflowToolbarContent,
|
|
79401
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object,
|
|
79315
79402
|
IShellBar {
|
|
79316
79403
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
79317
79404
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
79318
79405
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
79406
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
79319
79407
|
__implements__sap_f_IShellBar: boolean;
|
|
79320
79408
|
/**
|
|
79321
79409
|
* Constructor for a new `sap.m.Select`.
|
|
@@ -98167,9 +98255,13 @@ declare module "sap/m/Switch" {
|
|
|
98167
98255
|
*/
|
|
98168
98256
|
export default class Switch
|
|
98169
98257
|
extends Control
|
|
98170
|
-
implements
|
|
98258
|
+
implements
|
|
98259
|
+
IFormContent,
|
|
98260
|
+
IOverflowToolbarContent,
|
|
98261
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
98171
98262
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
98172
98263
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
98264
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
98173
98265
|
/**
|
|
98174
98266
|
* Constructor for a new Switch.
|
|
98175
98267
|
*
|
|
@@ -102563,10 +102655,15 @@ declare module "sap/m/Text" {
|
|
|
102563
102655
|
*/
|
|
102564
102656
|
export default class Text
|
|
102565
102657
|
extends Control
|
|
102566
|
-
implements
|
|
102658
|
+
implements
|
|
102659
|
+
IShrinkable,
|
|
102660
|
+
IFormContent,
|
|
102661
|
+
ISemanticFormContent,
|
|
102662
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
102567
102663
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
102568
102664
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
102569
102665
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
102666
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
102570
102667
|
/**
|
|
102571
102668
|
* Constructor for a new Text.
|
|
102572
102669
|
*
|
|
@@ -105828,8 +105925,11 @@ declare module "sap/m/Title" {
|
|
|
105828
105925
|
* - If the text is inside a text block.
|
|
105829
105926
|
* - If The text is inside a form element.
|
|
105830
105927
|
*/
|
|
105831
|
-
export default class Title
|
|
105928
|
+
export default class Title
|
|
105929
|
+
extends Control
|
|
105930
|
+
implements IShrinkable, /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
105832
105931
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
105932
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
105833
105933
|
/**
|
|
105834
105934
|
* Constructor for a new Title control.
|
|
105835
105935
|
*
|
|
@@ -106287,7 +106387,10 @@ declare module "sap/m/ToggleButton" {
|
|
|
106287
106387
|
* Clicking or tapping a `ToggleButton` changes its state to `pressed`. The button returns to its initial
|
|
106288
106388
|
* state when the user clicks or taps it again.
|
|
106289
106389
|
*/
|
|
106290
|
-
export default class ToggleButton
|
|
106390
|
+
export default class ToggleButton
|
|
106391
|
+
extends Button
|
|
106392
|
+
implements /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
106393
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
106291
106394
|
/**
|
|
106292
106395
|
* Constructor for a new `ToggleButton`.
|
|
106293
106396
|
*
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.16
|
|
2
2
|
|
|
3
3
|
declare module "sap/ndc/library" {}
|
|
4
4
|
|
|
@@ -9,7 +9,7 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
9
9
|
* @SINCE 1.28.0
|
|
10
10
|
*
|
|
11
11
|
* Please refer to SAP
|
|
12
|
-
* Note 2402585 for information on
|
|
12
|
+
* Note 2402585 for information on Barcode Scanner support in native iOS and Android browsers.
|
|
13
13
|
*
|
|
14
14
|
* Here is an example of how to trigger the scan function of BarcodeScanner:
|
|
15
15
|
* ```javascript
|
|
@@ -22,30 +22,80 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
22
22
|
* );
|
|
23
23
|
* });
|
|
24
24
|
* ```
|
|
25
|
+
*
|
|
26
|
+
*
|
|
27
|
+
* The Barcode Scanner control integrates with the laser scanner when the page is loaded in the Enterprise
|
|
28
|
+
* Browser on a Zebra device. To enable laser scanning with a Zebra device, two JavaScript files (ebapi.js
|
|
29
|
+
* and eb.barcode.js) need to be loaded during runtime by the Enterprise Browser.
|
|
30
|
+
* - Your company admin / IT should configure the Barcode API settings in the Enterprise Browser config.xml
|
|
31
|
+
* file using mobile device management (MDM). Refer to CustomDOMElements
|
|
32
|
+
* for detailed information (recommended).
|
|
33
|
+
* - Developers can load these files directly into an HTML file. Refer to Enabling the API for detailed
|
|
34
|
+
* information.
|
|
25
35
|
*/
|
|
26
36
|
interface BarcodeScanner {
|
|
27
37
|
/**
|
|
28
|
-
* Closes the
|
|
38
|
+
* Closes the barcode input dialog. It can be used to close the dialog before the user presses the OK or
|
|
29
39
|
* the Cancel button (e.g. in the fnLiveUpdate callback function of the {@link sap.ndc.BarcodeScanner.scan}
|
|
30
40
|
* method.)
|
|
31
41
|
*/
|
|
32
42
|
closeScanDialog(): void;
|
|
33
43
|
/**
|
|
34
|
-
* Returns the
|
|
35
|
-
|
|
36
|
-
|
|
44
|
+
* Returns the scanner API info that will be used to scan the barcode.
|
|
45
|
+
*/
|
|
46
|
+
getScanAPIInfo(): string;
|
|
47
|
+
/**
|
|
48
|
+
* Returns the status model of the Barcode Scanner. It is a JSON model which contains below properties:
|
|
49
|
+
*
|
|
50
|
+
* ```javascript
|
|
51
|
+
*
|
|
52
|
+
* {
|
|
53
|
+
* scannerAPI: "ZXingCPP",
|
|
54
|
+
* available: true,
|
|
55
|
+
* deviceId: undefined,
|
|
56
|
+
* devices: [],
|
|
57
|
+
* apis: [
|
|
58
|
+
* {
|
|
59
|
+
* key: "ZebraEnterpriseBrowser",
|
|
60
|
+
* status: "UnAvailable"
|
|
61
|
+
* },
|
|
62
|
+
* {
|
|
63
|
+
* key: "Cordova",
|
|
64
|
+
* status: "UnAvailable"
|
|
65
|
+
* },
|
|
66
|
+
* {
|
|
67
|
+
* key: "ZXingCPP",
|
|
68
|
+
* status: "Available"
|
|
69
|
+
* },
|
|
70
|
+
* {
|
|
71
|
+
* key: "ZXing",
|
|
72
|
+
* status: "Initial"
|
|
73
|
+
* }
|
|
74
|
+
* ]
|
|
75
|
+
* }
|
|
76
|
+
* ```
|
|
77
|
+
* '`scannerAPI`' shows the current scanner API used to scan the Barcode. '`available`' indicating whether
|
|
78
|
+
* or not the Barcode Scanner feature is available. It can be used to bind to the `visible` property of
|
|
79
|
+
* UI controls which have to be hidden in case the feature is unavailable. '`deviceId`' lists the current
|
|
80
|
+
* used camera id of current device. Not working for iOS devices since do not support to get all the cameras.
|
|
81
|
+
* '`devices`' lists all the cameras of current device. Not working for iOS devices since do not support
|
|
82
|
+
* to get all the cameras. '`apis`' lists scanner APIs with status value. Status value can be: "Initial",
|
|
83
|
+
* "Loading", "Available" or "UnAvailable".
|
|
84
|
+
*
|
|
85
|
+
* IMPORTANT: This model just shows current status of Barcode Scanner. Any change to it will not impact
|
|
86
|
+
* Barcode Scanner.
|
|
37
87
|
*/
|
|
38
88
|
getStatusModel(): JSONModel;
|
|
39
89
|
/**
|
|
40
|
-
* Starts the
|
|
41
|
-
* to enter the value directly if the
|
|
90
|
+
* Starts the barcode scanning process either showing the live input from the camera or displaying a dialog
|
|
91
|
+
* to enter the value directly if the barcode scanning feature is unavailable.
|
|
42
92
|
*
|
|
43
|
-
* The
|
|
93
|
+
* The barcode scanning is done asynchronously. When it is triggered, this function returns without waiting
|
|
44
94
|
* for the scanning process to finish. The applications have to provide callback functions to react to the
|
|
45
95
|
* events of a successful scanning, an error during scanning, and the live input on the dialog.
|
|
46
96
|
*
|
|
47
97
|
* `fnSuccess` is passed an object with text, format and cancelled properties. Text is the text representation
|
|
48
|
-
* of the
|
|
98
|
+
* of the barcode data, format is the type of the barcode detected, and cancelled is whether or not the
|
|
49
99
|
* user cancelled the scan. `fnError` is given the error, `fnLiveUpdate` is passed the new value entered
|
|
50
100
|
* in the dialog's input field. An example:
|
|
51
101
|
*
|
|
@@ -55,7 +105,7 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
55
105
|
* sap.ui.require(["sap/ndc/BarcodeScanner"], function(BarcodeScanner) {
|
|
56
106
|
* BarcodeScanner.scan(
|
|
57
107
|
* function (mResult) {
|
|
58
|
-
* alert("We got a
|
|
108
|
+
* alert("We got a barcode\n" +
|
|
59
109
|
* "Result: " + mResult.text + "\n" +
|
|
60
110
|
* "Format: " + mResult.format + "\n" +
|
|
61
111
|
* "Cancelled: " + mResult.cancelled);
|
|
@@ -66,10 +116,11 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
66
116
|
* function (mParams) {
|
|
67
117
|
* alert("Value entered: " + mParams.newValue);
|
|
68
118
|
* },
|
|
69
|
-
* "Enter Product
|
|
119
|
+
* "Enter Product Barcode",
|
|
70
120
|
* true,
|
|
71
121
|
* 30,
|
|
72
|
-
* 1
|
|
122
|
+
* 1,
|
|
123
|
+
* false
|
|
73
124
|
* );
|
|
74
125
|
* });
|
|
75
126
|
* ```
|
|
@@ -88,7 +139,7 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
88
139
|
*/
|
|
89
140
|
fnLiveUpdate?: Function,
|
|
90
141
|
/**
|
|
91
|
-
* Defines the
|
|
142
|
+
* Defines the barcode input dialog title. If unset, a predefined title will be used.
|
|
92
143
|
*/
|
|
93
144
|
dialogTitle?: string,
|
|
94
145
|
/**
|
|
@@ -102,8 +153,49 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
102
153
|
/**
|
|
103
154
|
* Defines the zoom of the camera. This parameter is not supported on iOS.
|
|
104
155
|
*/
|
|
105
|
-
zoom?: float
|
|
156
|
+
zoom?: float,
|
|
157
|
+
/**
|
|
158
|
+
* Flag, which defines whether the camera should be used for scanning in Zebra Enterprise Browser.
|
|
159
|
+
*/
|
|
160
|
+
keepCameraScan?: boolean
|
|
106
161
|
): void;
|
|
162
|
+
/**
|
|
163
|
+
* Set the configs of the control Barcode Scanner.
|
|
164
|
+
*/
|
|
165
|
+
setConfig(
|
|
166
|
+
/**
|
|
167
|
+
* The options are the configs that will be used to scan. It is a object which contains below key and value:
|
|
168
|
+
* { "enableGS1Header": true, //If set to true, add the symbology identifier (GS1 specification 5.4.3.7.
|
|
169
|
+
* and 5.4.6.4.) as prefix into the result text "deviceId": "string" // The specific camera id to scan the
|
|
170
|
+
* Barcode. If set to "", Barcode Scanner will use default camera. This option is not working for iOS devices
|
|
171
|
+
* since do not support to get all the cameras. }
|
|
172
|
+
*/
|
|
173
|
+
options?: object
|
|
174
|
+
): void;
|
|
175
|
+
/**
|
|
176
|
+
* Set the callback function for the physical scan button.
|
|
177
|
+
*/
|
|
178
|
+
setPhysicalScan(
|
|
179
|
+
/**
|
|
180
|
+
* Function to be called when the scanning is done by pressing physical scan button.
|
|
181
|
+
*/
|
|
182
|
+
fnPhysicalScan?: Function
|
|
183
|
+
): void;
|
|
184
|
+
/**
|
|
185
|
+
* Set the scanner API info that will be used to scan the barcode.
|
|
186
|
+
*
|
|
187
|
+
* IMPORTANT: The status of the scanner API must be **"Available"**(for ZXingCPP and ZXing, status is **NOT
|
|
188
|
+
* "UnAvailable"**), or will return False. Scanner APIs with status value can be got by using {@link #getStatusModel}.
|
|
189
|
+
* By default, Barcode Scanner will select the scanner API(Available) with priority: ZebraEnterpriseBrowser
|
|
190
|
+
* > Cordova > ZXingCPP > ZXing.
|
|
191
|
+
*/
|
|
192
|
+
setScanAPIInfo(
|
|
193
|
+
/**
|
|
194
|
+
* Defines the scanner API to scan the barcode. Scanner API can be "ZebraEnterpriseBrowser", "Cordova",
|
|
195
|
+
* "ZXingCPP" or "ZXing".
|
|
196
|
+
*/
|
|
197
|
+
scannerAPI?: string
|
|
198
|
+
): boolean;
|
|
107
199
|
}
|
|
108
200
|
const BarcodeScanner: BarcodeScanner;
|
|
109
201
|
export default BarcodeScanner;
|
|
@@ -121,9 +213,9 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
121
213
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
122
214
|
|
|
123
215
|
/**
|
|
124
|
-
* A button control (displaying a
|
|
216
|
+
* A button control (displaying a barcode icon) to start the barcode scanning process. If the native scanning
|
|
125
217
|
* feature is not available or camera capability is not granted, the button is either hidden or it provides
|
|
126
|
-
* a fallback by opening a dialog with an input field where the
|
|
218
|
+
* a fallback by opening a dialog with an input field where the barcode can be entered manually.
|
|
127
219
|
*/
|
|
128
220
|
export default class BarcodeScannerButton extends Control {
|
|
129
221
|
/**
|
|
@@ -385,11 +477,11 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
385
477
|
*/
|
|
386
478
|
mParameters?: {
|
|
387
479
|
/**
|
|
388
|
-
* The the text representation of the
|
|
480
|
+
* The the text representation of the barcode data.
|
|
389
481
|
*/
|
|
390
482
|
text?: string;
|
|
391
483
|
/**
|
|
392
|
-
* The type of the
|
|
484
|
+
* The type of the barcode detected.
|
|
393
485
|
*/
|
|
394
486
|
format?: string;
|
|
395
487
|
/**
|
|
@@ -401,7 +493,7 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
401
493
|
/**
|
|
402
494
|
* Gets current value of property {@link #getDialogTitle dialogTitle}.
|
|
403
495
|
*
|
|
404
|
-
* Defines the
|
|
496
|
+
* Defines the barcode input dialog title. If unset, a predefined title will be used.
|
|
405
497
|
*/
|
|
406
498
|
getDialogTitle(): string;
|
|
407
499
|
/**
|
|
@@ -410,6 +502,14 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
410
502
|
* Defines the frame rate of the camera.
|
|
411
503
|
*/
|
|
412
504
|
getFrameRate(): float;
|
|
505
|
+
/**
|
|
506
|
+
* Gets current value of property {@link #getKeepCameraScan keepCameraScan}.
|
|
507
|
+
*
|
|
508
|
+
* If set to true, the camera should be used for scanning in Zebra Enterprise Browser.
|
|
509
|
+
*
|
|
510
|
+
* Default value is `false`.
|
|
511
|
+
*/
|
|
512
|
+
getKeepCameraScan(): boolean;
|
|
413
513
|
/**
|
|
414
514
|
* Gets current value of property {@link #getPreferFrontCamera preferFrontCamera}.
|
|
415
515
|
*
|
|
@@ -422,7 +522,7 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
422
522
|
* Gets current value of property {@link #getProvideFallback provideFallback}.
|
|
423
523
|
*
|
|
424
524
|
* If set to true, the button remains visible if the scanner is not available and triggers a dialog to enter
|
|
425
|
-
*
|
|
525
|
+
* barcode.
|
|
426
526
|
*
|
|
427
527
|
* Default value is `true`.
|
|
428
528
|
*/
|
|
@@ -430,7 +530,7 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
430
530
|
/**
|
|
431
531
|
* Gets current value of property {@link #getVisible visible}.
|
|
432
532
|
*
|
|
433
|
-
* The invisible
|
|
533
|
+
* The invisible barcode scanner button is not rendered regardless of the availability of the native scan
|
|
434
534
|
* feature.
|
|
435
535
|
*
|
|
436
536
|
* Default value is `true`.
|
|
@@ -451,7 +551,7 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
451
551
|
/**
|
|
452
552
|
* Sets a new value for property {@link #getDialogTitle dialogTitle}.
|
|
453
553
|
*
|
|
454
|
-
* Defines the
|
|
554
|
+
* Defines the barcode input dialog title. If unset, a predefined title will be used.
|
|
455
555
|
*
|
|
456
556
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
457
557
|
*/
|
|
@@ -474,6 +574,21 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
474
574
|
*/
|
|
475
575
|
fFrameRate: float
|
|
476
576
|
): this;
|
|
577
|
+
/**
|
|
578
|
+
* Sets a new value for property {@link #getKeepCameraScan keepCameraScan}.
|
|
579
|
+
*
|
|
580
|
+
* If set to true, the camera should be used for scanning in Zebra Enterprise Browser.
|
|
581
|
+
*
|
|
582
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
583
|
+
*
|
|
584
|
+
* Default value is `false`.
|
|
585
|
+
*/
|
|
586
|
+
setKeepCameraScan(
|
|
587
|
+
/**
|
|
588
|
+
* New value for property `keepCameraScan`
|
|
589
|
+
*/
|
|
590
|
+
bKeepCameraScan?: boolean
|
|
591
|
+
): this;
|
|
477
592
|
/**
|
|
478
593
|
* Sets a new value for property {@link #getPreferFrontCamera preferFrontCamera}.
|
|
479
594
|
*
|
|
@@ -493,7 +608,7 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
493
608
|
* Sets a new value for property {@link #getProvideFallback provideFallback}.
|
|
494
609
|
*
|
|
495
610
|
* If set to true, the button remains visible if the scanner is not available and triggers a dialog to enter
|
|
496
|
-
*
|
|
611
|
+
* barcode.
|
|
497
612
|
*
|
|
498
613
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
499
614
|
*
|
|
@@ -508,7 +623,7 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
508
623
|
/**
|
|
509
624
|
* Sets a new value for property {@link #getVisible visible}.
|
|
510
625
|
*
|
|
511
|
-
* The invisible
|
|
626
|
+
* The invisible barcode scanner button is not rendered regardless of the availability of the native scan
|
|
512
627
|
* feature.
|
|
513
628
|
*
|
|
514
629
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -552,12 +667,12 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
552
667
|
export interface $BarcodeScannerButtonSettings extends $ControlSettings {
|
|
553
668
|
/**
|
|
554
669
|
* If set to true, the button remains visible if the scanner is not available and triggers a dialog to enter
|
|
555
|
-
*
|
|
670
|
+
* barcode.
|
|
556
671
|
*/
|
|
557
672
|
provideFallback?: boolean | PropertyBindingInfo;
|
|
558
673
|
|
|
559
674
|
/**
|
|
560
|
-
* The invisible
|
|
675
|
+
* The invisible barcode scanner button is not rendered regardless of the availability of the native scan
|
|
561
676
|
* feature.
|
|
562
677
|
*/
|
|
563
678
|
visible?: boolean | PropertyBindingInfo;
|
|
@@ -568,7 +683,7 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
568
683
|
width?: CSSSize | PropertyBindingInfo;
|
|
569
684
|
|
|
570
685
|
/**
|
|
571
|
-
* Defines the
|
|
686
|
+
* Defines the barcode input dialog title. If unset, a predefined title will be used.
|
|
572
687
|
*/
|
|
573
688
|
dialogTitle?: string | PropertyBindingInfo;
|
|
574
689
|
|
|
@@ -587,6 +702,11 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
587
702
|
*/
|
|
588
703
|
zoom?: float | PropertyBindingInfo;
|
|
589
704
|
|
|
705
|
+
/**
|
|
706
|
+
* If set to true, the camera should be used for scanning in Zebra Enterprise Browser.
|
|
707
|
+
*/
|
|
708
|
+
keepCameraScan?: boolean | PropertyBindingInfo;
|
|
709
|
+
|
|
590
710
|
/**
|
|
591
711
|
* Event is fired when the scanning is finished or cancelled
|
|
592
712
|
*/
|
package/types/sap.sac.grid.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.16
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/export/library" {
|
|
4
4
|
/**
|
|
@@ -255,7 +255,7 @@ declare module "sap/ui/export/Spreadsheet" {
|
|
|
255
255
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
256
256
|
* following fields:
|
|
257
257
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
258
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.96.
|
|
258
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.96.16")
|
|
259
259
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
260
260
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
261
261
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -341,7 +341,7 @@ declare module "sap/ui/export/Spreadsheet" {
|
|
|
341
341
|
* columns: aColumns,
|
|
342
342
|
* context: {
|
|
343
343
|
* application: 'Debug Test Application',
|
|
344
|
-
* version: '1.96.
|
|
344
|
+
* version: '1.96.16',
|
|
345
345
|
* title: 'Some random title',
|
|
346
346
|
* modifiedBy: 'John Doe',
|
|
347
347
|
* metaSheetName: 'Custom metadata',
|
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.16
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -623,8 +623,11 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
623
623
|
*/
|
|
624
624
|
export default class VariantManagement
|
|
625
625
|
extends Control
|
|
626
|
-
implements
|
|
626
|
+
implements
|
|
627
|
+
IOverflowToolbarContent,
|
|
628
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
627
629
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
630
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
628
631
|
/**
|
|
629
632
|
* Constructor for a new `VariantManagement`.
|
|
630
633
|
*
|
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.16
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/support/library" {
|
|
4
4
|
/**
|
|
5
|
-
* @SINCE 1.96.
|
|
5
|
+
* @SINCE 1.96.16
|
|
6
6
|
*
|
|
7
7
|
* Defines the Audiences.
|
|
8
8
|
*/
|
|
@@ -21,7 +21,7 @@ declare module "sap/ui/support/library" {
|
|
|
21
21
|
Internal = "Internal",
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
|
-
* @SINCE 1.96.
|
|
24
|
+
* @SINCE 1.96.16
|
|
25
25
|
*
|
|
26
26
|
* Issue Categories.
|
|
27
27
|
*/
|
|
@@ -76,7 +76,7 @@ declare module "sap/ui/support/library" {
|
|
|
76
76
|
Usage = "Usage",
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
|
-
* @SINCE 1.96.
|
|
79
|
+
* @SINCE 1.96.16
|
|
80
80
|
*
|
|
81
81
|
* Analysis history formats.
|
|
82
82
|
*/
|
|
@@ -91,7 +91,7 @@ declare module "sap/ui/support/library" {
|
|
|
91
91
|
String = "String",
|
|
92
92
|
}
|
|
93
93
|
/**
|
|
94
|
-
* @SINCE 1.96.
|
|
94
|
+
* @SINCE 1.96.16
|
|
95
95
|
*
|
|
96
96
|
* Defines severity types.
|
|
97
97
|
*/
|
|
@@ -110,7 +110,7 @@ declare module "sap/ui/support/library" {
|
|
|
110
110
|
Medium = "Medium",
|
|
111
111
|
}
|
|
112
112
|
/**
|
|
113
|
-
* @SINCE 1.96.
|
|
113
|
+
* @SINCE 1.96.16
|
|
114
114
|
*
|
|
115
115
|
* Contains the available system presets.
|
|
116
116
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED