@openui5/ts-types 1.132.1 → 1.134.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.f.d.ts +175 -134
- package/types/sap.m.d.ts +2251 -802
- package/types/sap.tnt.d.ts +325 -14
- package/types/sap.ui.codeeditor.d.ts +9 -7
- package/types/sap.ui.commons.d.ts +267 -266
- package/types/sap.ui.core.d.ts +970 -641
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -3
- package/types/sap.ui.integration.d.ts +315 -230
- package/types/sap.ui.layout.d.ts +70 -70
- package/types/sap.ui.mdc.d.ts +368 -125
- package/types/sap.ui.rta.d.ts +79 -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 +209 -185
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +129 -135
- package/types/sap.ui.ux3.d.ts +102 -102
- package/types/sap.ui.webc.common.d.ts +11 -11
- package/types/sap.ui.webc.fiori.d.ts +145 -145
- package/types/sap.ui.webc.main.d.ts +400 -400
- package/types/sap.uxap.d.ts +20 -14
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.134.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -147,7 +147,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
147
147
|
* the internal behavior.
|
|
148
148
|
*
|
|
149
149
|
* @since 1.88
|
|
150
|
-
* @experimental
|
|
150
|
+
* @experimental As of version 1.88.
|
|
151
151
|
*/
|
|
152
152
|
interface ChartDelegate extends AggregationBaseDelegate {
|
|
153
153
|
/**
|
|
@@ -1525,7 +1525,9 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
1525
1525
|
/**
|
|
1526
1526
|
* Status of the validation as returned via {@link sap.ui.mdc.filterbar.FilterBarBase#checkValidationState checkValidationState}
|
|
1527
1527
|
*/
|
|
1528
|
-
status:
|
|
1528
|
+
status:
|
|
1529
|
+
| sap.ui.mdc.enums.FilterBarValidationStatus
|
|
1530
|
+
| keyof typeof sap.ui.mdc.enums.FilterBarValidationStatus;
|
|
1529
1531
|
}
|
|
1530
1532
|
): void;
|
|
1531
1533
|
}
|
|
@@ -2173,8 +2175,6 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2173
2175
|
* Configuration class for type handling in delegates. Allows mapping of model types to {@link sap.ui.mdc.enums.BaseType }
|
|
2174
2176
|
* and enables model-specific type configuration.
|
|
2175
2177
|
*
|
|
2176
|
-
* **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
|
|
2177
|
-
*
|
|
2178
2178
|
* @since 1.114.0
|
|
2179
2179
|
*/
|
|
2180
2180
|
interface TypeMap {
|
|
@@ -2241,7 +2241,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2241
2241
|
* Used constraints
|
|
2242
2242
|
*/
|
|
2243
2243
|
oConstraints: object
|
|
2244
|
-
): sap.ui.mdc.enums.BaseType
|
|
2244
|
+
): sap.ui.mdc.enums.BaseType;
|
|
2245
2245
|
/**
|
|
2246
2246
|
* Convenience method to retrieve the `BaseType` for a given {@link sap.ui.model.SimpleType SimpleType}.
|
|
2247
2247
|
*
|
|
@@ -2254,10 +2254,13 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2254
2254
|
* Given type string or {@link sap.ui.model.SimpleType}
|
|
2255
2255
|
*/
|
|
2256
2256
|
oType: sap.ui.model.SimpleType
|
|
2257
|
-
): sap.ui.mdc.enums.BaseType
|
|
2257
|
+
): sap.ui.mdc.enums.BaseType;
|
|
2258
2258
|
/**
|
|
2259
2259
|
* Gets a data type class based on a given name.
|
|
2260
2260
|
*
|
|
2261
|
+
* **Note:** All modules of the required data types must be loaded before. To do this, {@link #retrieveDataTypeClasses }
|
|
2262
|
+
* can be used.
|
|
2263
|
+
*
|
|
2261
2264
|
*
|
|
2262
2265
|
* @returns Corresponding data type class
|
|
2263
2266
|
*/
|
|
@@ -2266,7 +2269,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2266
2269
|
* Class path as `string` where each name is separated by '.'
|
|
2267
2270
|
*/
|
|
2268
2271
|
sDataType: string
|
|
2269
|
-
): (
|
|
2272
|
+
): new () => sap.ui.model.SimpleType;
|
|
2270
2273
|
/**
|
|
2271
2274
|
* Gets the data type class name for a given name or alias.
|
|
2272
2275
|
*
|
|
@@ -2282,6 +2285,9 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2282
2285
|
/**
|
|
2283
2286
|
* Gets a data type instance based on a given `ObjectPath`, `FormatOptions`, and `Constraints`.
|
|
2284
2287
|
*
|
|
2288
|
+
* **Note:** All modules of the required data types must be loaded before. To do this, {@link #retrieveDataTypeClasses }
|
|
2289
|
+
* can be used.
|
|
2290
|
+
*
|
|
2285
2291
|
*
|
|
2286
2292
|
* @returns Instance of the resolved data type
|
|
2287
2293
|
*/
|
|
@@ -2360,6 +2366,19 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2360
2366
|
*/
|
|
2361
2367
|
oConstraints?: object
|
|
2362
2368
|
): object;
|
|
2369
|
+
/**
|
|
2370
|
+
* Loads modules for all requested data types.
|
|
2371
|
+
*
|
|
2372
|
+
* @since 1.133.0
|
|
2373
|
+
*
|
|
2374
|
+
* @returns Array of corresponding data type classes
|
|
2375
|
+
*/
|
|
2376
|
+
retrieveDataTypeClasses(
|
|
2377
|
+
/**
|
|
2378
|
+
* Array of class path as `string` where each name is separated by '.'
|
|
2379
|
+
*/
|
|
2380
|
+
aDataTypes: string[]
|
|
2381
|
+
): Promise<sap.ui.model.SimpleType[]>;
|
|
2363
2382
|
/**
|
|
2364
2383
|
* Sets a {@link sap.ui.mdc.enums.BaseType BaseType} and an optional model- or scenario-specific configuration
|
|
2365
2384
|
* method for a given {@link sap.ui.model.SimpleType} `ObjectPath` `string`.
|
|
@@ -2650,7 +2669,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2650
2669
|
* This might be extended with payload-dependent filters.
|
|
2651
2670
|
*
|
|
2652
2671
|
* @since 1.101.0
|
|
2653
|
-
* @deprecated
|
|
2672
|
+
* @deprecated As of version 1.118. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.findConditionsForContext findConditionsForContext}.
|
|
2654
2673
|
*
|
|
2655
2674
|
* @returns `true` if item is selected
|
|
2656
2675
|
*/
|
|
@@ -2930,7 +2949,7 @@ declare namespace sap {
|
|
|
2930
2949
|
/**
|
|
2931
2950
|
* Describes the settings that can be provided to the ChartImplementationContainer constructor.
|
|
2932
2951
|
*
|
|
2933
|
-
* @experimental
|
|
2952
|
+
* @experimental As of version 1.105.
|
|
2934
2953
|
*/
|
|
2935
2954
|
interface $ChartImplementationContainerSettings
|
|
2936
2955
|
extends sap.ui.core.$ControlSettings {
|
|
@@ -2964,7 +2983,7 @@ declare namespace sap {
|
|
|
2964
2983
|
/**
|
|
2965
2984
|
* Describes the settings that can be provided to the ChartSelectionDetails constructor.
|
|
2966
2985
|
*
|
|
2967
|
-
* @experimental
|
|
2986
|
+
* @experimental As of version 1.88.
|
|
2968
2987
|
*/
|
|
2969
2988
|
interface $ChartSelectionDetailsSettings
|
|
2970
2989
|
extends sap.m.$SelectionDetailsSettings {
|
|
@@ -3003,13 +3022,13 @@ declare namespace sap {
|
|
|
3003
3022
|
/**
|
|
3004
3023
|
* Describes the settings that can be provided to the Item constructor.
|
|
3005
3024
|
*
|
|
3006
|
-
* @experimental
|
|
3025
|
+
* @experimental As of version 1.88.
|
|
3007
3026
|
*/
|
|
3008
3027
|
interface $ItemSettings extends sap.ui.core.$ElementSettings {
|
|
3009
3028
|
/**
|
|
3010
3029
|
* The unique identifier of the chart item that reflects the name of the property in the PropertyInfo.
|
|
3011
3030
|
*
|
|
3012
|
-
* @deprecated
|
|
3031
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
3013
3032
|
*/
|
|
3014
3033
|
name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3015
3034
|
|
|
@@ -3043,7 +3062,7 @@ declare namespace sap {
|
|
|
3043
3062
|
/**
|
|
3044
3063
|
* Describes the settings that can be provided to the SelectionDetailsActions constructor.
|
|
3045
3064
|
*
|
|
3046
|
-
* @experimental
|
|
3065
|
+
* @experimental As of version 1.88.
|
|
3047
3066
|
*/
|
|
3048
3067
|
interface $SelectionDetailsActionsSettings
|
|
3049
3068
|
extends sap.ui.core.$ElementSettings {
|
|
@@ -3080,7 +3099,7 @@ declare namespace sap {
|
|
|
3080
3099
|
* Based on the `showNoDataStruct` the `content` or `noDataContent` will be shown.
|
|
3081
3100
|
*
|
|
3082
3101
|
* @since 1.105
|
|
3083
|
-
* @experimental
|
|
3102
|
+
* @experimental As of version 1.105.
|
|
3084
3103
|
*/
|
|
3085
3104
|
class ChartImplementationContainer extends sap.ui.core.Control {
|
|
3086
3105
|
/**
|
|
@@ -3198,7 +3217,7 @@ declare namespace sap {
|
|
|
3198
3217
|
* the configuration specified.
|
|
3199
3218
|
*
|
|
3200
3219
|
* @since 1.88
|
|
3201
|
-
* @experimental
|
|
3220
|
+
* @experimental As of version 1.88.
|
|
3202
3221
|
*/
|
|
3203
3222
|
class ChartSelectionDetails extends sap.m.SelectionDetails {
|
|
3204
3223
|
/**
|
|
@@ -3347,7 +3366,7 @@ declare namespace sap {
|
|
|
3347
3366
|
* The `Item` control for the chart/property metadata used within MDC Chart.
|
|
3348
3367
|
*
|
|
3349
3368
|
* @since 1.88
|
|
3350
|
-
* @experimental
|
|
3369
|
+
* @experimental As of version 1.88.
|
|
3351
3370
|
*/
|
|
3352
3371
|
class Item extends sap.ui.core.Element {
|
|
3353
3372
|
/**
|
|
@@ -3427,7 +3446,7 @@ declare namespace sap {
|
|
|
3427
3446
|
*
|
|
3428
3447
|
* The unique identifier of the chart item that reflects the name of the property in the PropertyInfo.
|
|
3429
3448
|
*
|
|
3430
|
-
* @deprecated
|
|
3449
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
3431
3450
|
*
|
|
3432
3451
|
* @returns Value of property `name`
|
|
3433
3452
|
*/
|
|
@@ -3487,7 +3506,7 @@ declare namespace sap {
|
|
|
3487
3506
|
*
|
|
3488
3507
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3489
3508
|
*
|
|
3490
|
-
* @deprecated
|
|
3509
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
3491
3510
|
*
|
|
3492
3511
|
* @returns Reference to `this` in order to allow method chaining
|
|
3493
3512
|
*/
|
|
@@ -3554,7 +3573,7 @@ declare namespace sap {
|
|
|
3554
3573
|
* The `SelectionDetailsActions` is used to provide additional functionality to the Details popover.
|
|
3555
3574
|
*
|
|
3556
3575
|
* @since 1.88
|
|
3557
|
-
* @experimental
|
|
3576
|
+
* @experimental As of version 1.88.
|
|
3558
3577
|
*/
|
|
3559
3578
|
class SelectionDetailsActions extends sap.ui.core.Element {
|
|
3560
3579
|
/**
|
|
@@ -3899,7 +3918,7 @@ declare namespace sap {
|
|
|
3899
3918
|
* - `role`
|
|
3900
3919
|
* - `dataType`
|
|
3901
3920
|
*
|
|
3902
|
-
* @experimental
|
|
3921
|
+
* @experimental As of version 1.80.
|
|
3903
3922
|
*/
|
|
3904
3923
|
type PropertyInfo = sap.ui.mdc.util.PropertyInfo & {
|
|
3905
3924
|
/**
|
|
@@ -4696,7 +4715,7 @@ declare namespace sap {
|
|
|
4696
4715
|
* Defines the personalization mode of the chart.
|
|
4697
4716
|
*
|
|
4698
4717
|
* @since 1.115
|
|
4699
|
-
* @experimental
|
|
4718
|
+
* @experimental As of version 1.115.
|
|
4700
4719
|
*/
|
|
4701
4720
|
enum ChartP13nMode {
|
|
4702
4721
|
/**
|
|
@@ -4721,7 +4740,7 @@ declare namespace sap {
|
|
|
4721
4740
|
* Can be used to remove some of the default `ToolbarAction`. For more information, see {@link sap.ui.mdc.Chart#ignoreToolbarActions}.
|
|
4722
4741
|
*
|
|
4723
4742
|
* @since 1.115
|
|
4724
|
-
* @experimental
|
|
4743
|
+
* @experimental As of version 1.115.
|
|
4725
4744
|
*/
|
|
4726
4745
|
enum ChartToolbarActionType {
|
|
4727
4746
|
/**
|
|
@@ -4898,15 +4917,15 @@ declare namespace sap {
|
|
|
4898
4917
|
/**
|
|
4899
4918
|
* Filter field in error state.
|
|
4900
4919
|
*/
|
|
4901
|
-
FieldInErrorState = "
|
|
4920
|
+
FieldInErrorState = "FieldInErrorState",
|
|
4902
4921
|
/**
|
|
4903
4922
|
* No errors detected.
|
|
4904
4923
|
*/
|
|
4905
|
-
NoError = "
|
|
4924
|
+
NoError = "NoError",
|
|
4906
4925
|
/**
|
|
4907
|
-
* Required filter
|
|
4926
|
+
* Required filter field without a value.
|
|
4908
4927
|
*/
|
|
4909
|
-
RequiredHasNoValue = "
|
|
4928
|
+
RequiredHasNoValue = "RequiredHasNoValue",
|
|
4910
4929
|
}
|
|
4911
4930
|
/**
|
|
4912
4931
|
* Defines the behavior of the {@link sap.ui.mdc.Link}.
|
|
@@ -5623,16 +5642,16 @@ declare namespace sap {
|
|
|
5623
5642
|
/**
|
|
5624
5643
|
* The `Type` of the `Field` or `FilterField` using the `Operator` is used.
|
|
5625
5644
|
*/
|
|
5626
|
-
Self = "
|
|
5645
|
+
Self = "Self",
|
|
5627
5646
|
/**
|
|
5628
5647
|
* The `Type` of the `Field` or `FilterField` using the `Operator` is used for validation, but the user
|
|
5629
5648
|
* input is used as value.
|
|
5630
5649
|
*/
|
|
5631
|
-
SelfNoParse = "
|
|
5650
|
+
SelfNoParse = "SelfNoParse",
|
|
5632
5651
|
/**
|
|
5633
5652
|
* A simple string type is used to display static text.
|
|
5634
5653
|
*/
|
|
5635
|
-
Static = "
|
|
5654
|
+
Static = "Static",
|
|
5636
5655
|
}
|
|
5637
5656
|
/**
|
|
5638
5657
|
* Enumeration of the possible reasons for the search event.
|
|
@@ -5651,7 +5670,7 @@ declare namespace sap {
|
|
|
5651
5670
|
/**
|
|
5652
5671
|
* Used if the mentioned reasons are not applicable.
|
|
5653
5672
|
*/
|
|
5654
|
-
Unclear = "",
|
|
5673
|
+
Unclear = "Unclear",
|
|
5655
5674
|
/**
|
|
5656
5675
|
* The applied variant is marked as Apply Automatically.
|
|
5657
5676
|
*/
|
|
@@ -6113,7 +6132,7 @@ declare namespace sap {
|
|
|
6113
6132
|
*
|
|
6114
6133
|
* **Note:** For `Boolean` fields, no `ValueHelp` should be added, but a default `ValueHelp` used instead.
|
|
6115
6134
|
*
|
|
6116
|
-
* @deprecated
|
|
6135
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
6117
6136
|
*/
|
|
6118
6137
|
fieldHelp?: sap.ui.mdc.ValueHelp | string;
|
|
6119
6138
|
|
|
@@ -7540,7 +7559,7 @@ declare namespace sap {
|
|
|
7540
7559
|
* ID of the element which is the current target of the association {@link #getFieldHelp fieldHelp}, or
|
|
7541
7560
|
* `null`.
|
|
7542
7561
|
*
|
|
7543
|
-
* @deprecated
|
|
7562
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
7544
7563
|
*/
|
|
7545
7564
|
getFieldHelp(): sap.ui.core.ID | null;
|
|
7546
7565
|
/**
|
|
@@ -8093,7 +8112,7 @@ declare namespace sap {
|
|
|
8093
8112
|
/**
|
|
8094
8113
|
* Sets the associated {@link #getFieldHelp fieldHelp}.
|
|
8095
8114
|
*
|
|
8096
|
-
* @deprecated
|
|
8115
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
8097
8116
|
*
|
|
8098
8117
|
* @returns Reference to `this` in order to allow method chaining
|
|
8099
8118
|
*/
|
|
@@ -8857,7 +8876,7 @@ declare namespace sap {
|
|
|
8857
8876
|
/**
|
|
8858
8877
|
* Describes the settings that can be provided to the FilterBar constructor.
|
|
8859
8878
|
*
|
|
8860
|
-
* @deprecated
|
|
8879
|
+
* @deprecated As of version 1.124.0. Please use the `sap.ui.mdc.valuehelp.FilterBar` control instead.
|
|
8861
8880
|
*/
|
|
8862
8881
|
interface $FilterBarSettings
|
|
8863
8882
|
extends sap.ui.mdc.valuehelp.$FilterBarSettings {}
|
|
@@ -8874,7 +8893,7 @@ declare namespace sap {
|
|
|
8874
8893
|
* on its own.
|
|
8875
8894
|
*
|
|
8876
8895
|
* @since 1.84.0
|
|
8877
|
-
* @deprecated
|
|
8896
|
+
* @deprecated As of version 1.124.0. Please use the `sap.ui.mdc.valuehelp.FilterBar` control instead.
|
|
8878
8897
|
*/
|
|
8879
8898
|
class FilterBar extends sap.ui.mdc.valuehelp.FilterBar {
|
|
8880
8899
|
/**
|
|
@@ -9086,6 +9105,12 @@ declare namespace sap {
|
|
|
9086
9105
|
filtersChanged?: (oEvent: FilterBarBase$FiltersChangedEvent) => void;
|
|
9087
9106
|
}
|
|
9088
9107
|
|
|
9108
|
+
/**
|
|
9109
|
+
* Describes the settings that can be provided to the IFilterContainer constructor.
|
|
9110
|
+
*/
|
|
9111
|
+
interface $IFilterContainerSettings
|
|
9112
|
+
extends sap.ui.core.$ElementSettings {}
|
|
9113
|
+
|
|
9089
9114
|
/**
|
|
9090
9115
|
* Parameters of the FilterBarBase#filtersChanged event.
|
|
9091
9116
|
*/
|
|
@@ -9727,9 +9752,51 @@ declare namespace sap {
|
|
|
9727
9752
|
*
|
|
9728
9753
|
* @since 1.61.0
|
|
9729
9754
|
*/
|
|
9730
|
-
class IFilterContainer {
|
|
9755
|
+
class IFilterContainer extends sap.ui.core.Element {
|
|
9756
|
+
/**
|
|
9757
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
9758
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
9759
|
+
* of the syntax of the settings object.
|
|
9760
|
+
*
|
|
9761
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Element#constructor sap.ui.core.Element }
|
|
9762
|
+
* can be used.
|
|
9763
|
+
*/
|
|
9731
9764
|
constructor();
|
|
9732
9765
|
|
|
9766
|
+
/**
|
|
9767
|
+
* Creates a new subclass of class sap.ui.mdc.filterbar.IFilterContainer with name `sClassName` and enriches
|
|
9768
|
+
* it with the information contained in `oClassInfo`.
|
|
9769
|
+
*
|
|
9770
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
9771
|
+
*
|
|
9772
|
+
*
|
|
9773
|
+
* @returns Created class / constructor function
|
|
9774
|
+
*/
|
|
9775
|
+
static extend<T extends Record<string, unknown>>(
|
|
9776
|
+
/**
|
|
9777
|
+
* Name of the class being created
|
|
9778
|
+
*/
|
|
9779
|
+
sClassName: string,
|
|
9780
|
+
/**
|
|
9781
|
+
* Object literal with information about the class
|
|
9782
|
+
*/
|
|
9783
|
+
oClassInfo?: sap.ClassInfo<
|
|
9784
|
+
T,
|
|
9785
|
+
sap.ui.mdc.filterbar.IFilterContainer
|
|
9786
|
+
>,
|
|
9787
|
+
/**
|
|
9788
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9789
|
+
* used by this class
|
|
9790
|
+
*/
|
|
9791
|
+
FNMetaImpl?: Function
|
|
9792
|
+
): Function;
|
|
9793
|
+
/**
|
|
9794
|
+
* Returns a metadata object for class sap.ui.mdc.filterbar.IFilterContainer.
|
|
9795
|
+
*
|
|
9796
|
+
*
|
|
9797
|
+
* @returns Metadata object describing this class
|
|
9798
|
+
*/
|
|
9799
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9733
9800
|
/**
|
|
9734
9801
|
* Overwrites the default exit to clean up the created layout properly.
|
|
9735
9802
|
*/
|
|
@@ -10284,7 +10351,7 @@ declare namespace sap {
|
|
|
10284
10351
|
*
|
|
10285
10352
|
* If it is empty, no suggestion is available.
|
|
10286
10353
|
*
|
|
10287
|
-
* @deprecated
|
|
10354
|
+
* @deprecated As of version 1.120.2. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
10288
10355
|
*/
|
|
10289
10356
|
filterFields?:
|
|
10290
10357
|
| string
|
|
@@ -11731,7 +11798,7 @@ declare namespace sap {
|
|
|
11731
11798
|
*
|
|
11732
11799
|
* Default value is `empty string`.
|
|
11733
11800
|
*
|
|
11734
|
-
* @deprecated
|
|
11801
|
+
* @deprecated As of version 1.120.2. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
11735
11802
|
*
|
|
11736
11803
|
* @returns Value of property `filterFields`
|
|
11737
11804
|
*/
|
|
@@ -11837,7 +11904,7 @@ declare namespace sap {
|
|
|
11837
11904
|
*
|
|
11838
11905
|
* Default value is `empty string`.
|
|
11839
11906
|
*
|
|
11840
|
-
* @deprecated
|
|
11907
|
+
* @deprecated As of version 1.120.2. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
11841
11908
|
*
|
|
11842
11909
|
* @returns Reference to `this` in order to allow method chaining
|
|
11843
11910
|
*/
|
|
@@ -12363,7 +12430,7 @@ declare namespace sap {
|
|
|
12363
12430
|
* **Note:** For `Boolean`, `Date`, or `Time` types, no `FieldHelp` should be added, but a default `FieldHelp`
|
|
12364
12431
|
* used instead.
|
|
12365
12432
|
*
|
|
12366
|
-
* @deprecated
|
|
12433
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
12367
12434
|
*/
|
|
12368
12435
|
fieldHelp?: sap.ui.mdc.ValueHelp | string;
|
|
12369
12436
|
|
|
@@ -12492,7 +12559,7 @@ declare namespace sap {
|
|
|
12492
12559
|
/**
|
|
12493
12560
|
* This event is fired when the content of the table is updated.
|
|
12494
12561
|
*
|
|
12495
|
-
* @deprecated
|
|
12562
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
12496
12563
|
*/
|
|
12497
12564
|
contentUpdated?: (oEvent: sap.ui.base.Event) => void;
|
|
12498
12565
|
}
|
|
@@ -12500,7 +12567,7 @@ declare namespace sap {
|
|
|
12500
12567
|
/**
|
|
12501
12568
|
* Parameters of the MTable#contentUpdated event.
|
|
12502
12569
|
*
|
|
12503
|
-
* @deprecated
|
|
12570
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
12504
12571
|
*/
|
|
12505
12572
|
interface MTable$ContentUpdatedEventParameters {}
|
|
12506
12573
|
|
|
@@ -12586,7 +12653,7 @@ declare namespace sap {
|
|
|
12586
12653
|
* ID of the element which is the current target of the association {@link #getFieldHelp fieldHelp}, or
|
|
12587
12654
|
* `null`.
|
|
12588
12655
|
*
|
|
12589
|
-
* @deprecated
|
|
12656
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
12590
12657
|
*/
|
|
12591
12658
|
getFieldHelp(): sap.ui.core.ID | null;
|
|
12592
12659
|
/**
|
|
@@ -12606,7 +12673,7 @@ declare namespace sap {
|
|
|
12606
12673
|
/**
|
|
12607
12674
|
* Sets the associated {@link #getFieldHelp fieldHelp}.
|
|
12608
12675
|
*
|
|
12609
|
-
* @deprecated
|
|
12676
|
+
* @deprecated As of version 1.114.0. replaced by {@link #setValueHelp valueHelp} association
|
|
12610
12677
|
*
|
|
12611
12678
|
* @returns Reference to `this` in order to allow method chaining
|
|
12612
12679
|
*/
|
|
@@ -13229,7 +13296,7 @@ declare namespace sap {
|
|
|
13229
13296
|
*
|
|
13230
13297
|
* This event is fired when the content of the table is updated.
|
|
13231
13298
|
*
|
|
13232
|
-
* @deprecated
|
|
13299
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
13233
13300
|
*
|
|
13234
13301
|
* @returns Reference to `this` in order to allow method chaining
|
|
13235
13302
|
*/
|
|
@@ -13258,7 +13325,7 @@ declare namespace sap {
|
|
|
13258
13325
|
*
|
|
13259
13326
|
* This event is fired when the content of the table is updated.
|
|
13260
13327
|
*
|
|
13261
|
-
* @deprecated
|
|
13328
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
13262
13329
|
*
|
|
13263
13330
|
* @returns Reference to `this` in order to allow method chaining
|
|
13264
13331
|
*/
|
|
@@ -13286,7 +13353,7 @@ declare namespace sap {
|
|
|
13286
13353
|
*
|
|
13287
13354
|
* The passed function and listener object must match the ones used for event registration.
|
|
13288
13355
|
*
|
|
13289
|
-
* @deprecated
|
|
13356
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
13290
13357
|
*
|
|
13291
13358
|
* @returns Reference to `this` in order to allow method chaining
|
|
13292
13359
|
*/
|
|
@@ -13303,7 +13370,7 @@ declare namespace sap {
|
|
|
13303
13370
|
/**
|
|
13304
13371
|
* Fires event {@link #event:contentUpdated contentUpdated} to attached listeners.
|
|
13305
13372
|
*
|
|
13306
|
-
* @deprecated
|
|
13373
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
13307
13374
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
13308
13375
|
*
|
|
13309
13376
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -13361,7 +13428,7 @@ declare namespace sap {
|
|
|
13361
13428
|
/**
|
|
13362
13429
|
* Event object of the MTable#contentUpdated event.
|
|
13363
13430
|
*
|
|
13364
|
-
* @deprecated
|
|
13431
|
+
* @deprecated As of version 1.118.0. This event is not fired or consumed anymore
|
|
13365
13432
|
*/
|
|
13366
13433
|
type MTable$ContentUpdatedEvent = sap.ui.base.Event<
|
|
13367
13434
|
MTable$ContentUpdatedEventParameters,
|
|
@@ -13451,7 +13518,7 @@ declare namespace sap {
|
|
|
13451
13518
|
* or recently entered values). See also {@link module:sap/ui/mdc/ValueHelpDelegate.showTypeahead showTypeahead}
|
|
13452
13519
|
*
|
|
13453
13520
|
* @since 1.110.0
|
|
13454
|
-
* @deprecated
|
|
13521
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnClick shouldOpenOnClick}
|
|
13455
13522
|
*/
|
|
13456
13523
|
opensOnClick?:
|
|
13457
13524
|
| boolean
|
|
@@ -13466,7 +13533,7 @@ declare namespace sap {
|
|
|
13466
13533
|
* or recently entered values). See also {@link module:sap/ui/mdc/ValueHelpDelegate.showTypeahead showTypeahead}
|
|
13467
13534
|
*
|
|
13468
13535
|
* @since 1.112.0
|
|
13469
|
-
* @deprecated
|
|
13536
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnFocus shouldOpenOnFocus}
|
|
13470
13537
|
*/
|
|
13471
13538
|
opensOnFocus?:
|
|
13472
13539
|
| boolean
|
|
@@ -13889,7 +13956,7 @@ declare namespace sap {
|
|
|
13889
13956
|
* Default value is `false`.
|
|
13890
13957
|
*
|
|
13891
13958
|
* @since 1.110.0
|
|
13892
|
-
* @deprecated
|
|
13959
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnClick shouldOpenOnClick}
|
|
13893
13960
|
*
|
|
13894
13961
|
* @returns Value of property `opensOnClick`
|
|
13895
13962
|
*/
|
|
@@ -13906,7 +13973,7 @@ declare namespace sap {
|
|
|
13906
13973
|
* Default value is `false`.
|
|
13907
13974
|
*
|
|
13908
13975
|
* @since 1.112.0
|
|
13909
|
-
* @deprecated
|
|
13976
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnFocus shouldOpenOnFocus}
|
|
13910
13977
|
*
|
|
13911
13978
|
* @returns Value of property `opensOnFocus`
|
|
13912
13979
|
*/
|
|
@@ -13926,7 +13993,7 @@ declare namespace sap {
|
|
|
13926
13993
|
* Default value is `false`.
|
|
13927
13994
|
*
|
|
13928
13995
|
* @since 1.110.0
|
|
13929
|
-
* @deprecated
|
|
13996
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnClick shouldOpenOnClick}
|
|
13930
13997
|
*
|
|
13931
13998
|
* @returns Reference to `this` in order to allow method chaining
|
|
13932
13999
|
*/
|
|
@@ -13950,7 +14017,7 @@ declare namespace sap {
|
|
|
13950
14017
|
* Default value is `false`.
|
|
13951
14018
|
*
|
|
13952
14019
|
* @since 1.112.0
|
|
13953
|
-
* @deprecated
|
|
14020
|
+
* @deprecated As of version 1.121.0. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.shouldOpenOnFocus shouldOpenOnFocus}
|
|
13954
14021
|
*
|
|
13955
14022
|
* @returns Reference to `this` in order to allow method chaining
|
|
13956
14023
|
*/
|
|
@@ -13963,6 +14030,170 @@ declare namespace sap {
|
|
|
13963
14030
|
}
|
|
13964
14031
|
}
|
|
13965
14032
|
|
|
14033
|
+
namespace actiontoolbar {
|
|
14034
|
+
/**
|
|
14035
|
+
* Describes the settings that can be provided to the ActionToolbarAction constructor.
|
|
14036
|
+
*/
|
|
14037
|
+
interface $ActionToolbarActionSettings
|
|
14038
|
+
extends sap.ui.core.$ControlSettings {
|
|
14039
|
+
/**
|
|
14040
|
+
* Contains the information where the action is displayed on the `ActionToolbar`.
|
|
14041
|
+
*/
|
|
14042
|
+
layoutInformation?:
|
|
14043
|
+
| object
|
|
14044
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
14045
|
+
| `{${string}}`;
|
|
14046
|
+
|
|
14047
|
+
/**
|
|
14048
|
+
* The control that is displayed on the `ActionToolbar`.
|
|
14049
|
+
*/
|
|
14050
|
+
action?: sap.ui.core.Control;
|
|
14051
|
+
}
|
|
14052
|
+
|
|
14053
|
+
/**
|
|
14054
|
+
* The action for an {@link sap.ui.mdc.ActionToolbar ActionToolbar} control with given layout information
|
|
14055
|
+
* that determines where the wrapped control is displayed on the `ActionToolbar`.
|
|
14056
|
+
*
|
|
14057
|
+
* @since 1.58
|
|
14058
|
+
*/
|
|
14059
|
+
class ActionToolbarAction
|
|
14060
|
+
extends sap.ui.core.Control
|
|
14061
|
+
implements sap.m.IOverflowToolbarContent
|
|
14062
|
+
{
|
|
14063
|
+
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
14064
|
+
/**
|
|
14065
|
+
* Constructor for a new ActionToolbarAction.
|
|
14066
|
+
*
|
|
14067
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
14068
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
14069
|
+
* of the syntax of the settings object.
|
|
14070
|
+
*/
|
|
14071
|
+
constructor(
|
|
14072
|
+
/**
|
|
14073
|
+
* Initial settings for the new control
|
|
14074
|
+
*/
|
|
14075
|
+
mSettings?: sap.ui.mdc.actiontoolbar.$ActionToolbarActionSettings
|
|
14076
|
+
);
|
|
14077
|
+
/**
|
|
14078
|
+
* Constructor for a new ActionToolbarAction.
|
|
14079
|
+
*
|
|
14080
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
14081
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
14082
|
+
* of the syntax of the settings object.
|
|
14083
|
+
*/
|
|
14084
|
+
constructor(
|
|
14085
|
+
/**
|
|
14086
|
+
* ID for the new control, generated automatically if no ID is given
|
|
14087
|
+
*/
|
|
14088
|
+
sId?: string,
|
|
14089
|
+
/**
|
|
14090
|
+
* Initial settings for the new control
|
|
14091
|
+
*/
|
|
14092
|
+
mSettings?: sap.ui.mdc.actiontoolbar.$ActionToolbarActionSettings
|
|
14093
|
+
);
|
|
14094
|
+
|
|
14095
|
+
/**
|
|
14096
|
+
* Creates a new subclass of class sap.ui.mdc.actiontoolbar.ActionToolbarAction with name `sClassName` and
|
|
14097
|
+
* enriches it with the information contained in `oClassInfo`.
|
|
14098
|
+
*
|
|
14099
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
14100
|
+
*
|
|
14101
|
+
*
|
|
14102
|
+
* @returns Created class / constructor function
|
|
14103
|
+
*/
|
|
14104
|
+
static extend<T extends Record<string, unknown>>(
|
|
14105
|
+
/**
|
|
14106
|
+
* Name of the class being created
|
|
14107
|
+
*/
|
|
14108
|
+
sClassName: string,
|
|
14109
|
+
/**
|
|
14110
|
+
* Object literal with information about the class
|
|
14111
|
+
*/
|
|
14112
|
+
oClassInfo?: sap.ClassInfo<
|
|
14113
|
+
T,
|
|
14114
|
+
sap.ui.mdc.actiontoolbar.ActionToolbarAction
|
|
14115
|
+
>,
|
|
14116
|
+
/**
|
|
14117
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14118
|
+
* used by this class
|
|
14119
|
+
*/
|
|
14120
|
+
FNMetaImpl?: Function
|
|
14121
|
+
): Function;
|
|
14122
|
+
/**
|
|
14123
|
+
* Returns a metadata object for class sap.ui.mdc.actiontoolbar.ActionToolbarAction.
|
|
14124
|
+
*
|
|
14125
|
+
*
|
|
14126
|
+
* @returns Metadata object describing this class
|
|
14127
|
+
*/
|
|
14128
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14129
|
+
/**
|
|
14130
|
+
* Destroys the action in the aggregation {@link #getAction action}.
|
|
14131
|
+
*
|
|
14132
|
+
*
|
|
14133
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
14134
|
+
*/
|
|
14135
|
+
destroyAction(): this;
|
|
14136
|
+
/**
|
|
14137
|
+
* Gets content of aggregation {@link #getAction action}.
|
|
14138
|
+
*
|
|
14139
|
+
* The control that is displayed on the `ActionToolbar`.
|
|
14140
|
+
*/
|
|
14141
|
+
getAction(): sap.ui.core.Control;
|
|
14142
|
+
/**
|
|
14143
|
+
* Gets current value of property {@link #getLayoutInformation layoutInformation}.
|
|
14144
|
+
*
|
|
14145
|
+
* Contains the information where the action is displayed on the `ActionToolbar`.
|
|
14146
|
+
*
|
|
14147
|
+
* Default value is `...see text or source`.
|
|
14148
|
+
*
|
|
14149
|
+
*
|
|
14150
|
+
* @returns Value of property `layoutInformation`
|
|
14151
|
+
*/
|
|
14152
|
+
getLayoutInformation(): object;
|
|
14153
|
+
/**
|
|
14154
|
+
* Observes changes in `Action` aggregation.
|
|
14155
|
+
*
|
|
14156
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14157
|
+
*/
|
|
14158
|
+
observeChanges(
|
|
14159
|
+
/**
|
|
14160
|
+
* Changes
|
|
14161
|
+
*/
|
|
14162
|
+
oChanges: object
|
|
14163
|
+
): void;
|
|
14164
|
+
/**
|
|
14165
|
+
* Sets the aggregated {@link #getAction action}.
|
|
14166
|
+
*
|
|
14167
|
+
*
|
|
14168
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
14169
|
+
*/
|
|
14170
|
+
setAction(
|
|
14171
|
+
/**
|
|
14172
|
+
* The action to set
|
|
14173
|
+
*/
|
|
14174
|
+
oAction: sap.ui.core.Control
|
|
14175
|
+
): this;
|
|
14176
|
+
/**
|
|
14177
|
+
* Sets a new value for property {@link #getLayoutInformation layoutInformation}.
|
|
14178
|
+
*
|
|
14179
|
+
* Contains the information where the action is displayed on the `ActionToolbar`.
|
|
14180
|
+
*
|
|
14181
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14182
|
+
*
|
|
14183
|
+
* Default value is `...see text or source`.
|
|
14184
|
+
*
|
|
14185
|
+
*
|
|
14186
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
14187
|
+
*/
|
|
14188
|
+
setLayoutInformation(
|
|
14189
|
+
/**
|
|
14190
|
+
* New value for property `layoutInformation`
|
|
14191
|
+
*/
|
|
14192
|
+
oLayoutInformation?: object
|
|
14193
|
+
): this;
|
|
14194
|
+
}
|
|
14195
|
+
}
|
|
14196
|
+
|
|
13966
14197
|
namespace link {
|
|
13967
14198
|
/**
|
|
13968
14199
|
* Describes the settings that can be provided to the LinkItem constructor.
|
|
@@ -14714,7 +14945,7 @@ declare namespace sap {
|
|
|
14714
14945
|
* setting the `demandPopin` property of the column. See {@link sap.m.Table#getAutoPopinMode} for more details,
|
|
14715
14946
|
* which is automatically set to `true`.
|
|
14716
14947
|
*
|
|
14717
|
-
* @deprecated
|
|
14948
|
+
* @deprecated As of version 1.110. replaced with {@link sap.ui.mdc.table.ResponsiveColumnSettings#importance }
|
|
14718
14949
|
*
|
|
14719
14950
|
* This property will be ignored whenever the {@link sap.ui.mdc.table.ResponsiveColumnSettings} are applied
|
|
14720
14951
|
* to the column.
|
|
@@ -14728,7 +14959,7 @@ declare namespace sap {
|
|
|
14728
14959
|
* Defines data property related to the column.
|
|
14729
14960
|
*
|
|
14730
14961
|
* @since 1.84
|
|
14731
|
-
* @deprecated
|
|
14962
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
14732
14963
|
*/
|
|
14733
14964
|
dataProperty?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14734
14965
|
|
|
@@ -15068,15 +15299,16 @@ declare namespace sap {
|
|
|
15068
15299
|
/**
|
|
15069
15300
|
* The highlight state of the rows.
|
|
15070
15301
|
*
|
|
15071
|
-
* If the highlight is set to {@link sap
|
|
15072
|
-
* highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap
|
|
15302
|
+
* If the highlight is set to {@link module:sap/ui/core/message/MessageType MessageType.None} (default),
|
|
15303
|
+
* no highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link module:sap/ui/core/message/MessageType }
|
|
15073
15304
|
* or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
|
|
15074
15305
|
* for accessibility contrast reasons).
|
|
15075
15306
|
*
|
|
15076
15307
|
* Accessibility support is provided with the {@link sap.ui.mdc.table.RowSettings#setHighlightText highlightText }
|
|
15077
|
-
* property. If the `highlight` property is set to a value of {@link sap
|
|
15078
|
-
* property does not need to be set because a default text is used. However, the default
|
|
15079
|
-
* by setting the `highlightText` property. In all other cases the `highlightText`
|
|
15308
|
+
* property. If the `highlight` property is set to a value of {@link module:sap/ui/core/message/MessageType},
|
|
15309
|
+
* the `highlightText` property does not need to be set because a default text is used. However, the default
|
|
15310
|
+
* text can be overridden by setting the `highlightText` property. In all other cases the `highlightText`
|
|
15311
|
+
* property must be set.
|
|
15080
15312
|
*/
|
|
15081
15313
|
highlight?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15082
15314
|
|
|
@@ -15325,7 +15557,7 @@ declare namespace sap {
|
|
|
15325
15557
|
* Defines data property related to the column.
|
|
15326
15558
|
*
|
|
15327
15559
|
* @since 1.84
|
|
15328
|
-
* @deprecated
|
|
15560
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
15329
15561
|
*
|
|
15330
15562
|
* @returns Value of property `dataProperty`
|
|
15331
15563
|
*/
|
|
@@ -15386,7 +15618,7 @@ declare namespace sap {
|
|
|
15386
15618
|
*
|
|
15387
15619
|
* Default value is `"None"`.
|
|
15388
15620
|
*
|
|
15389
|
-
* @deprecated
|
|
15621
|
+
* @deprecated As of version 1.110. replaced with {@link sap.ui.mdc.table.ResponsiveColumnSettings#importance }
|
|
15390
15622
|
*
|
|
15391
15623
|
* This property will be ignored whenever the {@link sap.ui.mdc.table.ResponsiveColumnSettings} are applied
|
|
15392
15624
|
* to the column.
|
|
@@ -15461,7 +15693,7 @@ declare namespace sap {
|
|
|
15461
15693
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15462
15694
|
*
|
|
15463
15695
|
* @since 1.84
|
|
15464
|
-
* @deprecated
|
|
15696
|
+
* @deprecated As of version 1.115. Please use `propertyKey` instead.
|
|
15465
15697
|
*
|
|
15466
15698
|
* @returns Reference to `this` in order to allow method chaining
|
|
15467
15699
|
*/
|
|
@@ -15552,7 +15784,7 @@ declare namespace sap {
|
|
|
15552
15784
|
*
|
|
15553
15785
|
* Default value is `"None"`.
|
|
15554
15786
|
*
|
|
15555
|
-
* @deprecated
|
|
15787
|
+
* @deprecated As of version 1.110. replaced with {@link sap.ui.mdc.table.ResponsiveColumnSettings#importance }
|
|
15556
15788
|
*
|
|
15557
15789
|
* This property will be ignored whenever the {@link sap.ui.mdc.table.ResponsiveColumnSettings} are applied
|
|
15558
15790
|
* to the column.
|
|
@@ -17342,15 +17574,16 @@ declare namespace sap {
|
|
|
17342
17574
|
*
|
|
17343
17575
|
* The highlight state of the rows.
|
|
17344
17576
|
*
|
|
17345
|
-
* If the highlight is set to {@link sap
|
|
17346
|
-
* highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap
|
|
17577
|
+
* If the highlight is set to {@link module:sap/ui/core/message/MessageType MessageType.None} (default),
|
|
17578
|
+
* no highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link module:sap/ui/core/message/MessageType }
|
|
17347
17579
|
* or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
|
|
17348
17580
|
* for accessibility contrast reasons).
|
|
17349
17581
|
*
|
|
17350
17582
|
* Accessibility support is provided with the {@link sap.ui.mdc.table.RowSettings#setHighlightText highlightText }
|
|
17351
|
-
* property. If the `highlight` property is set to a value of {@link sap
|
|
17352
|
-
* property does not need to be set because a default text is used. However, the default
|
|
17353
|
-
* by setting the `highlightText` property. In all other cases the `highlightText`
|
|
17583
|
+
* property. If the `highlight` property is set to a value of {@link module:sap/ui/core/message/MessageType},
|
|
17584
|
+
* the `highlightText` property does not need to be set because a default text is used. However, the default
|
|
17585
|
+
* text can be overridden by setting the `highlightText` property. In all other cases the `highlightText`
|
|
17586
|
+
* property must be set.
|
|
17354
17587
|
*
|
|
17355
17588
|
* Default value is `"None"`.
|
|
17356
17589
|
*
|
|
@@ -17448,15 +17681,16 @@ declare namespace sap {
|
|
|
17448
17681
|
*
|
|
17449
17682
|
* The highlight state of the rows.
|
|
17450
17683
|
*
|
|
17451
|
-
* If the highlight is set to {@link sap
|
|
17452
|
-
* highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap
|
|
17684
|
+
* If the highlight is set to {@link module:sap/ui/core/message/MessageType MessageType.None} (default),
|
|
17685
|
+
* no highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link module:sap/ui/core/message/MessageType }
|
|
17453
17686
|
* or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
|
|
17454
17687
|
* for accessibility contrast reasons).
|
|
17455
17688
|
*
|
|
17456
17689
|
* Accessibility support is provided with the {@link sap.ui.mdc.table.RowSettings#setHighlightText highlightText }
|
|
17457
|
-
* property. If the `highlight` property is set to a value of {@link sap
|
|
17458
|
-
* property does not need to be set because a default text is used. However, the default
|
|
17459
|
-
* by setting the `highlightText` property. In all other cases the `highlightText`
|
|
17690
|
+
* property. If the `highlight` property is set to a value of {@link module:sap/ui/core/message/MessageType},
|
|
17691
|
+
* the `highlightText` property does not need to be set because a default text is used. However, the default
|
|
17692
|
+
* text can be overridden by setting the `highlightText` property. In all other cases the `highlightText`
|
|
17693
|
+
* property must be set.
|
|
17460
17694
|
*
|
|
17461
17695
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17462
17696
|
*
|
|
@@ -17947,7 +18181,7 @@ declare namespace sap {
|
|
|
17947
18181
|
/**
|
|
17948
18182
|
* Describes the settings that can be provided to the Chart constructor.
|
|
17949
18183
|
*
|
|
17950
|
-
* @experimental
|
|
18184
|
+
* @experimental As of version 1.88.
|
|
17951
18185
|
*/
|
|
17952
18186
|
interface $ChartSettings extends sap.ui.mdc.$ControlSettings {
|
|
17953
18187
|
/**
|
|
@@ -18512,7 +18746,7 @@ declare namespace sap {
|
|
|
18512
18746
|
/**
|
|
18513
18747
|
* This property has no effect and will be removed soon.
|
|
18514
18748
|
*
|
|
18515
|
-
* @deprecated
|
|
18749
|
+
* @deprecated As of version 1.115. the concept has been discarded.
|
|
18516
18750
|
*/
|
|
18517
18751
|
height?:
|
|
18518
18752
|
| sap.ui.core.CSSSize
|
|
@@ -19385,10 +19619,15 @@ declare namespace sap {
|
|
|
19385
19619
|
|
|
19386
19620
|
/**
|
|
19387
19621
|
* The `Chart` control creates a chart based on metadata and the configuration specified.
|
|
19388
|
-
*
|
|
19622
|
+
*
|
|
19623
|
+
*
|
|
19624
|
+
* **Note:** The `Chart` control acts as a wrapper that is used to enhance an instance of a given chart
|
|
19625
|
+
* control framework (in the following texts referred to as inner chart) with functionalities, such as a
|
|
19626
|
+
* `toolbar`, `p13n`, and `VariantManagement`. The inner chart instance and its configuration must be provided
|
|
19627
|
+
* via an implementation of a `ChartDelegate` module.
|
|
19389
19628
|
*
|
|
19390
19629
|
* @since 1.88
|
|
19391
|
-
* @experimental
|
|
19630
|
+
* @experimental As of version 1.88.
|
|
19392
19631
|
*/
|
|
19393
19632
|
class Chart
|
|
19394
19633
|
extends sap.ui.mdc.Control
|
|
@@ -20350,7 +20589,7 @@ declare namespace sap {
|
|
|
20350
20589
|
/**
|
|
20351
20590
|
* Returns the `typeUtil` made available by a delegate module.
|
|
20352
20591
|
*
|
|
20353
|
-
* @deprecated
|
|
20592
|
+
* @deprecated As of version 1.115.0. please see {@link #getTypeMap}
|
|
20354
20593
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20355
20594
|
*
|
|
20356
20595
|
* @returns `TypeUtil` object
|
|
@@ -20539,7 +20778,7 @@ declare namespace sap {
|
|
|
20539
20778
|
/**
|
|
20540
20779
|
* Returns the `typeUtil` made available by a delegate module.
|
|
20541
20780
|
*
|
|
20542
|
-
* @deprecated
|
|
20781
|
+
* @deprecated As of version 1.115.0. please see {@link #getTypeMap}
|
|
20543
20782
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20544
20783
|
*
|
|
20545
20784
|
* @returns `TypeUtil` object
|
|
@@ -20762,8 +21001,8 @@ declare namespace sap {
|
|
|
20762
21001
|
*
|
|
20763
21002
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
20764
21003
|
*
|
|
20765
|
-
* @deprecated
|
|
20766
|
-
* `additionalValue` property to bind the control.
|
|
21004
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. Use the `value` property
|
|
21005
|
+
* and `additionalValue` property to bind the control.
|
|
20767
21006
|
*
|
|
20768
21007
|
* @returns Reference to `this` to allow method chaining
|
|
20769
21008
|
*/
|
|
@@ -20836,8 +21075,8 @@ declare namespace sap {
|
|
|
20836
21075
|
*
|
|
20837
21076
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
20838
21077
|
*
|
|
20839
|
-
* @deprecated
|
|
20840
|
-
* `additionalValue` property to bind the control.
|
|
21078
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. Use the `value` property
|
|
21079
|
+
* and `additionalValue` property to bind the control.
|
|
20841
21080
|
*
|
|
20842
21081
|
* @returns Conditions of the field
|
|
20843
21082
|
*/
|
|
@@ -20850,8 +21089,8 @@ declare namespace sap {
|
|
|
20850
21089
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
20851
21090
|
* value of the `dataType` property is ignored.
|
|
20852
21091
|
*
|
|
20853
|
-
* @deprecated
|
|
20854
|
-
* the `value` property is used.
|
|
21092
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The type in the binding
|
|
21093
|
+
* to the `value` property is used.
|
|
20855
21094
|
*
|
|
20856
21095
|
* @returns Value of property `dataType`
|
|
20857
21096
|
*/
|
|
@@ -20864,8 +21103,8 @@ declare namespace sap {
|
|
|
20864
21103
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
20865
21104
|
* values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
20866
21105
|
*
|
|
20867
|
-
* @deprecated
|
|
20868
|
-
* in the binding to the `value` property is used.
|
|
21106
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The `Constraints` of
|
|
21107
|
+
* the type in the binding to the `value` property is used.
|
|
20869
21108
|
*
|
|
20870
21109
|
* @returns Value of property `dataTypeConstraints`
|
|
20871
21110
|
*/
|
|
@@ -20878,8 +21117,8 @@ declare namespace sap {
|
|
|
20878
21117
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
20879
21118
|
* values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
20880
21119
|
*
|
|
20881
|
-
* @deprecated
|
|
20882
|
-
* type in the binding to the `value` property is used.
|
|
21120
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The `FormatOptions` of
|
|
21121
|
+
* the type in the binding to the `value` property is used.
|
|
20883
21122
|
*
|
|
20884
21123
|
* @returns Value of property `dataTypeFormatOptions`
|
|
20885
21124
|
*/
|
|
@@ -20919,8 +21158,8 @@ declare namespace sap {
|
|
|
20919
21158
|
*
|
|
20920
21159
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
20921
21160
|
*
|
|
20922
|
-
* @deprecated
|
|
20923
|
-
* `additionalValue` property to bind the control.
|
|
21161
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. Use the `value` property
|
|
21162
|
+
* and `additionalValue` property to bind the control.
|
|
20924
21163
|
*
|
|
20925
21164
|
* @returns Reference to `this` to allow method chaining
|
|
20926
21165
|
*/
|
|
@@ -20938,8 +21177,8 @@ declare namespace sap {
|
|
|
20938
21177
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
20939
21178
|
* value of the `dataType` property is ignored.
|
|
20940
21179
|
*
|
|
20941
|
-
* @deprecated
|
|
20942
|
-
* the `value` property is used.
|
|
21180
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The type in the binding
|
|
21181
|
+
* to the `value` property is used.
|
|
20943
21182
|
*
|
|
20944
21183
|
* @returns Reference to `this` to allow method chaining
|
|
20945
21184
|
*/
|
|
@@ -20957,8 +21196,8 @@ declare namespace sap {
|
|
|
20957
21196
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
20958
21197
|
* values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
20959
21198
|
*
|
|
20960
|
-
* @deprecated
|
|
20961
|
-
* in the binding to the `value` property is used.
|
|
21199
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The `Constraints` of
|
|
21200
|
+
* the type in the binding to the `value` property is used.
|
|
20962
21201
|
*
|
|
20963
21202
|
* @returns Reference to `this` to allow method chaining
|
|
20964
21203
|
*/
|
|
@@ -20976,8 +21215,8 @@ declare namespace sap {
|
|
|
20976
21215
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
20977
21216
|
* values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
20978
21217
|
*
|
|
20979
|
-
* @deprecated
|
|
20980
|
-
* type in the binding to the `value` property is used.
|
|
21218
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. The `FormatOptions` of
|
|
21219
|
+
* the type in the binding to the `value` property is used.
|
|
20981
21220
|
*
|
|
20982
21221
|
* @returns Reference to `this` to allow method chaining
|
|
20983
21222
|
*/
|
|
@@ -20990,7 +21229,7 @@ declare namespace sap {
|
|
|
20990
21229
|
/**
|
|
20991
21230
|
* This property must not be set for the `Field`
|
|
20992
21231
|
*
|
|
20993
|
-
* @deprecated
|
|
21232
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`.
|
|
20994
21233
|
*
|
|
20995
21234
|
* @returns `this` to allow method chaining.
|
|
20996
21235
|
*/
|
|
@@ -21030,8 +21269,8 @@ declare namespace sap {
|
|
|
21030
21269
|
*
|
|
21031
21270
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
21032
21271
|
*
|
|
21033
|
-
* @deprecated
|
|
21034
|
-
* `additionalValue` property to bind the control.
|
|
21272
|
+
* @deprecated As of version 1.54. this property is not supported for the `Field`. Use the `value` property
|
|
21273
|
+
* and `additionalValue` property to bind the control.
|
|
21035
21274
|
*
|
|
21036
21275
|
* @returns Reference to `this` to allow method chaining
|
|
21037
21276
|
*/
|
|
@@ -21968,7 +22207,7 @@ declare namespace sap {
|
|
|
21968
22207
|
*
|
|
21969
22208
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
21970
22209
|
*
|
|
21971
|
-
* @deprecated
|
|
22210
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. Use the `items`
|
|
21972
22211
|
* aggregation to bind the control.
|
|
21973
22212
|
*
|
|
21974
22213
|
* @returns Reference to `this` to allow method chaining
|
|
@@ -22037,7 +22276,7 @@ declare namespace sap {
|
|
|
22037
22276
|
*
|
|
22038
22277
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
22039
22278
|
*
|
|
22040
|
-
* @deprecated
|
|
22279
|
+
* @deprecated As of version 1.54. this property is not supported for the `MultiValueField`. Use the `items`
|
|
22041
22280
|
* aggregation to bind the control.
|
|
22042
22281
|
*
|
|
22043
22282
|
* @returns conditions of the field
|
|
@@ -22051,8 +22290,8 @@ declare namespace sap {
|
|
|
22051
22290
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22052
22291
|
* the value of the `dataType` property is ignored.
|
|
22053
22292
|
*
|
|
22054
|
-
* @deprecated
|
|
22055
|
-
* binding to the `items` aggregation is used.
|
|
22293
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
22294
|
+
* the binding to the `items` aggregation is used.
|
|
22056
22295
|
*
|
|
22057
22296
|
* @returns Value of property `dataType`
|
|
22058
22297
|
*/
|
|
@@ -22065,8 +22304,8 @@ declare namespace sap {
|
|
|
22065
22304
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22066
22305
|
* the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
22067
22306
|
*
|
|
22068
|
-
* @deprecated
|
|
22069
|
-
* binding to the `items` aggregation is used.
|
|
22307
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
22308
|
+
* the binding to the `items` aggregation is used.
|
|
22070
22309
|
*
|
|
22071
22310
|
* @returns Value of property `dataTypeConstraints`
|
|
22072
22311
|
*/
|
|
@@ -22079,8 +22318,8 @@ declare namespace sap {
|
|
|
22079
22318
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22080
22319
|
* the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
22081
22320
|
*
|
|
22082
|
-
* @deprecated
|
|
22083
|
-
* binding to the `items` aggregation is used.
|
|
22321
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
22322
|
+
* the binding to the `items` aggregation is used.
|
|
22084
22323
|
*
|
|
22085
22324
|
* @returns Value of property `dataTypeFormatOptions`
|
|
22086
22325
|
*/
|
|
@@ -22123,7 +22362,7 @@ declare namespace sap {
|
|
|
22123
22362
|
/**
|
|
22124
22363
|
* Gets current value of property {@link #getMultipleLines multipleLines}.
|
|
22125
22364
|
*
|
|
22126
|
-
* @deprecated
|
|
22365
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`.
|
|
22127
22366
|
*
|
|
22128
22367
|
* @returns Value for property `multipleLines`
|
|
22129
22368
|
*/
|
|
@@ -22185,7 +22424,7 @@ declare namespace sap {
|
|
|
22185
22424
|
*
|
|
22186
22425
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
22187
22426
|
*
|
|
22188
|
-
* @deprecated
|
|
22427
|
+
* @deprecated As of version 1.54. this property is not supported for the `MultiValueField`. Use the `items`
|
|
22189
22428
|
* aggregation to bind the control.
|
|
22190
22429
|
*
|
|
22191
22430
|
* @returns Reference to `this` to allow method chaining
|
|
@@ -22203,8 +22442,8 @@ declare namespace sap {
|
|
|
22203
22442
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22204
22443
|
* the value of the `dataType` property is ignored.
|
|
22205
22444
|
*
|
|
22206
|
-
* @deprecated
|
|
22207
|
-
* binding to the `items` aggregation is used.
|
|
22445
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
22446
|
+
* the binding to the `items` aggregation is used.
|
|
22208
22447
|
*
|
|
22209
22448
|
* @returns Reference to `this` to allow method chaining
|
|
22210
22449
|
*/
|
|
@@ -22222,8 +22461,8 @@ declare namespace sap {
|
|
|
22222
22461
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22223
22462
|
* the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
22224
22463
|
*
|
|
22225
|
-
* @deprecated
|
|
22226
|
-
* binding to the `items` aggregation is used.
|
|
22464
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
22465
|
+
* the binding to the `items` aggregation is used.
|
|
22227
22466
|
*
|
|
22228
22467
|
* @returns Reference to `this` to allow method chaining
|
|
22229
22468
|
*/
|
|
@@ -22241,8 +22480,8 @@ declare namespace sap {
|
|
|
22241
22480
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22242
22481
|
* the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
22243
22482
|
*
|
|
22244
|
-
* @deprecated
|
|
22245
|
-
* binding to the `items` aggregation is used.
|
|
22483
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. The type in
|
|
22484
|
+
* the binding to the `items` aggregation is used.
|
|
22246
22485
|
*
|
|
22247
22486
|
* @returns Reference to `this` to allow method chaining
|
|
22248
22487
|
*/
|
|
@@ -22287,7 +22526,7 @@ declare namespace sap {
|
|
|
22287
22526
|
/**
|
|
22288
22527
|
* This property must not be set for the `MultiValueField` control.
|
|
22289
22528
|
*
|
|
22290
|
-
* @deprecated
|
|
22529
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField` control.
|
|
22291
22530
|
*
|
|
22292
22531
|
* @returns `this` to allow method chaining.
|
|
22293
22532
|
*/
|
|
@@ -22300,7 +22539,7 @@ declare namespace sap {
|
|
|
22300
22539
|
/**
|
|
22301
22540
|
* Sets a new value for property {@link #getMultipleLines multipleLines}.
|
|
22302
22541
|
*
|
|
22303
|
-
* @deprecated
|
|
22542
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`.
|
|
22304
22543
|
*
|
|
22305
22544
|
* @returns Reference to `this` to allow method chaining
|
|
22306
22545
|
*/
|
|
@@ -22315,7 +22554,7 @@ declare namespace sap {
|
|
|
22315
22554
|
*
|
|
22316
22555
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
22317
22556
|
*
|
|
22318
|
-
* @deprecated
|
|
22557
|
+
* @deprecated As of version 1.93. this property is not supported for the `MultiValueField`. Use the `items`
|
|
22319
22558
|
* aggregation to bind the control.
|
|
22320
22559
|
*
|
|
22321
22560
|
* @returns Reference to `this` to allow method chaining
|
|
@@ -23142,7 +23381,7 @@ declare namespace sap {
|
|
|
23142
23381
|
*
|
|
23143
23382
|
* This property has no effect and will be removed soon.
|
|
23144
23383
|
*
|
|
23145
|
-
* @deprecated
|
|
23384
|
+
* @deprecated As of version 1.115. the concept has been discarded.
|
|
23146
23385
|
*
|
|
23147
23386
|
* @returns Value of property `height`
|
|
23148
23387
|
*/
|
|
@@ -23700,7 +23939,7 @@ declare namespace sap {
|
|
|
23700
23939
|
*
|
|
23701
23940
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23702
23941
|
*
|
|
23703
|
-
* @deprecated
|
|
23942
|
+
* @deprecated As of version 1.115. the concept has been discarded.
|
|
23704
23943
|
*
|
|
23705
23944
|
* @returns Reference to `this` in order to allow method chaining
|
|
23706
23945
|
*/
|
|
@@ -24619,6 +24858,8 @@ declare namespace sap {
|
|
|
24619
24858
|
}
|
|
24620
24859
|
|
|
24621
24860
|
interface IUI5DefineDependencyNames {
|
|
24861
|
+
"sap/ui/mdc/actiontoolbar/ActionToolbarAction": undefined;
|
|
24862
|
+
|
|
24622
24863
|
"sap/ui/mdc/AggregationBaseDelegate": undefined;
|
|
24623
24864
|
|
|
24624
24865
|
"sap/ui/mdc/BaseDelegate": undefined;
|
|
@@ -24881,6 +25122,8 @@ declare namespace sap {
|
|
|
24881
25122
|
|
|
24882
25123
|
"sap/ui/mdc/util/PropertyHelper": undefined;
|
|
24883
25124
|
|
|
25125
|
+
"sap/ui/mdc/util/PropertyHelperUtil": undefined;
|
|
25126
|
+
|
|
24884
25127
|
"sap/ui/mdc/util/TypeMap": undefined;
|
|
24885
25128
|
|
|
24886
25129
|
"sap/ui/mdc/util/TypeUtil": undefined;
|