@sapui5/ts-types-esm 1.132.1 → 1.133.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/sap.apf.d.ts +12 -11
- package/types/sap.ca.ui.d.ts +413 -415
- package/types/sap.chart.d.ts +6 -6
- package/types/sap.collaboration.d.ts +31 -31
- package/types/sap.cux.home.d.ts +937 -106
- package/types/sap.esh.search.ui.d.ts +39 -1
- package/types/sap.f.d.ts +159 -175
- 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 +16 -9
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +81 -45
- package/types/sap.fe.navigation.d.ts +3 -3
- 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 +3 -8
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +385 -329
- package/types/sap.insights.d.ts +3 -3
- package/types/sap.m.d.ts +1946 -1117
- package/types/sap.makit.d.ts +182 -182
- package/types/sap.me.d.ts +25 -27
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +41 -41
- package/types/sap.sac.df.d.ts +108 -98
- package/types/sap.suite.ui.commons.d.ts +432 -487
- package/types/sap.suite.ui.generic.template.d.ts +28 -8
- package/types/sap.suite.ui.microchart.d.ts +55 -79
- package/types/sap.tnt.d.ts +229 -14
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +326 -335
- package/types/sap.ui.comp.d.ts +427 -421
- package/types/sap.ui.core.d.ts +693 -718
- 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 +5 -5
- package/types/sap.ui.generic.app.d.ts +83 -66
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +324 -236
- package/types/sap.ui.layout.d.ts +87 -103
- package/types/sap.ui.mdc.d.ts +167 -142
- package/types/sap.ui.richtexteditor.d.ts +48 -8
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +14 -14
- package/types/sap.ui.support.d.ts +2 -2
- package/types/sap.ui.table.d.ts +219 -197
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +130 -112
- package/types/sap.ui.ux3.d.ts +113 -117
- package/types/sap.ui.vbm.d.ts +57 -57
- package/types/sap.ui.vk.d.ts +135 -132
- package/types/sap.ui.vtm.d.ts +112 -103
- package/types/sap.ui.webc.common.d.ts +7 -7
- package/types/sap.ui.webc.fiori.d.ts +164 -176
- package/types/sap.ui.webc.main.d.ts +527 -531
- package/types/sap.uiext.inbox.d.ts +43 -43
- package/types/sap.ushell.d.ts +206 -123
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +33 -51
- package/types/sap.viz.d.ts +2782 -2858
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +17 -17
- package/types/sap.zen.crosstab.d.ts +10 -10
- package/types/sap.zen.dsh.d.ts +11 -11
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.133.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -173,7 +173,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
173
173
|
* the internal behavior.
|
|
174
174
|
*
|
|
175
175
|
* @since 1.88
|
|
176
|
-
* @experimental
|
|
176
|
+
* @experimental As of version 1.88.
|
|
177
177
|
*/
|
|
178
178
|
interface ChartDelegate extends AggregationBaseDelegate {
|
|
179
179
|
/**
|
|
@@ -2428,8 +2428,6 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2428
2428
|
* Configuration class for type handling in delegates. Allows mapping of model types to {@link sap.ui.mdc.enums.BaseType }
|
|
2429
2429
|
* and enables model-specific type configuration.
|
|
2430
2430
|
*
|
|
2431
|
-
* **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
|
|
2432
|
-
*
|
|
2433
2431
|
* @since 1.114.0
|
|
2434
2432
|
*/
|
|
2435
2433
|
interface TypeMap {
|
|
@@ -2496,7 +2494,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2496
2494
|
* Used constraints
|
|
2497
2495
|
*/
|
|
2498
2496
|
oConstraints: object
|
|
2499
|
-
): BaseType
|
|
2497
|
+
): BaseType;
|
|
2500
2498
|
/**
|
|
2501
2499
|
* Convenience method to retrieve the `BaseType` for a given {@link sap.ui.model.SimpleType SimpleType}.
|
|
2502
2500
|
*
|
|
@@ -2509,10 +2507,13 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2509
2507
|
* Given type string or {@link sap.ui.model.SimpleType}
|
|
2510
2508
|
*/
|
|
2511
2509
|
oType: SimpleType
|
|
2512
|
-
): BaseType
|
|
2510
|
+
): BaseType;
|
|
2513
2511
|
/**
|
|
2514
2512
|
* Gets a data type class based on a given name.
|
|
2515
2513
|
*
|
|
2514
|
+
* **Note:** All modules of the required data types must be loaded before. To do this, {@link #retrieveDataTypeClasses }
|
|
2515
|
+
* can be used.
|
|
2516
|
+
*
|
|
2516
2517
|
*
|
|
2517
2518
|
* @returns Corresponding data type class
|
|
2518
2519
|
*/
|
|
@@ -2537,6 +2538,9 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2537
2538
|
/**
|
|
2538
2539
|
* Gets a data type instance based on a given `ObjectPath`, `FormatOptions`, and `Constraints`.
|
|
2539
2540
|
*
|
|
2541
|
+
* **Note:** All modules of the required data types must be loaded before. To do this, {@link #retrieveDataTypeClasses }
|
|
2542
|
+
* can be used.
|
|
2543
|
+
*
|
|
2540
2544
|
*
|
|
2541
2545
|
* @returns Instance of the resolved data type
|
|
2542
2546
|
*/
|
|
@@ -2615,6 +2619,19 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2615
2619
|
*/
|
|
2616
2620
|
oConstraints?: object
|
|
2617
2621
|
): object;
|
|
2622
|
+
/**
|
|
2623
|
+
* Loads modules for all requested data types.
|
|
2624
|
+
*
|
|
2625
|
+
* @since 1.133.0
|
|
2626
|
+
*
|
|
2627
|
+
* @returns Array of corresponding data type classes
|
|
2628
|
+
*/
|
|
2629
|
+
retrieveDataTypeClasses(
|
|
2630
|
+
/**
|
|
2631
|
+
* Array of class path as `string` where each name is separated by '.'
|
|
2632
|
+
*/
|
|
2633
|
+
aDataTypes: string[]
|
|
2634
|
+
): Promise<SimpleType[]>;
|
|
2618
2635
|
/**
|
|
2619
2636
|
* Sets a {@link sap.ui.mdc.enums.BaseType BaseType} and an optional model- or scenario-specific configuration
|
|
2620
2637
|
* method for a given {@link sap.ui.model.SimpleType} `ObjectPath` `string`.
|
|
@@ -2930,7 +2947,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2930
2947
|
* This might be extended with payload-dependent filters.
|
|
2931
2948
|
*
|
|
2932
2949
|
* @since 1.101.0
|
|
2933
|
-
* @deprecated
|
|
2950
|
+
* @deprecated As of version 1.118. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.findConditionsForContext findConditionsForContext}.
|
|
2934
2951
|
*
|
|
2935
2952
|
* @returns `true` if item is selected
|
|
2936
2953
|
*/
|
|
@@ -3760,10 +3777,15 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
3760
3777
|
|
|
3761
3778
|
/**
|
|
3762
3779
|
* The `Chart` control creates a chart based on metadata and the configuration specified.
|
|
3763
|
-
*
|
|
3780
|
+
*
|
|
3781
|
+
*
|
|
3782
|
+
* **Note:** The `Chart` control acts as a wrapper that is used to enhance an instance of a given chart
|
|
3783
|
+
* control framework (in the following texts referred to as inner chart) with functionalities, such as a
|
|
3784
|
+
* `toolbar`, `p13n`, and `VariantManagement`. The inner chart instance and its configuration must be provided
|
|
3785
|
+
* via an implementation of a `ChartDelegate` module.
|
|
3764
3786
|
*
|
|
3765
3787
|
* @since 1.88
|
|
3766
|
-
* @experimental
|
|
3788
|
+
* @experimental As of version 1.88.
|
|
3767
3789
|
*/
|
|
3768
3790
|
export default class Chart extends Control implements IFilterSource, IxState {
|
|
3769
3791
|
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
@@ -4031,7 +4053,7 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4031
4053
|
*
|
|
4032
4054
|
* @returns Value of property `headerLevel`
|
|
4033
4055
|
*/
|
|
4034
|
-
getHeaderLevel(): TitleLevel
|
|
4056
|
+
getHeaderLevel(): TitleLevel;
|
|
4035
4057
|
/**
|
|
4036
4058
|
* Gets current value of property {@link #getHeaderStyle headerStyle}.
|
|
4037
4059
|
*
|
|
@@ -4041,7 +4063,7 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4041
4063
|
*
|
|
4042
4064
|
* @returns Value of property `headerStyle`
|
|
4043
4065
|
*/
|
|
4044
|
-
getHeaderStyle(): TitleLevel
|
|
4066
|
+
getHeaderStyle(): TitleLevel;
|
|
4045
4067
|
/**
|
|
4046
4068
|
* Gets current value of property {@link #getHeaderVisible headerVisible}.
|
|
4047
4069
|
*
|
|
@@ -4077,9 +4099,7 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4077
4099
|
*
|
|
4078
4100
|
* @returns Value of property `ignoreToolbarActions`
|
|
4079
4101
|
*/
|
|
4080
|
-
getIgnoreToolbarActions():
|
|
4081
|
-
ChartToolbarActionType | keyof typeof ChartToolbarActionType
|
|
4082
|
-
>;
|
|
4102
|
+
getIgnoreToolbarActions(): ChartToolbarActionType[];
|
|
4083
4103
|
/**
|
|
4084
4104
|
* Gets content of aggregation {@link #getItems items}.
|
|
4085
4105
|
*
|
|
@@ -4162,7 +4182,7 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4162
4182
|
*
|
|
4163
4183
|
* @returns Value of property `p13nMode`
|
|
4164
4184
|
*/
|
|
4165
|
-
getP13nMode():
|
|
4185
|
+
getP13nMode(): ChartP13nMode[];
|
|
4166
4186
|
/**
|
|
4167
4187
|
* Gets content of aggregation {@link #getSelectionDetailsActions selectionDetailsActions}.
|
|
4168
4188
|
*
|
|
@@ -4600,7 +4620,7 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4600
4620
|
* - `role`
|
|
4601
4621
|
* - `dataType`
|
|
4602
4622
|
*
|
|
4603
|
-
* @experimental
|
|
4623
|
+
* @experimental As of version 1.80.
|
|
4604
4624
|
*/
|
|
4605
4625
|
export type PropertyInfo = PropertyInfo1 & {
|
|
4606
4626
|
/**
|
|
@@ -4620,7 +4640,7 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4620
4640
|
/**
|
|
4621
4641
|
* Describes the settings that can be provided to the Chart constructor.
|
|
4622
4642
|
*
|
|
4623
|
-
* @experimental
|
|
4643
|
+
* @experimental As of version 1.88.
|
|
4624
4644
|
*/
|
|
4625
4645
|
export interface $ChartSettings extends $ControlSettings {
|
|
4626
4646
|
/**
|
|
@@ -4899,7 +4919,7 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
|
4899
4919
|
* Based on the `showNoDataStruct` the `content` or `noDataContent` will be shown.
|
|
4900
4920
|
*
|
|
4901
4921
|
* @since 1.105
|
|
4902
|
-
* @experimental
|
|
4922
|
+
* @experimental As of version 1.105.
|
|
4903
4923
|
*/
|
|
4904
4924
|
export default class ChartImplementationContainer extends Control {
|
|
4905
4925
|
/**
|
|
@@ -5012,7 +5032,7 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
|
5012
5032
|
/**
|
|
5013
5033
|
* Describes the settings that can be provided to the ChartImplementationContainer constructor.
|
|
5014
5034
|
*
|
|
5015
|
-
* @experimental
|
|
5035
|
+
* @experimental As of version 1.105.
|
|
5016
5036
|
*/
|
|
5017
5037
|
export interface $ChartImplementationContainerSettings
|
|
5018
5038
|
extends $ControlSettings {
|
|
@@ -5056,7 +5076,7 @@ declare module "sap/ui/mdc/chart/ChartSelectionDetails" {
|
|
|
5056
5076
|
* the configuration specified.
|
|
5057
5077
|
*
|
|
5058
5078
|
* @since 1.88
|
|
5059
|
-
* @experimental
|
|
5079
|
+
* @experimental As of version 1.88.
|
|
5060
5080
|
*/
|
|
5061
5081
|
export default class ChartSelectionDetails extends SelectionDetails {
|
|
5062
5082
|
/**
|
|
@@ -5201,7 +5221,7 @@ declare module "sap/ui/mdc/chart/ChartSelectionDetails" {
|
|
|
5201
5221
|
/**
|
|
5202
5222
|
* Describes the settings that can be provided to the ChartSelectionDetails constructor.
|
|
5203
5223
|
*
|
|
5204
|
-
* @experimental
|
|
5224
|
+
* @experimental As of version 1.88.
|
|
5205
5225
|
*/
|
|
5206
5226
|
export interface $ChartSelectionDetailsSettings
|
|
5207
5227
|
extends $SelectionDetailsSettings {
|
|
@@ -5243,7 +5263,7 @@ declare module "sap/ui/mdc/chart/Item" {
|
|
|
5243
5263
|
* The `Item` control for the chart/property metadata used within MDC Chart.
|
|
5244
5264
|
*
|
|
5245
5265
|
* @since 1.88
|
|
5246
|
-
* @experimental
|
|
5266
|
+
* @experimental As of version 1.88.
|
|
5247
5267
|
*/
|
|
5248
5268
|
export default class Item extends UI5Element {
|
|
5249
5269
|
/**
|
|
@@ -5323,7 +5343,7 @@ declare module "sap/ui/mdc/chart/Item" {
|
|
|
5323
5343
|
*
|
|
5324
5344
|
* The unique identifier of the chart item that reflects the name of the property in the PropertyInfo.
|
|
5325
5345
|
*
|
|
5326
|
-
* @deprecated
|
|
5346
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
5327
5347
|
*
|
|
5328
5348
|
* @returns Value of property `name`
|
|
5329
5349
|
*/
|
|
@@ -5383,7 +5403,7 @@ declare module "sap/ui/mdc/chart/Item" {
|
|
|
5383
5403
|
*
|
|
5384
5404
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5385
5405
|
*
|
|
5386
|
-
* @deprecated
|
|
5406
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
5387
5407
|
*
|
|
5388
5408
|
* @returns Reference to `this` in order to allow method chaining
|
|
5389
5409
|
*/
|
|
@@ -5449,13 +5469,13 @@ declare module "sap/ui/mdc/chart/Item" {
|
|
|
5449
5469
|
/**
|
|
5450
5470
|
* Describes the settings that can be provided to the Item constructor.
|
|
5451
5471
|
*
|
|
5452
|
-
* @experimental
|
|
5472
|
+
* @experimental As of version 1.88.
|
|
5453
5473
|
*/
|
|
5454
5474
|
export interface $ItemSettings extends $ElementSettings {
|
|
5455
5475
|
/**
|
|
5456
5476
|
* The unique identifier of the chart item that reflects the name of the property in the PropertyInfo.
|
|
5457
5477
|
*
|
|
5458
|
-
* @deprecated
|
|
5478
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
5459
5479
|
*/
|
|
5460
5480
|
name?: string | PropertyBindingInfo;
|
|
5461
5481
|
|
|
@@ -5500,7 +5520,7 @@ declare module "sap/ui/mdc/chart/SelectionDetailsActions" {
|
|
|
5500
5520
|
* The `SelectionDetailsActions` is used to provide additional functionality to the Details popover.
|
|
5501
5521
|
*
|
|
5502
5522
|
* @since 1.88
|
|
5503
|
-
* @experimental
|
|
5523
|
+
* @experimental As of version 1.88.
|
|
5504
5524
|
*/
|
|
5505
5525
|
export default class SelectionDetailsActions extends UI5Element {
|
|
5506
5526
|
/**
|
|
@@ -5800,7 +5820,7 @@ declare module "sap/ui/mdc/chart/SelectionDetailsActions" {
|
|
|
5800
5820
|
/**
|
|
5801
5821
|
* Describes the settings that can be provided to the SelectionDetailsActions constructor.
|
|
5802
5822
|
*
|
|
5803
|
-
* @experimental
|
|
5823
|
+
* @experimental As of version 1.88.
|
|
5804
5824
|
*/
|
|
5805
5825
|
export interface $SelectionDetailsActionsSettings extends $ElementSettings {
|
|
5806
5826
|
/**
|
|
@@ -6676,7 +6696,7 @@ declare module "sap/ui/mdc/Control" {
|
|
|
6676
6696
|
/**
|
|
6677
6697
|
* Returns the `typeUtil` made available by a delegate module.
|
|
6678
6698
|
*
|
|
6679
|
-
* @deprecated
|
|
6699
|
+
* @deprecated As of version 1.115.0. please see {@link #getTypeMap}
|
|
6680
6700
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6681
6701
|
*
|
|
6682
6702
|
* @returns `TypeUtil` object
|
|
@@ -6898,7 +6918,7 @@ declare module "sap/ui/mdc/Element" {
|
|
|
6898
6918
|
/**
|
|
6899
6919
|
* Returns the `typeUtil` made available by a delegate module.
|
|
6900
6920
|
*
|
|
6901
|
-
* @deprecated
|
|
6921
|
+
* @deprecated As of version 1.115.0. please see {@link #getTypeMap}
|
|
6902
6922
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6903
6923
|
*
|
|
6904
6924
|
* @returns `TypeUtil` object
|
|
@@ -7037,7 +7057,7 @@ declare module "sap/ui/mdc/enums/ChartP13nMode" {
|
|
|
7037
7057
|
* Defines the personalization mode of the chart.
|
|
7038
7058
|
*
|
|
7039
7059
|
* @since 1.115
|
|
7040
|
-
* @experimental
|
|
7060
|
+
* @experimental As of version 1.115.
|
|
7041
7061
|
*/
|
|
7042
7062
|
enum ChartP13nMode {
|
|
7043
7063
|
/**
|
|
@@ -7066,7 +7086,7 @@ declare module "sap/ui/mdc/enums/ChartToolbarActionType" {
|
|
|
7066
7086
|
* Can be used to remove some of the default `ToolbarAction`. For more information, see {@link sap.ui.mdc.Chart#ignoreToolbarActions}.
|
|
7067
7087
|
*
|
|
7068
7088
|
* @since 1.115
|
|
7069
|
-
* @experimental
|
|
7089
|
+
* @experimental As of version 1.115.
|
|
7070
7090
|
*/
|
|
7071
7091
|
enum ChartToolbarActionType {
|
|
7072
7092
|
/**
|
|
@@ -7273,7 +7293,7 @@ declare module "sap/ui/mdc/enums/FilterBarValidationStatus" {
|
|
|
7273
7293
|
*/
|
|
7274
7294
|
NoError = "undefined",
|
|
7275
7295
|
/**
|
|
7276
|
-
* Required filter
|
|
7296
|
+
* Required filter field without a value.
|
|
7277
7297
|
*/
|
|
7278
7298
|
RequiredHasNoValue = "undefined",
|
|
7279
7299
|
}
|
|
@@ -8425,8 +8445,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8425
8445
|
*
|
|
8426
8446
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
8427
8447
|
*
|
|
8428
|
-
* @deprecated
|
|
8429
|
-
* `additionalValue` property to bind the control.
|
|
8448
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. Use the `value` property
|
|
8449
|
+
* and `additionalValue` property to bind the control.
|
|
8430
8450
|
*
|
|
8431
8451
|
* @returns Reference to `this` to allow method chaining
|
|
8432
8452
|
*/
|
|
@@ -8499,8 +8519,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8499
8519
|
*
|
|
8500
8520
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
8501
8521
|
*
|
|
8502
|
-
* @deprecated
|
|
8503
|
-
* `additionalValue` property to bind the control.
|
|
8522
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. Use the `value` property
|
|
8523
|
+
* and `additionalValue` property to bind the control.
|
|
8504
8524
|
*
|
|
8505
8525
|
* @returns Conditions of the field
|
|
8506
8526
|
*/
|
|
@@ -8513,8 +8533,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8513
8533
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
8514
8534
|
* value of the `dataType` property is ignored.
|
|
8515
8535
|
*
|
|
8516
|
-
* @deprecated
|
|
8517
|
-
* the `value` property is used.
|
|
8536
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The type in the binding
|
|
8537
|
+
* to the `value` property is used.
|
|
8518
8538
|
*
|
|
8519
8539
|
* @returns Value of property `dataType`
|
|
8520
8540
|
*/
|
|
@@ -8527,8 +8547,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8527
8547
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
8528
8548
|
* values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
8529
8549
|
*
|
|
8530
|
-
* @deprecated
|
|
8531
|
-
* in the binding to the `value` property is used.
|
|
8550
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The `Constraints` of
|
|
8551
|
+
* the type in the binding to the `value` property is used.
|
|
8532
8552
|
*
|
|
8533
8553
|
* @returns Value of property `dataTypeConstraints`
|
|
8534
8554
|
*/
|
|
@@ -8541,8 +8561,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8541
8561
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
8542
8562
|
* values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
8543
8563
|
*
|
|
8544
|
-
* @deprecated
|
|
8545
|
-
* type in the binding to the `value` property is used.
|
|
8564
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The `FormatOptions` of
|
|
8565
|
+
* the type in the binding to the `value` property is used.
|
|
8546
8566
|
*
|
|
8547
8567
|
* @returns Value of property `dataTypeFormatOptions`
|
|
8548
8568
|
*/
|
|
@@ -8582,8 +8602,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8582
8602
|
*
|
|
8583
8603
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
8584
8604
|
*
|
|
8585
|
-
* @deprecated
|
|
8586
|
-
* `additionalValue` property to bind the control.
|
|
8605
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. Use the `value` property
|
|
8606
|
+
* and `additionalValue` property to bind the control.
|
|
8587
8607
|
*
|
|
8588
8608
|
* @returns Reference to `this` to allow method chaining
|
|
8589
8609
|
*/
|
|
@@ -8601,8 +8621,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8601
8621
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
8602
8622
|
* value of the `dataType` property is ignored.
|
|
8603
8623
|
*
|
|
8604
|
-
* @deprecated
|
|
8605
|
-
* the `value` property is used.
|
|
8624
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The type in the binding
|
|
8625
|
+
* to the `value` property is used.
|
|
8606
8626
|
*
|
|
8607
8627
|
* @returns Reference to `this` to allow method chaining
|
|
8608
8628
|
*/
|
|
@@ -8620,8 +8640,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8620
8640
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
8621
8641
|
* values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
8622
8642
|
*
|
|
8623
|
-
* @deprecated
|
|
8624
|
-
* in the binding to the `value` property is used.
|
|
8643
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The `Constraints` of
|
|
8644
|
+
* the type in the binding to the `value` property is used.
|
|
8625
8645
|
*
|
|
8626
8646
|
* @returns Reference to `this` to allow method chaining
|
|
8627
8647
|
*/
|
|
@@ -8639,8 +8659,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8639
8659
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
8640
8660
|
* values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
8641
8661
|
*
|
|
8642
|
-
* @deprecated
|
|
8643
|
-
* type in the binding to the `value` property is used.
|
|
8662
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The `FormatOptions` of
|
|
8663
|
+
* the type in the binding to the `value` property is used.
|
|
8644
8664
|
*
|
|
8645
8665
|
* @returns Reference to `this` to allow method chaining
|
|
8646
8666
|
*/
|
|
@@ -8653,7 +8673,7 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8653
8673
|
/**
|
|
8654
8674
|
* This property must not be set for the `Field`
|
|
8655
8675
|
*
|
|
8656
|
-
* @deprecated
|
|
8676
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`.
|
|
8657
8677
|
*
|
|
8658
8678
|
* @returns `this` to allow method chaining.
|
|
8659
8679
|
*/
|
|
@@ -8693,8 +8713,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8693
8713
|
*
|
|
8694
8714
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
8695
8715
|
*
|
|
8696
|
-
* @deprecated
|
|
8697
|
-
* `additionalValue` property to bind the control.
|
|
8716
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. Use the `value` property
|
|
8717
|
+
* and `additionalValue` property to bind the control.
|
|
8698
8718
|
*
|
|
8699
8719
|
* @returns Reference to `this` to allow method chaining
|
|
8700
8720
|
*/
|
|
@@ -9975,7 +9995,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
9975
9995
|
*
|
|
9976
9996
|
* @returns BaseType
|
|
9977
9997
|
*/
|
|
9978
|
-
getBaseType(): BaseType
|
|
9998
|
+
getBaseType(): BaseType;
|
|
9979
9999
|
/**
|
|
9980
10000
|
* Gets current value of property {@link #getConditions conditions}.
|
|
9981
10001
|
*
|
|
@@ -10146,7 +10166,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10146
10166
|
*
|
|
10147
10167
|
* @returns Value of property `display`
|
|
10148
10168
|
*/
|
|
10149
|
-
getDisplay(): FieldDisplay
|
|
10169
|
+
getDisplay(): FieldDisplay;
|
|
10150
10170
|
/**
|
|
10151
10171
|
* Gets current value of property {@link #getEditMode editMode}.
|
|
10152
10172
|
*
|
|
@@ -10157,12 +10177,12 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10157
10177
|
*
|
|
10158
10178
|
* @returns Value of property `editMode`
|
|
10159
10179
|
*/
|
|
10160
|
-
getEditMode(): FieldEditMode
|
|
10180
|
+
getEditMode(): FieldEditMode;
|
|
10161
10181
|
/**
|
|
10162
10182
|
* ID of the element which is the current target of the association {@link #getFieldHelp fieldHelp}, or
|
|
10163
10183
|
* `null`.
|
|
10164
10184
|
*
|
|
10165
|
-
* @deprecated
|
|
10185
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
10166
10186
|
*/
|
|
10167
10187
|
getFieldHelp(): ID | null;
|
|
10168
10188
|
/**
|
|
@@ -10326,7 +10346,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10326
10346
|
*
|
|
10327
10347
|
* @returns Value of property `textAlign`
|
|
10328
10348
|
*/
|
|
10329
|
-
getTextAlign(): TextAlign
|
|
10349
|
+
getTextAlign(): TextAlign;
|
|
10330
10350
|
/**
|
|
10331
10351
|
* Gets current value of property {@link #getTextDirection textDirection}.
|
|
10332
10352
|
*
|
|
@@ -10339,7 +10359,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10339
10359
|
*
|
|
10340
10360
|
* @returns Value of property `textDirection`
|
|
10341
10361
|
*/
|
|
10342
|
-
getTextDirection(): TextDirection
|
|
10362
|
+
getTextDirection(): TextDirection;
|
|
10343
10363
|
/**
|
|
10344
10364
|
* Provides some internals of the unit part of the field to be used in {@link sap.ui.mdc.field.ConditionsType ConditionsType }
|
|
10345
10365
|
* for format and parse the conditions.
|
|
@@ -10368,7 +10388,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10368
10388
|
*
|
|
10369
10389
|
* @returns Value of property `valueState`
|
|
10370
10390
|
*/
|
|
10371
|
-
getValueState(): ValueState
|
|
10391
|
+
getValueState(): ValueState;
|
|
10372
10392
|
/**
|
|
10373
10393
|
* Gets current value of property {@link #getValueStateText valueStateText}.
|
|
10374
10394
|
*
|
|
@@ -10715,7 +10735,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10715
10735
|
/**
|
|
10716
10736
|
* Sets the associated {@link #getFieldHelp fieldHelp}.
|
|
10717
10737
|
*
|
|
10718
|
-
* @deprecated
|
|
10738
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
10719
10739
|
*
|
|
10720
10740
|
* @returns Reference to `this` in order to allow method chaining
|
|
10721
10741
|
*/
|
|
@@ -11264,7 +11284,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
11264
11284
|
*
|
|
11265
11285
|
* **Note:** For `Boolean` fields, no `ValueHelp` should be added, but a default `ValueHelp` used instead.
|
|
11266
11286
|
*
|
|
11267
|
-
* @deprecated
|
|
11287
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
11268
11288
|
*/
|
|
11269
11289
|
fieldHelp?: ValueHelp | string;
|
|
11270
11290
|
|
|
@@ -11981,7 +12001,7 @@ declare module "sap/ui/mdc/FilterBar" {
|
|
|
11981
12001
|
*
|
|
11982
12002
|
* @returns Value of property `p13nMode`
|
|
11983
12003
|
*/
|
|
11984
|
-
getP13nMode():
|
|
12004
|
+
getP13nMode(): FilterBarP13nMode[];
|
|
11985
12005
|
/**
|
|
11986
12006
|
* Gets current value of property {@link #getShowAdaptFiltersButton showAdaptFiltersButton}.
|
|
11987
12007
|
*
|
|
@@ -12975,7 +12995,7 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
12975
12995
|
* on its own.
|
|
12976
12996
|
*
|
|
12977
12997
|
* @since 1.84.0
|
|
12978
|
-
* @deprecated
|
|
12998
|
+
* @deprecated As of version 1.124.0. Please use the `sap.ui.mdc.valuehelp.FilterBar` control instead.
|
|
12979
12999
|
*/
|
|
12980
13000
|
export default class FilterBar extends FilterBar1 {
|
|
12981
13001
|
/**
|
|
@@ -13050,7 +13070,7 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
13050
13070
|
/**
|
|
13051
13071
|
* Describes the settings that can be provided to the FilterBar constructor.
|
|
13052
13072
|
*
|
|
13053
|
-
* @deprecated
|
|
13073
|
+
* @deprecated As of version 1.124.0. Please use the `sap.ui.mdc.valuehelp.FilterBar` control instead.
|
|
13054
13074
|
*/
|
|
13055
13075
|
export interface $FilterBarSettings extends $FilterBarSettings1 {}
|
|
13056
13076
|
}
|
|
@@ -14401,7 +14421,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14401
14421
|
*
|
|
14402
14422
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
14403
14423
|
*
|
|
14404
|
-
* @deprecated
|
|
14424
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. Use the `items`
|
|
14405
14425
|
* aggregation to bind the control.
|
|
14406
14426
|
*
|
|
14407
14427
|
* @returns Reference to `this` to allow method chaining
|
|
@@ -14470,7 +14490,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14470
14490
|
*
|
|
14471
14491
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
14472
14492
|
*
|
|
14473
|
-
* @deprecated
|
|
14493
|
+
* @deprecated As of version 1.54. this property is not supported for the `MultiValueField`. Use the `items`
|
|
14474
14494
|
* aggregation to bind the control.
|
|
14475
14495
|
*
|
|
14476
14496
|
* @returns conditions of the field
|
|
@@ -14484,8 +14504,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14484
14504
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
14485
14505
|
* the value of the `dataType` property is ignored.
|
|
14486
14506
|
*
|
|
14487
|
-
* @deprecated
|
|
14488
|
-
* binding to the `items` aggregation is used.
|
|
14507
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
14508
|
+
* the binding to the `items` aggregation is used.
|
|
14489
14509
|
*
|
|
14490
14510
|
* @returns Value of property `dataType`
|
|
14491
14511
|
*/
|
|
@@ -14498,8 +14518,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14498
14518
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
14499
14519
|
* the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
14500
14520
|
*
|
|
14501
|
-
* @deprecated
|
|
14502
|
-
* binding to the `items` aggregation is used.
|
|
14521
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
14522
|
+
* the binding to the `items` aggregation is used.
|
|
14503
14523
|
*
|
|
14504
14524
|
* @returns Value of property `dataTypeConstraints`
|
|
14505
14525
|
*/
|
|
@@ -14512,8 +14532,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14512
14532
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
14513
14533
|
* the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
14514
14534
|
*
|
|
14515
|
-
* @deprecated
|
|
14516
|
-
* binding to the `items` aggregation is used.
|
|
14535
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
14536
|
+
* the binding to the `items` aggregation is used.
|
|
14517
14537
|
*
|
|
14518
14538
|
* @returns Value of property `dataTypeFormatOptions`
|
|
14519
14539
|
*/
|
|
@@ -14556,7 +14576,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14556
14576
|
/**
|
|
14557
14577
|
* Gets current value of property {@link #getMultipleLines multipleLines}.
|
|
14558
14578
|
*
|
|
14559
|
-
* @deprecated
|
|
14579
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`.
|
|
14560
14580
|
*
|
|
14561
14581
|
* @returns Value for property `multipleLines`
|
|
14562
14582
|
*/
|
|
@@ -14618,7 +14638,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14618
14638
|
*
|
|
14619
14639
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
14620
14640
|
*
|
|
14621
|
-
* @deprecated
|
|
14641
|
+
* @deprecated As of version 1.54. this property is not supported for the `MultiValueField`. Use the `items`
|
|
14622
14642
|
* aggregation to bind the control.
|
|
14623
14643
|
*
|
|
14624
14644
|
* @returns Reference to `this` to allow method chaining
|
|
@@ -14636,8 +14656,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14636
14656
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
14637
14657
|
* the value of the `dataType` property is ignored.
|
|
14638
14658
|
*
|
|
14639
|
-
* @deprecated
|
|
14640
|
-
* binding to the `items` aggregation is used.
|
|
14659
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
14660
|
+
* the binding to the `items` aggregation is used.
|
|
14641
14661
|
*
|
|
14642
14662
|
* @returns Reference to `this` to allow method chaining
|
|
14643
14663
|
*/
|
|
@@ -14655,8 +14675,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14655
14675
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
14656
14676
|
* the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
14657
14677
|
*
|
|
14658
|
-
* @deprecated
|
|
14659
|
-
* binding to the `items` aggregation is used.
|
|
14678
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
14679
|
+
* the binding to the `items` aggregation is used.
|
|
14660
14680
|
*
|
|
14661
14681
|
* @returns Reference to `this` to allow method chaining
|
|
14662
14682
|
*/
|
|
@@ -14674,8 +14694,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14674
14694
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
14675
14695
|
* the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
14676
14696
|
*
|
|
14677
|
-
* @deprecated
|
|
14678
|
-
* binding to the `items` aggregation is used.
|
|
14697
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
14698
|
+
* the binding to the `items` aggregation is used.
|
|
14679
14699
|
*
|
|
14680
14700
|
* @returns Reference to `this` to allow method chaining
|
|
14681
14701
|
*/
|
|
@@ -14720,7 +14740,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14720
14740
|
/**
|
|
14721
14741
|
* This property must not be set for the `MultiValueField` control.
|
|
14722
14742
|
*
|
|
14723
|
-
* @deprecated
|
|
14743
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField` control.
|
|
14724
14744
|
*
|
|
14725
14745
|
* @returns `this` to allow method chaining.
|
|
14726
14746
|
*/
|
|
@@ -14733,7 +14753,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14733
14753
|
/**
|
|
14734
14754
|
* Sets a new value for property {@link #getMultipleLines multipleLines}.
|
|
14735
14755
|
*
|
|
14736
|
-
* @deprecated
|
|
14756
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`.
|
|
14737
14757
|
*
|
|
14738
14758
|
* @returns Reference to `this` to allow method chaining
|
|
14739
14759
|
*/
|
|
@@ -14748,7 +14768,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14748
14768
|
*
|
|
14749
14769
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
14750
14770
|
*
|
|
14751
|
-
* @deprecated
|
|
14771
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. Use the `items`
|
|
14752
14772
|
* aggregation to bind the control.
|
|
14753
14773
|
*
|
|
14754
14774
|
* @returns Reference to `this` to allow method chaining
|
|
@@ -15785,7 +15805,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15785
15805
|
*
|
|
15786
15806
|
* @returns Value of property `headerLevel`
|
|
15787
15807
|
*/
|
|
15788
|
-
getHeaderLevel(): TitleLevel
|
|
15808
|
+
getHeaderLevel(): TitleLevel;
|
|
15789
15809
|
/**
|
|
15790
15810
|
* Gets current value of property {@link #getHeaderVisible headerVisible}.
|
|
15791
15811
|
*
|
|
@@ -15804,7 +15824,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15804
15824
|
*
|
|
15805
15825
|
* This property has no effect and will be removed soon.
|
|
15806
15826
|
*
|
|
15807
|
-
* @deprecated
|
|
15827
|
+
* @deprecated As of version 1.115. the concept has been discarded.
|
|
15808
15828
|
*
|
|
15809
15829
|
* @returns Value of property `height`
|
|
15810
15830
|
*/
|
|
@@ -15882,7 +15902,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15882
15902
|
*
|
|
15883
15903
|
* @returns Value of property `p13nMode`
|
|
15884
15904
|
*/
|
|
15885
|
-
getP13nMode():
|
|
15905
|
+
getP13nMode(): TableP13nMode[];
|
|
15886
15906
|
/**
|
|
15887
15907
|
* Gets content of aggregation {@link #getQuickFilter quickFilter}.
|
|
15888
15908
|
*
|
|
@@ -15920,7 +15940,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15920
15940
|
*
|
|
15921
15941
|
* @returns Value of property `selectionMode`
|
|
15922
15942
|
*/
|
|
15923
|
-
getSelectionMode(): TableSelectionMode
|
|
15943
|
+
getSelectionMode(): TableSelectionMode;
|
|
15924
15944
|
/**
|
|
15925
15945
|
* Gets current value of property {@link #getShowPasteButton showPasteButton}.
|
|
15926
15946
|
*
|
|
@@ -15977,7 +15997,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15977
15997
|
*
|
|
15978
15998
|
* Type of the table.
|
|
15979
15999
|
*/
|
|
15980
|
-
getType(): TableTypeBase |
|
|
16000
|
+
getType(): TableTypeBase | TableType;
|
|
15981
16001
|
/**
|
|
15982
16002
|
* Gets current value of property {@link #getUseColumnLabelsAsTooltips useColumnLabelsAsTooltips}.
|
|
15983
16003
|
*
|
|
@@ -16362,7 +16382,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16362
16382
|
*
|
|
16363
16383
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16364
16384
|
*
|
|
16365
|
-
* @deprecated
|
|
16385
|
+
* @deprecated As of version 1.115. the concept has been discarded.
|
|
16366
16386
|
*
|
|
16367
16387
|
* @returns Reference to `this` in order to allow method chaining
|
|
16368
16388
|
*/
|
|
@@ -16776,7 +16796,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16776
16796
|
/**
|
|
16777
16797
|
* This property has no effect and will be removed soon.
|
|
16778
16798
|
*
|
|
16779
|
-
* @deprecated
|
|
16799
|
+
* @deprecated As of version 1.115. the concept has been discarded.
|
|
16780
16800
|
*/
|
|
16781
16801
|
height?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
16782
16802
|
|
|
@@ -17398,7 +17418,7 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17398
17418
|
* Defines data property related to the column.
|
|
17399
17419
|
*
|
|
17400
17420
|
* @since 1.84
|
|
17401
|
-
* @deprecated
|
|
17421
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
17402
17422
|
*
|
|
17403
17423
|
* @returns Value of property `dataProperty`
|
|
17404
17424
|
*/
|
|
@@ -17425,7 +17445,7 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17425
17445
|
*
|
|
17426
17446
|
* @returns Value of property `hAlign`
|
|
17427
17447
|
*/
|
|
17428
|
-
getHAlign(): HorizontalAlign
|
|
17448
|
+
getHAlign(): HorizontalAlign;
|
|
17429
17449
|
/**
|
|
17430
17450
|
* Gets current value of property {@link #getHeader header}.
|
|
17431
17451
|
*
|
|
@@ -17459,14 +17479,14 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17459
17479
|
*
|
|
17460
17480
|
* Default value is `"None"`.
|
|
17461
17481
|
*
|
|
17462
|
-
* @deprecated
|
|
17482
|
+
* @deprecated As of version 1.110. replaced with {@link sap.ui.mdc.table.ResponsiveColumnSettings#importance }
|
|
17463
17483
|
*
|
|
17464
17484
|
* This property will be ignored whenever the {@link sap.ui.mdc.table.ResponsiveColumnSettings} are applied
|
|
17465
17485
|
* to the column.
|
|
17466
17486
|
*
|
|
17467
17487
|
* @returns Value of property `importance`
|
|
17468
17488
|
*/
|
|
17469
|
-
getImportance(): Priority
|
|
17489
|
+
getImportance(): Priority;
|
|
17470
17490
|
/**
|
|
17471
17491
|
* Gets current value of property {@link #getMinWidth minWidth}.
|
|
17472
17492
|
*
|
|
@@ -17534,7 +17554,7 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17534
17554
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17535
17555
|
*
|
|
17536
17556
|
* @since 1.84
|
|
17537
|
-
* @deprecated
|
|
17557
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
17538
17558
|
*
|
|
17539
17559
|
* @returns Reference to `this` in order to allow method chaining
|
|
17540
17560
|
*/
|
|
@@ -17625,7 +17645,7 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17625
17645
|
*
|
|
17626
17646
|
* Default value is `"None"`.
|
|
17627
17647
|
*
|
|
17628
|
-
* @deprecated
|
|
17648
|
+
* @deprecated As of version 1.110. replaced with {@link sap.ui.mdc.table.ResponsiveColumnSettings#importance }
|
|
17629
17649
|
*
|
|
17630
17650
|
* This property will be ignored whenever the {@link sap.ui.mdc.table.ResponsiveColumnSettings} are applied
|
|
17631
17651
|
* to the column.
|
|
@@ -17804,7 +17824,7 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17804
17824
|
* setting the `demandPopin` property of the column. See {@link sap.m.Table#getAutoPopinMode} for more details,
|
|
17805
17825
|
* which is automatically set to `true`.
|
|
17806
17826
|
*
|
|
17807
|
-
* @deprecated
|
|
17827
|
+
* @deprecated As of version 1.110. replaced with {@link sap.ui.mdc.table.ResponsiveColumnSettings#importance }
|
|
17808
17828
|
*
|
|
17809
17829
|
* This property will be ignored whenever the {@link sap.ui.mdc.table.ResponsiveColumnSettings} are applied
|
|
17810
17830
|
* to the column.
|
|
@@ -17818,7 +17838,7 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17818
17838
|
* Defines data property related to the column.
|
|
17819
17839
|
*
|
|
17820
17840
|
* @since 1.84
|
|
17821
|
-
* @deprecated
|
|
17841
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
17822
17842
|
*/
|
|
17823
17843
|
dataProperty?: string | PropertyBindingInfo;
|
|
17824
17844
|
|
|
@@ -18458,7 +18478,7 @@ declare module "sap/ui/mdc/table/DragDropConfig" {
|
|
|
18458
18478
|
*
|
|
18459
18479
|
* @returns Value of property `dropEffect`
|
|
18460
18480
|
*/
|
|
18461
|
-
getDropEffect(): dnd.DropEffect
|
|
18481
|
+
getDropEffect(): dnd.DropEffect;
|
|
18462
18482
|
/**
|
|
18463
18483
|
* Gets current value of property {@link #getDroppable droppable}.
|
|
18464
18484
|
*
|
|
@@ -18480,7 +18500,7 @@ declare module "sap/ui/mdc/table/DragDropConfig" {
|
|
|
18480
18500
|
*
|
|
18481
18501
|
* @returns Value of property `dropPosition`
|
|
18482
18502
|
*/
|
|
18483
|
-
getDropPosition(): dnd.DropPosition
|
|
18503
|
+
getDropPosition(): dnd.DropPosition;
|
|
18484
18504
|
/**
|
|
18485
18505
|
* Sets a new value for property {@link #getDraggable draggable}.
|
|
18486
18506
|
*
|
|
@@ -18893,7 +18913,7 @@ declare module "sap/ui/mdc/table/GridTableType" {
|
|
|
18893
18913
|
*
|
|
18894
18914
|
* @returns Value of property `rowCountMode`
|
|
18895
18915
|
*/
|
|
18896
|
-
getRowCountMode(): TableRowCountMode
|
|
18916
|
+
getRowCountMode(): TableRowCountMode;
|
|
18897
18917
|
/**
|
|
18898
18918
|
* Gets current value of property {@link #getScrollThreshold scrollThreshold}.
|
|
18899
18919
|
*
|
|
@@ -19209,7 +19229,7 @@ declare module "sap/ui/mdc/table/ResponsiveColumnSettings" {
|
|
|
19209
19229
|
*
|
|
19210
19230
|
* @returns Value of property `importance`
|
|
19211
19231
|
*/
|
|
19212
|
-
getImportance(): Priority
|
|
19232
|
+
getImportance(): Priority;
|
|
19213
19233
|
/**
|
|
19214
19234
|
* Gets current value of property {@link #getMergeFunction mergeFunction}.
|
|
19215
19235
|
*
|
|
@@ -19402,7 +19422,7 @@ declare module "sap/ui/mdc/table/ResponsiveTableType" {
|
|
|
19402
19422
|
*
|
|
19403
19423
|
* @returns Value of property `detailsButtonSetting`
|
|
19404
19424
|
*/
|
|
19405
|
-
getDetailsButtonSetting():
|
|
19425
|
+
getDetailsButtonSetting(): Priority[];
|
|
19406
19426
|
/**
|
|
19407
19427
|
* Gets current value of property {@link #getGrowingMode growingMode}.
|
|
19408
19428
|
*
|
|
@@ -19413,7 +19433,7 @@ declare module "sap/ui/mdc/table/ResponsiveTableType" {
|
|
|
19413
19433
|
*
|
|
19414
19434
|
* @returns Value of property `growingMode`
|
|
19415
19435
|
*/
|
|
19416
|
-
getGrowingMode(): TableGrowingMode
|
|
19436
|
+
getGrowingMode(): TableGrowingMode;
|
|
19417
19437
|
/**
|
|
19418
19438
|
* Gets current value of property {@link #getPopinLayout popinLayout}.
|
|
19419
19439
|
*
|
|
@@ -19425,7 +19445,7 @@ declare module "sap/ui/mdc/table/ResponsiveTableType" {
|
|
|
19425
19445
|
*
|
|
19426
19446
|
* @returns Value of property `popinLayout`
|
|
19427
19447
|
*/
|
|
19428
|
-
getPopinLayout(): PopinLayout
|
|
19448
|
+
getPopinLayout(): PopinLayout;
|
|
19429
19449
|
/**
|
|
19430
19450
|
* Gets current value of property {@link #getShowDetailsButton showDetailsButton}.
|
|
19431
19451
|
*
|
|
@@ -19788,7 +19808,7 @@ declare module "sap/ui/mdc/table/RowActionItem" {
|
|
|
19788
19808
|
*
|
|
19789
19809
|
* @returns Value of property `type`
|
|
19790
19810
|
*/
|
|
19791
|
-
getType(): TableRowActionType
|
|
19811
|
+
getType(): TableRowActionType;
|
|
19792
19812
|
/**
|
|
19793
19813
|
* Gets current value of property {@link #getVisible visible}.
|
|
19794
19814
|
*
|
|
@@ -20048,15 +20068,16 @@ declare module "sap/ui/mdc/table/RowSettings" {
|
|
|
20048
20068
|
*
|
|
20049
20069
|
* The highlight state of the rows.
|
|
20050
20070
|
*
|
|
20051
|
-
* If the highlight is set to {@link sap
|
|
20052
|
-
* highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap
|
|
20071
|
+
* If the highlight is set to {@link module:sap/ui/core/message/MessageType MessageType.None} (default),
|
|
20072
|
+
* no highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link module:sap/ui/core/message/MessageType }
|
|
20053
20073
|
* or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
|
|
20054
20074
|
* for accessibility contrast reasons).
|
|
20055
20075
|
*
|
|
20056
20076
|
* Accessibility support is provided with the {@link sap.ui.mdc.table.RowSettings#setHighlightText highlightText }
|
|
20057
|
-
* property. If the `highlight` property is set to a value of {@link sap
|
|
20058
|
-
* property does not need to be set because a default text is used. However, the default
|
|
20059
|
-
* by setting the `highlightText` property. In all other cases the `highlightText`
|
|
20077
|
+
* property. If the `highlight` property is set to a value of {@link module:sap/ui/core/message/MessageType},
|
|
20078
|
+
* the `highlightText` property does not need to be set because a default text is used. However, the default
|
|
20079
|
+
* text can be overridden by setting the `highlightText` property. In all other cases the `highlightText`
|
|
20080
|
+
* property must be set.
|
|
20060
20081
|
*
|
|
20061
20082
|
* Default value is `"None"`.
|
|
20062
20083
|
*
|
|
@@ -20154,15 +20175,16 @@ declare module "sap/ui/mdc/table/RowSettings" {
|
|
|
20154
20175
|
*
|
|
20155
20176
|
* The highlight state of the rows.
|
|
20156
20177
|
*
|
|
20157
|
-
* If the highlight is set to {@link sap
|
|
20158
|
-
* highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap
|
|
20178
|
+
* If the highlight is set to {@link module:sap/ui/core/message/MessageType MessageType.None} (default),
|
|
20179
|
+
* no highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link module:sap/ui/core/message/MessageType }
|
|
20159
20180
|
* or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
|
|
20160
20181
|
* for accessibility contrast reasons).
|
|
20161
20182
|
*
|
|
20162
20183
|
* Accessibility support is provided with the {@link sap.ui.mdc.table.RowSettings#setHighlightText highlightText }
|
|
20163
|
-
* property. If the `highlight` property is set to a value of {@link sap
|
|
20164
|
-
* property does not need to be set because a default text is used. However, the default
|
|
20165
|
-
* by setting the `highlightText` property. In all other cases the `highlightText`
|
|
20184
|
+
* property. If the `highlight` property is set to a value of {@link module:sap/ui/core/message/MessageType},
|
|
20185
|
+
* the `highlightText` property does not need to be set because a default text is used. However, the default
|
|
20186
|
+
* text can be overridden by setting the `highlightText` property. In all other cases the `highlightText`
|
|
20187
|
+
* property must be set.
|
|
20166
20188
|
*
|
|
20167
20189
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20168
20190
|
*
|
|
@@ -20222,15 +20244,16 @@ declare module "sap/ui/mdc/table/RowSettings" {
|
|
|
20222
20244
|
/**
|
|
20223
20245
|
* The highlight state of the rows.
|
|
20224
20246
|
*
|
|
20225
|
-
* If the highlight is set to {@link sap
|
|
20226
|
-
* highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap
|
|
20247
|
+
* If the highlight is set to {@link module:sap/ui/core/message/MessageType MessageType.None} (default),
|
|
20248
|
+
* no highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link module:sap/ui/core/message/MessageType }
|
|
20227
20249
|
* or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
|
|
20228
20250
|
* for accessibility contrast reasons).
|
|
20229
20251
|
*
|
|
20230
20252
|
* Accessibility support is provided with the {@link sap.ui.mdc.table.RowSettings#setHighlightText highlightText }
|
|
20231
|
-
* property. If the `highlight` property is set to a value of {@link sap
|
|
20232
|
-
* property does not need to be set because a default text is used. However, the default
|
|
20233
|
-
* by setting the `highlightText` property. In all other cases the `highlightText`
|
|
20253
|
+
* property. If the `highlight` property is set to a value of {@link module:sap/ui/core/message/MessageType},
|
|
20254
|
+
* the `highlightText` property does not need to be set because a default text is used. However, the default
|
|
20255
|
+
* text can be overridden by setting the `highlightText` property. In all other cases the `highlightText`
|
|
20256
|
+
* property must be set.
|
|
20234
20257
|
*/
|
|
20235
20258
|
highlight?: string | PropertyBindingInfo;
|
|
20236
20259
|
|
|
@@ -22939,7 +22962,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
22939
22962
|
*
|
|
22940
22963
|
* Default value is `empty string`.
|
|
22941
22964
|
*
|
|
22942
|
-
* @deprecated
|
|
22965
|
+
* @deprecated As of version 1.120.2. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
22943
22966
|
*
|
|
22944
22967
|
* @returns Value of property `filterFields`
|
|
22945
22968
|
*/
|
|
@@ -23045,7 +23068,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
23045
23068
|
*
|
|
23046
23069
|
* Default value is `empty string`.
|
|
23047
23070
|
*
|
|
23048
|
-
* @deprecated
|
|
23071
|
+
* @deprecated As of version 1.120.2. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
23049
23072
|
*
|
|
23050
23073
|
* @returns Reference to `this` in order to allow method chaining
|
|
23051
23074
|
*/
|
|
@@ -23112,7 +23135,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
23112
23135
|
*
|
|
23113
23136
|
* If it is empty, no suggestion is available.
|
|
23114
23137
|
*
|
|
23115
|
-
* @deprecated
|
|
23138
|
+
* @deprecated As of version 1.120.2. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
23116
23139
|
*/
|
|
23117
23140
|
filterFields?: string | PropertyBindingInfo;
|
|
23118
23141
|
|
|
@@ -23501,7 +23524,7 @@ declare module "sap/ui/mdc/valuehelp/content/Conditions" {
|
|
|
23501
23524
|
* ID of the element which is the current target of the association {@link #getFieldHelp fieldHelp}, or
|
|
23502
23525
|
* `null`.
|
|
23503
23526
|
*
|
|
23504
|
-
* @deprecated
|
|
23527
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
23505
23528
|
*/
|
|
23506
23529
|
getFieldHelp(): ID | null;
|
|
23507
23530
|
/**
|
|
@@ -23521,7 +23544,7 @@ declare module "sap/ui/mdc/valuehelp/content/Conditions" {
|
|
|
23521
23544
|
/**
|
|
23522
23545
|
* Sets the associated {@link #getFieldHelp fieldHelp}.
|
|
23523
23546
|
*
|
|
23524
|
-
* @deprecated
|
|
23547
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
23525
23548
|
*
|
|
23526
23549
|
* @returns Reference to `this` in order to allow method chaining
|
|
23527
23550
|
*/
|
|
@@ -23584,7 +23607,7 @@ declare module "sap/ui/mdc/valuehelp/content/Conditions" {
|
|
|
23584
23607
|
* **Note:** For `Boolean`, `Date`, or `Time` types, no `FieldHelp` should be added, but a default `FieldHelp`
|
|
23585
23608
|
* used instead.
|
|
23586
23609
|
*
|
|
23587
|
-
* @deprecated
|
|
23610
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
23588
23611
|
*/
|
|
23589
23612
|
fieldHelp?: ValueHelp | string;
|
|
23590
23613
|
|
|
@@ -24482,7 +24505,7 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
24482
24505
|
*
|
|
24483
24506
|
* This event is fired when the content of the table is updated.
|
|
24484
24507
|
*
|
|
24485
|
-
* @deprecated
|
|
24508
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
24486
24509
|
*
|
|
24487
24510
|
* @returns Reference to `this` in order to allow method chaining
|
|
24488
24511
|
*/
|
|
@@ -24511,7 +24534,7 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
24511
24534
|
*
|
|
24512
24535
|
* This event is fired when the content of the table is updated.
|
|
24513
24536
|
*
|
|
24514
|
-
* @deprecated
|
|
24537
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
24515
24538
|
*
|
|
24516
24539
|
* @returns Reference to `this` in order to allow method chaining
|
|
24517
24540
|
*/
|
|
@@ -24539,7 +24562,7 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
24539
24562
|
*
|
|
24540
24563
|
* The passed function and listener object must match the ones used for event registration.
|
|
24541
24564
|
*
|
|
24542
|
-
* @deprecated
|
|
24565
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
24543
24566
|
*
|
|
24544
24567
|
* @returns Reference to `this` in order to allow method chaining
|
|
24545
24568
|
*/
|
|
@@ -24556,7 +24579,7 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
24556
24579
|
/**
|
|
24557
24580
|
* Fires event {@link #event:contentUpdated contentUpdated} to attached listeners.
|
|
24558
24581
|
*
|
|
24559
|
-
* @deprecated
|
|
24582
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
24560
24583
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
24561
24584
|
*
|
|
24562
24585
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -24614,7 +24637,7 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
24614
24637
|
/**
|
|
24615
24638
|
* This event is fired when the content of the table is updated.
|
|
24616
24639
|
*
|
|
24617
|
-
* @deprecated
|
|
24640
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
24618
24641
|
*/
|
|
24619
24642
|
contentUpdated?: (oEvent: Event) => void;
|
|
24620
24643
|
}
|
|
@@ -24622,14 +24645,14 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
24622
24645
|
/**
|
|
24623
24646
|
* Parameters of the MTable#contentUpdated event.
|
|
24624
24647
|
*
|
|
24625
|
-
* @deprecated
|
|
24648
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
24626
24649
|
*/
|
|
24627
24650
|
export interface MTable$ContentUpdatedEventParameters {}
|
|
24628
24651
|
|
|
24629
24652
|
/**
|
|
24630
24653
|
* Event object of the MTable#contentUpdated event.
|
|
24631
24654
|
*
|
|
24632
|
-
* @deprecated
|
|
24655
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
24633
24656
|
*/
|
|
24634
24657
|
export type MTable$ContentUpdatedEvent = Event<
|
|
24635
24658
|
MTable$ContentUpdatedEventParameters,
|
|
@@ -24976,7 +24999,7 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
24976
24999
|
* Default value is `false`.
|
|
24977
25000
|
*
|
|
24978
25001
|
* @since 1.110.0
|
|
24979
|
-
* @deprecated
|
|
25002
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnClick shouldOpenOnClick}
|
|
24980
25003
|
*
|
|
24981
25004
|
* @returns Value of property `opensOnClick`
|
|
24982
25005
|
*/
|
|
@@ -24993,7 +25016,7 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
24993
25016
|
* Default value is `false`.
|
|
24994
25017
|
*
|
|
24995
25018
|
* @since 1.112.0
|
|
24996
|
-
* @deprecated
|
|
25019
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnFocus shouldOpenOnFocus}
|
|
24997
25020
|
*
|
|
24998
25021
|
* @returns Value of property `opensOnFocus`
|
|
24999
25022
|
*/
|
|
@@ -25013,7 +25036,7 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
25013
25036
|
* Default value is `false`.
|
|
25014
25037
|
*
|
|
25015
25038
|
* @since 1.110.0
|
|
25016
|
-
* @deprecated
|
|
25039
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnClick shouldOpenOnClick}
|
|
25017
25040
|
*
|
|
25018
25041
|
* @returns Reference to `this` in order to allow method chaining
|
|
25019
25042
|
*/
|
|
@@ -25037,7 +25060,7 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
25037
25060
|
* Default value is `false`.
|
|
25038
25061
|
*
|
|
25039
25062
|
* @since 1.112.0
|
|
25040
|
-
* @deprecated
|
|
25063
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnFocus shouldOpenOnFocus}
|
|
25041
25064
|
*
|
|
25042
25065
|
* @returns Reference to `this` in order to allow method chaining
|
|
25043
25066
|
*/
|
|
@@ -25061,7 +25084,7 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
25061
25084
|
* or recently entered values). See also {@link module:sap/ui/mdc/ValueHelpDelegate.showTypeahead showTypeahead}
|
|
25062
25085
|
*
|
|
25063
25086
|
* @since 1.110.0
|
|
25064
|
-
* @deprecated
|
|
25087
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnClick shouldOpenOnClick}
|
|
25065
25088
|
*/
|
|
25066
25089
|
opensOnClick?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
25067
25090
|
|
|
@@ -25073,7 +25096,7 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
25073
25096
|
* or recently entered values). See also {@link module:sap/ui/mdc/ValueHelpDelegate.showTypeahead showTypeahead}
|
|
25074
25097
|
*
|
|
25075
25098
|
* @since 1.112.0
|
|
25076
|
-
* @deprecated
|
|
25099
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnFocus shouldOpenOnFocus}
|
|
25077
25100
|
*/
|
|
25078
25101
|
opensOnFocus?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
25079
25102
|
}
|
|
@@ -25343,6 +25366,8 @@ declare namespace sap {
|
|
|
25343
25366
|
|
|
25344
25367
|
"sap/ui/mdc/util/PropertyHelper": undefined;
|
|
25345
25368
|
|
|
25369
|
+
"sap/ui/mdc/util/PropertyHelperUtil": undefined;
|
|
25370
|
+
|
|
25346
25371
|
"sap/ui/mdc/util/TypeMap": undefined;
|
|
25347
25372
|
|
|
25348
25373
|
"sap/ui/mdc/util/TypeUtil": undefined;
|