@openui5/types 1.120.11 → 1.120.13
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 +372 -54
- package/types/sap.m.d.ts +3123 -276
- package/types/sap.tnt.d.ts +40 -8
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +756 -90
- package/types/sap.ui.core.d.ts +1112 -135
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +44 -3
- package/types/sap.ui.integration.d.ts +144 -6
- package/types/sap.ui.layout.d.ts +166 -41
- package/types/sap.ui.mdc.d.ts +430 -38
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +222 -19
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -35
- package/types/sap.ui.ux3.d.ts +524 -31
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uxap.d.ts +118 -18
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -3028,7 +3028,9 @@ declare module "sap/ui/mdc/ActionToolbar" {
|
|
|
3028
3028
|
bUseAsHeader?: boolean
|
|
3029
3029
|
): this;
|
|
3030
3030
|
}
|
|
3031
|
-
|
|
3031
|
+
/**
|
|
3032
|
+
* Describes the settings that can be provided to the ActionToolbar constructor.
|
|
3033
|
+
*/
|
|
3032
3034
|
export interface $ActionToolbarSettings extends $OverflowToolbarSettings {
|
|
3033
3035
|
/**
|
|
3034
3036
|
* Determines whether the toolbar is used as header (e.g. for a table).
|
|
@@ -3199,7 +3201,9 @@ declare module "sap/ui/mdc/actiontoolbar/ActionToolbarAction" {
|
|
|
3199
3201
|
oLayoutInformation?: object
|
|
3200
3202
|
): this;
|
|
3201
3203
|
}
|
|
3202
|
-
|
|
3204
|
+
/**
|
|
3205
|
+
* Describes the settings that can be provided to the ActionToolbarAction constructor.
|
|
3206
|
+
*/
|
|
3203
3207
|
export interface $ActionToolbarActionSettings extends $ControlSettings {
|
|
3204
3208
|
/**
|
|
3205
3209
|
* Contains the information where the action is displayed on the `ActionToolbar`.
|
|
@@ -4124,6 +4128,11 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4124
4128
|
textProperty?: string;
|
|
4125
4129
|
};
|
|
4126
4130
|
|
|
4131
|
+
/**
|
|
4132
|
+
* Describes the settings that can be provided to the Chart constructor.
|
|
4133
|
+
*
|
|
4134
|
+
* @experimental (since 1.88)
|
|
4135
|
+
*/
|
|
4127
4136
|
export interface $ChartSettings extends $ControlSettings {
|
|
4128
4137
|
/**
|
|
4129
4138
|
* Defines the width of the chart.
|
|
@@ -4330,6 +4339,9 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4330
4339
|
) => void;
|
|
4331
4340
|
}
|
|
4332
4341
|
|
|
4342
|
+
/**
|
|
4343
|
+
* Parameters of the Chart#selectionDetailsActionPressed event.
|
|
4344
|
+
*/
|
|
4333
4345
|
export interface Chart$SelectionDetailsActionPressedEventParameters {
|
|
4334
4346
|
/**
|
|
4335
4347
|
* The action that has to be processed once the action has been pressed
|
|
@@ -4352,6 +4364,9 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4352
4364
|
| keyof typeof SelectionDetailsActionLevel;
|
|
4353
4365
|
}
|
|
4354
4366
|
|
|
4367
|
+
/**
|
|
4368
|
+
* Event object of the Chart#selectionDetailsActionPressed event.
|
|
4369
|
+
*/
|
|
4355
4370
|
export type Chart$SelectionDetailsActionPressedEvent = Event<
|
|
4356
4371
|
Chart$SelectionDetailsActionPressedEventParameters,
|
|
4357
4372
|
Chart
|
|
@@ -4481,7 +4496,9 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
|
4481
4496
|
*/
|
|
4482
4497
|
getShowNoDataStruct(): boolean;
|
|
4483
4498
|
}
|
|
4484
|
-
|
|
4499
|
+
/**
|
|
4500
|
+
* Describes the settings that can be provided to the ChartImplementationContainer constructor.
|
|
4501
|
+
*/
|
|
4485
4502
|
export interface $ChartImplementationContainerSettings
|
|
4486
4503
|
extends $ControlSettings {
|
|
4487
4504
|
/**
|
|
@@ -4593,7 +4610,9 @@ declare module "sap/ui/mdc/chart/ChartSelectionDetails" {
|
|
|
4593
4610
|
*/
|
|
4594
4611
|
static getMetadata(): ElementMetadata;
|
|
4595
4612
|
}
|
|
4596
|
-
|
|
4613
|
+
/**
|
|
4614
|
+
* Describes the settings that can be provided to the ChartSelectionDetails constructor.
|
|
4615
|
+
*/
|
|
4597
4616
|
export interface $ChartSelectionDetailsSettings
|
|
4598
4617
|
extends $SelectionDetailsSettings {}
|
|
4599
4618
|
}
|
|
@@ -4820,7 +4839,9 @@ declare module "sap/ui/mdc/chart/Item" {
|
|
|
4820
4839
|
sType?: string
|
|
4821
4840
|
): this;
|
|
4822
4841
|
}
|
|
4823
|
-
|
|
4842
|
+
/**
|
|
4843
|
+
* Describes the settings that can be provided to the Item constructor.
|
|
4844
|
+
*/
|
|
4824
4845
|
export interface $ItemSettings extends $ElementSettings {
|
|
4825
4846
|
/**
|
|
4826
4847
|
* The unique identifier of the chart item that reflects the name of the data property in the resulting
|
|
@@ -5168,7 +5189,9 @@ declare module "sap/ui/mdc/chart/SelectionDetailsActions" {
|
|
|
5168
5189
|
vDetailsItemAction: int | string | Item
|
|
5169
5190
|
): Item | null;
|
|
5170
5191
|
}
|
|
5171
|
-
|
|
5192
|
+
/**
|
|
5193
|
+
* Describes the settings that can be provided to the SelectionDetailsActions constructor.
|
|
5194
|
+
*/
|
|
5172
5195
|
export interface $SelectionDetailsActionsSettings extends $ElementSettings {
|
|
5173
5196
|
/**
|
|
5174
5197
|
* Action `item` shown in the Items area of the details popover.
|
|
@@ -6037,7 +6060,11 @@ declare module "sap/ui/mdc/Control" {
|
|
|
6037
6060
|
*/
|
|
6038
6061
|
isPropertyHelperFinal(): boolean;
|
|
6039
6062
|
}
|
|
6040
|
-
|
|
6063
|
+
/**
|
|
6064
|
+
* Describes the settings that can be provided to the Control constructor.
|
|
6065
|
+
*
|
|
6066
|
+
* @experimental (since 1.61)
|
|
6067
|
+
*/
|
|
6041
6068
|
export interface $ControlSettings extends $ControlSettings1 {
|
|
6042
6069
|
/**
|
|
6043
6070
|
* Path to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
@@ -6251,7 +6278,11 @@ declare module "sap/ui/mdc/Element" {
|
|
|
6251
6278
|
*/
|
|
6252
6279
|
isPropertyHelperFinal(): boolean;
|
|
6253
6280
|
}
|
|
6254
|
-
|
|
6281
|
+
/**
|
|
6282
|
+
* Describes the settings that can be provided to the Element constructor.
|
|
6283
|
+
*
|
|
6284
|
+
* @experimental (since 1.74)
|
|
6285
|
+
*/
|
|
6255
6286
|
export interface $ElementSettings extends $ElementSettings1 {
|
|
6256
6287
|
/**
|
|
6257
6288
|
* Path to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
@@ -7774,7 +7805,11 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7774
7805
|
*/
|
|
7775
7806
|
unbindValue(): this;
|
|
7776
7807
|
}
|
|
7777
|
-
|
|
7808
|
+
/**
|
|
7809
|
+
* Describes the settings that can be provided to the Field constructor.
|
|
7810
|
+
*
|
|
7811
|
+
* @experimental (since 1.54.0)
|
|
7812
|
+
*/
|
|
7778
7813
|
export interface $FieldSettings extends $FieldBaseSettings {
|
|
7779
7814
|
/**
|
|
7780
7815
|
* The value of the field.
|
|
@@ -7799,6 +7834,9 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7799
7834
|
change?: (oEvent: Field$ChangeEvent) => void;
|
|
7800
7835
|
}
|
|
7801
7836
|
|
|
7837
|
+
/**
|
|
7838
|
+
* Parameters of the Field#change event.
|
|
7839
|
+
*/
|
|
7802
7840
|
export interface Field$ChangeEventParameters {
|
|
7803
7841
|
/**
|
|
7804
7842
|
* The new value of the `Field`.
|
|
@@ -7823,6 +7861,9 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7823
7861
|
promise?: Promise<any>;
|
|
7824
7862
|
}
|
|
7825
7863
|
|
|
7864
|
+
/**
|
|
7865
|
+
* Event object of the Field#change event.
|
|
7866
|
+
*/
|
|
7826
7867
|
export type Field$ChangeEvent = Event<Field$ChangeEventParameters, Field>;
|
|
7827
7868
|
}
|
|
7828
7869
|
|
|
@@ -9992,7 +10033,9 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
9992
10033
|
*/
|
|
9993
10034
|
updateInternalContent(): void;
|
|
9994
10035
|
}
|
|
9995
|
-
|
|
10036
|
+
/**
|
|
10037
|
+
* Describes the settings that can be provided to the FieldBase constructor.
|
|
10038
|
+
*/
|
|
9996
10039
|
export interface $FieldBaseSettings extends $ControlSettings {
|
|
9997
10040
|
/**
|
|
9998
10041
|
* The type of data handled by the field. This type is used to parse, format, and validate the value.
|
|
@@ -10288,6 +10331,9 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10288
10331
|
submit?: (oEvent: FieldBase$SubmitEvent) => void;
|
|
10289
10332
|
}
|
|
10290
10333
|
|
|
10334
|
+
/**
|
|
10335
|
+
* Parameters of the FieldBase#liveChange event.
|
|
10336
|
+
*/
|
|
10291
10337
|
export interface FieldBase$LiveChangeEventParameters {
|
|
10292
10338
|
/**
|
|
10293
10339
|
* The new value of the input
|
|
@@ -10305,18 +10351,30 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10305
10351
|
previousValue?: string;
|
|
10306
10352
|
}
|
|
10307
10353
|
|
|
10354
|
+
/**
|
|
10355
|
+
* Event object of the FieldBase#liveChange event.
|
|
10356
|
+
*/
|
|
10308
10357
|
export type FieldBase$LiveChangeEvent = Event<
|
|
10309
10358
|
FieldBase$LiveChangeEventParameters,
|
|
10310
10359
|
FieldBase
|
|
10311
10360
|
>;
|
|
10312
10361
|
|
|
10362
|
+
/**
|
|
10363
|
+
* Parameters of the FieldBase#press event.
|
|
10364
|
+
*/
|
|
10313
10365
|
export interface FieldBase$PressEventParameters {}
|
|
10314
10366
|
|
|
10367
|
+
/**
|
|
10368
|
+
* Event object of the FieldBase#press event.
|
|
10369
|
+
*/
|
|
10315
10370
|
export type FieldBase$PressEvent = Event<
|
|
10316
10371
|
FieldBase$PressEventParameters,
|
|
10317
10372
|
FieldBase
|
|
10318
10373
|
>;
|
|
10319
10374
|
|
|
10375
|
+
/**
|
|
10376
|
+
* Parameters of the FieldBase#submit event.
|
|
10377
|
+
*/
|
|
10320
10378
|
export interface FieldBase$SubmitEventParameters {
|
|
10321
10379
|
/**
|
|
10322
10380
|
* Returns a `Promise` for the change. The `Promise` returns the value if it is resolved. If the last `change`
|
|
@@ -10326,6 +10384,9 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10326
10384
|
promise?: Promise<any>;
|
|
10327
10385
|
}
|
|
10328
10386
|
|
|
10387
|
+
/**
|
|
10388
|
+
* Event object of the FieldBase#submit event.
|
|
10389
|
+
*/
|
|
10329
10390
|
export type FieldBase$SubmitEvent = Event<
|
|
10330
10391
|
FieldBase$SubmitEventParameters,
|
|
10331
10392
|
FieldBase
|
|
@@ -10638,7 +10699,9 @@ declare module "sap/ui/mdc/field/FieldInfoBase" {
|
|
|
10638
10699
|
oControl: Control
|
|
10639
10700
|
): Promise<any>;
|
|
10640
10701
|
}
|
|
10641
|
-
|
|
10702
|
+
/**
|
|
10703
|
+
* Describes the settings that can be provided to the FieldInfoBase constructor.
|
|
10704
|
+
*/
|
|
10642
10705
|
export interface $FieldInfoBaseSettings extends $ElementSettings {
|
|
10643
10706
|
/**
|
|
10644
10707
|
* This event is fired if the data was updated.
|
|
@@ -10651,15 +10714,27 @@ declare module "sap/ui/mdc/field/FieldInfoBase" {
|
|
|
10651
10714
|
popoverAfterOpen?: (oEvent: Event) => void;
|
|
10652
10715
|
}
|
|
10653
10716
|
|
|
10717
|
+
/**
|
|
10718
|
+
* Parameters of the FieldInfoBase#dataUpdate event.
|
|
10719
|
+
*/
|
|
10654
10720
|
export interface FieldInfoBase$DataUpdateEventParameters {}
|
|
10655
10721
|
|
|
10722
|
+
/**
|
|
10723
|
+
* Event object of the FieldInfoBase#dataUpdate event.
|
|
10724
|
+
*/
|
|
10656
10725
|
export type FieldInfoBase$DataUpdateEvent = Event<
|
|
10657
10726
|
FieldInfoBase$DataUpdateEventParameters,
|
|
10658
10727
|
FieldInfoBase
|
|
10659
10728
|
>;
|
|
10660
10729
|
|
|
10730
|
+
/**
|
|
10731
|
+
* Parameters of the FieldInfoBase#popoverAfterOpen event.
|
|
10732
|
+
*/
|
|
10661
10733
|
export interface FieldInfoBase$PopoverAfterOpenEventParameters {}
|
|
10662
10734
|
|
|
10735
|
+
/**
|
|
10736
|
+
* Event object of the FieldInfoBase#popoverAfterOpen event.
|
|
10737
|
+
*/
|
|
10663
10738
|
export type FieldInfoBase$PopoverAfterOpenEvent = Event<
|
|
10664
10739
|
FieldInfoBase$PopoverAfterOpenEventParameters,
|
|
10665
10740
|
FieldInfoBase
|
|
@@ -10831,7 +10906,9 @@ declare module "sap/ui/mdc/field/MultiValueFieldItem" {
|
|
|
10831
10906
|
oKey: any
|
|
10832
10907
|
): this;
|
|
10833
10908
|
}
|
|
10834
|
-
|
|
10909
|
+
/**
|
|
10910
|
+
* Describes the settings that can be provided to the MultiValueFieldItem constructor.
|
|
10911
|
+
*/
|
|
10835
10912
|
export interface $MultiValueFieldItemSettings extends $ElementSettings {
|
|
10836
10913
|
/**
|
|
10837
10914
|
* Key of the item.
|
|
@@ -11108,6 +11185,11 @@ declare module "sap/ui/mdc/FilterBar" {
|
|
|
11108
11185
|
maxConditions?: int;
|
|
11109
11186
|
};
|
|
11110
11187
|
|
|
11188
|
+
/**
|
|
11189
|
+
* Describes the settings that can be provided to the FilterBar constructor.
|
|
11190
|
+
*
|
|
11191
|
+
* @experimental (since 1.61.0)
|
|
11192
|
+
*/
|
|
11111
11193
|
export interface $FilterBarSettings extends $FilterBarBaseSettings {
|
|
11112
11194
|
/**
|
|
11113
11195
|
* Determines whether the Adapt Filters button is visible in the `FilterBar`.
|
|
@@ -11727,7 +11809,9 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
11727
11809
|
bSuppressSearch: boolean
|
|
11728
11810
|
): Promise<any>;
|
|
11729
11811
|
}
|
|
11730
|
-
|
|
11812
|
+
/**
|
|
11813
|
+
* Describes the settings that can be provided to the FilterBarBase constructor.
|
|
11814
|
+
*/
|
|
11731
11815
|
export interface $FilterBarBaseSettings extends $ControlSettings {
|
|
11732
11816
|
/**
|
|
11733
11817
|
* Defines the path to the metadata retrieval class for the `FilterBarBase` control. It basically identifies
|
|
@@ -11832,6 +11916,9 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
11832
11916
|
filtersChanged?: (oEvent: FilterBarBase$FiltersChangedEvent) => void;
|
|
11833
11917
|
}
|
|
11834
11918
|
|
|
11919
|
+
/**
|
|
11920
|
+
* Parameters of the FilterBarBase#filtersChanged event.
|
|
11921
|
+
*/
|
|
11835
11922
|
export interface FilterBarBase$FiltersChangedEventParameters {
|
|
11836
11923
|
/**
|
|
11837
11924
|
* Indicates if the event is based on condition changes
|
|
@@ -11849,11 +11936,17 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
11849
11936
|
filtersTextExpanded?: string;
|
|
11850
11937
|
}
|
|
11851
11938
|
|
|
11939
|
+
/**
|
|
11940
|
+
* Event object of the FilterBarBase#filtersChanged event.
|
|
11941
|
+
*/
|
|
11852
11942
|
export type FilterBarBase$FiltersChangedEvent = Event<
|
|
11853
11943
|
FilterBarBase$FiltersChangedEventParameters,
|
|
11854
11944
|
FilterBarBase
|
|
11855
11945
|
>;
|
|
11856
11946
|
|
|
11947
|
+
/**
|
|
11948
|
+
* Parameters of the FilterBarBase#search event.
|
|
11949
|
+
*/
|
|
11857
11950
|
export interface FilterBarBase$SearchEventParameters {
|
|
11858
11951
|
/**
|
|
11859
11952
|
* Indicates the initial reason for the search. This can either be:
|
|
@@ -11867,6 +11960,9 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
11867
11960
|
reason?: /* was: sap.ui.mdc.enums.ReasonMode */ any;
|
|
11868
11961
|
}
|
|
11869
11962
|
|
|
11963
|
+
/**
|
|
11964
|
+
* Event object of the FilterBarBase#search event.
|
|
11965
|
+
*/
|
|
11870
11966
|
export type FilterBarBase$SearchEvent = Event<
|
|
11871
11967
|
FilterBarBase$SearchEventParameters,
|
|
11872
11968
|
FilterBarBase
|
|
@@ -12156,7 +12252,9 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
12156
12252
|
iFilterFieldThreshold?: int
|
|
12157
12253
|
): this;
|
|
12158
12254
|
}
|
|
12159
|
-
|
|
12255
|
+
/**
|
|
12256
|
+
* Describes the settings that can be provided to the FilterBar constructor.
|
|
12257
|
+
*/
|
|
12160
12258
|
export interface $FilterBarSettings extends $FilterBarBaseSettings {
|
|
12161
12259
|
/**
|
|
12162
12260
|
* Path to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
@@ -12570,7 +12668,11 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
12570
12668
|
sPropertyKey?: string
|
|
12571
12669
|
): this;
|
|
12572
12670
|
}
|
|
12573
|
-
|
|
12671
|
+
/**
|
|
12672
|
+
* Describes the settings that can be provided to the FilterField constructor.
|
|
12673
|
+
*
|
|
12674
|
+
* @experimental (since 1.48.0)
|
|
12675
|
+
*/
|
|
12574
12676
|
export interface $FilterFieldSettings extends $FieldBaseSettings {
|
|
12575
12677
|
/**
|
|
12576
12678
|
* Supported operator names for conditions.
|
|
@@ -12618,6 +12720,9 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
12618
12720
|
change?: (oEvent: FilterField$ChangeEvent) => void;
|
|
12619
12721
|
}
|
|
12620
12722
|
|
|
12723
|
+
/**
|
|
12724
|
+
* Parameters of the FilterField#change event.
|
|
12725
|
+
*/
|
|
12621
12726
|
export interface FilterField$ChangeEventParameters {
|
|
12622
12727
|
/**
|
|
12623
12728
|
* The new value of the `control`
|
|
@@ -12647,6 +12752,9 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
12647
12752
|
promise?: boolean;
|
|
12648
12753
|
}
|
|
12649
12754
|
|
|
12755
|
+
/**
|
|
12756
|
+
* Event object of the FilterField#change event.
|
|
12757
|
+
*/
|
|
12650
12758
|
export type FilterField$ChangeEvent = Event<
|
|
12651
12759
|
FilterField$ChangeEventParameters,
|
|
12652
12760
|
FilterField
|
|
@@ -12937,6 +13045,11 @@ declare module "sap/ui/mdc/Link" {
|
|
|
12937
13045
|
runtimeType: Promise<LinkType>;
|
|
12938
13046
|
};
|
|
12939
13047
|
|
|
13048
|
+
/**
|
|
13049
|
+
* Describes the settings that can be provided to the Link constructor.
|
|
13050
|
+
*
|
|
13051
|
+
* @experimental (since 1.74.0)
|
|
13052
|
+
*/
|
|
12940
13053
|
export interface $LinkSettings extends $FieldInfoBaseSettings {
|
|
12941
13054
|
/**
|
|
12942
13055
|
* Enables/disables the personalization settings for users and key users.
|
|
@@ -13250,7 +13363,9 @@ declare module "sap/ui/mdc/link/LinkItem" {
|
|
|
13250
13363
|
sText: string
|
|
13251
13364
|
): this;
|
|
13252
13365
|
}
|
|
13253
|
-
|
|
13366
|
+
/**
|
|
13367
|
+
* Describes the settings that can be provided to the LinkItem constructor.
|
|
13368
|
+
*/
|
|
13254
13369
|
export interface $LinkItemSettings extends $ElementSettings {
|
|
13255
13370
|
/**
|
|
13256
13371
|
* Unique key of the `LinkItem` that is used for personalization.
|
|
@@ -13803,7 +13918,11 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13803
13918
|
*/
|
|
13804
13919
|
unbindItems(): this;
|
|
13805
13920
|
}
|
|
13806
|
-
|
|
13921
|
+
/**
|
|
13922
|
+
* Describes the settings that can be provided to the MultiValueField constructor.
|
|
13923
|
+
*
|
|
13924
|
+
* @experimental (since 1.93.0)
|
|
13925
|
+
*/
|
|
13807
13926
|
export interface $MultiValueFieldSettings extends $FieldBaseSettings {
|
|
13808
13927
|
/**
|
|
13809
13928
|
* Path to the `MultiValueFieldDelegate` module that provides the required APIs to execute model-specific
|
|
@@ -13834,6 +13953,9 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13834
13953
|
change?: (oEvent: MultiValueField$ChangeEvent) => void;
|
|
13835
13954
|
}
|
|
13836
13955
|
|
|
13956
|
+
/**
|
|
13957
|
+
* Parameters of the MultiValueField#change event.
|
|
13958
|
+
*/
|
|
13837
13959
|
export interface MultiValueField$ChangeEventParameters {
|
|
13838
13960
|
/**
|
|
13839
13961
|
* The new items of the `MultiValueField` control.
|
|
@@ -13859,6 +13981,9 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13859
13981
|
promise?: Promise<any>;
|
|
13860
13982
|
}
|
|
13861
13983
|
|
|
13984
|
+
/**
|
|
13985
|
+
* Event object of the MultiValueField#change event.
|
|
13986
|
+
*/
|
|
13862
13987
|
export type MultiValueField$ChangeEvent = Event<
|
|
13863
13988
|
MultiValueField$ChangeEventParameters,
|
|
13864
13989
|
MultiValueField
|
|
@@ -15661,6 +15786,11 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15661
15786
|
propertyInfos?: string[];
|
|
15662
15787
|
};
|
|
15663
15788
|
|
|
15789
|
+
/**
|
|
15790
|
+
* Describes the settings that can be provided to the Table constructor.
|
|
15791
|
+
*
|
|
15792
|
+
* @experimental (since 1.58.0)
|
|
15793
|
+
*/
|
|
15664
15794
|
export interface $TableSettings extends $ControlSettings {
|
|
15665
15795
|
/**
|
|
15666
15796
|
* Width of the table.
|
|
@@ -16054,6 +16184,9 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16054
16184
|
beforeOpenContextMenu?: (oEvent: Table$BeforeOpenContextMenuEvent) => void;
|
|
16055
16185
|
}
|
|
16056
16186
|
|
|
16187
|
+
/**
|
|
16188
|
+
* Parameters of the Table#beforeExport event.
|
|
16189
|
+
*/
|
|
16057
16190
|
export interface Table$BeforeExportEventParameters {
|
|
16058
16191
|
/**
|
|
16059
16192
|
* Contains `workbook.columns, dataSource`, and other export-related information.
|
|
@@ -16074,11 +16207,17 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16074
16207
|
filterSettings?: object[];
|
|
16075
16208
|
}
|
|
16076
16209
|
|
|
16210
|
+
/**
|
|
16211
|
+
* Event object of the Table#beforeExport event.
|
|
16212
|
+
*/
|
|
16077
16213
|
export type Table$BeforeExportEvent = Event<
|
|
16078
16214
|
Table$BeforeExportEventParameters,
|
|
16079
16215
|
Table
|
|
16080
16216
|
>;
|
|
16081
16217
|
|
|
16218
|
+
/**
|
|
16219
|
+
* Parameters of the Table#beforeOpenContextMenu event.
|
|
16220
|
+
*/
|
|
16082
16221
|
export interface Table$BeforeOpenContextMenuEventParameters {
|
|
16083
16222
|
/**
|
|
16084
16223
|
* The binding context
|
|
@@ -16092,11 +16231,17 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16092
16231
|
column?: Column;
|
|
16093
16232
|
}
|
|
16094
16233
|
|
|
16234
|
+
/**
|
|
16235
|
+
* Event object of the Table#beforeOpenContextMenu event.
|
|
16236
|
+
*/
|
|
16095
16237
|
export type Table$BeforeOpenContextMenuEvent = Event<
|
|
16096
16238
|
Table$BeforeOpenContextMenuEventParameters,
|
|
16097
16239
|
Table
|
|
16098
16240
|
>;
|
|
16099
16241
|
|
|
16242
|
+
/**
|
|
16243
|
+
* Parameters of the Table#paste event.
|
|
16244
|
+
*/
|
|
16100
16245
|
export interface Table$PasteEventParameters {
|
|
16101
16246
|
/**
|
|
16102
16247
|
* 2D array of strings with data from the clipboard. The first dimension represents the rows, and the second
|
|
@@ -16105,8 +16250,14 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16105
16250
|
data?: string[][];
|
|
16106
16251
|
}
|
|
16107
16252
|
|
|
16253
|
+
/**
|
|
16254
|
+
* Event object of the Table#paste event.
|
|
16255
|
+
*/
|
|
16108
16256
|
export type Table$PasteEvent = Event<Table$PasteEventParameters, Table>;
|
|
16109
16257
|
|
|
16258
|
+
/**
|
|
16259
|
+
* Parameters of the Table#rowPress event.
|
|
16260
|
+
*/
|
|
16110
16261
|
export interface Table$RowPressEventParameters {
|
|
16111
16262
|
/**
|
|
16112
16263
|
* The binding context
|
|
@@ -16114,8 +16265,14 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16114
16265
|
bindingContext?: Context;
|
|
16115
16266
|
}
|
|
16116
16267
|
|
|
16268
|
+
/**
|
|
16269
|
+
* Event object of the Table#rowPress event.
|
|
16270
|
+
*/
|
|
16117
16271
|
export type Table$RowPressEvent = Event<Table$RowPressEventParameters, Table>;
|
|
16118
16272
|
|
|
16273
|
+
/**
|
|
16274
|
+
* Parameters of the Table#selectionChange event.
|
|
16275
|
+
*/
|
|
16119
16276
|
export interface Table$SelectionChangeEventParameters {
|
|
16120
16277
|
/**
|
|
16121
16278
|
* Identifies whether the Select All checkbox was pressed
|
|
@@ -16123,6 +16280,9 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16123
16280
|
selectAll?: boolean;
|
|
16124
16281
|
}
|
|
16125
16282
|
|
|
16283
|
+
/**
|
|
16284
|
+
* Event object of the Table#selectionChange event.
|
|
16285
|
+
*/
|
|
16126
16286
|
export type Table$SelectionChangeEvent = Event<
|
|
16127
16287
|
Table$SelectionChangeEventParameters,
|
|
16128
16288
|
Table
|
|
@@ -16704,7 +16864,9 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
16704
16864
|
sWidth?: CSSSize
|
|
16705
16865
|
): this;
|
|
16706
16866
|
}
|
|
16707
|
-
|
|
16867
|
+
/**
|
|
16868
|
+
* Describes the settings that can be provided to the Column constructor.
|
|
16869
|
+
*/
|
|
16708
16870
|
export interface $ColumnSettings extends $ControlSettings {
|
|
16709
16871
|
/**
|
|
16710
16872
|
* Defines the width of the column.
|
|
@@ -16894,7 +17056,9 @@ declare module "sap/ui/mdc/table/ColumnSettings" {
|
|
|
16894
17056
|
*/
|
|
16895
17057
|
static getMetadata(): ElementMetadata;
|
|
16896
17058
|
}
|
|
16897
|
-
|
|
17059
|
+
/**
|
|
17060
|
+
* Describes the settings that can be provided to the ColumnSettings constructor.
|
|
17061
|
+
*/
|
|
16898
17062
|
export interface $ColumnSettingsSettings extends $ElementSettings {}
|
|
16899
17063
|
}
|
|
16900
17064
|
|
|
@@ -17516,6 +17680,9 @@ declare module "sap/ui/mdc/table/DragDropConfig" {
|
|
|
17516
17680
|
|
|
17517
17681
|
export type DragSource = Context | UI5Element;
|
|
17518
17682
|
|
|
17683
|
+
/**
|
|
17684
|
+
* Describes the settings that can be provided to the DragDropConfig constructor.
|
|
17685
|
+
*/
|
|
17519
17686
|
export interface $DragDropConfigSettings extends $DragDropBaseSettings {
|
|
17520
17687
|
/**
|
|
17521
17688
|
* Determines whether the rows of the table are draggable.
|
|
@@ -17577,6 +17744,9 @@ declare module "sap/ui/mdc/table/DragDropConfig" {
|
|
|
17577
17744
|
drop?: (oEvent: DragDropConfig$DropEvent) => void;
|
|
17578
17745
|
}
|
|
17579
17746
|
|
|
17747
|
+
/**
|
|
17748
|
+
* Parameters of the DragDropConfig#dragEnd event.
|
|
17749
|
+
*/
|
|
17580
17750
|
export interface DragDropConfig$DragEndEventParameters {
|
|
17581
17751
|
/**
|
|
17582
17752
|
* The binding context of the dragged row
|
|
@@ -17584,11 +17754,17 @@ declare module "sap/ui/mdc/table/DragDropConfig" {
|
|
|
17584
17754
|
bindingContext?: Context;
|
|
17585
17755
|
}
|
|
17586
17756
|
|
|
17757
|
+
/**
|
|
17758
|
+
* Event object of the DragDropConfig#dragEnd event.
|
|
17759
|
+
*/
|
|
17587
17760
|
export type DragDropConfig$DragEndEvent = Event<
|
|
17588
17761
|
DragDropConfig$DragEndEventParameters,
|
|
17589
17762
|
DragDropConfig
|
|
17590
17763
|
>;
|
|
17591
17764
|
|
|
17765
|
+
/**
|
|
17766
|
+
* Parameters of the DragDropConfig#dragEnter event.
|
|
17767
|
+
*/
|
|
17592
17768
|
export interface DragDropConfig$DragEnterEventParameters {
|
|
17593
17769
|
/**
|
|
17594
17770
|
* The binding context of the row on which the dragged element will be dropped
|
|
@@ -17601,11 +17777,17 @@ declare module "sap/ui/mdc/table/DragDropConfig" {
|
|
|
17601
17777
|
dragSource?: DragSource;
|
|
17602
17778
|
}
|
|
17603
17779
|
|
|
17780
|
+
/**
|
|
17781
|
+
* Event object of the DragDropConfig#dragEnter event.
|
|
17782
|
+
*/
|
|
17604
17783
|
export type DragDropConfig$DragEnterEvent = Event<
|
|
17605
17784
|
DragDropConfig$DragEnterEventParameters,
|
|
17606
17785
|
DragDropConfig
|
|
17607
17786
|
>;
|
|
17608
17787
|
|
|
17788
|
+
/**
|
|
17789
|
+
* Parameters of the DragDropConfig#dragOver event.
|
|
17790
|
+
*/
|
|
17609
17791
|
export interface DragDropConfig$DragOverEventParameters {
|
|
17610
17792
|
/**
|
|
17611
17793
|
* The binding context of the row on which the dragged element will be dropped
|
|
@@ -17625,11 +17807,17 @@ declare module "sap/ui/mdc/table/DragDropConfig" {
|
|
|
17625
17807
|
| keyof typeof dnd.RelativeDropPosition;
|
|
17626
17808
|
}
|
|
17627
17809
|
|
|
17810
|
+
/**
|
|
17811
|
+
* Event object of the DragDropConfig#dragOver event.
|
|
17812
|
+
*/
|
|
17628
17813
|
export type DragDropConfig$DragOverEvent = Event<
|
|
17629
17814
|
DragDropConfig$DragOverEventParameters,
|
|
17630
17815
|
DragDropConfig
|
|
17631
17816
|
>;
|
|
17632
17817
|
|
|
17818
|
+
/**
|
|
17819
|
+
* Parameters of the DragDropConfig#dragStart event.
|
|
17820
|
+
*/
|
|
17633
17821
|
export interface DragDropConfig$DragStartEventParameters {
|
|
17634
17822
|
/**
|
|
17635
17823
|
* The binding context of the dragged row
|
|
@@ -17637,11 +17825,17 @@ declare module "sap/ui/mdc/table/DragDropConfig" {
|
|
|
17637
17825
|
bindingContext?: Context;
|
|
17638
17826
|
}
|
|
17639
17827
|
|
|
17828
|
+
/**
|
|
17829
|
+
* Event object of the DragDropConfig#dragStart event.
|
|
17830
|
+
*/
|
|
17640
17831
|
export type DragDropConfig$DragStartEvent = Event<
|
|
17641
17832
|
DragDropConfig$DragStartEventParameters,
|
|
17642
17833
|
DragDropConfig
|
|
17643
17834
|
>;
|
|
17644
17835
|
|
|
17836
|
+
/**
|
|
17837
|
+
* Parameters of the DragDropConfig#drop event.
|
|
17838
|
+
*/
|
|
17645
17839
|
export interface DragDropConfig$DropEventParameters {
|
|
17646
17840
|
/**
|
|
17647
17841
|
* The binding context of the row on which the dragged element is dropped
|
|
@@ -17661,6 +17855,9 @@ declare module "sap/ui/mdc/table/DragDropConfig" {
|
|
|
17661
17855
|
| keyof typeof dnd.RelativeDropPosition;
|
|
17662
17856
|
}
|
|
17663
17857
|
|
|
17858
|
+
/**
|
|
17859
|
+
* Event object of the DragDropConfig#drop event.
|
|
17860
|
+
*/
|
|
17664
17861
|
export type DragDropConfig$DropEvent = Event<
|
|
17665
17862
|
DragDropConfig$DropEventParameters,
|
|
17666
17863
|
DragDropConfig
|
|
@@ -17917,7 +18114,9 @@ declare module "sap/ui/mdc/table/GridTableType" {
|
|
|
17917
18114
|
bShowHeaderSelector?: boolean
|
|
17918
18115
|
): this;
|
|
17919
18116
|
}
|
|
17920
|
-
|
|
18117
|
+
/**
|
|
18118
|
+
* Describes the settings that can be provided to the GridTableType constructor.
|
|
18119
|
+
*/
|
|
17921
18120
|
export interface $GridTableTypeSettings extends $TableTypeBaseSettings {
|
|
17922
18121
|
/**
|
|
17923
18122
|
* Defines how the table handles the row count.
|
|
@@ -18106,7 +18305,9 @@ declare module "sap/ui/mdc/table/ResponsiveColumnSettings" {
|
|
|
18106
18305
|
sMergeFunction: string
|
|
18107
18306
|
): this;
|
|
18108
18307
|
}
|
|
18109
|
-
|
|
18308
|
+
/**
|
|
18309
|
+
* Describes the settings that can be provided to the ResponsiveColumnSettings constructor.
|
|
18310
|
+
*/
|
|
18110
18311
|
export interface $ResponsiveColumnSettingsSettings
|
|
18111
18312
|
extends $ColumnSettingsSettings {
|
|
18112
18313
|
/**
|
|
@@ -18366,7 +18567,9 @@ declare module "sap/ui/mdc/table/ResponsiveTableType" {
|
|
|
18366
18567
|
bShowDetailsButton?: boolean
|
|
18367
18568
|
): this;
|
|
18368
18569
|
}
|
|
18369
|
-
|
|
18570
|
+
/**
|
|
18571
|
+
* Describes the settings that can be provided to the ResponsiveTableType constructor.
|
|
18572
|
+
*/
|
|
18370
18573
|
export interface $ResponsiveTableTypeSettings extends $TableTypeBaseSettings {
|
|
18371
18574
|
/**
|
|
18372
18575
|
* Specifies the growing mode.
|
|
@@ -18709,7 +18912,9 @@ declare module "sap/ui/mdc/table/RowActionItem" {
|
|
|
18709
18912
|
bVisible?: boolean
|
|
18710
18913
|
): this;
|
|
18711
18914
|
}
|
|
18712
|
-
|
|
18915
|
+
/**
|
|
18916
|
+
* Describes the settings that can be provided to the RowActionItem constructor.
|
|
18917
|
+
*/
|
|
18713
18918
|
export interface $RowActionItemSettings extends $ElementSettings {
|
|
18714
18919
|
/**
|
|
18715
18920
|
* Type of the row action item.
|
|
@@ -18753,6 +18958,9 @@ declare module "sap/ui/mdc/table/RowActionItem" {
|
|
|
18753
18958
|
press?: (oEvent: RowActionItem$PressEvent) => void;
|
|
18754
18959
|
}
|
|
18755
18960
|
|
|
18961
|
+
/**
|
|
18962
|
+
* Parameters of the RowActionItem#press event.
|
|
18963
|
+
*/
|
|
18756
18964
|
export interface RowActionItem$PressEventParameters {
|
|
18757
18965
|
/**
|
|
18758
18966
|
* The binding context of the pressed row action
|
|
@@ -18760,6 +18968,9 @@ declare module "sap/ui/mdc/table/RowActionItem" {
|
|
|
18760
18968
|
bindingContext?: Context;
|
|
18761
18969
|
}
|
|
18762
18970
|
|
|
18971
|
+
/**
|
|
18972
|
+
* Event object of the RowActionItem#press event.
|
|
18973
|
+
*/
|
|
18763
18974
|
export type RowActionItem$PressEvent = Event<
|
|
18764
18975
|
RowActionItem$PressEventParameters,
|
|
18765
18976
|
RowActionItem
|
|
@@ -19043,7 +19254,9 @@ declare module "sap/ui/mdc/table/RowSettings" {
|
|
|
19043
19254
|
bNavigated?: boolean
|
|
19044
19255
|
): this;
|
|
19045
19256
|
}
|
|
19046
|
-
|
|
19257
|
+
/**
|
|
19258
|
+
* Describes the settings that can be provided to the RowSettings constructor.
|
|
19259
|
+
*/
|
|
19047
19260
|
export interface $RowSettingsSettings extends $ElementSettings {
|
|
19048
19261
|
/**
|
|
19049
19262
|
* The highlight state of the rows.
|
|
@@ -19166,7 +19379,9 @@ declare module "sap/ui/mdc/table/TableTypeBase" {
|
|
|
19166
19379
|
*/
|
|
19167
19380
|
static getMetadata(): ElementMetadata;
|
|
19168
19381
|
}
|
|
19169
|
-
|
|
19382
|
+
/**
|
|
19383
|
+
* Describes the settings that can be provided to the TableTypeBase constructor.
|
|
19384
|
+
*/
|
|
19170
19385
|
export interface $TableTypeBaseSettings extends $ElementSettings {}
|
|
19171
19386
|
}
|
|
19172
19387
|
|
|
@@ -19253,7 +19468,9 @@ declare module "sap/ui/mdc/table/TreeTableType" {
|
|
|
19253
19468
|
*/
|
|
19254
19469
|
static getMetadata(): ElementMetadata;
|
|
19255
19470
|
}
|
|
19256
|
-
|
|
19471
|
+
/**
|
|
19472
|
+
* Describes the settings that can be provided to the TreeTableType constructor.
|
|
19473
|
+
*/
|
|
19257
19474
|
export interface $TreeTableTypeSettings extends $GridTableTypeSettings {}
|
|
19258
19475
|
}
|
|
19259
19476
|
|
|
@@ -20320,6 +20537,11 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20320
20537
|
control: Control;
|
|
20321
20538
|
};
|
|
20322
20539
|
|
|
20540
|
+
/**
|
|
20541
|
+
* Describes the settings that can be provided to the ValueHelp constructor.
|
|
20542
|
+
*
|
|
20543
|
+
* @experimental (since 1.95.0)
|
|
20544
|
+
*/
|
|
20323
20545
|
export interface $ValueHelpSettings extends $ElementSettings {
|
|
20324
20546
|
/**
|
|
20325
20547
|
* The conditions of the selected items.
|
|
@@ -20421,20 +20643,35 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20421
20643
|
typeaheadSuggested?: (oEvent: ValueHelp$TypeaheadSuggestedEvent) => void;
|
|
20422
20644
|
}
|
|
20423
20645
|
|
|
20646
|
+
/**
|
|
20647
|
+
* Parameters of the ValueHelp#closed event.
|
|
20648
|
+
*/
|
|
20424
20649
|
export interface ValueHelp$ClosedEventParameters {}
|
|
20425
20650
|
|
|
20651
|
+
/**
|
|
20652
|
+
* Event object of the ValueHelp#closed event.
|
|
20653
|
+
*/
|
|
20426
20654
|
export type ValueHelp$ClosedEvent = Event<
|
|
20427
20655
|
ValueHelp$ClosedEventParameters,
|
|
20428
20656
|
ValueHelp
|
|
20429
20657
|
>;
|
|
20430
20658
|
|
|
20659
|
+
/**
|
|
20660
|
+
* Parameters of the ValueHelp#disconnect event.
|
|
20661
|
+
*/
|
|
20431
20662
|
export interface ValueHelp$DisconnectEventParameters {}
|
|
20432
20663
|
|
|
20664
|
+
/**
|
|
20665
|
+
* Event object of the ValueHelp#disconnect event.
|
|
20666
|
+
*/
|
|
20433
20667
|
export type ValueHelp$DisconnectEvent = Event<
|
|
20434
20668
|
ValueHelp$DisconnectEventParameters,
|
|
20435
20669
|
ValueHelp
|
|
20436
20670
|
>;
|
|
20437
20671
|
|
|
20672
|
+
/**
|
|
20673
|
+
* Parameters of the ValueHelp#navigated event.
|
|
20674
|
+
*/
|
|
20438
20675
|
export interface ValueHelp$NavigatedEventParameters {
|
|
20439
20676
|
/**
|
|
20440
20677
|
* True if the focus should be set back to the field.
|
|
@@ -20454,11 +20691,17 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20454
20691
|
itemId?: string;
|
|
20455
20692
|
}
|
|
20456
20693
|
|
|
20694
|
+
/**
|
|
20695
|
+
* Event object of the ValueHelp#navigated event.
|
|
20696
|
+
*/
|
|
20457
20697
|
export type ValueHelp$NavigatedEvent = Event<
|
|
20458
20698
|
ValueHelp$NavigatedEventParameters,
|
|
20459
20699
|
ValueHelp
|
|
20460
20700
|
>;
|
|
20461
20701
|
|
|
20702
|
+
/**
|
|
20703
|
+
* Parameters of the ValueHelp#open event.
|
|
20704
|
+
*/
|
|
20462
20705
|
export interface ValueHelp$OpenEventParameters {
|
|
20463
20706
|
/**
|
|
20464
20707
|
* The container which will be opened
|
|
@@ -20466,11 +20709,17 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20466
20709
|
container?: Container;
|
|
20467
20710
|
}
|
|
20468
20711
|
|
|
20712
|
+
/**
|
|
20713
|
+
* Event object of the ValueHelp#open event.
|
|
20714
|
+
*/
|
|
20469
20715
|
export type ValueHelp$OpenEvent = Event<
|
|
20470
20716
|
ValueHelp$OpenEventParameters,
|
|
20471
20717
|
ValueHelp
|
|
20472
20718
|
>;
|
|
20473
20719
|
|
|
20720
|
+
/**
|
|
20721
|
+
* Parameters of the ValueHelp#opened event.
|
|
20722
|
+
*/
|
|
20474
20723
|
export interface ValueHelp$OpenedEventParameters {
|
|
20475
20724
|
/**
|
|
20476
20725
|
* The container which was opened
|
|
@@ -20483,11 +20732,17 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20483
20732
|
itemId?: string;
|
|
20484
20733
|
}
|
|
20485
20734
|
|
|
20735
|
+
/**
|
|
20736
|
+
* Event object of the ValueHelp#opened event.
|
|
20737
|
+
*/
|
|
20486
20738
|
export type ValueHelp$OpenedEvent = Event<
|
|
20487
20739
|
ValueHelp$OpenedEventParameters,
|
|
20488
20740
|
ValueHelp
|
|
20489
20741
|
>;
|
|
20490
20742
|
|
|
20743
|
+
/**
|
|
20744
|
+
* Parameters of the ValueHelp#select event.
|
|
20745
|
+
*/
|
|
20491
20746
|
export interface ValueHelp$SelectEventParameters {
|
|
20492
20747
|
/**
|
|
20493
20748
|
* The selected `conditions`
|
|
@@ -20508,18 +20763,30 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20508
20763
|
close?: boolean;
|
|
20509
20764
|
}
|
|
20510
20765
|
|
|
20766
|
+
/**
|
|
20767
|
+
* Event object of the ValueHelp#select event.
|
|
20768
|
+
*/
|
|
20511
20769
|
export type ValueHelp$SelectEvent = Event<
|
|
20512
20770
|
ValueHelp$SelectEventParameters,
|
|
20513
20771
|
ValueHelp
|
|
20514
20772
|
>;
|
|
20515
20773
|
|
|
20774
|
+
/**
|
|
20775
|
+
* Parameters of the ValueHelp#switchToValueHelp event.
|
|
20776
|
+
*/
|
|
20516
20777
|
export interface ValueHelp$SwitchToValueHelpEventParameters {}
|
|
20517
20778
|
|
|
20779
|
+
/**
|
|
20780
|
+
* Event object of the ValueHelp#switchToValueHelp event.
|
|
20781
|
+
*/
|
|
20518
20782
|
export type ValueHelp$SwitchToValueHelpEvent = Event<
|
|
20519
20783
|
ValueHelp$SwitchToValueHelpEventParameters,
|
|
20520
20784
|
ValueHelp
|
|
20521
20785
|
>;
|
|
20522
20786
|
|
|
20787
|
+
/**
|
|
20788
|
+
* Parameters of the ValueHelp#typeaheadSuggested event.
|
|
20789
|
+
*/
|
|
20523
20790
|
export interface ValueHelp$TypeaheadSuggestedEventParameters {
|
|
20524
20791
|
/**
|
|
20525
20792
|
* Suggested condition
|
|
@@ -20539,6 +20806,9 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20539
20806
|
itemId?: string;
|
|
20540
20807
|
}
|
|
20541
20808
|
|
|
20809
|
+
/**
|
|
20810
|
+
* Event object of the ValueHelp#typeaheadSuggested event.
|
|
20811
|
+
*/
|
|
20542
20812
|
export type ValueHelp$TypeaheadSuggestedEvent = Event<
|
|
20543
20813
|
ValueHelp$TypeaheadSuggestedEventParameters,
|
|
20544
20814
|
ValueHelp
|
|
@@ -21742,7 +22012,9 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21742
22012
|
oContent: Content
|
|
21743
22013
|
): void;
|
|
21744
22014
|
}
|
|
21745
|
-
|
|
22015
|
+
/**
|
|
22016
|
+
* Describes the settings that can be provided to the Container constructor.
|
|
22017
|
+
*/
|
|
21746
22018
|
export interface $ContainerSettings extends $ElementSettings {
|
|
21747
22019
|
/**
|
|
21748
22020
|
* Title text that appears in the dialog or tab header.
|
|
@@ -21811,20 +22083,35 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21811
22083
|
typeaheadSuggested?: (oEvent: Container$TypeaheadSuggestedEvent) => void;
|
|
21812
22084
|
}
|
|
21813
22085
|
|
|
22086
|
+
/**
|
|
22087
|
+
* Parameters of the Container#cancel event.
|
|
22088
|
+
*/
|
|
21814
22089
|
export interface Container$CancelEventParameters {}
|
|
21815
22090
|
|
|
22091
|
+
/**
|
|
22092
|
+
* Event object of the Container#cancel event.
|
|
22093
|
+
*/
|
|
21816
22094
|
export type Container$CancelEvent = Event<
|
|
21817
22095
|
Container$CancelEventParameters,
|
|
21818
22096
|
Container
|
|
21819
22097
|
>;
|
|
21820
22098
|
|
|
22099
|
+
/**
|
|
22100
|
+
* Parameters of the Container#closed event.
|
|
22101
|
+
*/
|
|
21821
22102
|
export interface Container$ClosedEventParameters {}
|
|
21822
22103
|
|
|
22104
|
+
/**
|
|
22105
|
+
* Event object of the Container#closed event.
|
|
22106
|
+
*/
|
|
21823
22107
|
export type Container$ClosedEvent = Event<
|
|
21824
22108
|
Container$ClosedEventParameters,
|
|
21825
22109
|
Container
|
|
21826
22110
|
>;
|
|
21827
22111
|
|
|
22112
|
+
/**
|
|
22113
|
+
* Parameters of the Container#confirm event.
|
|
22114
|
+
*/
|
|
21828
22115
|
export interface Container$ConfirmEventParameters {
|
|
21829
22116
|
/**
|
|
21830
22117
|
* `true` if the value help needs to be closed
|
|
@@ -21832,11 +22119,17 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21832
22119
|
close?: boolean;
|
|
21833
22120
|
}
|
|
21834
22121
|
|
|
22122
|
+
/**
|
|
22123
|
+
* Event object of the Container#confirm event.
|
|
22124
|
+
*/
|
|
21835
22125
|
export type Container$ConfirmEvent = Event<
|
|
21836
22126
|
Container$ConfirmEventParameters,
|
|
21837
22127
|
Container
|
|
21838
22128
|
>;
|
|
21839
22129
|
|
|
22130
|
+
/**
|
|
22131
|
+
* Parameters of the Container#navigated event.
|
|
22132
|
+
*/
|
|
21840
22133
|
export interface Container$NavigatedEventParameters {
|
|
21841
22134
|
/**
|
|
21842
22135
|
* `true` if the focus should be set back to the field.
|
|
@@ -21856,11 +22149,17 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21856
22149
|
itemId?: string;
|
|
21857
22150
|
}
|
|
21858
22151
|
|
|
22152
|
+
/**
|
|
22153
|
+
* Event object of the Container#navigated event.
|
|
22154
|
+
*/
|
|
21859
22155
|
export type Container$NavigatedEvent = Event<
|
|
21860
22156
|
Container$NavigatedEventParameters,
|
|
21861
22157
|
Container
|
|
21862
22158
|
>;
|
|
21863
22159
|
|
|
22160
|
+
/**
|
|
22161
|
+
* Parameters of the Container#opened event.
|
|
22162
|
+
*/
|
|
21864
22163
|
export interface Container$OpenedEventParameters {
|
|
21865
22164
|
/**
|
|
21866
22165
|
* ID of the initially selected item
|
|
@@ -21868,11 +22167,17 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21868
22167
|
itemId?: string;
|
|
21869
22168
|
}
|
|
21870
22169
|
|
|
22170
|
+
/**
|
|
22171
|
+
* Event object of the Container#opened event.
|
|
22172
|
+
*/
|
|
21871
22173
|
export type Container$OpenedEvent = Event<
|
|
21872
22174
|
Container$OpenedEventParameters,
|
|
21873
22175
|
Container
|
|
21874
22176
|
>;
|
|
21875
22177
|
|
|
22178
|
+
/**
|
|
22179
|
+
* Parameters of the Container#requestDelegateContent event.
|
|
22180
|
+
*/
|
|
21876
22181
|
export interface Container$RequestDelegateContentEventParameters {
|
|
21877
22182
|
/**
|
|
21878
22183
|
* Content wrapper ID for which contents are requested
|
|
@@ -21880,18 +22185,30 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21880
22185
|
contentId?: string;
|
|
21881
22186
|
}
|
|
21882
22187
|
|
|
22188
|
+
/**
|
|
22189
|
+
* Event object of the Container#requestDelegateContent event.
|
|
22190
|
+
*/
|
|
21883
22191
|
export type Container$RequestDelegateContentEvent = Event<
|
|
21884
22192
|
Container$RequestDelegateContentEventParameters,
|
|
21885
22193
|
Container
|
|
21886
22194
|
>;
|
|
21887
22195
|
|
|
22196
|
+
/**
|
|
22197
|
+
* Parameters of the Container#requestSwitchToDialog event.
|
|
22198
|
+
*/
|
|
21888
22199
|
export interface Container$RequestSwitchToDialogEventParameters {}
|
|
21889
22200
|
|
|
22201
|
+
/**
|
|
22202
|
+
* Event object of the Container#requestSwitchToDialog event.
|
|
22203
|
+
*/
|
|
21890
22204
|
export type Container$RequestSwitchToDialogEvent = Event<
|
|
21891
22205
|
Container$RequestSwitchToDialogEventParameters,
|
|
21892
22206
|
Container
|
|
21893
22207
|
>;
|
|
21894
22208
|
|
|
22209
|
+
/**
|
|
22210
|
+
* Parameters of the Container#select event.
|
|
22211
|
+
*/
|
|
21895
22212
|
export interface Container$SelectEventParameters {
|
|
21896
22213
|
/**
|
|
21897
22214
|
* Type of the selection change (add, remove)
|
|
@@ -21906,11 +22223,17 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21906
22223
|
conditions?: object[];
|
|
21907
22224
|
}
|
|
21908
22225
|
|
|
22226
|
+
/**
|
|
22227
|
+
* Event object of the Container#select event.
|
|
22228
|
+
*/
|
|
21909
22229
|
export type Container$SelectEvent = Event<
|
|
21910
22230
|
Container$SelectEventParameters,
|
|
21911
22231
|
Container
|
|
21912
22232
|
>;
|
|
21913
22233
|
|
|
22234
|
+
/**
|
|
22235
|
+
* Parameters of the Container#typeaheadSuggested event.
|
|
22236
|
+
*/
|
|
21914
22237
|
export interface Container$TypeaheadSuggestedEventParameters {
|
|
21915
22238
|
/**
|
|
21916
22239
|
* Suggested condition
|
|
@@ -21930,6 +22253,9 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21930
22253
|
itemId?: string;
|
|
21931
22254
|
}
|
|
21932
22255
|
|
|
22256
|
+
/**
|
|
22257
|
+
* Event object of the Container#typeaheadSuggested event.
|
|
22258
|
+
*/
|
|
21933
22259
|
export type Container$TypeaheadSuggestedEvent = Event<
|
|
21934
22260
|
Container$TypeaheadSuggestedEventParameters,
|
|
21935
22261
|
Container
|
|
@@ -22911,7 +23237,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
22911
23237
|
bVisible?: boolean
|
|
22912
23238
|
): this;
|
|
22913
23239
|
}
|
|
22914
|
-
|
|
23240
|
+
/**
|
|
23241
|
+
* Describes the settings that can be provided to the Content constructor.
|
|
23242
|
+
*/
|
|
22915
23243
|
export interface $ContentSettings extends $ElementSettings {
|
|
22916
23244
|
/**
|
|
22917
23245
|
* Title text that appears in the tab header.
|
|
@@ -22994,13 +23322,22 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
22994
23322
|
typeaheadSuggested?: (oEvent: Content$TypeaheadSuggestedEvent) => void;
|
|
22995
23323
|
}
|
|
22996
23324
|
|
|
23325
|
+
/**
|
|
23326
|
+
* Parameters of the Content#cancel event.
|
|
23327
|
+
*/
|
|
22997
23328
|
export interface Content$CancelEventParameters {}
|
|
22998
23329
|
|
|
23330
|
+
/**
|
|
23331
|
+
* Event object of the Content#cancel event.
|
|
23332
|
+
*/
|
|
22999
23333
|
export type Content$CancelEvent = Event<
|
|
23000
23334
|
Content$CancelEventParameters,
|
|
23001
23335
|
Content
|
|
23002
23336
|
>;
|
|
23003
23337
|
|
|
23338
|
+
/**
|
|
23339
|
+
* Parameters of the Content#confirm event.
|
|
23340
|
+
*/
|
|
23004
23341
|
export interface Content$ConfirmEventParameters {
|
|
23005
23342
|
/**
|
|
23006
23343
|
* `true` if the value help needs to be closed
|
|
@@ -23008,11 +23345,17 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
23008
23345
|
close?: boolean;
|
|
23009
23346
|
}
|
|
23010
23347
|
|
|
23348
|
+
/**
|
|
23349
|
+
* Event object of the Content#confirm event.
|
|
23350
|
+
*/
|
|
23011
23351
|
export type Content$ConfirmEvent = Event<
|
|
23012
23352
|
Content$ConfirmEventParameters,
|
|
23013
23353
|
Content
|
|
23014
23354
|
>;
|
|
23015
23355
|
|
|
23356
|
+
/**
|
|
23357
|
+
* Parameters of the Content#navigated event.
|
|
23358
|
+
*/
|
|
23016
23359
|
export interface Content$NavigatedEventParameters {
|
|
23017
23360
|
/**
|
|
23018
23361
|
* `true` if the focus should be set back to the field.
|
|
@@ -23032,18 +23375,30 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
23032
23375
|
itemId?: string;
|
|
23033
23376
|
}
|
|
23034
23377
|
|
|
23378
|
+
/**
|
|
23379
|
+
* Event object of the Content#navigated event.
|
|
23380
|
+
*/
|
|
23035
23381
|
export type Content$NavigatedEvent = Event<
|
|
23036
23382
|
Content$NavigatedEventParameters,
|
|
23037
23383
|
Content
|
|
23038
23384
|
>;
|
|
23039
23385
|
|
|
23386
|
+
/**
|
|
23387
|
+
* Parameters of the Content#requestSwitchToDialog event.
|
|
23388
|
+
*/
|
|
23040
23389
|
export interface Content$RequestSwitchToDialogEventParameters {}
|
|
23041
23390
|
|
|
23391
|
+
/**
|
|
23392
|
+
* Event object of the Content#requestSwitchToDialog event.
|
|
23393
|
+
*/
|
|
23042
23394
|
export type Content$RequestSwitchToDialogEvent = Event<
|
|
23043
23395
|
Content$RequestSwitchToDialogEventParameters,
|
|
23044
23396
|
Content
|
|
23045
23397
|
>;
|
|
23046
23398
|
|
|
23399
|
+
/**
|
|
23400
|
+
* Parameters of the Content#select event.
|
|
23401
|
+
*/
|
|
23047
23402
|
export interface Content$SelectEventParameters {
|
|
23048
23403
|
/**
|
|
23049
23404
|
* Type of the selection change (add, remove)
|
|
@@ -23058,11 +23413,17 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
23058
23413
|
conditions?: object[];
|
|
23059
23414
|
}
|
|
23060
23415
|
|
|
23416
|
+
/**
|
|
23417
|
+
* Event object of the Content#select event.
|
|
23418
|
+
*/
|
|
23061
23419
|
export type Content$SelectEvent = Event<
|
|
23062
23420
|
Content$SelectEventParameters,
|
|
23063
23421
|
Content
|
|
23064
23422
|
>;
|
|
23065
23423
|
|
|
23424
|
+
/**
|
|
23425
|
+
* Parameters of the Content#typeaheadSuggested event.
|
|
23426
|
+
*/
|
|
23066
23427
|
export interface Content$TypeaheadSuggestedEventParameters {
|
|
23067
23428
|
/**
|
|
23068
23429
|
* Suggested condition
|
|
@@ -23082,6 +23443,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
23082
23443
|
itemId?: string;
|
|
23083
23444
|
}
|
|
23084
23445
|
|
|
23446
|
+
/**
|
|
23447
|
+
* Event object of the Content#typeaheadSuggested event.
|
|
23448
|
+
*/
|
|
23085
23449
|
export type Content$TypeaheadSuggestedEvent = Event<
|
|
23086
23450
|
Content$TypeaheadSuggestedEventParameters,
|
|
23087
23451
|
Content
|
|
@@ -23409,7 +23773,9 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
23409
23773
|
sKeyPath?: string
|
|
23410
23774
|
): this;
|
|
23411
23775
|
}
|
|
23412
|
-
|
|
23776
|
+
/**
|
|
23777
|
+
* Describes the settings that can be provided to the FilterableListContent constructor.
|
|
23778
|
+
*/
|
|
23413
23779
|
export interface $FilterableListContentSettings extends $ListContentSettings {
|
|
23414
23780
|
/**
|
|
23415
23781
|
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
@@ -23666,7 +24032,9 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
|
|
|
23666
24032
|
bUseFirstMatch?: boolean
|
|
23667
24033
|
): this;
|
|
23668
24034
|
}
|
|
23669
|
-
|
|
24035
|
+
/**
|
|
24036
|
+
* Describes the settings that can be provided to the ListContent constructor.
|
|
24037
|
+
*/
|
|
23670
24038
|
export interface $ListContentSettings extends $ContentSettings {
|
|
23671
24039
|
/**
|
|
23672
24040
|
* If this property is set to `true`, the filtering for user input is always case-sensitive. Otherwise user
|
|
@@ -23842,7 +24210,9 @@ declare module "sap/ui/mdc/valuehelp/content/Conditions" {
|
|
|
23842
24210
|
oValueHelp: ID | ValueHelp
|
|
23843
24211
|
): this;
|
|
23844
24212
|
}
|
|
23845
|
-
|
|
24213
|
+
/**
|
|
24214
|
+
* Describes the settings that can be provided to the Conditions constructor.
|
|
24215
|
+
*/
|
|
23846
24216
|
export interface $ConditionsSettings extends $ContentSettings {
|
|
23847
24217
|
/**
|
|
23848
24218
|
* Label shown on condition panel.
|
|
@@ -24117,7 +24487,9 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
|
|
|
24117
24487
|
bGroupable?: boolean
|
|
24118
24488
|
): this;
|
|
24119
24489
|
}
|
|
24120
|
-
|
|
24490
|
+
/**
|
|
24491
|
+
* Describes the settings that can be provided to the FixedList constructor.
|
|
24492
|
+
*/
|
|
24121
24493
|
export interface $FixedListSettings extends $ListContentSettings {
|
|
24122
24494
|
/**
|
|
24123
24495
|
* If set, the items of the list can be grouped
|
|
@@ -24278,7 +24650,9 @@ declare module "sap/ui/mdc/valuehelp/content/FixedListItem" {
|
|
|
24278
24650
|
sGroupText?: string
|
|
24279
24651
|
): this;
|
|
24280
24652
|
}
|
|
24281
|
-
|
|
24653
|
+
/**
|
|
24654
|
+
* Describes the settings that can be provided to the FixedListItem constructor.
|
|
24655
|
+
*/
|
|
24282
24656
|
export interface $FixedListItemSettings extends $ListItemSettings {
|
|
24283
24657
|
/**
|
|
24284
24658
|
* Key of the group for what the items are grouped
|
|
@@ -24445,7 +24819,9 @@ declare module "sap/ui/mdc/valuehelp/Dialog" {
|
|
|
24445
24819
|
oGroupConfig?: object
|
|
24446
24820
|
): this;
|
|
24447
24821
|
}
|
|
24448
|
-
|
|
24822
|
+
/**
|
|
24823
|
+
* Describes the settings that can be provided to the Dialog constructor.
|
|
24824
|
+
*/
|
|
24449
24825
|
export interface $DialogSettings extends $ContainerSettings {
|
|
24450
24826
|
/**
|
|
24451
24827
|
* Configuration for groups (collective search).
|
|
@@ -24612,7 +24988,9 @@ declare module "sap/ui/mdc/valuehelp/content/MDCTable" {
|
|
|
24612
24988
|
oTable: Table
|
|
24613
24989
|
): this;
|
|
24614
24990
|
}
|
|
24615
|
-
|
|
24991
|
+
/**
|
|
24992
|
+
* Describes the settings that can be provided to the MDCTable constructor.
|
|
24993
|
+
*/
|
|
24616
24994
|
export interface $MDCTableSettings extends $FilterableListContentSettings {
|
|
24617
24995
|
/**
|
|
24618
24996
|
* This property will lead to a rebind on newly inserted tables after initial filters are set, immediately
|
|
@@ -24830,7 +25208,9 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
24830
25208
|
oTable: Table
|
|
24831
25209
|
): this;
|
|
24832
25210
|
}
|
|
24833
|
-
|
|
25211
|
+
/**
|
|
25212
|
+
* Describes the settings that can be provided to the MTable constructor.
|
|
25213
|
+
*/
|
|
24834
25214
|
export interface $MTableSettings extends $FilterableListContentSettings {
|
|
24835
25215
|
/**
|
|
24836
25216
|
* Table that is used in the value help.
|
|
@@ -24849,8 +25229,18 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
24849
25229
|
contentUpdated?: (oEvent: Event) => void;
|
|
24850
25230
|
}
|
|
24851
25231
|
|
|
25232
|
+
/**
|
|
25233
|
+
* Parameters of the MTable#contentUpdated event.
|
|
25234
|
+
*
|
|
25235
|
+
* @deprecated (since 1.118.0) - This event is not fired or consumed anymore
|
|
25236
|
+
*/
|
|
24852
25237
|
export interface MTable$ContentUpdatedEventParameters {}
|
|
24853
25238
|
|
|
25239
|
+
/**
|
|
25240
|
+
* Event object of the MTable#contentUpdated event.
|
|
25241
|
+
*
|
|
25242
|
+
* @deprecated (since 1.118.0) - This event is not fired or consumed anymore
|
|
25243
|
+
*/
|
|
24854
25244
|
export type MTable$ContentUpdatedEvent = Event<
|
|
24855
25245
|
MTable$ContentUpdatedEventParameters,
|
|
24856
25246
|
MTable
|
|
@@ -25019,7 +25409,9 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
25019
25409
|
bOpensOnFocus?: boolean
|
|
25020
25410
|
): this;
|
|
25021
25411
|
}
|
|
25022
|
-
|
|
25412
|
+
/**
|
|
25413
|
+
* Describes the settings that can be provided to the Popover constructor.
|
|
25414
|
+
*/
|
|
25023
25415
|
export interface $PopoverSettings extends $ContainerSettings {
|
|
25024
25416
|
/**
|
|
25025
25417
|
* Controls the possibility to open this popover container by clicking on a connected control, even if no
|