@openui5/types 1.123.1 → 1.124.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +49 -12
- package/types/sap.m.d.ts +4149 -474
- package/types/sap.tnt.d.ts +3 -2
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +17 -9
- package/types/sap.ui.core.d.ts +130 -231
- package/types/sap.ui.dt.d.ts +6 -2
- package/types/sap.ui.fl.d.ts +3 -2
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +7 -4
- package/types/sap.ui.mdc.d.ts +485 -758
- 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 +4 -3
- package/types/sap.ui.ux3.d.ts +3 -2
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +191 -12
- package/types/sap.ui.webc.main.d.ts +557 -33
- package/types/sap.uxap.d.ts +11 -6
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.124.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -2782,7 +2782,8 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
2782
2782
|
*/
|
|
2783
2783
|
export default class NumericHeader
|
|
2784
2784
|
extends BaseHeader
|
|
2785
|
-
implements cards.IHeader
|
|
2785
|
+
implements cards.IHeader
|
|
2786
|
+
{
|
|
2786
2787
|
__implements__sap_f_cards_IHeader: boolean;
|
|
2787
2788
|
/**
|
|
2788
2789
|
* Constructor for a new `NumericHeader`.
|
|
@@ -2905,6 +2906,14 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
2905
2906
|
*/
|
|
2906
2907
|
oListener?: object
|
|
2907
2908
|
): this;
|
|
2909
|
+
/**
|
|
2910
|
+
* Destroys the microChart in the aggregation {@link #getMicroChart microChart}.
|
|
2911
|
+
*
|
|
2912
|
+
* @experimental (since 1.124)
|
|
2913
|
+
*
|
|
2914
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2915
|
+
*/
|
|
2916
|
+
destroyMicroChart(): this;
|
|
2908
2917
|
/**
|
|
2909
2918
|
* Destroys all the sideIndicators in the aggregation {@link #getSideIndicators sideIndicators}.
|
|
2910
2919
|
*
|
|
@@ -3087,6 +3096,14 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3087
3096
|
* @returns Value of property `iconVisible`
|
|
3088
3097
|
*/
|
|
3089
3098
|
getIconVisible(): boolean;
|
|
3099
|
+
/**
|
|
3100
|
+
* Gets content of aggregation {@link #getMicroChart microChart}.
|
|
3101
|
+
*
|
|
3102
|
+
* Micro Chart
|
|
3103
|
+
*
|
|
3104
|
+
* @experimental (since 1.124)
|
|
3105
|
+
*/
|
|
3106
|
+
getMicroChart(): Control;
|
|
3090
3107
|
/**
|
|
3091
3108
|
* Gets current value of property {@link #getNumber number}.
|
|
3092
3109
|
*
|
|
@@ -3483,6 +3500,19 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3483
3500
|
*/
|
|
3484
3501
|
bIconVisible?: boolean
|
|
3485
3502
|
): this;
|
|
3503
|
+
/**
|
|
3504
|
+
* Sets the aggregated {@link #getMicroChart microChart}.
|
|
3505
|
+
*
|
|
3506
|
+
* @experimental (since 1.124)
|
|
3507
|
+
*
|
|
3508
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3509
|
+
*/
|
|
3510
|
+
setMicroChart(
|
|
3511
|
+
/**
|
|
3512
|
+
* The microChart to set
|
|
3513
|
+
*/
|
|
3514
|
+
oMicroChart: Control
|
|
3515
|
+
): this;
|
|
3486
3516
|
/**
|
|
3487
3517
|
* Sets a new value for property {@link #getNumber number}.
|
|
3488
3518
|
*
|
|
@@ -3914,6 +3944,13 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3914
3944
|
| AggregationBindingInfo
|
|
3915
3945
|
| `{${string}}`;
|
|
3916
3946
|
|
|
3947
|
+
/**
|
|
3948
|
+
* Micro Chart
|
|
3949
|
+
*
|
|
3950
|
+
* @experimental (since 1.124)
|
|
3951
|
+
*/
|
|
3952
|
+
microChart?: Control;
|
|
3953
|
+
|
|
3917
3954
|
/**
|
|
3918
3955
|
* Fires when the user presses the control.
|
|
3919
3956
|
*/
|
|
@@ -4252,9 +4289,7 @@ declare module "sap/f/dnd/GridDropInfo" {
|
|
|
4252
4289
|
* @returns Value of property `dropIndicatorSize`
|
|
4253
4290
|
*/
|
|
4254
4291
|
getDropIndicatorSize():
|
|
4255
|
-
| ((
|
|
4256
|
-
p1: Control
|
|
4257
|
-
) => {
|
|
4292
|
+
| ((p1: Control) => {
|
|
4258
4293
|
rows: int;
|
|
4259
4294
|
|
|
4260
4295
|
columns: int;
|
|
@@ -4283,9 +4318,7 @@ declare module "sap/f/dnd/GridDropInfo" {
|
|
|
4283
4318
|
/**
|
|
4284
4319
|
* New value for property `dropIndicatorSize`
|
|
4285
4320
|
*/
|
|
4286
|
-
fnDropIndicatorSize?: (
|
|
4287
|
-
p1: Control
|
|
4288
|
-
) => {
|
|
4321
|
+
fnDropIndicatorSize?: (p1: Control) => {
|
|
4289
4322
|
rows: int;
|
|
4290
4323
|
|
|
4291
4324
|
columns: int;
|
|
@@ -7144,7 +7177,8 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7144
7177
|
*/
|
|
7145
7178
|
export default class FlexibleColumnLayout
|
|
7146
7179
|
extends Control
|
|
7147
|
-
implements IPlaceholderSupport
|
|
7180
|
+
implements IPlaceholderSupport
|
|
7181
|
+
{
|
|
7148
7182
|
__implements__sap_ui_core_IPlaceholderSupport: boolean;
|
|
7149
7183
|
/**
|
|
7150
7184
|
* Constructor for a new `sap.f.FlexibleColumnLayout`.
|
|
@@ -10467,7 +10501,8 @@ declare module "sap/f/GridContainer" {
|
|
|
10467
10501
|
*/
|
|
10468
10502
|
export default class GridContainer
|
|
10469
10503
|
extends Control
|
|
10470
|
-
implements dnd.IGridDroppable
|
|
10504
|
+
implements dnd.IGridDroppable
|
|
10505
|
+
{
|
|
10471
10506
|
__implements__sap_f_dnd_IGridDroppable: boolean;
|
|
10472
10507
|
/**
|
|
10473
10508
|
* Constructor for a new `sap.f.GridContainer`.
|
|
@@ -12106,7 +12141,8 @@ declare module "sap/f/GridList" {
|
|
|
12106
12141
|
*/
|
|
12107
12142
|
export default class GridList
|
|
12108
12143
|
extends ListBase
|
|
12109
|
-
implements cssgrid.IGridConfigurable, dnd.IGridDroppable
|
|
12144
|
+
implements cssgrid.IGridConfigurable, dnd.IGridDroppable
|
|
12145
|
+
{
|
|
12110
12146
|
__implements__sap_ui_layout_cssgrid_IGridConfigurable: boolean;
|
|
12111
12147
|
__implements__sap_f_dnd_IGridDroppable: boolean;
|
|
12112
12148
|
/**
|
|
@@ -19455,7 +19491,8 @@ declare module "sap/f/ShellBar" {
|
|
|
19455
19491
|
*/
|
|
19456
19492
|
export default class ShellBar
|
|
19457
19493
|
extends Control
|
|
19458
|
-
implements IShellBar, IBar, IToolHeader
|
|
19494
|
+
implements IShellBar, IBar, IToolHeader
|
|
19495
|
+
{
|
|
19459
19496
|
__implements__sap_f_IShellBar: boolean;
|
|
19460
19497
|
__implements__sap_m_IBar: boolean;
|
|
19461
19498
|
__implements__sap_tnt_IToolHeader: boolean;
|