@sapui5/ts-types-esm 1.136.2 → 1.138.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +2 -1
- package/types/sap.apf.d.ts +30 -3
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +315 -65
- package/types/sap.esh.search.ui.d.ts +71 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.ariba.d.ts +3 -0
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +50 -8
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +192 -66
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +4 -3
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +1261 -566
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +34 -1
- package/types/sap.suite.ui.commons.d.ts +4 -2
- 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 +103 -16
- 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 +67 -9
- package/types/sap.ui.core.d.ts +62 -49
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +221 -167
- package/types/sap.ui.fl.d.ts +3 -7
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +44 -24
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/{mdc-1.136.0-esm-d.ts → sap.ui.mdc.d.ts} +599 -297
- package/types/sap.ui.richtexteditor.d.ts +21 -17
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +9 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +75 -30
- package/types/sap.ui.vk.d.ts +364 -102
- package/types/sap.ui.vtm.d.ts +3 -2
- 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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +58 -31
- 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.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.138.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/richtexteditor/library" {
|
|
4
4
|
/**
|
|
@@ -9,13 +9,17 @@ declare module "sap/ui/richtexteditor/library" {
|
|
|
9
9
|
*/
|
|
10
10
|
export enum EditorType {
|
|
11
11
|
/**
|
|
12
|
-
* Uses latest recommended TinyMCE version Current one is TinyMCE
|
|
12
|
+
* Uses latest recommended TinyMCE version Current one is TinyMCE 7
|
|
13
13
|
*/
|
|
14
14
|
TinyMCE = "TinyMCE",
|
|
15
15
|
/**
|
|
16
16
|
* Uses TinyMCE version 6 as editor
|
|
17
17
|
*/
|
|
18
18
|
TinyMCE6 = "TinyMCE6",
|
|
19
|
+
/**
|
|
20
|
+
* Uses TinyMCE version 7 as editor
|
|
21
|
+
*/
|
|
22
|
+
TinyMCE7 = "TinyMCE7",
|
|
19
23
|
}
|
|
20
24
|
/**
|
|
21
25
|
* Interface for controls which are suitable as a Toolbar for RichTextEditor.
|
|
@@ -665,9 +669,9 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
665
669
|
* Gets current value of property {@link #getCustomToolbar customToolbar}.
|
|
666
670
|
*
|
|
667
671
|
* Determines whether a Fiori Toolbar is used instead of the TinyMCE default toolbar one. It is applied
|
|
668
|
-
* only when the EditorType is TinyMCE5 or
|
|
669
|
-
* property will have effect only on initial loading. Changing it during runtime will not
|
|
670
|
-
* loaded toolbar.
|
|
672
|
+
* only when the EditorType is TinyMCE5, TinyMCE6 or TinyMCE7 and sap.m library is loaded. **Note:** The
|
|
673
|
+
* `customToolbar` property will have effect only on initial loading. Changing it during runtime will not
|
|
674
|
+
* affect the initially loaded toolbar.
|
|
671
675
|
*
|
|
672
676
|
* Default value is `false`.
|
|
673
677
|
*
|
|
@@ -694,7 +698,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
694
698
|
* Relative or absolute URL where the editor is available. Must be on the same server. **Note:** Any attempts
|
|
695
699
|
* to set this property after the first rendering will not have any effect.
|
|
696
700
|
*
|
|
697
|
-
* Default value is `'js/
|
|
701
|
+
* Default value is `'js/tiny_mce7/tinymce.js'`.
|
|
698
702
|
*
|
|
699
703
|
* @deprecated As of version 1.25.0. The editorLocation is set implicitly when choosing the editorType.
|
|
700
704
|
*
|
|
@@ -711,7 +715,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
711
715
|
*
|
|
712
716
|
* **Notes:**
|
|
713
717
|
* - TinyMCE version 3 and 4 are no longer supported and cannot be used. If you set the property to TinyMCE,
|
|
714
|
-
* it will load TinyMCE version
|
|
718
|
+
* it will load TinyMCE version 7.
|
|
715
719
|
* - Any attempts to set this property after the first rendering will not have any effect.
|
|
716
720
|
* - The default value of the property will always resolve to the recommended version by UI5. Due to the
|
|
717
721
|
* different support cycles, we will be constantly getting newer TinyMCE versions and update the default
|
|
@@ -720,7 +724,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
720
724
|
* update.
|
|
721
725
|
* - Have in mind when choosing a specific TinyMCE version that there might be differences in the support
|
|
722
726
|
* rules compared to UI5, therefore we might be forced to remove any TinyMCE version.
|
|
723
|
-
* - TinyMCE 5 will be removed in future releases.
|
|
727
|
+
* - TinyMCE 5 and TinyMCE 6 will be removed in future releases.
|
|
724
728
|
*
|
|
725
729
|
* Default value is `'TinyMCE'`.
|
|
726
730
|
*
|
|
@@ -1095,9 +1099,9 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1095
1099
|
* Sets a new value for property {@link #getCustomToolbar customToolbar}.
|
|
1096
1100
|
*
|
|
1097
1101
|
* Determines whether a Fiori Toolbar is used instead of the TinyMCE default toolbar one. It is applied
|
|
1098
|
-
* only when the EditorType is TinyMCE5 or
|
|
1099
|
-
* property will have effect only on initial loading. Changing it during runtime will not
|
|
1100
|
-
* loaded toolbar.
|
|
1102
|
+
* only when the EditorType is TinyMCE5, TinyMCE6 or TinyMCE7 and sap.m library is loaded. **Note:** The
|
|
1103
|
+
* `customToolbar` property will have effect only on initial loading. Changing it during runtime will not
|
|
1104
|
+
* affect the initially loaded toolbar.
|
|
1101
1105
|
*
|
|
1102
1106
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1103
1107
|
*
|
|
@@ -1140,7 +1144,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1140
1144
|
*
|
|
1141
1145
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1142
1146
|
*
|
|
1143
|
-
* Default value is `'js/
|
|
1147
|
+
* Default value is `'js/tiny_mce7/tinymce.js'`.
|
|
1144
1148
|
*
|
|
1145
1149
|
* @deprecated As of version 1.25.0. The editorLocation is set implicitly when choosing the editorType.
|
|
1146
1150
|
*
|
|
@@ -1570,7 +1574,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1570
1574
|
*
|
|
1571
1575
|
* **Notes:**
|
|
1572
1576
|
* - TinyMCE version 3 and 4 are no longer supported and cannot be used. If you set the property to TinyMCE,
|
|
1573
|
-
* it will load TinyMCE version
|
|
1577
|
+
* it will load TinyMCE version 7.
|
|
1574
1578
|
* - Any attempts to set this property after the first rendering will not have any effect.
|
|
1575
1579
|
* - The default value of the property will always resolve to the recommended version by UI5. Due to the
|
|
1576
1580
|
* different support cycles, we will be constantly getting newer TinyMCE versions and update the default
|
|
@@ -1579,7 +1583,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1579
1583
|
* update.
|
|
1580
1584
|
* - Have in mind when choosing a specific TinyMCE version that there might be differences in the support
|
|
1581
1585
|
* rules compared to UI5, therefore we might be forced to remove any TinyMCE version.
|
|
1582
|
-
* - TinyMCE 5 will be removed in future releases.
|
|
1586
|
+
* - TinyMCE 5 and TinyMCE 6 will be removed in future releases.
|
|
1583
1587
|
*/
|
|
1584
1588
|
editorType?: string | PropertyBindingInfo;
|
|
1585
1589
|
|
|
@@ -1715,9 +1719,9 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1715
1719
|
|
|
1716
1720
|
/**
|
|
1717
1721
|
* Determines whether a Fiori Toolbar is used instead of the TinyMCE default toolbar one. It is applied
|
|
1718
|
-
* only when the EditorType is TinyMCE5 or
|
|
1719
|
-
* property will have effect only on initial loading. Changing it during runtime will not
|
|
1720
|
-
* loaded toolbar.
|
|
1722
|
+
* only when the EditorType is TinyMCE5, TinyMCE6 or TinyMCE7 and sap.m library is loaded. **Note:** The
|
|
1723
|
+
* `customToolbar` property will have effect only on initial loading. Changing it during runtime will not
|
|
1724
|
+
* affect the initially loaded toolbar.
|
|
1721
1725
|
*
|
|
1722
1726
|
* @since 1.48
|
|
1723
1727
|
*/
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.138.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -18904,6 +18904,10 @@ declare module "sap/ui/unified/MenuItem" {
|
|
|
18904
18904
|
* Defines the content that is displayed at the end of a menu item. This aggregation allows for the addition
|
|
18905
18905
|
* of custom elements, such as icons and buttons.
|
|
18906
18906
|
*
|
|
18907
|
+
* **Note:** Application developers are responsible for ensuring that interactive `endContent` controls
|
|
18908
|
+
* have the correct accessibility behaviour, including their enabled or disabled states. The Menu
|
|
18909
|
+
* does not manage these aspects when the menu item state changes.
|
|
18910
|
+
*
|
|
18907
18911
|
* @since 1.131
|
|
18908
18912
|
*/
|
|
18909
18913
|
getEndContent(): Control[];
|
|
@@ -19136,6 +19140,10 @@ declare module "sap/ui/unified/MenuItem" {
|
|
|
19136
19140
|
* Defines the content that is displayed at the end of a menu item. This aggregation allows for the addition
|
|
19137
19141
|
* of custom elements, such as icons and buttons.
|
|
19138
19142
|
*
|
|
19143
|
+
* **Note:** Application developers are responsible for ensuring that interactive `endContent` controls
|
|
19144
|
+
* have the correct accessibility behaviour, including their enabled or disabled states. The Menu
|
|
19145
|
+
* does not manage these aspects when the menu item state changes.
|
|
19146
|
+
*
|
|
19139
19147
|
* @since 1.131
|
|
19140
19148
|
*/
|
|
19141
19149
|
endContent?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.138.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/vbm/library" {
|
|
4
4
|
/**
|
|
@@ -5389,21 +5389,39 @@ declare module "sap/ui/vbm/ContainerContent" {
|
|
|
5389
5389
|
}
|
|
5390
5390
|
|
|
5391
5391
|
declare module "sap/ui/vbm/ContainerLegendItem" {
|
|
5392
|
+
import {
|
|
5393
|
+
default as StandardListItem,
|
|
5394
|
+
$StandardListItemSettings,
|
|
5395
|
+
} from "sap/m/StandardListItem";
|
|
5396
|
+
|
|
5392
5397
|
import { CSSColor } from "sap/ui/core/library";
|
|
5393
5398
|
|
|
5394
|
-
import
|
|
5399
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
5395
5400
|
|
|
5396
5401
|
import { SemanticType } from "sap/ui/vbm/library";
|
|
5397
5402
|
|
|
5403
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
5404
|
+
|
|
5398
5405
|
/**
|
|
5399
5406
|
* Legend item control
|
|
5400
5407
|
*
|
|
5401
5408
|
* @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
|
|
5402
5409
|
* versions.
|
|
5403
5410
|
*/
|
|
5404
|
-
export default class ContainerLegendItem
|
|
5405
|
-
|
|
5406
|
-
|
|
5411
|
+
export default class ContainerLegendItem extends StandardListItem {
|
|
5412
|
+
/**
|
|
5413
|
+
* Constructor for a new ContainerLegendItem.
|
|
5414
|
+
*
|
|
5415
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
5416
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
5417
|
+
* of the syntax of the settings object.
|
|
5418
|
+
*/
|
|
5419
|
+
constructor(
|
|
5420
|
+
/**
|
|
5421
|
+
* initial settings for the new control
|
|
5422
|
+
*/
|
|
5423
|
+
mSettings?: $ContainerLegendItemSettings
|
|
5424
|
+
);
|
|
5407
5425
|
/**
|
|
5408
5426
|
* Constructor for a new ContainerLegendItem.
|
|
5409
5427
|
*
|
|
@@ -5419,7 +5437,7 @@ declare module "sap/ui/vbm/ContainerLegendItem" {
|
|
|
5419
5437
|
/**
|
|
5420
5438
|
* initial settings for the new control
|
|
5421
5439
|
*/
|
|
5422
|
-
mSettings?:
|
|
5440
|
+
mSettings?: $ContainerLegendItemSettings
|
|
5423
5441
|
);
|
|
5424
5442
|
|
|
5425
5443
|
/**
|
|
@@ -5452,7 +5470,7 @@ declare module "sap/ui/vbm/ContainerLegendItem" {
|
|
|
5452
5470
|
*
|
|
5453
5471
|
* @returns Metadata object describing this class
|
|
5454
5472
|
*/
|
|
5455
|
-
static getMetadata():
|
|
5473
|
+
static getMetadata(): ElementMetadata;
|
|
5456
5474
|
/**
|
|
5457
5475
|
* Gets current value of property {@link #getColor color}.
|
|
5458
5476
|
*
|
|
@@ -5504,6 +5522,27 @@ declare module "sap/ui/vbm/ContainerLegendItem" {
|
|
|
5504
5522
|
sSemanticSpotType?: SemanticType | keyof typeof SemanticType
|
|
5505
5523
|
): this;
|
|
5506
5524
|
}
|
|
5525
|
+
/**
|
|
5526
|
+
* Describes the settings that can be provided to the ContainerLegendItem constructor.
|
|
5527
|
+
*
|
|
5528
|
+
* @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
|
|
5529
|
+
* versions.
|
|
5530
|
+
*/
|
|
5531
|
+
export interface $ContainerLegendItemSettings
|
|
5532
|
+
extends $StandardListItemSettings {
|
|
5533
|
+
/**
|
|
5534
|
+
* show color square
|
|
5535
|
+
*/
|
|
5536
|
+
color?: CSSColor | PropertyBindingInfo | `{${string}}`;
|
|
5537
|
+
|
|
5538
|
+
/**
|
|
5539
|
+
* The semantic spot type for the legend marker.
|
|
5540
|
+
*/
|
|
5541
|
+
semanticSpotType?:
|
|
5542
|
+
| (SemanticType | keyof typeof SemanticType)
|
|
5543
|
+
| PropertyBindingInfo
|
|
5544
|
+
| `{${string}}`;
|
|
5545
|
+
}
|
|
5507
5546
|
}
|
|
5508
5547
|
|
|
5509
5548
|
declare module "sap/ui/vbm/Containers" {
|
|
@@ -11254,12 +11293,16 @@ declare module "sap/ui/vbm/LegendItem" {
|
|
|
11254
11293
|
declare module "sap/ui/vbm/ListPanel" {
|
|
11255
11294
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
11256
11295
|
|
|
11296
|
+
import ListItemBase from "sap/m/ListItemBase";
|
|
11297
|
+
|
|
11257
11298
|
import Event from "sap/ui/base/Event";
|
|
11258
11299
|
|
|
11259
11300
|
import { URI } from "sap/ui/core/library";
|
|
11260
11301
|
|
|
11261
11302
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
11262
11303
|
|
|
11304
|
+
import { ListMode } from "sap/m/library";
|
|
11305
|
+
|
|
11263
11306
|
import {
|
|
11264
11307
|
PropertyBindingInfo,
|
|
11265
11308
|
AggregationBindingInfo,
|
|
@@ -11344,7 +11387,7 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11344
11387
|
/**
|
|
11345
11388
|
* The item to add; if empty, nothing is inserted
|
|
11346
11389
|
*/
|
|
11347
|
-
oItem:
|
|
11390
|
+
oItem: ListItemBase
|
|
11348
11391
|
): this;
|
|
11349
11392
|
/**
|
|
11350
11393
|
* Attaches event handler `fnFunction` to the {@link #event:expand expand} event of this `sap.ui.vbm.ListPanel`.
|
|
@@ -11716,7 +11759,7 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11716
11759
|
*
|
|
11717
11760
|
* Item aggregation
|
|
11718
11761
|
*/
|
|
11719
|
-
getItems():
|
|
11762
|
+
getItems(): ListItemBase[];
|
|
11720
11763
|
/**
|
|
11721
11764
|
* Returns selected list item. When no item is selected, "null" is returned. When "multi-selection" is enabled
|
|
11722
11765
|
* and multiple items are selected, only the up-most selected item is returned.
|
|
@@ -11724,14 +11767,14 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11724
11767
|
*
|
|
11725
11768
|
* @returns Selected item.
|
|
11726
11769
|
*/
|
|
11727
|
-
getSelectedItem():
|
|
11770
|
+
getSelectedItem(): ListItemBase;
|
|
11728
11771
|
/**
|
|
11729
11772
|
* Returns an array containing the selected list items. If no items are selected, an empty array is returned.
|
|
11730
11773
|
*
|
|
11731
11774
|
*
|
|
11732
11775
|
* @returns Selected items
|
|
11733
11776
|
*/
|
|
11734
|
-
getSelectedItems():
|
|
11777
|
+
getSelectedItems(): ListItemBase[];
|
|
11735
11778
|
/**
|
|
11736
11779
|
* Gets current value of property {@link #getSelectionMode selectionMode}.
|
|
11737
11780
|
*
|
|
@@ -11742,7 +11785,7 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11742
11785
|
*
|
|
11743
11786
|
* @returns Value of property `selectionMode`
|
|
11744
11787
|
*/
|
|
11745
|
-
getSelectionMode():
|
|
11788
|
+
getSelectionMode(): ListMode;
|
|
11746
11789
|
/**
|
|
11747
11790
|
* Checks for the provided `sap.m.ListItemBase` in the aggregation {@link #getItems items}. and returns
|
|
11748
11791
|
* its index if found or -1 otherwise.
|
|
@@ -11754,7 +11797,7 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11754
11797
|
/**
|
|
11755
11798
|
* The item whose index is looked for
|
|
11756
11799
|
*/
|
|
11757
|
-
oItem:
|
|
11800
|
+
oItem: ListItemBase
|
|
11758
11801
|
): int;
|
|
11759
11802
|
/**
|
|
11760
11803
|
* Inserts a item into the aggregation {@link #getItems items}.
|
|
@@ -11766,7 +11809,7 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11766
11809
|
/**
|
|
11767
11810
|
* The item to insert; if empty, nothing is inserted
|
|
11768
11811
|
*/
|
|
11769
|
-
oItem:
|
|
11812
|
+
oItem: ListItemBase,
|
|
11770
11813
|
/**
|
|
11771
11814
|
* The `0`-based index the item should be inserted at; for a negative value of `iIndex`, the item is inserted
|
|
11772
11815
|
* at position 0; for a value greater than the current size of the aggregation, the item is inserted at
|
|
@@ -11782,7 +11825,7 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11782
11825
|
*
|
|
11783
11826
|
* @returns An array of the removed elements (might be empty)
|
|
11784
11827
|
*/
|
|
11785
|
-
removeAllItems():
|
|
11828
|
+
removeAllItems(): ListItemBase[];
|
|
11786
11829
|
/**
|
|
11787
11830
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
11788
11831
|
*
|
|
@@ -11793,8 +11836,8 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11793
11836
|
/**
|
|
11794
11837
|
* The item to remove or its index or id
|
|
11795
11838
|
*/
|
|
11796
|
-
vItem: int | string |
|
|
11797
|
-
):
|
|
11839
|
+
vItem: int | string | ListItemBase
|
|
11840
|
+
): ListItemBase | null;
|
|
11798
11841
|
/**
|
|
11799
11842
|
* Sets a new value for property {@link #getExpandAnimation expandAnimation}.
|
|
11800
11843
|
*
|
|
@@ -11870,7 +11913,7 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11870
11913
|
/**
|
|
11871
11914
|
* The list item whose selection to be changed. This parameter is mandatory.
|
|
11872
11915
|
*/
|
|
11873
|
-
oListItem:
|
|
11916
|
+
oListItem: ListItemBase,
|
|
11874
11917
|
/**
|
|
11875
11918
|
* Sets selected status of the list item. Default value is true.
|
|
11876
11919
|
*/
|
|
@@ -11896,7 +11939,7 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11896
11939
|
/**
|
|
11897
11940
|
* New value for property `selectionMode`
|
|
11898
11941
|
*/
|
|
11899
|
-
sSelectionMode?:
|
|
11942
|
+
sSelectionMode?: ListMode | keyof typeof ListMode
|
|
11900
11943
|
): this;
|
|
11901
11944
|
}
|
|
11902
11945
|
/**
|
|
@@ -11929,17 +11972,17 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11929
11972
|
/**
|
|
11930
11973
|
* Selection Mode
|
|
11931
11974
|
*/
|
|
11932
|
-
selectionMode?:
|
|
11933
|
-
|
|
|
11975
|
+
selectionMode?:
|
|
11976
|
+
| (ListMode | keyof typeof ListMode)
|
|
11934
11977
|
| PropertyBindingInfo
|
|
11935
11978
|
| `{${string}}`;
|
|
11936
11979
|
|
|
11937
11980
|
/**
|
|
11938
11981
|
* Item aggregation
|
|
11939
11982
|
*/
|
|
11940
|
-
items?:
|
|
11941
|
-
|
|
|
11942
|
-
|
|
|
11983
|
+
items?:
|
|
11984
|
+
| ListItemBase[]
|
|
11985
|
+
| ListItemBase
|
|
11943
11986
|
| AggregationBindingInfo
|
|
11944
11987
|
| `{${string}}`;
|
|
11945
11988
|
|
|
@@ -11997,7 +12040,7 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
11997
12040
|
/**
|
|
11998
12041
|
* The item which fired the pressed event.
|
|
11999
12042
|
*/
|
|
12000
|
-
listItem?:
|
|
12043
|
+
listItem?: ListItemBase;
|
|
12001
12044
|
|
|
12002
12045
|
/**
|
|
12003
12046
|
* The control which caused the press event within the container.
|
|
@@ -12021,12 +12064,12 @@ declare module "sap/ui/vbm/ListPanel" {
|
|
|
12021
12064
|
* The item whose selection has changed. In `MultiSelect` mode, only the up-most selected item is returned.
|
|
12022
12065
|
* This parameter can be used for single-selection modes.
|
|
12023
12066
|
*/
|
|
12024
|
-
listItem?:
|
|
12067
|
+
listItem?: ListItemBase;
|
|
12025
12068
|
|
|
12026
12069
|
/**
|
|
12027
12070
|
* Array of items whose selection has changed. This parameter can be used for `MultiSelect` mode.
|
|
12028
12071
|
*/
|
|
12029
|
-
listItems?:
|
|
12072
|
+
listItems?: ListItemBase[];
|
|
12030
12073
|
|
|
12031
12074
|
/**
|
|
12032
12075
|
* Indicates whether the `listItem` parameter is selected or not.
|
|
@@ -12355,6 +12398,8 @@ declare module "sap/ui/vbm/MapContainer" {
|
|
|
12355
12398
|
$ContainerBaseSettings,
|
|
12356
12399
|
} from "sap/ui/vbm/ContainerBase";
|
|
12357
12400
|
|
|
12401
|
+
import ListPanelStack from "sap/ui/vbm/ListPanelStack";
|
|
12402
|
+
|
|
12358
12403
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
12359
12404
|
|
|
12360
12405
|
import { URI } from "sap/ui/core/library";
|
|
@@ -12439,7 +12484,7 @@ declare module "sap/ui/vbm/MapContainer" {
|
|
|
12439
12484
|
*
|
|
12440
12485
|
* List Panel aggregation
|
|
12441
12486
|
*/
|
|
12442
|
-
getListPanelStack():
|
|
12487
|
+
getListPanelStack(): ListPanelStack;
|
|
12443
12488
|
/**
|
|
12444
12489
|
* Gets current value of property {@link #getShowHome showHome}.
|
|
12445
12490
|
*
|
|
@@ -12505,7 +12550,7 @@ declare module "sap/ui/vbm/MapContainer" {
|
|
|
12505
12550
|
/**
|
|
12506
12551
|
* The listPanelStack to set
|
|
12507
12552
|
*/
|
|
12508
|
-
oListPanelStack:
|
|
12553
|
+
oListPanelStack: ListPanelStack
|
|
12509
12554
|
): this;
|
|
12510
12555
|
/**
|
|
12511
12556
|
* Sets a new value for property {@link #getShowHome showHome}.
|
|
@@ -12694,7 +12739,7 @@ declare module "sap/ui/vbm/MapContainer" {
|
|
|
12694
12739
|
/**
|
|
12695
12740
|
* List Panel aggregation
|
|
12696
12741
|
*/
|
|
12697
|
-
listPanelStack?:
|
|
12742
|
+
listPanelStack?: ListPanelStack;
|
|
12698
12743
|
}
|
|
12699
12744
|
}
|
|
12700
12745
|
|