@sapui5/types 1.124.1 → 1.124.4
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 +44 -1
- package/types/sap.fe.core.d.ts +12 -2
- package/types/sap.fe.macros.d.ts +1 -1
- 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 +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +44 -7
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +174 -27
- 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 +25 -8
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +6 -5
- package/types/sap.suite.ui.generic.template.d.ts +7 -4
- 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 +97 -35
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +25 -3
- 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 +1 -1
- package/types/sap.ui.table.d.ts +6 -3
- 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.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 +14 -2
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +44 -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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.3
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -5349,6 +5349,19 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
|
5349
5349
|
getFooterRole():
|
|
5350
5350
|
| AccessibleLandmarkRole
|
|
5351
5351
|
| keyof typeof AccessibleLandmarkRole;
|
|
5352
|
+
/**
|
|
5353
|
+
* Gets current value of property {@link #getHeaderContentLabel headerContentLabel}.
|
|
5354
|
+
*
|
|
5355
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
5356
|
+
* control.
|
|
5357
|
+
*
|
|
5358
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
5359
|
+
*
|
|
5360
|
+
* @since 1.127.0
|
|
5361
|
+
*
|
|
5362
|
+
* @returns Value of property `headerContentLabel`
|
|
5363
|
+
*/
|
|
5364
|
+
getHeaderContentLabel(): string;
|
|
5352
5365
|
/**
|
|
5353
5366
|
* Gets current value of property {@link #getHeaderLabel headerLabel}.
|
|
5354
5367
|
*
|
|
@@ -5481,6 +5494,26 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
|
5481
5494
|
*/
|
|
5482
5495
|
sFooterRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
|
|
5483
5496
|
): this;
|
|
5497
|
+
/**
|
|
5498
|
+
* Sets a new value for property {@link #getHeaderContentLabel headerContentLabel}.
|
|
5499
|
+
*
|
|
5500
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
5501
|
+
* control.
|
|
5502
|
+
*
|
|
5503
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
5504
|
+
*
|
|
5505
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5506
|
+
*
|
|
5507
|
+
* @since 1.127.0
|
|
5508
|
+
*
|
|
5509
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5510
|
+
*/
|
|
5511
|
+
setHeaderContentLabel(
|
|
5512
|
+
/**
|
|
5513
|
+
* New value for property `headerContentLabel`
|
|
5514
|
+
*/
|
|
5515
|
+
sHeaderContentLabel?: string
|
|
5516
|
+
): this;
|
|
5484
5517
|
/**
|
|
5485
5518
|
* Sets a new value for property {@link #getHeaderLabel headerLabel}.
|
|
5486
5519
|
*
|
|
@@ -5636,6 +5669,16 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
|
5636
5669
|
* is set.
|
|
5637
5670
|
*/
|
|
5638
5671
|
footerLabel?: string | PropertyBindingInfo;
|
|
5672
|
+
|
|
5673
|
+
/**
|
|
5674
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
5675
|
+
* control.
|
|
5676
|
+
*
|
|
5677
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
5678
|
+
*
|
|
5679
|
+
* @since 1.127.0
|
|
5680
|
+
*/
|
|
5681
|
+
headerContentLabel?: string | PropertyBindingInfo;
|
|
5639
5682
|
}
|
|
5640
5683
|
}
|
|
5641
5684
|
|
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.3
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/core/AppComponent" {
|
|
4
4
|
import {
|
|
@@ -1039,7 +1039,17 @@ declare module "sap/fe/core/controllerextensions/Routing" {
|
|
|
1039
1039
|
/**
|
|
1040
1040
|
* Object containing the context to be navigated to
|
|
1041
1041
|
*/
|
|
1042
|
-
oContext: Context
|
|
1042
|
+
oContext: Context,
|
|
1043
|
+
/**
|
|
1044
|
+
* Object containing the parameters for the navigation
|
|
1045
|
+
*/
|
|
1046
|
+
parameters?: {
|
|
1047
|
+
/**
|
|
1048
|
+
* By default, the internal algorithm decides whether the navigation preserves the previous entry. PreserveHistory
|
|
1049
|
+
* allows you to override this behavior.
|
|
1050
|
+
*/
|
|
1051
|
+
preserveHistory: boolean;
|
|
1052
|
+
}
|
|
1043
1053
|
): void;
|
|
1044
1054
|
/**
|
|
1045
1055
|
* Navigate to another target.
|
package/types/sap.fe.macros.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.124.
|
|
1
|
+
// For Library Version: 1.124.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/gantt/library" {
|
|
4
4
|
import ChartScheme from "sap/gantt/config/ChartScheme";
|
|
@@ -44174,6 +44174,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44174
44174
|
* @returns Value of property `enableLassoInvert`
|
|
44175
44175
|
*/
|
|
44176
44176
|
getEnableLassoInvert(): boolean;
|
|
44177
|
+
/**
|
|
44178
|
+
* Gets current value of property {@link #getEnableMultipleGhosts enableMultipleGhosts}.
|
|
44179
|
+
*
|
|
44180
|
+
* Flag to enable displaying multiple ghosts when multiple shapes are selected and dragged.
|
|
44181
|
+
*
|
|
44182
|
+
* Default value is `true`.
|
|
44183
|
+
*
|
|
44184
|
+
*
|
|
44185
|
+
* @returns Value of property `enableMultipleGhosts`
|
|
44186
|
+
*/
|
|
44187
|
+
getEnableMultipleGhosts(): boolean;
|
|
44177
44188
|
/**
|
|
44178
44189
|
* Gets current value of property {@link #getEnableNonWorkingTime enableNonWorkingTime}.
|
|
44179
44190
|
*
|
|
@@ -44672,7 +44683,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44672
44683
|
* Gets current value of property {@link #getShowShapeTimeOnDrag showShapeTimeOnDrag}.
|
|
44673
44684
|
*
|
|
44674
44685
|
* Flag to show or hide the start time and end time of a shape when you drag it along the time line. The
|
|
44675
|
-
* property takes effect if only one shape is selected.
|
|
44686
|
+
* property takes effect if only one shape is selected or `enableMultipleGhosts` is set to false.
|
|
44676
44687
|
*
|
|
44677
44688
|
* Default value is `false`.
|
|
44678
44689
|
*
|
|
@@ -44683,7 +44694,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44683
44694
|
/**
|
|
44684
44695
|
* Gets current value of property {@link #getShowTextOnGhost showTextOnGhost}.
|
|
44685
44696
|
*
|
|
44686
|
-
* Option to show or hide shape labels on ghost while dragging.
|
|
44697
|
+
* Option to show or hide shape labels on ghost while dragging. The property takes effect only when `enableMultipleGhosts`
|
|
44698
|
+
* is set to true.
|
|
44687
44699
|
*
|
|
44688
44700
|
* Default value is `true`.
|
|
44689
44701
|
*
|
|
@@ -45526,6 +45538,24 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45526
45538
|
*/
|
|
45527
45539
|
bEnableLassoInvert?: boolean
|
|
45528
45540
|
): this;
|
|
45541
|
+
/**
|
|
45542
|
+
* Sets a new value for property {@link #getEnableMultipleGhosts enableMultipleGhosts}.
|
|
45543
|
+
*
|
|
45544
|
+
* Flag to enable displaying multiple ghosts when multiple shapes are selected and dragged.
|
|
45545
|
+
*
|
|
45546
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
45547
|
+
*
|
|
45548
|
+
* Default value is `true`.
|
|
45549
|
+
*
|
|
45550
|
+
*
|
|
45551
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
45552
|
+
*/
|
|
45553
|
+
setEnableMultipleGhosts(
|
|
45554
|
+
/**
|
|
45555
|
+
* New value for property `enableMultipleGhosts`
|
|
45556
|
+
*/
|
|
45557
|
+
bEnableMultipleGhosts?: boolean
|
|
45558
|
+
): this;
|
|
45529
45559
|
/**
|
|
45530
45560
|
* Sets a new value for property {@link #getEnableNonWorkingTime enableNonWorkingTime}.
|
|
45531
45561
|
*
|
|
@@ -46146,7 +46176,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46146
46176
|
* Sets a new value for property {@link #getShowShapeTimeOnDrag showShapeTimeOnDrag}.
|
|
46147
46177
|
*
|
|
46148
46178
|
* Flag to show or hide the start time and end time of a shape when you drag it along the time line. The
|
|
46149
|
-
* property takes effect if only one shape is selected.
|
|
46179
|
+
* property takes effect if only one shape is selected or `enableMultipleGhosts` is set to false.
|
|
46150
46180
|
*
|
|
46151
46181
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46152
46182
|
*
|
|
@@ -46164,7 +46194,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46164
46194
|
/**
|
|
46165
46195
|
* Sets a new value for property {@link #getShowTextOnGhost showTextOnGhost}.
|
|
46166
46196
|
*
|
|
46167
|
-
* Option to show or hide shape labels on ghost while dragging.
|
|
46197
|
+
* Option to show or hide shape labels on ghost while dragging. The property takes effect only when `enableMultipleGhosts`
|
|
46198
|
+
* is set to true.
|
|
46168
46199
|
*
|
|
46169
46200
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46170
46201
|
*
|
|
@@ -46566,7 +46597,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46566
46597
|
|
|
46567
46598
|
/**
|
|
46568
46599
|
* Flag to show or hide the start time and end time of a shape when you drag it along the time line. The
|
|
46569
|
-
* property takes effect if only one shape is selected.
|
|
46600
|
+
* property takes effect if only one shape is selected or `enableMultipleGhosts` is set to false.
|
|
46570
46601
|
*/
|
|
46571
46602
|
showShapeTimeOnDrag?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
46572
46603
|
|
|
@@ -46738,7 +46769,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46738
46769
|
selectOnlyGraphicalShape?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
46739
46770
|
|
|
46740
46771
|
/**
|
|
46741
|
-
* Option to show or hide shape labels on ghost while dragging.
|
|
46772
|
+
* Option to show or hide shape labels on ghost while dragging. The property takes effect only when `enableMultipleGhosts`
|
|
46773
|
+
* is set to true.
|
|
46742
46774
|
*
|
|
46743
46775
|
* @since 1.94
|
|
46744
46776
|
*/
|
|
@@ -46854,6 +46886,11 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46854
46886
|
*/
|
|
46855
46887
|
shapeRenderOrder?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
46856
46888
|
|
|
46889
|
+
/**
|
|
46890
|
+
* Flag to enable displaying multiple ghosts when multiple shapes are selected and dragged.
|
|
46891
|
+
*/
|
|
46892
|
+
enableMultipleGhosts?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
46893
|
+
|
|
46857
46894
|
/**
|
|
46858
46895
|
* Table of the Gantt Chart
|
|
46859
46896
|
*
|
package/types/sap.insights.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.3
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -5336,6 +5336,8 @@ declare module "sap/m/ActionTile" {
|
|
|
5336
5336
|
$GenericTileSettings,
|
|
5337
5337
|
} from "sap/m/GenericTile";
|
|
5338
5338
|
|
|
5339
|
+
import { URI, ValueState } from "sap/ui/core/library";
|
|
5340
|
+
|
|
5339
5341
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
5340
5342
|
|
|
5341
5343
|
import { Priority } from "sap/m/library";
|
|
@@ -5412,6 +5414,30 @@ declare module "sap/m/ActionTile" {
|
|
|
5412
5414
|
* @returns Metadata object describing this class
|
|
5413
5415
|
*/
|
|
5414
5416
|
static getMetadata(): ElementMetadata;
|
|
5417
|
+
/**
|
|
5418
|
+
* Gets current value of property {@link #getBadgeIcon badgeIcon}.
|
|
5419
|
+
*
|
|
5420
|
+
* Defines what type of icon is displayed as visual affordance for the icon frame badge.
|
|
5421
|
+
*
|
|
5422
|
+
* Default value is `empty string`.
|
|
5423
|
+
*
|
|
5424
|
+
* @experimental (since 1.124)
|
|
5425
|
+
*
|
|
5426
|
+
* @returns Value of property `badgeIcon`
|
|
5427
|
+
*/
|
|
5428
|
+
getBadgeIcon(): URI;
|
|
5429
|
+
/**
|
|
5430
|
+
* Gets current value of property {@link #getBadgeValueState badgeValueState}.
|
|
5431
|
+
*
|
|
5432
|
+
* Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
5433
|
+
*
|
|
5434
|
+
* Default value is `None`.
|
|
5435
|
+
*
|
|
5436
|
+
* @experimental (since 1.124)
|
|
5437
|
+
*
|
|
5438
|
+
* @returns Value of property `badgeValueState`
|
|
5439
|
+
*/
|
|
5440
|
+
getBadgeValueState(): ValueState | keyof typeof ValueState;
|
|
5415
5441
|
/**
|
|
5416
5442
|
* Gets current value of property {@link #getEnableDynamicHeight enableDynamicHeight}.
|
|
5417
5443
|
*
|
|
@@ -5458,6 +5484,30 @@ declare module "sap/m/ActionTile" {
|
|
|
5458
5484
|
* @returns Value of property `priorityText`
|
|
5459
5485
|
*/
|
|
5460
5486
|
getPriorityText(): string;
|
|
5487
|
+
/**
|
|
5488
|
+
* Sets the badgeIcon property of the ActionTile.
|
|
5489
|
+
*
|
|
5490
|
+
*
|
|
5491
|
+
* @returns The reference to the ActionTile instance.
|
|
5492
|
+
*/
|
|
5493
|
+
setBadgeIcon(
|
|
5494
|
+
/**
|
|
5495
|
+
* The URI of the icon to be displayed as a badge.
|
|
5496
|
+
*/
|
|
5497
|
+
sIcon: string
|
|
5498
|
+
): ActionTile;
|
|
5499
|
+
/**
|
|
5500
|
+
* Sets the badgeValueState property of the ActionTile.
|
|
5501
|
+
*
|
|
5502
|
+
*
|
|
5503
|
+
* @returns The reference to the ActionTile instance.
|
|
5504
|
+
*/
|
|
5505
|
+
setBadgeValueState(
|
|
5506
|
+
/**
|
|
5507
|
+
* The value state of the badge.
|
|
5508
|
+
*/
|
|
5509
|
+
sValueState: ValueState | keyof typeof ValueState
|
|
5510
|
+
): ActionTile;
|
|
5461
5511
|
/**
|
|
5462
5512
|
* Sets a new value for property {@link #getEnableDynamicHeight enableDynamicHeight}.
|
|
5463
5513
|
*
|
|
@@ -5478,24 +5528,17 @@ declare module "sap/m/ActionTile" {
|
|
|
5478
5528
|
bEnableDynamicHeight?: boolean
|
|
5479
5529
|
): this;
|
|
5480
5530
|
/**
|
|
5481
|
-
* Sets
|
|
5531
|
+
* Sets the enableIconFrame property of the ActionTile.
|
|
5482
5532
|
*
|
|
5483
|
-
* Decides whether the headerImage should have a frame or not.
|
|
5484
5533
|
*
|
|
5485
|
-
*
|
|
5486
|
-
*
|
|
5487
|
-
* Default value is `false`.
|
|
5488
|
-
*
|
|
5489
|
-
* @experimental (since 1.124)
|
|
5490
|
-
*
|
|
5491
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
5534
|
+
* @returns The reference to the ActionTile instance.
|
|
5492
5535
|
*/
|
|
5493
5536
|
setEnableIconFrame(
|
|
5494
5537
|
/**
|
|
5495
|
-
*
|
|
5538
|
+
* Determines whether the icon frame should be enabled or not.
|
|
5496
5539
|
*/
|
|
5497
|
-
|
|
5498
|
-
):
|
|
5540
|
+
bValue: boolean
|
|
5541
|
+
): ActionTile;
|
|
5499
5542
|
/**
|
|
5500
5543
|
* Sets a new value for property {@link #getPriority priority}.
|
|
5501
5544
|
*
|
|
@@ -5569,6 +5612,23 @@ declare module "sap/m/ActionTile" {
|
|
|
5569
5612
|
* @experimental (since 1.124)
|
|
5570
5613
|
*/
|
|
5571
5614
|
priorityText?: string | PropertyBindingInfo;
|
|
5615
|
+
|
|
5616
|
+
/**
|
|
5617
|
+
* Defines what type of icon is displayed as visual affordance for the icon frame badge.
|
|
5618
|
+
*
|
|
5619
|
+
* @experimental (since 1.124)
|
|
5620
|
+
*/
|
|
5621
|
+
badgeIcon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
5622
|
+
|
|
5623
|
+
/**
|
|
5624
|
+
* Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
5625
|
+
*
|
|
5626
|
+
* @experimental (since 1.124)
|
|
5627
|
+
*/
|
|
5628
|
+
badgeValueState?:
|
|
5629
|
+
| (ValueState | keyof typeof ValueState)
|
|
5630
|
+
| PropertyBindingInfo
|
|
5631
|
+
| `{${string}}`;
|
|
5572
5632
|
}
|
|
5573
5633
|
}
|
|
5574
5634
|
|
|
@@ -8911,7 +8971,6 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
8911
8971
|
* Determines the text of current/last element in the Breadcrumbs path.
|
|
8912
8972
|
*
|
|
8913
8973
|
* @since 1.34
|
|
8914
|
-
* @deprecated (since 1.123) - Use the **currentLocation** aggregation instead.
|
|
8915
8974
|
*
|
|
8916
8975
|
* @returns Value of property `currentLocationText`
|
|
8917
8976
|
*/
|
|
@@ -9038,7 +9097,6 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
9038
9097
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9039
9098
|
*
|
|
9040
9099
|
* @since 1.34
|
|
9041
|
-
* @deprecated (since 1.123) - Use the **currentLocation** aggregation instead.
|
|
9042
9100
|
*
|
|
9043
9101
|
* @returns Reference to `this` in order to allow method chaining
|
|
9044
9102
|
*/
|
|
@@ -9069,7 +9127,6 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
9069
9127
|
* Determines the text of current/last element in the Breadcrumbs path.
|
|
9070
9128
|
*
|
|
9071
9129
|
* @since 1.34
|
|
9072
|
-
* @deprecated (since 1.123) - Use the **currentLocation** aggregation instead.
|
|
9073
9130
|
*/
|
|
9074
9131
|
currentLocationText?: string | PropertyBindingInfo;
|
|
9075
9132
|
|
|
@@ -46563,8 +46620,9 @@ declare module "sap/m/Label" {
|
|
|
46563
46620
|
/**
|
|
46564
46621
|
* Gets current value of property {@link #getWrapping wrapping}.
|
|
46565
46622
|
*
|
|
46566
|
-
* Determines the wrapping of the text within the `Label`.
|
|
46567
|
-
*
|
|
46623
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
46624
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
46625
|
+
* wrap.
|
|
46568
46626
|
*
|
|
46569
46627
|
* Default value is `false`.
|
|
46570
46628
|
*
|
|
@@ -46774,8 +46832,9 @@ declare module "sap/m/Label" {
|
|
|
46774
46832
|
/**
|
|
46775
46833
|
* Sets a new value for property {@link #getWrapping wrapping}.
|
|
46776
46834
|
*
|
|
46777
|
-
* Determines the wrapping of the text within the `Label`.
|
|
46778
|
-
*
|
|
46835
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
46836
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
46837
|
+
* wrap.
|
|
46779
46838
|
*
|
|
46780
46839
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46781
46840
|
*
|
|
@@ -46868,8 +46927,9 @@ declare module "sap/m/Label" {
|
|
|
46868
46927
|
displayOnly?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
46869
46928
|
|
|
46870
46929
|
/**
|
|
46871
|
-
* Determines the wrapping of the text within the `Label`.
|
|
46872
|
-
*
|
|
46930
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
46931
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
46932
|
+
* wrap.
|
|
46873
46933
|
*
|
|
46874
46934
|
* @since 1.50
|
|
46875
46935
|
*/
|
|
@@ -72379,7 +72439,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
|
|
|
72379
72439
|
*
|
|
72380
72440
|
* Default value is `true`.
|
|
72381
72441
|
*
|
|
72382
|
-
* @deprecated (since 1.32
|
|
72442
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
72383
72443
|
*
|
|
72384
72444
|
* @returns Value of property `moveToOverflow`
|
|
72385
72445
|
*/
|
|
@@ -72461,7 +72521,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
|
|
|
72461
72521
|
*
|
|
72462
72522
|
* Default value is `true`.
|
|
72463
72523
|
*
|
|
72464
|
-
* @deprecated (since 1.32
|
|
72524
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
72465
72525
|
*
|
|
72466
72526
|
* @returns Reference to `this` in order to allow method chaining
|
|
72467
72527
|
*/
|
|
@@ -72519,7 +72579,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
|
|
|
72519
72579
|
/**
|
|
72520
72580
|
* The OverflowToolbar item can or cannot move to the overflow area
|
|
72521
72581
|
*
|
|
72522
|
-
* @deprecated (since 1.32
|
|
72582
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
72523
72583
|
*/
|
|
72524
72584
|
moveToOverflow?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
72525
72585
|
|
|
@@ -100546,6 +100606,8 @@ declare module "sap/m/RadioButton" {
|
|
|
100546
100606
|
|
|
100547
100607
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
100548
100608
|
|
|
100609
|
+
import { WrappingType } from "sap/m/library";
|
|
100610
|
+
|
|
100549
100611
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
100550
100612
|
|
|
100551
100613
|
import Event from "sap/ui/base/Event";
|
|
@@ -100919,6 +100981,32 @@ declare module "sap/m/RadioButton" {
|
|
|
100919
100981
|
* @returns Value of property `width`
|
|
100920
100982
|
*/
|
|
100921
100983
|
getWidth(): CSSSize;
|
|
100984
|
+
/**
|
|
100985
|
+
* Gets current value of property {@link #getWrapping wrapping}.
|
|
100986
|
+
*
|
|
100987
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
100988
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
100989
|
+
* will wrap.
|
|
100990
|
+
*
|
|
100991
|
+
* Default value is `false`.
|
|
100992
|
+
*
|
|
100993
|
+
* @since 1.126
|
|
100994
|
+
*
|
|
100995
|
+
* @returns Value of property `wrapping`
|
|
100996
|
+
*/
|
|
100997
|
+
getWrapping(): boolean;
|
|
100998
|
+
/**
|
|
100999
|
+
* Gets current value of property {@link #getWrappingType wrappingType}.
|
|
101000
|
+
*
|
|
101001
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
101002
|
+
*
|
|
101003
|
+
* Default value is `Normal`.
|
|
101004
|
+
*
|
|
101005
|
+
* @since 1.126
|
|
101006
|
+
*
|
|
101007
|
+
* @returns Value of property `wrappingType`
|
|
101008
|
+
*/
|
|
101009
|
+
getWrappingType(): WrappingType | keyof typeof WrappingType;
|
|
100922
101010
|
/**
|
|
100923
101011
|
* Pseudo event for pseudo 'select' event... space, enter, ... without modifiers (Ctrl, Alt or Shift)
|
|
100924
101012
|
*/
|
|
@@ -101171,6 +101259,46 @@ declare module "sap/m/RadioButton" {
|
|
|
101171
101259
|
*/
|
|
101172
101260
|
sWidth?: CSSSize
|
|
101173
101261
|
): this;
|
|
101262
|
+
/**
|
|
101263
|
+
* Sets a new value for property {@link #getWrapping wrapping}.
|
|
101264
|
+
*
|
|
101265
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
101266
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
101267
|
+
* will wrap.
|
|
101268
|
+
*
|
|
101269
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
101270
|
+
*
|
|
101271
|
+
* Default value is `false`.
|
|
101272
|
+
*
|
|
101273
|
+
* @since 1.126
|
|
101274
|
+
*
|
|
101275
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
101276
|
+
*/
|
|
101277
|
+
setWrapping(
|
|
101278
|
+
/**
|
|
101279
|
+
* New value for property `wrapping`
|
|
101280
|
+
*/
|
|
101281
|
+
bWrapping?: boolean
|
|
101282
|
+
): this;
|
|
101283
|
+
/**
|
|
101284
|
+
* Sets a new value for property {@link #getWrappingType wrappingType}.
|
|
101285
|
+
*
|
|
101286
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
101287
|
+
*
|
|
101288
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
101289
|
+
*
|
|
101290
|
+
* Default value is `Normal`.
|
|
101291
|
+
*
|
|
101292
|
+
* @since 1.126
|
|
101293
|
+
*
|
|
101294
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
101295
|
+
*/
|
|
101296
|
+
setWrappingType(
|
|
101297
|
+
/**
|
|
101298
|
+
* New value for property `wrappingType`
|
|
101299
|
+
*/
|
|
101300
|
+
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
101301
|
+
): this;
|
|
101174
101302
|
}
|
|
101175
101303
|
/**
|
|
101176
101304
|
* Describes the settings that can be provided to the RadioButton constructor.
|
|
@@ -101261,6 +101389,25 @@ declare module "sap/m/RadioButton" {
|
|
|
101261
101389
|
| PropertyBindingInfo
|
|
101262
101390
|
| `{${string}}`;
|
|
101263
101391
|
|
|
101392
|
+
/**
|
|
101393
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
101394
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
101395
|
+
* will wrap.
|
|
101396
|
+
*
|
|
101397
|
+
* @since 1.126
|
|
101398
|
+
*/
|
|
101399
|
+
wrapping?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
101400
|
+
|
|
101401
|
+
/**
|
|
101402
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
101403
|
+
*
|
|
101404
|
+
* @since 1.126
|
|
101405
|
+
*/
|
|
101406
|
+
wrappingType?:
|
|
101407
|
+
| (WrappingType | keyof typeof WrappingType)
|
|
101408
|
+
| PropertyBindingInfo
|
|
101409
|
+
| `{${string}}`;
|
|
101410
|
+
|
|
101264
101411
|
/**
|
|
101265
101412
|
* Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
|
|
101266
101413
|
*/
|
|
@@ -157672,7 +157819,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
157672
157819
|
* Required for receiving a `readyState` is to set the property `sendXHR` to true. This property is not
|
|
157673
157820
|
* supported by Internet Explorer 9.
|
|
157674
157821
|
*/
|
|
157675
|
-
readyState?:
|
|
157822
|
+
readyState?: int;
|
|
157676
157823
|
|
|
157677
157824
|
/**
|
|
157678
157825
|
* Status of the XHR request.
|
|
@@ -157680,7 +157827,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
157680
157827
|
* Required for receiving a `status` is to set the property `sendXHR` to true. This property is not supported
|
|
157681
157828
|
* by Internet Explorer 9.
|
|
157682
157829
|
*/
|
|
157683
|
-
status?:
|
|
157830
|
+
status?: int;
|
|
157684
157831
|
|
|
157685
157832
|
/**
|
|
157686
157833
|
* Http-Response which comes from the server.
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED