@openui5/types 1.123.1 → 1.124.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +49 -12
- package/types/sap.m.d.ts +4149 -474
- package/types/sap.tnt.d.ts +3 -2
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +17 -9
- package/types/sap.ui.core.d.ts +130 -231
- package/types/sap.ui.dt.d.ts +6 -2
- package/types/sap.ui.fl.d.ts +3 -2
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +7 -4
- package/types/sap.ui.mdc.d.ts +485 -758
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +4 -3
- package/types/sap.ui.ux3.d.ts +3 -2
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +191 -12
- package/types/sap.ui.webc.main.d.ts +557 -33
- package/types/sap.uxap.d.ts +11 -6
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.124.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -167,6 +167,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
167
167
|
* the internal behavior.
|
|
168
168
|
*
|
|
169
169
|
* @since 1.88
|
|
170
|
+
* @experimental (since 1.88)
|
|
170
171
|
*/
|
|
171
172
|
interface ChartDelegate extends AggregationBaseDelegate {
|
|
172
173
|
/**
|
|
@@ -231,6 +232,9 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
231
232
|
/**
|
|
232
233
|
* Returns the relevant property info based on the metadata used with the chart instance.
|
|
233
234
|
*
|
|
235
|
+
* **Note:** The result of this function must be kept stable throughout the lifecycle of your application.
|
|
236
|
+
* Any changes of the returned values might result in undesired effects.
|
|
237
|
+
*
|
|
234
238
|
*
|
|
235
239
|
* @returns Array of the property infos that is used within the chart
|
|
236
240
|
*/
|
|
@@ -631,6 +635,8 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
631
635
|
|
|
632
636
|
/**
|
|
633
637
|
* Chart `ChartTypeLayoutConfig` type.
|
|
638
|
+
*
|
|
639
|
+
* @experimental (since 1.80)
|
|
634
640
|
*/
|
|
635
641
|
export type ChartTypeLayoutConfig = {
|
|
636
642
|
/**
|
|
@@ -645,6 +651,8 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
645
651
|
|
|
646
652
|
/**
|
|
647
653
|
* Chart `ChartTypeObject` type.
|
|
654
|
+
*
|
|
655
|
+
* @experimental (since 1.80)
|
|
648
656
|
*/
|
|
649
657
|
export type ChartTypeObject = {
|
|
650
658
|
/**
|
|
@@ -667,6 +675,8 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
667
675
|
|
|
668
676
|
/**
|
|
669
677
|
* Event handler for `SelectionDetails` popover.
|
|
678
|
+
*
|
|
679
|
+
* @experimental (since 1.80)
|
|
670
680
|
*/
|
|
671
681
|
export type SelectionDetails = {
|
|
672
682
|
/**
|
|
@@ -681,6 +691,8 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
681
691
|
|
|
682
692
|
/**
|
|
683
693
|
* Chart `ZoomState` type.
|
|
694
|
+
*
|
|
695
|
+
* @experimental (since 1.80)
|
|
684
696
|
*/
|
|
685
697
|
export type ZoomState = {
|
|
686
698
|
/**
|
|
@@ -729,6 +741,8 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
729
741
|
|
|
730
742
|
import { ConditionObject } from "sap/ui/mdc/condition/Condition";
|
|
731
743
|
|
|
744
|
+
import ContentMode from "sap/ui/mdc/enums/ContentMode";
|
|
745
|
+
|
|
732
746
|
import {
|
|
733
747
|
default as ValueHelp,
|
|
734
748
|
ItemForValueConfiguration,
|
|
@@ -742,10 +756,13 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
742
756
|
|
|
743
757
|
import ParseException from "sap/ui/model/ParseException";
|
|
744
758
|
|
|
759
|
+
import Operator from "sap/ui/mdc/condition/Operator";
|
|
760
|
+
|
|
761
|
+
import SimpleType from "sap/ui/model/SimpleType";
|
|
762
|
+
|
|
745
763
|
/**
|
|
746
764
|
* Delegate for {@link sap.ui.mdc.field.FieldBase FieldBase}.
|
|
747
|
-
*
|
|
748
|
-
* be used for productive usage.
|
|
765
|
+
*
|
|
749
766
|
*
|
|
750
767
|
* @since 1.72.0
|
|
751
768
|
*/
|
|
@@ -848,6 +865,28 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
848
865
|
*/
|
|
849
866
|
aValues: any[]
|
|
850
867
|
): undefined | object;
|
|
868
|
+
/**
|
|
869
|
+
* Provides the possibility to customize / replace the internal content of a field
|
|
870
|
+
*
|
|
871
|
+
* @since 1.124.0
|
|
872
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
873
|
+
*
|
|
874
|
+
* @returns Array containing the created controls
|
|
875
|
+
*/
|
|
876
|
+
createContent(
|
|
877
|
+
/**
|
|
878
|
+
* `Field` control instance
|
|
879
|
+
*/
|
|
880
|
+
oField: FieldBase,
|
|
881
|
+
/**
|
|
882
|
+
* A given content mode
|
|
883
|
+
*/
|
|
884
|
+
sContentMode: ContentMode | keyof typeof ContentMode,
|
|
885
|
+
/**
|
|
886
|
+
* ID of the internal control to be created.
|
|
887
|
+
*/
|
|
888
|
+
sId: string
|
|
889
|
+
): Promise<Control[]>;
|
|
851
890
|
/**
|
|
852
891
|
* Determines the text for the autocomplete functionality.
|
|
853
892
|
*
|
|
@@ -1230,6 +1269,51 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
1230
1269
|
*/
|
|
1231
1270
|
bCaseSensitive: boolean
|
|
1232
1271
|
): boolean;
|
|
1272
|
+
/**
|
|
1273
|
+
* Enables applications to control condition updates based on pasted values.
|
|
1274
|
+
* By default, this method returns conditions with an `EQ` operator without using the description, as it
|
|
1275
|
+
* does not ensure the description is valid.
|
|
1276
|
+
*
|
|
1277
|
+
* **Note:** Returned values can either be strings which should be parsed by the ConditionType itself or
|
|
1278
|
+
* pre-created conditions.
|
|
1279
|
+
*
|
|
1280
|
+
* @since 1.124
|
|
1281
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1282
|
+
*
|
|
1283
|
+
* @returns Array of `ConditionObject`/`string` values. If it is not available right away, a `Promise` is
|
|
1284
|
+
* returned.
|
|
1285
|
+
*/
|
|
1286
|
+
parsePasteDataToConditions(
|
|
1287
|
+
/**
|
|
1288
|
+
* `Field` control instance
|
|
1289
|
+
*/
|
|
1290
|
+
oField: FieldBase,
|
|
1291
|
+
/**
|
|
1292
|
+
* Pre-parsed paste data
|
|
1293
|
+
*/
|
|
1294
|
+
aParsedData: Array<{
|
|
1295
|
+
value: string;
|
|
1296
|
+
|
|
1297
|
+
additionalValue: string;
|
|
1298
|
+
}>,
|
|
1299
|
+
/**
|
|
1300
|
+
* Condition-related settings object
|
|
1301
|
+
*/
|
|
1302
|
+
oSettings: {
|
|
1303
|
+
/**
|
|
1304
|
+
* Default operator for the current field
|
|
1305
|
+
*/
|
|
1306
|
+
defaultOperator: Operator;
|
|
1307
|
+
/**
|
|
1308
|
+
* Configured type for a value
|
|
1309
|
+
*/
|
|
1310
|
+
valueType: SimpleType;
|
|
1311
|
+
/**
|
|
1312
|
+
* Configured type for an additional value
|
|
1313
|
+
*/
|
|
1314
|
+
additionalValueType: SimpleType;
|
|
1315
|
+
}
|
|
1316
|
+
): Array<ConditionObject | string> | Promise<any[]>;
|
|
1233
1317
|
}
|
|
1234
1318
|
const FieldBaseDelegate: FieldBaseDelegate;
|
|
1235
1319
|
export default FieldBaseDelegate;
|
|
@@ -1246,6 +1330,7 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
|
|
|
1246
1330
|
* Delegate for {@link sap.ui.mdc.MultiValueField MultiValueField}.
|
|
1247
1331
|
*
|
|
1248
1332
|
* @since 1.93.0
|
|
1333
|
+
* @experimental (since 1.93)
|
|
1249
1334
|
*/
|
|
1250
1335
|
interface MultiValueFieldDelegate extends FieldBaseDelegate {
|
|
1251
1336
|
/**
|
|
@@ -1253,6 +1338,8 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
|
|
|
1253
1338
|
*
|
|
1254
1339
|
* Items can be removed, updated, or added. Use the binding information of the `MultiValueField` control
|
|
1255
1340
|
* to update the data in the related model.
|
|
1341
|
+
*
|
|
1342
|
+
* @experimental
|
|
1256
1343
|
*/
|
|
1257
1344
|
updateItems(
|
|
1258
1345
|
/**
|
|
@@ -1374,6 +1461,9 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
1374
1461
|
/**
|
|
1375
1462
|
* Retrieves the relevant metadata for a given payload and returns the property info array.
|
|
1376
1463
|
*
|
|
1464
|
+
* **Note:** The result of this function must be kept stable throughout the lifecycle of your application.
|
|
1465
|
+
* Any changes of the returned values might result in undesired effects.
|
|
1466
|
+
*
|
|
1377
1467
|
*
|
|
1378
1468
|
* @returns `Promise` that resolves into an array of property info objects
|
|
1379
1469
|
*/
|
|
@@ -1469,8 +1559,7 @@ declare module "sap/ui/mdc/LinkDelegate" {
|
|
|
1469
1559
|
|
|
1470
1560
|
/**
|
|
1471
1561
|
* Base delegate for {@link sap.ui.mdc.Link}. Extend this object in your project to use all functionalities
|
|
1472
|
-
* of the {@link sap.ui.mdc.Link}.
|
|
1473
|
-
* and hence this should not be used for productive usage.
|
|
1562
|
+
* of the {@link sap.ui.mdc.Link}.
|
|
1474
1563
|
*
|
|
1475
1564
|
* @since 1.74
|
|
1476
1565
|
*/
|
|
@@ -1952,6 +2041,9 @@ declare module "sap/ui/mdc/TableDelegate" {
|
|
|
1952
2041
|
*
|
|
1953
2042
|
* By default, this method returns a `Promise` that resolves with an empty array.
|
|
1954
2043
|
*
|
|
2044
|
+
* **Note:** The result of this function must be kept stable throughout the lifecycle of your application.
|
|
2045
|
+
* Any changes of the returned values might result in undesired effects.
|
|
2046
|
+
*
|
|
1955
2047
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1956
2048
|
*
|
|
1957
2049
|
* @returns A `Promise` that resolves with the property information
|
|
@@ -2128,9 +2220,6 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2128
2220
|
* Configuration class for type handling in delegates. Allows mapping of model types to {@link sap.ui.mdc.enums.BaseType }
|
|
2129
2221
|
* and enables model-specific type configuration.
|
|
2130
2222
|
*
|
|
2131
|
-
* **Note:** This utility is experimental and the API/behavior is not finalized. Hence, it should not be
|
|
2132
|
-
* used for productive usage.
|
|
2133
|
-
*
|
|
2134
2223
|
* @since 1.114.0
|
|
2135
2224
|
*/
|
|
2136
2225
|
interface TypeMap {
|
|
@@ -2391,9 +2480,6 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2391
2480
|
/**
|
|
2392
2481
|
* Delegate for {@link sap.ui.mdc.ValueHelp}.
|
|
2393
2482
|
*
|
|
2394
|
-
* **Note:** The class is experimental and the API/behavior is not finalized and hence this should not be
|
|
2395
|
-
* used for productive usage.
|
|
2396
|
-
*
|
|
2397
2483
|
* @since 1.95.0
|
|
2398
2484
|
*/
|
|
2399
2485
|
interface ValueHelpDelegate extends BaseDelegate {
|
|
@@ -3002,7 +3088,7 @@ declare module "sap/ui/mdc/library" {
|
|
|
3002
3088
|
/**
|
|
3003
3089
|
* of the grouped item
|
|
3004
3090
|
*/
|
|
3005
|
-
|
|
3091
|
+
key: string;
|
|
3006
3092
|
/**
|
|
3007
3093
|
* Defines if the item has to be grouped
|
|
3008
3094
|
*/
|
|
@@ -3016,7 +3102,7 @@ declare module "sap/ui/mdc/library" {
|
|
|
3016
3102
|
/**
|
|
3017
3103
|
* of the item
|
|
3018
3104
|
*/
|
|
3019
|
-
|
|
3105
|
+
key: string;
|
|
3020
3106
|
/**
|
|
3021
3107
|
* of the item in the aggregation
|
|
3022
3108
|
*/
|
|
@@ -3034,7 +3120,7 @@ declare module "sap/ui/mdc/library" {
|
|
|
3034
3120
|
/**
|
|
3035
3121
|
* of the sorted item
|
|
3036
3122
|
*/
|
|
3037
|
-
|
|
3123
|
+
key: string;
|
|
3038
3124
|
/**
|
|
3039
3125
|
* Sort order for this item
|
|
3040
3126
|
*/
|
|
@@ -3078,491 +3164,31 @@ declare module "sap/ui/mdc/library" {
|
|
|
3078
3164
|
* The keys for this object must be aligned with any {@link sap.ui.mdc.util.FilterConditionMap} the `FilterTypeConfig`
|
|
3079
3165
|
* is combined with during filter creation.
|
|
3080
3166
|
*
|
|
3081
|
-
* **Structure:** Object.<string, {@link sap.ui.mdc.util.FilterTypeConfigEntry}>
|
|
3082
|
-
*
|
|
3083
|
-
* @since 1.121.0
|
|
3084
|
-
*/
|
|
3085
|
-
type FilterTypeConfig = Record<string, FilterTypeConfigEntry>;
|
|
3086
|
-
|
|
3087
|
-
/**
|
|
3088
|
-
* Configuration object for filter creation.
|
|
3089
|
-
*
|
|
3090
|
-
* @since 1.121.0
|
|
3091
|
-
*/
|
|
3092
|
-
type FilterTypeConfigEntry = {
|
|
3093
|
-
/**
|
|
3094
|
-
* Type instance
|
|
3095
|
-
*/
|
|
3096
|
-
type: Type;
|
|
3097
|
-
/**
|
|
3098
|
-
* Indicates if a created filter is case-sensitive
|
|
3099
|
-
*/
|
|
3100
|
-
caseSensitive?: boolean;
|
|
3101
|
-
/**
|
|
3102
|
-
* BaseType configuration for the given type useful for externalization/internalization of filter values
|
|
3103
|
-
*/
|
|
3104
|
-
baseType?: BaseType | keyof typeof BaseType;
|
|
3105
|
-
};
|
|
3106
|
-
}
|
|
3107
|
-
}
|
|
3108
|
-
|
|
3109
|
-
declare module "sap/ui/mdc/ActionToolbar" {
|
|
3110
|
-
import {
|
|
3111
|
-
default as OverflowToolbar,
|
|
3112
|
-
$OverflowToolbarSettings,
|
|
3113
|
-
} from "sap/m/OverflowToolbar";
|
|
3114
|
-
|
|
3115
|
-
import ActionToolbarAction from "sap/ui/mdc/actiontoolbar/ActionToolbarAction";
|
|
3116
|
-
|
|
3117
|
-
import Control from "sap/ui/core/Control";
|
|
3118
|
-
|
|
3119
|
-
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
3120
|
-
|
|
3121
|
-
import {
|
|
3122
|
-
PropertyBindingInfo,
|
|
3123
|
-
AggregationBindingInfo,
|
|
3124
|
-
} from "sap/ui/base/ManagedObject";
|
|
3125
|
-
|
|
3126
|
-
/**
|
|
3127
|
-
* The `ActionToolbar` control can be used in the {@link sap.ui.mdc.Chart Chart} and {@link sap.ui.mdc.Table Table }
|
|
3128
|
-
* controls to display actions. The control handles key user adaptation and positioning of the actions depending
|
|
3129
|
-
* on the given layout information. **Note:** The content aggregation of the control must not be used.
|
|
3130
|
-
*
|
|
3131
|
-
* @since 1.58
|
|
3132
|
-
*/
|
|
3133
|
-
export default class ActionToolbar extends OverflowToolbar {
|
|
3134
|
-
/**
|
|
3135
|
-
* Constructor for a new ActionToolbar.
|
|
3136
|
-
*
|
|
3137
|
-
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
3138
|
-
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
3139
|
-
* of the syntax of the settings object.
|
|
3140
|
-
*/
|
|
3141
|
-
constructor(
|
|
3142
|
-
/**
|
|
3143
|
-
* initial settings for the new control
|
|
3144
|
-
*/
|
|
3145
|
-
mSettings?: $ActionToolbarSettings
|
|
3146
|
-
);
|
|
3147
|
-
/**
|
|
3148
|
-
* Constructor for a new ActionToolbar.
|
|
3149
|
-
*
|
|
3150
|
-
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
3151
|
-
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
3152
|
-
* of the syntax of the settings object.
|
|
3153
|
-
*/
|
|
3154
|
-
constructor(
|
|
3155
|
-
/**
|
|
3156
|
-
* ID for the new control, generated automatically if no ID is given
|
|
3157
|
-
*/
|
|
3158
|
-
sId?: string,
|
|
3159
|
-
/**
|
|
3160
|
-
* initial settings for the new control
|
|
3161
|
-
*/
|
|
3162
|
-
mSettings?: $ActionToolbarSettings
|
|
3163
|
-
);
|
|
3164
|
-
|
|
3165
|
-
/**
|
|
3166
|
-
* Creates a new subclass of class sap.ui.mdc.ActionToolbar with name `sClassName` and enriches it with
|
|
3167
|
-
* the information contained in `oClassInfo`.
|
|
3168
|
-
*
|
|
3169
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.OverflowToolbar.extend}.
|
|
3170
|
-
*
|
|
3171
|
-
*
|
|
3172
|
-
* @returns Created class / constructor function
|
|
3173
|
-
*/
|
|
3174
|
-
static extend<T extends Record<string, unknown>>(
|
|
3175
|
-
/**
|
|
3176
|
-
* Name of the class being created
|
|
3177
|
-
*/
|
|
3178
|
-
sClassName: string,
|
|
3179
|
-
/**
|
|
3180
|
-
* Object literal with information about the class
|
|
3181
|
-
*/
|
|
3182
|
-
oClassInfo?: sap.ClassInfo<T, ActionToolbar>,
|
|
3183
|
-
/**
|
|
3184
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3185
|
-
* used by this class
|
|
3186
|
-
*/
|
|
3187
|
-
FNMetaImpl?: Function
|
|
3188
|
-
): Function;
|
|
3189
|
-
/**
|
|
3190
|
-
* Returns a metadata object for class sap.ui.mdc.ActionToolbar.
|
|
3191
|
-
*
|
|
3192
|
-
*
|
|
3193
|
-
* @returns Metadata object describing this class
|
|
3194
|
-
*/
|
|
3195
|
-
static getMetadata(): ElementMetadata;
|
|
3196
|
-
/**
|
|
3197
|
-
* Adds some action to the aggregation {@link #getActions actions}.
|
|
3198
|
-
*
|
|
3199
|
-
*
|
|
3200
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3201
|
-
*/
|
|
3202
|
-
addAction(
|
|
3203
|
-
/**
|
|
3204
|
-
* The action to add; if empty, nothing is inserted
|
|
3205
|
-
*/
|
|
3206
|
-
oAction: ActionToolbarAction
|
|
3207
|
-
): this;
|
|
3208
|
-
/**
|
|
3209
|
-
* Adds some begin to the aggregation {@link #getBegin begin}.
|
|
3210
|
-
*
|
|
3211
|
-
*
|
|
3212
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3213
|
-
*/
|
|
3214
|
-
addBegin(
|
|
3215
|
-
/**
|
|
3216
|
-
* The begin to add; if empty, nothing is inserted
|
|
3217
|
-
*/
|
|
3218
|
-
oBegin: Control
|
|
3219
|
-
): this;
|
|
3220
|
-
/**
|
|
3221
|
-
* Adds some between to the aggregation {@link #getBetween between}.
|
|
3222
|
-
*
|
|
3223
|
-
*
|
|
3224
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3225
|
-
*/
|
|
3226
|
-
addBetween(
|
|
3227
|
-
/**
|
|
3228
|
-
* The between to add; if empty, nothing is inserted
|
|
3229
|
-
*/
|
|
3230
|
-
oBetween: Control
|
|
3231
|
-
): this;
|
|
3232
|
-
/**
|
|
3233
|
-
* Adds some end to the aggregation {@link #getEnd end}.
|
|
3234
|
-
*
|
|
3235
|
-
*
|
|
3236
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3237
|
-
*/
|
|
3238
|
-
addEnd(
|
|
3239
|
-
/**
|
|
3240
|
-
* The end to add; if empty, nothing is inserted
|
|
3241
|
-
*/
|
|
3242
|
-
oEnd: Control
|
|
3243
|
-
): this;
|
|
3244
|
-
/**
|
|
3245
|
-
* Destroys all the actions in the aggregation {@link #getActions actions}.
|
|
3246
|
-
*
|
|
3247
|
-
*
|
|
3248
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3249
|
-
*/
|
|
3250
|
-
destroyActions(): this;
|
|
3251
|
-
/**
|
|
3252
|
-
* Destroys all the begin in the aggregation {@link #getBegin begin}.
|
|
3253
|
-
*
|
|
3254
|
-
*
|
|
3255
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3256
|
-
*/
|
|
3257
|
-
destroyBegin(): this;
|
|
3258
|
-
/**
|
|
3259
|
-
* Destroys all the between in the aggregation {@link #getBetween between}.
|
|
3260
|
-
*
|
|
3261
|
-
*
|
|
3262
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3263
|
-
*/
|
|
3264
|
-
destroyBetween(): this;
|
|
3265
|
-
/**
|
|
3266
|
-
* Destroys all the end in the aggregation {@link #getEnd end}.
|
|
3267
|
-
*
|
|
3268
|
-
*
|
|
3269
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3270
|
-
*/
|
|
3271
|
-
destroyEnd(): this;
|
|
3272
|
-
/**
|
|
3273
|
-
* Gets content of aggregation {@link #getActions actions}.
|
|
3274
|
-
*
|
|
3275
|
-
* Further actions in the toolbar.
|
|
3276
|
-
*/
|
|
3277
|
-
getActions(): ActionToolbarAction[];
|
|
3278
|
-
/**
|
|
3279
|
-
* Gets content of aggregation {@link #getBegin begin}.
|
|
3280
|
-
*
|
|
3281
|
-
* Content shown at the begin of the toolbar (e.g. Title).
|
|
3282
|
-
*/
|
|
3283
|
-
getBegin(): Control[];
|
|
3284
|
-
/**
|
|
3285
|
-
* Gets content of aggregation {@link #getBetween between}.
|
|
3286
|
-
*
|
|
3287
|
-
* Content shown between the title and actions on the toolbar.
|
|
3288
|
-
*/
|
|
3289
|
-
getBetween(): Control[];
|
|
3290
|
-
/**
|
|
3291
|
-
* Gets content of aggregation {@link #getEnd end}.
|
|
3292
|
-
*
|
|
3293
|
-
* Content at the end of the toolbar.
|
|
3294
|
-
*/
|
|
3295
|
-
getEnd(): Control[];
|
|
3296
|
-
/**
|
|
3297
|
-
* Gets current value of property {@link #getUseAsHeader useAsHeader}.
|
|
3298
|
-
*
|
|
3299
|
-
* Determines whether the toolbar is used as header (e.g. for a table).
|
|
3300
|
-
*
|
|
3301
|
-
* Default value is `true`.
|
|
3302
|
-
*
|
|
3303
|
-
*
|
|
3304
|
-
* @returns Value of property `useAsHeader`
|
|
3305
|
-
*/
|
|
3306
|
-
getUseAsHeader(): boolean;
|
|
3307
|
-
/**
|
|
3308
|
-
* Checks for the provided `sap.ui.mdc.actiontoolbar.ActionToolbarAction` in the aggregation {@link #getActions actions}.
|
|
3309
|
-
* and returns its index if found or -1 otherwise.
|
|
3310
|
-
*
|
|
3311
|
-
*
|
|
3312
|
-
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
3313
|
-
*/
|
|
3314
|
-
indexOfAction(
|
|
3315
|
-
/**
|
|
3316
|
-
* The action whose index is looked for
|
|
3317
|
-
*/
|
|
3318
|
-
oAction: ActionToolbarAction
|
|
3319
|
-
): int;
|
|
3320
|
-
/**
|
|
3321
|
-
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getBegin begin}. and returns
|
|
3322
|
-
* its index if found or -1 otherwise.
|
|
3323
|
-
*
|
|
3324
|
-
*
|
|
3325
|
-
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
3326
|
-
*/
|
|
3327
|
-
indexOfBegin(
|
|
3328
|
-
/**
|
|
3329
|
-
* The begin whose index is looked for
|
|
3330
|
-
*/
|
|
3331
|
-
oBegin: Control
|
|
3332
|
-
): int;
|
|
3333
|
-
/**
|
|
3334
|
-
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getBetween between}. and returns
|
|
3335
|
-
* its index if found or -1 otherwise.
|
|
3336
|
-
*
|
|
3337
|
-
*
|
|
3338
|
-
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
3339
|
-
*/
|
|
3340
|
-
indexOfBetween(
|
|
3341
|
-
/**
|
|
3342
|
-
* The between whose index is looked for
|
|
3343
|
-
*/
|
|
3344
|
-
oBetween: Control
|
|
3345
|
-
): int;
|
|
3346
|
-
/**
|
|
3347
|
-
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getEnd end}. and returns its
|
|
3348
|
-
* index if found or -1 otherwise.
|
|
3349
|
-
*
|
|
3350
|
-
*
|
|
3351
|
-
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
3352
|
-
*/
|
|
3353
|
-
indexOfEnd(
|
|
3354
|
-
/**
|
|
3355
|
-
* The end whose index is looked for
|
|
3356
|
-
*/
|
|
3357
|
-
oEnd: Control
|
|
3358
|
-
): int;
|
|
3359
|
-
/**
|
|
3360
|
-
* Inserts a action into the aggregation {@link #getActions actions}.
|
|
3361
|
-
*
|
|
3362
|
-
*
|
|
3363
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3364
|
-
*/
|
|
3365
|
-
insertAction(
|
|
3366
|
-
/**
|
|
3367
|
-
* The action to insert; if empty, nothing is inserted
|
|
3368
|
-
*/
|
|
3369
|
-
oAction: ActionToolbarAction,
|
|
3370
|
-
/**
|
|
3371
|
-
* The `0`-based index the action should be inserted at; for a negative value of `iIndex`, the action is
|
|
3372
|
-
* inserted at position 0; for a value greater than the current size of the aggregation, the action is inserted
|
|
3373
|
-
* at the last position
|
|
3374
|
-
*/
|
|
3375
|
-
iIndex: int
|
|
3376
|
-
): this;
|
|
3377
|
-
/**
|
|
3378
|
-
* Inserts a begin into the aggregation {@link #getBegin begin}.
|
|
3379
|
-
*
|
|
3380
|
-
*
|
|
3381
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3382
|
-
*/
|
|
3383
|
-
insertBegin(
|
|
3384
|
-
/**
|
|
3385
|
-
* The begin to insert; if empty, nothing is inserted
|
|
3386
|
-
*/
|
|
3387
|
-
oBegin: Control,
|
|
3388
|
-
/**
|
|
3389
|
-
* The `0`-based index the begin should be inserted at; for a negative value of `iIndex`, the begin is inserted
|
|
3390
|
-
* at position 0; for a value greater than the current size of the aggregation, the begin is inserted at
|
|
3391
|
-
* the last position
|
|
3392
|
-
*/
|
|
3393
|
-
iIndex: int
|
|
3394
|
-
): this;
|
|
3395
|
-
/**
|
|
3396
|
-
* Inserts a between into the aggregation {@link #getBetween between}.
|
|
3397
|
-
*
|
|
3398
|
-
*
|
|
3399
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3400
|
-
*/
|
|
3401
|
-
insertBetween(
|
|
3402
|
-
/**
|
|
3403
|
-
* The between to insert; if empty, nothing is inserted
|
|
3404
|
-
*/
|
|
3405
|
-
oBetween: Control,
|
|
3406
|
-
/**
|
|
3407
|
-
* The `0`-based index the between should be inserted at; for a negative value of `iIndex`, the between
|
|
3408
|
-
* is inserted at position 0; for a value greater than the current size of the aggregation, the between
|
|
3409
|
-
* is inserted at the last position
|
|
3410
|
-
*/
|
|
3411
|
-
iIndex: int
|
|
3412
|
-
): this;
|
|
3413
|
-
/**
|
|
3414
|
-
* Inserts a end into the aggregation {@link #getEnd end}.
|
|
3415
|
-
*
|
|
3416
|
-
*
|
|
3417
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3418
|
-
*/
|
|
3419
|
-
insertEnd(
|
|
3420
|
-
/**
|
|
3421
|
-
* The end to insert; if empty, nothing is inserted
|
|
3422
|
-
*/
|
|
3423
|
-
oEnd: Control,
|
|
3424
|
-
/**
|
|
3425
|
-
* The `0`-based index the end should be inserted at; for a negative value of `iIndex`, the end is inserted
|
|
3426
|
-
* at position 0; for a value greater than the current size of the aggregation, the end is inserted at the
|
|
3427
|
-
* last position
|
|
3428
|
-
*/
|
|
3429
|
-
iIndex: int
|
|
3430
|
-
): this;
|
|
3431
|
-
/**
|
|
3432
|
-
* Removes a action from the aggregation {@link #getActions actions}.
|
|
3433
|
-
*
|
|
3434
|
-
*
|
|
3435
|
-
* @returns The removed action or `null`
|
|
3436
|
-
*/
|
|
3437
|
-
removeAction(
|
|
3438
|
-
/**
|
|
3439
|
-
* The action to remove or its index or id
|
|
3440
|
-
*/
|
|
3441
|
-
vAction: int | string | ActionToolbarAction
|
|
3442
|
-
): ActionToolbarAction | null;
|
|
3443
|
-
/**
|
|
3444
|
-
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
3445
|
-
*
|
|
3446
|
-
* Additionally, it unregisters them from the hosting UIArea.
|
|
3447
|
-
*
|
|
3448
|
-
*
|
|
3449
|
-
* @returns An array of the removed elements (might be empty)
|
|
3450
|
-
*/
|
|
3451
|
-
removeAllActions(): ActionToolbarAction[];
|
|
3452
|
-
/**
|
|
3453
|
-
* Removes all the controls from the aggregation {@link #getBegin begin}.
|
|
3454
|
-
*
|
|
3455
|
-
* Additionally, it unregisters them from the hosting UIArea.
|
|
3456
|
-
*
|
|
3457
|
-
*
|
|
3458
|
-
* @returns An array of the removed elements (might be empty)
|
|
3459
|
-
*/
|
|
3460
|
-
removeAllBegin(): Control[];
|
|
3461
|
-
/**
|
|
3462
|
-
* Removes all the controls from the aggregation {@link #getBetween between}.
|
|
3463
|
-
*
|
|
3464
|
-
* Additionally, it unregisters them from the hosting UIArea.
|
|
3465
|
-
*
|
|
3466
|
-
*
|
|
3467
|
-
* @returns An array of the removed elements (might be empty)
|
|
3468
|
-
*/
|
|
3469
|
-
removeAllBetween(): Control[];
|
|
3470
|
-
/**
|
|
3471
|
-
* Removes all the controls from the aggregation {@link #getEnd end}.
|
|
3472
|
-
*
|
|
3473
|
-
* Additionally, it unregisters them from the hosting UIArea.
|
|
3474
|
-
*
|
|
3475
|
-
*
|
|
3476
|
-
* @returns An array of the removed elements (might be empty)
|
|
3477
|
-
*/
|
|
3478
|
-
removeAllEnd(): Control[];
|
|
3479
|
-
/**
|
|
3480
|
-
* Removes a begin from the aggregation {@link #getBegin begin}.
|
|
3481
|
-
*
|
|
3482
|
-
*
|
|
3483
|
-
* @returns The removed begin or `null`
|
|
3484
|
-
*/
|
|
3485
|
-
removeBegin(
|
|
3486
|
-
/**
|
|
3487
|
-
* The begin to remove or its index or id
|
|
3488
|
-
*/
|
|
3489
|
-
vBegin: int | string | Control
|
|
3490
|
-
): Control | null;
|
|
3491
|
-
/**
|
|
3492
|
-
* Removes a between from the aggregation {@link #getBetween between}.
|
|
3493
|
-
*
|
|
3494
|
-
*
|
|
3495
|
-
* @returns The removed between or `null`
|
|
3496
|
-
*/
|
|
3497
|
-
removeBetween(
|
|
3498
|
-
/**
|
|
3499
|
-
* The between to remove or its index or id
|
|
3500
|
-
*/
|
|
3501
|
-
vBetween: int | string | Control
|
|
3502
|
-
): Control | null;
|
|
3503
|
-
/**
|
|
3504
|
-
* Removes a end from the aggregation {@link #getEnd end}.
|
|
3505
|
-
*
|
|
3506
|
-
*
|
|
3507
|
-
* @returns The removed end or `null`
|
|
3508
|
-
*/
|
|
3509
|
-
removeEnd(
|
|
3510
|
-
/**
|
|
3511
|
-
* The end to remove or its index or id
|
|
3512
|
-
*/
|
|
3513
|
-
vEnd: int | string | Control
|
|
3514
|
-
): Control | null;
|
|
3515
|
-
/**
|
|
3516
|
-
* Sets a new value for property {@link #getUseAsHeader useAsHeader}.
|
|
3517
|
-
*
|
|
3518
|
-
* Determines whether the toolbar is used as header (e.g. for a table).
|
|
3519
|
-
*
|
|
3520
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3521
|
-
*
|
|
3522
|
-
* Default value is `true`.
|
|
3523
|
-
*
|
|
3524
|
-
*
|
|
3525
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3526
|
-
*/
|
|
3527
|
-
setUseAsHeader(
|
|
3528
|
-
/**
|
|
3529
|
-
* New value for property `useAsHeader`
|
|
3530
|
-
*/
|
|
3531
|
-
bUseAsHeader?: boolean
|
|
3532
|
-
): this;
|
|
3533
|
-
}
|
|
3534
|
-
/**
|
|
3535
|
-
* Describes the settings that can be provided to the ActionToolbar constructor.
|
|
3536
|
-
*/
|
|
3537
|
-
export interface $ActionToolbarSettings extends $OverflowToolbarSettings {
|
|
3538
|
-
/**
|
|
3539
|
-
* Determines whether the toolbar is used as header (e.g. for a table).
|
|
3540
|
-
*/
|
|
3541
|
-
useAsHeader?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3542
|
-
|
|
3543
|
-
/**
|
|
3544
|
-
* Content shown at the begin of the toolbar (e.g. Title).
|
|
3545
|
-
*/
|
|
3546
|
-
begin?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
3547
|
-
|
|
3548
|
-
/**
|
|
3549
|
-
* Content shown between the title and actions on the toolbar.
|
|
3550
|
-
*/
|
|
3551
|
-
between?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
3552
|
-
|
|
3553
|
-
/**
|
|
3554
|
-
* Further actions in the toolbar.
|
|
3167
|
+
* **Structure:** Object.<string, {@link sap.ui.mdc.util.FilterTypeConfigEntry}>
|
|
3168
|
+
*
|
|
3169
|
+
* @since 1.121.0
|
|
3555
3170
|
*/
|
|
3556
|
-
|
|
3557
|
-
| ActionToolbarAction[]
|
|
3558
|
-
| ActionToolbarAction
|
|
3559
|
-
| AggregationBindingInfo
|
|
3560
|
-
| `{${string}}`;
|
|
3171
|
+
type FilterTypeConfig = Record<string, FilterTypeConfigEntry>;
|
|
3561
3172
|
|
|
3562
3173
|
/**
|
|
3563
|
-
*
|
|
3174
|
+
* Configuration object for filter creation.
|
|
3175
|
+
*
|
|
3176
|
+
* @since 1.121.0
|
|
3564
3177
|
*/
|
|
3565
|
-
|
|
3178
|
+
type FilterTypeConfigEntry = {
|
|
3179
|
+
/**
|
|
3180
|
+
* Type instance
|
|
3181
|
+
*/
|
|
3182
|
+
type: Type;
|
|
3183
|
+
/**
|
|
3184
|
+
* Indicates if a created filter is case-sensitive
|
|
3185
|
+
*/
|
|
3186
|
+
caseSensitive?: boolean;
|
|
3187
|
+
/**
|
|
3188
|
+
* BaseType configuration for the given type useful for externalization/internalization of filter values
|
|
3189
|
+
*/
|
|
3190
|
+
baseType?: BaseType | keyof typeof BaseType;
|
|
3191
|
+
};
|
|
3566
3192
|
}
|
|
3567
3193
|
}
|
|
3568
3194
|
|
|
@@ -3577,15 +3203,15 @@ declare module "sap/ui/mdc/actiontoolbar/ActionToolbarAction" {
|
|
|
3577
3203
|
|
|
3578
3204
|
/**
|
|
3579
3205
|
* The action for an {@link sap.ui.mdc.ActionToolbar ActionToolbar} control with given layout information
|
|
3580
|
-
* that determines where the wrapped control is displayed on the `ActionToolbar`.
|
|
3581
|
-
* is experimental and the API / behavior is not finalized. It should only be used internally in other mdc
|
|
3582
|
-
* controls (e.g. chart/table).
|
|
3206
|
+
* that determines where the wrapped control is displayed on the `ActionToolbar`.
|
|
3583
3207
|
*
|
|
3584
3208
|
* @since 1.58
|
|
3209
|
+
* @experimental
|
|
3585
3210
|
*/
|
|
3586
3211
|
export default class ActionToolbarAction
|
|
3587
3212
|
extends Control
|
|
3588
|
-
implements IOverflowToolbarContent
|
|
3213
|
+
implements IOverflowToolbarContent
|
|
3214
|
+
{
|
|
3589
3215
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
3590
3216
|
/**
|
|
3591
3217
|
* Constructor for a new ActionToolbarAction.
|
|
@@ -3717,6 +3343,8 @@ declare module "sap/ui/mdc/actiontoolbar/ActionToolbarAction" {
|
|
|
3717
3343
|
}
|
|
3718
3344
|
/**
|
|
3719
3345
|
* Describes the settings that can be provided to the ActionToolbarAction constructor.
|
|
3346
|
+
*
|
|
3347
|
+
* @experimental
|
|
3720
3348
|
*/
|
|
3721
3349
|
export interface $ActionToolbarActionSettings extends $ControlSettings {
|
|
3722
3350
|
/**
|
|
@@ -3946,10 +3574,11 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
3946
3574
|
* Gets content of aggregation {@link #getActions actions}.
|
|
3947
3575
|
*
|
|
3948
3576
|
* This aggregation describes actions that are added to the chart toolbar.
|
|
3949
|
-
* For more information, see {@link sap.ui.mdc.actiontoolbar.ActionToolbarAction}.
|
|
3950
|
-
*
|
|
3951
|
-
*
|
|
3952
|
-
*
|
|
3577
|
+
* For more information, see {@link sap.ui.mdc.actiontoolbar.ActionToolbarAction}.
|
|
3578
|
+
*
|
|
3579
|
+
* **Note:** This aggregation is managed by the control, can only be populated during the definition in
|
|
3580
|
+
* the XML view, and is not bindable. Any changes of the initial aggregation content might result in undesired
|
|
3581
|
+
* effects. Changes of the aggregation have to be made with the {@link sap.ui.mdc.p13n.StateUtil StateUtil}.
|
|
3953
3582
|
*/
|
|
3954
3583
|
getActions(): Control1[];
|
|
3955
3584
|
/**
|
|
@@ -4601,6 +4230,8 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4601
4230
|
* - `aggregatable`
|
|
4602
4231
|
* - `role`
|
|
4603
4232
|
* - `dataType`
|
|
4233
|
+
*
|
|
4234
|
+
* @experimental (since 1.80)
|
|
4604
4235
|
*/
|
|
4605
4236
|
export type PropertyInfo = PropertyInfo1 & {
|
|
4606
4237
|
/**
|
|
@@ -4822,10 +4453,11 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4822
4453
|
|
|
4823
4454
|
/**
|
|
4824
4455
|
* This aggregation describes actions that are added to the chart toolbar.
|
|
4825
|
-
* For more information, see {@link sap.ui.mdc.actiontoolbar.ActionToolbarAction}.
|
|
4826
|
-
*
|
|
4827
|
-
*
|
|
4828
|
-
*
|
|
4456
|
+
* For more information, see {@link sap.ui.mdc.actiontoolbar.ActionToolbarAction}.
|
|
4457
|
+
*
|
|
4458
|
+
* **Note:** This aggregation is managed by the control, can only be populated during the definition in
|
|
4459
|
+
* the XML view, and is not bindable. Any changes of the initial aggregation content might result in undesired
|
|
4460
|
+
* effects. Changes of the aggregation have to be made with the {@link sap.ui.mdc.p13n.StateUtil StateUtil}.
|
|
4829
4461
|
*/
|
|
4830
4462
|
actions?: Control1[] | Control1 | AggregationBindingInfo | `{${string}}`;
|
|
4831
4463
|
|
|
@@ -4917,6 +4549,7 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
|
4917
4549
|
* Based on the `showNoDataStruct` the `content` or `noDataContent` will be shown.
|
|
4918
4550
|
*
|
|
4919
4551
|
* @since 1.105
|
|
4552
|
+
* @experimental (since 1.105)
|
|
4920
4553
|
*/
|
|
4921
4554
|
export default class ChartImplementationContainer extends Control {
|
|
4922
4555
|
/**
|
|
@@ -5028,6 +4661,8 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
|
5028
4661
|
}
|
|
5029
4662
|
/**
|
|
5030
4663
|
* Describes the settings that can be provided to the ChartImplementationContainer constructor.
|
|
4664
|
+
*
|
|
4665
|
+
* @experimental (since 1.105)
|
|
5031
4666
|
*/
|
|
5032
4667
|
export interface $ChartImplementationContainerSettings
|
|
5033
4668
|
extends $ControlSettings {
|
|
@@ -5069,6 +4704,7 @@ declare module "sap/ui/mdc/chart/ChartSelectionDetails" {
|
|
|
5069
4704
|
* the configuration specified.
|
|
5070
4705
|
*
|
|
5071
4706
|
* @since 1.88
|
|
4707
|
+
* @experimental (since 1.88)
|
|
5072
4708
|
*/
|
|
5073
4709
|
export default class ChartSelectionDetails extends SelectionDetails {
|
|
5074
4710
|
/**
|
|
@@ -5142,6 +4778,8 @@ declare module "sap/ui/mdc/chart/ChartSelectionDetails" {
|
|
|
5142
4778
|
}
|
|
5143
4779
|
/**
|
|
5144
4780
|
* Describes the settings that can be provided to the ChartSelectionDetails constructor.
|
|
4781
|
+
*
|
|
4782
|
+
* @experimental (since 1.88)
|
|
5145
4783
|
*/
|
|
5146
4784
|
export interface $ChartSelectionDetailsSettings
|
|
5147
4785
|
extends $SelectionDetailsSettings {}
|
|
@@ -5159,6 +4797,7 @@ declare module "sap/ui/mdc/chart/Item" {
|
|
|
5159
4797
|
* to override the default/metadata behavior.
|
|
5160
4798
|
*
|
|
5161
4799
|
* @since 1.88
|
|
4800
|
+
* @experimental (since 1.88)
|
|
5162
4801
|
*/
|
|
5163
4802
|
export default class Item extends UI5Element {
|
|
5164
4803
|
/**
|
|
@@ -5371,6 +5010,8 @@ declare module "sap/ui/mdc/chart/Item" {
|
|
|
5371
5010
|
}
|
|
5372
5011
|
/**
|
|
5373
5012
|
* Describes the settings that can be provided to the Item constructor.
|
|
5013
|
+
*
|
|
5014
|
+
* @experimental (since 1.88)
|
|
5374
5015
|
*/
|
|
5375
5016
|
export interface $ItemSettings extends $ElementSettings {
|
|
5376
5017
|
/**
|
|
@@ -5423,6 +5064,7 @@ declare module "sap/ui/mdc/chart/SelectionDetailsActions" {
|
|
|
5423
5064
|
* The `SelectionDetailsActions` is used to provide additional functionality to the Details popover.
|
|
5424
5065
|
*
|
|
5425
5066
|
* @since 1.88
|
|
5067
|
+
* @experimental (since 1.88)
|
|
5426
5068
|
*/
|
|
5427
5069
|
export default class SelectionDetailsActions extends UI5Element {
|
|
5428
5070
|
/**
|
|
@@ -5721,6 +5363,8 @@ declare module "sap/ui/mdc/chart/SelectionDetailsActions" {
|
|
|
5721
5363
|
}
|
|
5722
5364
|
/**
|
|
5723
5365
|
* Describes the settings that can be provided to the SelectionDetailsActions constructor.
|
|
5366
|
+
*
|
|
5367
|
+
* @experimental (since 1.88)
|
|
5724
5368
|
*/
|
|
5725
5369
|
export interface $SelectionDetailsActionsSettings extends $ElementSettings {
|
|
5726
5370
|
/**
|
|
@@ -6259,23 +5903,7 @@ declare module "sap/ui/mdc/condition/Operator" {
|
|
|
6259
5903
|
*/
|
|
6260
5904
|
group?: {
|
|
6261
5905
|
/**
|
|
6262
|
-
* Group ID for the operator.
|
|
6263
|
-
*
|
|
6264
|
-
* - 1 - Single Dates
|
|
6265
|
-
* - 2 - Date Ranges
|
|
6266
|
-
* - 3 - Weeks
|
|
6267
|
-
* - 4 - Months
|
|
6268
|
-
* - 5 - Quarters
|
|
6269
|
-
* - 6 - Years See {@link sap.m.DynamicDateRangeGroups DynamicDateRangeGroups}.
|
|
6270
|
-
* This only works for `FilterFields` with custom operators if `maxConditions=1` and no `valueHelp` is
|
|
6271
|
-
* assigned to the `FilterField`. Example:
|
|
6272
|
-
* group: undefined - if group is not specified; default behavior include/exclude group with id 1 and 2
|
|
6273
|
-
* will be created
|
|
6274
|
-
* group: {id : 1} - adds the operator to existing group 1 'Single Dates'
|
|
6275
|
-
* group: {id : 2, text: "new group"} - inserts a new group with id 2. Existing group 2 will be shifted
|
|
6276
|
-
* to 3, 4....
|
|
6277
|
-
* group: {id : 10, text: "new group at the end"} - adds a new group with id 10 and text "new group as
|
|
6278
|
-
* the end" to the end of all groups
|
|
5906
|
+
* Group ID for the operator.
|
|
6279
5907
|
*/
|
|
6280
5908
|
id: string;
|
|
6281
5909
|
/**
|
|
@@ -6283,6 +5911,27 @@ declare module "sap/ui/mdc/condition/Operator" {
|
|
|
6283
5911
|
*/
|
|
6284
5912
|
text?: string;
|
|
6285
5913
|
};
|
|
5914
|
+
/**
|
|
5915
|
+
* Function to determine the text copied into clipboard The following groups are available for the `DynamicDateRange`
|
|
5916
|
+
* control:
|
|
5917
|
+
*
|
|
5918
|
+
* - 1 - Single Dates
|
|
5919
|
+
* - 2 - Date Ranges
|
|
5920
|
+
* - 3 - Weeks
|
|
5921
|
+
* - 4 - Months
|
|
5922
|
+
* - 5 - Quarters
|
|
5923
|
+
* - 6 - Years See {@link sap.m.DynamicDateRangeGroups DynamicDateRangeGroups}.
|
|
5924
|
+
* This only works for `FilterFields` with custom operators if `maxConditions=1` and no `valueHelp` is
|
|
5925
|
+
* assigned to the `FilterField`. Example:
|
|
5926
|
+
* group: undefined - if group is not specified; default behavior include/exclude group with id 1 and 2
|
|
5927
|
+
* will be created
|
|
5928
|
+
* group: {id : 1} - adds the operator to existing group 1 'Single Dates'
|
|
5929
|
+
* group: {id : 2, text: "new group"} - inserts a new group with id 2. Existing group 2 will be shifted
|
|
5930
|
+
* to 3, 4....
|
|
5931
|
+
* group: {id : 10, text: "new group at the end"} - adds a new group with id 10 and text "new group as
|
|
5932
|
+
* the end" to the end of all groups
|
|
5933
|
+
*/
|
|
5934
|
+
getTextForCopy?: Function;
|
|
6286
5935
|
}
|
|
6287
5936
|
);
|
|
6288
5937
|
|
|
@@ -6446,7 +6095,6 @@ declare module "sap/ui/mdc/Control" {
|
|
|
6446
6095
|
* {@link sap.ui.mdc.mixin.DelegateMixin}).
|
|
6447
6096
|
*
|
|
6448
6097
|
* @since 1.61
|
|
6449
|
-
* @experimental (since 1.61)
|
|
6450
6098
|
*/
|
|
6451
6099
|
export default abstract class Control extends Control1 {
|
|
6452
6100
|
/**
|
|
@@ -6629,8 +6277,6 @@ declare module "sap/ui/mdc/Control" {
|
|
|
6629
6277
|
}
|
|
6630
6278
|
/**
|
|
6631
6279
|
* Describes the settings that can be provided to the Control constructor.
|
|
6632
|
-
*
|
|
6633
|
-
* @experimental (since 1.61)
|
|
6634
6280
|
*/
|
|
6635
6281
|
export interface $ControlSettings extends $ControlSettings1 {
|
|
6636
6282
|
/**
|
|
@@ -6647,8 +6293,6 @@ declare module "sap/ui/mdc/Control" {
|
|
|
6647
6293
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
6648
6294
|
* that).
|
|
6649
6295
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
6650
|
-
*
|
|
6651
|
-
* @experimental
|
|
6652
6296
|
*/
|
|
6653
6297
|
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
6654
6298
|
}
|
|
@@ -6673,7 +6317,6 @@ declare module "sap/ui/mdc/Element" {
|
|
|
6673
6317
|
* (see {@link sap.ui.mdc.mixin.DelegateMixin}).
|
|
6674
6318
|
*
|
|
6675
6319
|
* @since 1.74
|
|
6676
|
-
* @experimental (since 1.74)
|
|
6677
6320
|
*/
|
|
6678
6321
|
export default abstract class Element1 extends UI5Element {
|
|
6679
6322
|
/**
|
|
@@ -6856,8 +6499,6 @@ declare module "sap/ui/mdc/Element" {
|
|
|
6856
6499
|
}
|
|
6857
6500
|
/**
|
|
6858
6501
|
* Describes the settings that can be provided to the Element constructor.
|
|
6859
|
-
*
|
|
6860
|
-
* @experimental (since 1.74)
|
|
6861
6502
|
*/
|
|
6862
6503
|
export interface $ElementSettings extends $ElementSettings1 {
|
|
6863
6504
|
/**
|
|
@@ -6874,8 +6515,6 @@ declare module "sap/ui/mdc/Element" {
|
|
|
6874
6515
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
6875
6516
|
* that).
|
|
6876
6517
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
6877
|
-
*
|
|
6878
|
-
* @experimental
|
|
6879
6518
|
*/
|
|
6880
6519
|
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
6881
6520
|
}
|
|
@@ -6886,6 +6525,7 @@ declare module "sap/ui/mdc/enums/ActionToolbarActionAlignment" {
|
|
|
6886
6525
|
* Defines the alignment of the `ActionToolbarAction` action control.
|
|
6887
6526
|
*
|
|
6888
6527
|
* @since 1.115
|
|
6528
|
+
* @experimental (since 1.115)
|
|
6889
6529
|
*/
|
|
6890
6530
|
enum ActionToolbarActionAlignment {
|
|
6891
6531
|
/**
|
|
@@ -6948,6 +6588,7 @@ declare module "sap/ui/mdc/enums/ChartP13nMode" {
|
|
|
6948
6588
|
* Defines the personalization mode of the chart.
|
|
6949
6589
|
*
|
|
6950
6590
|
* @since 1.115
|
|
6591
|
+
* @experimental (since 1.115)
|
|
6951
6592
|
*/
|
|
6952
6593
|
enum ChartP13nMode {
|
|
6953
6594
|
/**
|
|
@@ -6976,6 +6617,7 @@ declare module "sap/ui/mdc/enums/ChartToolbarActionType" {
|
|
|
6976
6617
|
* Can be used to remove some of the default `ToolbarAction`. For more information, see {@link sap.ui.mdc.Chart#ignoreToolbarActions}.
|
|
6977
6618
|
*
|
|
6978
6619
|
* @since 1.115
|
|
6620
|
+
* @experimental (since 1.115)
|
|
6979
6621
|
*/
|
|
6980
6622
|
enum ChartToolbarActionType {
|
|
6981
6623
|
/**
|
|
@@ -7019,6 +6661,17 @@ declare module "sap/ui/mdc/enums/ConditionValidated" {
|
|
|
7019
6661
|
export default ConditionValidated;
|
|
7020
6662
|
}
|
|
7021
6663
|
|
|
6664
|
+
declare module "sap/ui/mdc/enums/ContentMode" {
|
|
6665
|
+
/**
|
|
6666
|
+
* Defines in which mode the content of a {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField }
|
|
6667
|
+
* or {@link sap.ui.mdc.MultiValueField MultiValueField} is rendered.
|
|
6668
|
+
*
|
|
6669
|
+
* @since 1.115
|
|
6670
|
+
*/
|
|
6671
|
+
enum ContentMode {}
|
|
6672
|
+
export default ContentMode;
|
|
6673
|
+
}
|
|
6674
|
+
|
|
7022
6675
|
declare module "sap/ui/mdc/enums/FieldDisplay" {
|
|
7023
6676
|
/**
|
|
7024
6677
|
* Defines the output of a {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField}, or
|
|
@@ -7969,11 +7622,11 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7969
7622
|
* number and one for unit.
|
|
7970
7623
|
*
|
|
7971
7624
|
* @since 1.54.0
|
|
7972
|
-
* @experimental (since 1.54.0)
|
|
7973
7625
|
*/
|
|
7974
7626
|
export default class Field
|
|
7975
7627
|
extends FieldBase
|
|
7976
|
-
implements IFormContent, ISemanticFormContent, IOverflowToolbarContent
|
|
7628
|
+
implements IFormContent, ISemanticFormContent, IOverflowToolbarContent
|
|
7629
|
+
{
|
|
7977
7630
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
7978
7631
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
7979
7632
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -8391,8 +8044,6 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8391
8044
|
}
|
|
8392
8045
|
/**
|
|
8393
8046
|
* Describes the settings that can be provided to the Field constructor.
|
|
8394
|
-
*
|
|
8395
|
-
* @experimental (since 1.54.0)
|
|
8396
8047
|
*/
|
|
8397
8048
|
export interface $FieldSettings extends $FieldBaseSettings {
|
|
8398
8049
|
/**
|
|
@@ -8879,6 +8530,20 @@ declare module "sap/ui/mdc/field/ConditionType" {
|
|
|
8879
8530
|
*/
|
|
8880
8531
|
sTargetType: string
|
|
8881
8532
|
): any | Promise<any>;
|
|
8533
|
+
/**
|
|
8534
|
+
* Determines the text what is copied to clipboard if a token or item with the condition is selected and
|
|
8535
|
+
* copied. For equal-conditions key/description pairs needs to be copied to allow pasing of such conditions.
|
|
8536
|
+
*
|
|
8537
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8538
|
+
*
|
|
8539
|
+
* @returns key/description pair seperated by TAB
|
|
8540
|
+
*/
|
|
8541
|
+
getTextForCopy(
|
|
8542
|
+
/**
|
|
8543
|
+
* The condition to be copied
|
|
8544
|
+
*/
|
|
8545
|
+
oCondition: ConditionObject
|
|
8546
|
+
): string;
|
|
8882
8547
|
/**
|
|
8883
8548
|
* Parses an external value of the given source type to a condition that holds the value in model representation.
|
|
8884
8549
|
* These values are parsed using the given data type. Depending on the operator and the configuration (set
|
|
@@ -9136,7 +8801,8 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
9136
8801
|
*/
|
|
9137
8802
|
export default abstract class FieldBase
|
|
9138
8803
|
extends Control
|
|
9139
|
-
implements IFormContent, ISemanticFormContent, IOverflowToolbarContent
|
|
8804
|
+
implements IFormContent, ISemanticFormContent, IOverflowToolbarContent
|
|
8805
|
+
{
|
|
9140
8806
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
9141
8807
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
9142
8808
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -9790,7 +9456,6 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
9790
9456
|
*
|
|
9791
9457
|
* Default value is `...see text or source`.
|
|
9792
9458
|
*
|
|
9793
|
-
* @experimental
|
|
9794
9459
|
*
|
|
9795
9460
|
* @returns Value of property `delegate`
|
|
9796
9461
|
*/
|
|
@@ -10309,7 +9974,6 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10309
9974
|
*
|
|
10310
9975
|
* Default value is `...see text or source`.
|
|
10311
9976
|
*
|
|
10312
|
-
* @experimental
|
|
10313
9977
|
*
|
|
10314
9978
|
* @returns Reference to `this` in order to allow method chaining
|
|
10315
9979
|
*/
|
|
@@ -10804,8 +10468,6 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
10804
10468
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
10805
10469
|
* that).
|
|
10806
10470
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
10807
|
-
*
|
|
10808
|
-
* @experimental
|
|
10809
10471
|
*/
|
|
10810
10472
|
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
10811
10473
|
|
|
@@ -11382,6 +11044,7 @@ declare module "sap/ui/mdc/field/MultiValueFieldItem" {
|
|
|
11382
11044
|
* its values as items. The `MultiValueFieldItem` element defines these items.
|
|
11383
11045
|
*
|
|
11384
11046
|
* @since 1.93.0
|
|
11047
|
+
* @experimental (since 1.93)
|
|
11385
11048
|
*/
|
|
11386
11049
|
export default class MultiValueFieldItem extends UI5Element {
|
|
11387
11050
|
/**
|
|
@@ -11499,6 +11162,8 @@ declare module "sap/ui/mdc/field/MultiValueFieldItem" {
|
|
|
11499
11162
|
}
|
|
11500
11163
|
/**
|
|
11501
11164
|
* Describes the settings that can be provided to the MultiValueFieldItem constructor.
|
|
11165
|
+
*
|
|
11166
|
+
* @experimental (since 1.93)
|
|
11502
11167
|
*/
|
|
11503
11168
|
export interface $MultiValueFieldItemSettings extends $ElementSettings {
|
|
11504
11169
|
/**
|
|
@@ -11541,7 +11206,6 @@ declare module "sap/ui/mdc/FilterBar" {
|
|
|
11541
11206
|
* implementation. This implementation has to be provided by the application.
|
|
11542
11207
|
*
|
|
11543
11208
|
* @since 1.61.0
|
|
11544
|
-
* @experimental (since 1.61.0)
|
|
11545
11209
|
*/
|
|
11546
11210
|
export default class FilterBar extends FilterBarBase {
|
|
11547
11211
|
/**
|
|
@@ -11727,8 +11391,6 @@ declare module "sap/ui/mdc/FilterBar" {
|
|
|
11727
11391
|
|
|
11728
11392
|
/**
|
|
11729
11393
|
* Describes the settings that can be provided to the FilterBar constructor.
|
|
11730
|
-
*
|
|
11731
|
-
* @experimental (since 1.61.0)
|
|
11732
11394
|
*/
|
|
11733
11395
|
export interface $FilterBarSettings extends $FilterBarBaseSettings {
|
|
11734
11396
|
/**
|
|
@@ -11785,7 +11447,8 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
11785
11447
|
*/
|
|
11786
11448
|
export default class FilterBarBase
|
|
11787
11449
|
extends Control
|
|
11788
|
-
implements IFilterSource, IFilter, IxState
|
|
11450
|
+
implements IFilterSource, IFilter, IxState
|
|
11451
|
+
{
|
|
11789
11452
|
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
11790
11453
|
__implements__sap_ui_mdc_IFilter: boolean;
|
|
11791
11454
|
__implements__sap_ui_mdc_IxState: boolean;
|
|
@@ -12098,7 +11761,6 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
12098
11761
|
*
|
|
12099
11762
|
* Default value is `...see text or source`.
|
|
12100
11763
|
*
|
|
12101
|
-
* @experimental
|
|
12102
11764
|
*
|
|
12103
11765
|
* @returns Value of property `delegate`
|
|
12104
11766
|
*/
|
|
@@ -12107,6 +11769,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
12107
11769
|
* Gets content of aggregation {@link #getFilterItems filterItems}.
|
|
12108
11770
|
*
|
|
12109
11771
|
* Contains all the displayed {@link sap.ui.mdc.FilterField filter fields} of the `FilterBarBase` control.
|
|
11772
|
+
*
|
|
12110
11773
|
* **Note:** This aggregation is managed by the control, can only be populated during the definition in
|
|
12111
11774
|
* the XML view, and is not bindable. Any changes of the initial aggregation content might result in undesired
|
|
12112
11775
|
* effects. Changes of the aggregation have to be made with the {@link sap.ui.mdc.p13n.StateUtil StateUtil}.
|
|
@@ -12237,7 +11900,6 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
12237
11900
|
*
|
|
12238
11901
|
* Default value is `...see text or source`.
|
|
12239
11902
|
*
|
|
12240
|
-
* @experimental
|
|
12241
11903
|
*
|
|
12242
11904
|
* @returns Reference to `this` in order to allow method chaining
|
|
12243
11905
|
*/
|
|
@@ -12381,8 +12043,6 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
12381
12043
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
12382
12044
|
* that).
|
|
12383
12045
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
12384
|
-
*
|
|
12385
|
-
* @experimental
|
|
12386
12046
|
*/
|
|
12387
12047
|
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
12388
12048
|
|
|
@@ -12440,6 +12100,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
12440
12100
|
|
|
12441
12101
|
/**
|
|
12442
12102
|
* Contains all the displayed {@link sap.ui.mdc.FilterField filter fields} of the `FilterBarBase` control.
|
|
12103
|
+
*
|
|
12443
12104
|
* **Note:** This aggregation is managed by the control, can only be populated during the definition in
|
|
12444
12105
|
* the XML view, and is not bindable. Any changes of the initial aggregation content might result in undesired
|
|
12445
12106
|
* effects. Changes of the aggregation have to be made with the {@link sap.ui.mdc.p13n.StateUtil StateUtil}.
|
|
@@ -12599,8 +12260,6 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
12599
12260
|
|
|
12600
12261
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
12601
12262
|
|
|
12602
|
-
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
12603
|
-
|
|
12604
12263
|
/**
|
|
12605
12264
|
* The `FilterBar` control is used to display filter properties in a user-friendly manner to populate values
|
|
12606
12265
|
* for a query. The filters are arranged in a logical row that is divided depending on the space available
|
|
@@ -12613,14 +12272,11 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
12613
12272
|
* on its own.
|
|
12614
12273
|
*
|
|
12615
12274
|
* @since 1.84.0
|
|
12275
|
+
* @deprecated (since 1.124.0) - Please use the `sap.ui.mdc.valuehelp.FilterBar` control instead.
|
|
12616
12276
|
*/
|
|
12617
12277
|
export default class FilterBar extends FilterBarBase {
|
|
12618
12278
|
/**
|
|
12619
12279
|
* Constructor for a new `FilterBar` for a value help dialog.
|
|
12620
|
-
*
|
|
12621
|
-
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
12622
|
-
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
12623
|
-
* of the syntax of the settings object.
|
|
12624
12280
|
*/
|
|
12625
12281
|
constructor(
|
|
12626
12282
|
/**
|
|
@@ -12630,10 +12286,6 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
12630
12286
|
);
|
|
12631
12287
|
/**
|
|
12632
12288
|
* Constructor for a new `FilterBar` for a value help dialog.
|
|
12633
|
-
*
|
|
12634
|
-
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
12635
|
-
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
12636
|
-
* of the syntax of the settings object.
|
|
12637
12289
|
*/
|
|
12638
12290
|
constructor(
|
|
12639
12291
|
/**
|
|
@@ -12677,157 +12329,13 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
12677
12329
|
* @returns Metadata object describing this class
|
|
12678
12330
|
*/
|
|
12679
12331
|
static getMetadata(): ElementMetadata;
|
|
12680
|
-
/**
|
|
12681
|
-
* Gets current value of property {@link #getDelegate delegate}.
|
|
12682
|
-
*
|
|
12683
|
-
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
12684
|
-
* The object has the following properties:
|
|
12685
|
-
* - `name` defines the path to the `Delegate` module
|
|
12686
|
-
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
12687
|
-
* Sample delegate object:
|
|
12688
|
-
* ```javascript
|
|
12689
|
-
* {
|
|
12690
|
-
* name: "sap/ui/mdc/BaseDelegate",
|
|
12691
|
-
* payload: {}
|
|
12692
|
-
* }```
|
|
12693
|
-
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
12694
|
-
* that).
|
|
12695
|
-
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
12696
|
-
*
|
|
12697
|
-
* Default value is `...see text or source`.
|
|
12698
|
-
*
|
|
12699
|
-
* @experimental
|
|
12700
|
-
*
|
|
12701
|
-
* @returns Value of property `delegate`
|
|
12702
|
-
*/
|
|
12703
|
-
getDelegate(): object;
|
|
12704
|
-
/**
|
|
12705
|
-
* Gets current value of property {@link #getExpandFilterFields expandFilterFields}.
|
|
12706
|
-
*
|
|
12707
|
-
* Determines whether the Show/Hide Filters button is in the state show or hide.
|
|
12708
|
-
*
|
|
12709
|
-
*
|
|
12710
|
-
* Default value is `true`.
|
|
12711
|
-
*
|
|
12712
|
-
*
|
|
12713
|
-
* @returns Value of property `expandFilterFields`
|
|
12714
|
-
*/
|
|
12715
|
-
getExpandFilterFields(): boolean;
|
|
12716
|
-
/**
|
|
12717
|
-
* Gets current value of property {@link #getFilterFieldThreshold filterFieldThreshold}.
|
|
12718
|
-
*
|
|
12719
|
-
* Number of FilterItems which will be shown via Show Filters.
|
|
12720
|
-
*
|
|
12721
|
-
*
|
|
12722
|
-
* Default value is `8`.
|
|
12723
|
-
*
|
|
12724
|
-
*
|
|
12725
|
-
* @returns Value of property `filterFieldThreshold`
|
|
12726
|
-
*/
|
|
12727
|
-
getFilterFieldThreshold(): int;
|
|
12728
|
-
/**
|
|
12729
|
-
* Sets a new value for property {@link #getDelegate delegate}.
|
|
12730
|
-
*
|
|
12731
|
-
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
12732
|
-
* The object has the following properties:
|
|
12733
|
-
* - `name` defines the path to the `Delegate` module
|
|
12734
|
-
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
12735
|
-
* Sample delegate object:
|
|
12736
|
-
* ```javascript
|
|
12737
|
-
* {
|
|
12738
|
-
* name: "sap/ui/mdc/BaseDelegate",
|
|
12739
|
-
* payload: {}
|
|
12740
|
-
* }```
|
|
12741
|
-
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
12742
|
-
* that).
|
|
12743
|
-
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
12744
|
-
*
|
|
12745
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12746
|
-
*
|
|
12747
|
-
* Default value is `...see text or source`.
|
|
12748
|
-
*
|
|
12749
|
-
* @experimental
|
|
12750
|
-
*
|
|
12751
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
12752
|
-
*/
|
|
12753
|
-
setDelegate(
|
|
12754
|
-
/**
|
|
12755
|
-
* New value for property `delegate`
|
|
12756
|
-
*/
|
|
12757
|
-
oDelegate?: object
|
|
12758
|
-
): this;
|
|
12759
|
-
/**
|
|
12760
|
-
* Sets a new value for property {@link #getExpandFilterFields expandFilterFields}.
|
|
12761
|
-
*
|
|
12762
|
-
* Determines whether the Show/Hide Filters button is in the state show or hide.
|
|
12763
|
-
*
|
|
12764
|
-
*
|
|
12765
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12766
|
-
*
|
|
12767
|
-
* Default value is `true`.
|
|
12768
|
-
*
|
|
12769
|
-
*
|
|
12770
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
12771
|
-
*/
|
|
12772
|
-
setExpandFilterFields(
|
|
12773
|
-
/**
|
|
12774
|
-
* New value for property `expandFilterFields`
|
|
12775
|
-
*/
|
|
12776
|
-
bExpandFilterFields?: boolean
|
|
12777
|
-
): this;
|
|
12778
|
-
/**
|
|
12779
|
-
* Sets a new value for property {@link #getFilterFieldThreshold filterFieldThreshold}.
|
|
12780
|
-
*
|
|
12781
|
-
* Number of FilterItems which will be shown via Show Filters.
|
|
12782
|
-
*
|
|
12783
|
-
*
|
|
12784
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12785
|
-
*
|
|
12786
|
-
* Default value is `8`.
|
|
12787
|
-
*
|
|
12788
|
-
*
|
|
12789
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
12790
|
-
*/
|
|
12791
|
-
setFilterFieldThreshold(
|
|
12792
|
-
/**
|
|
12793
|
-
* New value for property `filterFieldThreshold`
|
|
12794
|
-
*/
|
|
12795
|
-
iFilterFieldThreshold?: int
|
|
12796
|
-
): this;
|
|
12797
12332
|
}
|
|
12798
12333
|
/**
|
|
12799
12334
|
* Describes the settings that can be provided to the FilterBar constructor.
|
|
12335
|
+
*
|
|
12336
|
+
* @deprecated (since 1.124.0) - Please use the `sap.ui.mdc.valuehelp.FilterBar` control instead.
|
|
12800
12337
|
*/
|
|
12801
|
-
export interface $FilterBarSettings extends $FilterBarBaseSettings {
|
|
12802
|
-
/**
|
|
12803
|
-
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
12804
|
-
* The object has the following properties:
|
|
12805
|
-
* - `name` defines the path to the `Delegate` module
|
|
12806
|
-
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
12807
|
-
* Sample delegate object:
|
|
12808
|
-
* ```javascript
|
|
12809
|
-
* {
|
|
12810
|
-
* name: "sap/ui/mdc/BaseDelegate",
|
|
12811
|
-
* payload: {}
|
|
12812
|
-
* }```
|
|
12813
|
-
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
12814
|
-
* that).
|
|
12815
|
-
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
12816
|
-
*
|
|
12817
|
-
* @experimental
|
|
12818
|
-
*/
|
|
12819
|
-
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
12820
|
-
|
|
12821
|
-
/**
|
|
12822
|
-
* Determines whether the Show/Hide Filters button is in the state show or hide.
|
|
12823
|
-
*/
|
|
12824
|
-
expandFilterFields?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
12825
|
-
|
|
12826
|
-
/**
|
|
12827
|
-
* Number of FilterItems which will be shown via Show Filters.
|
|
12828
|
-
*/
|
|
12829
|
-
filterFieldThreshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
12830
|
-
}
|
|
12338
|
+
export interface $FilterBarSettings extends $FilterBarBaseSettings {}
|
|
12831
12339
|
}
|
|
12832
12340
|
|
|
12833
12341
|
declare module "sap/ui/mdc/FilterField" {
|
|
@@ -12876,11 +12384,11 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
12876
12384
|
* - If used for search, a {@link sap.m.SearchField SearchField} control is rendered.
|
|
12877
12385
|
*
|
|
12878
12386
|
* @since 1.48.0
|
|
12879
|
-
* @experimental (since 1.48.0)
|
|
12880
12387
|
*/
|
|
12881
12388
|
export default class FilterField
|
|
12882
12389
|
extends FieldBase
|
|
12883
|
-
implements IFormContent, ISemanticFormContent, IOverflowToolbarContent
|
|
12390
|
+
implements IFormContent, ISemanticFormContent, IOverflowToolbarContent
|
|
12391
|
+
{
|
|
12884
12392
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
12885
12393
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
12886
12394
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -13234,8 +12742,6 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
13234
12742
|
}
|
|
13235
12743
|
/**
|
|
13236
12744
|
* Describes the settings that can be provided to the FilterField constructor.
|
|
13237
|
-
*
|
|
13238
|
-
* @experimental (since 1.48.0)
|
|
13239
12745
|
*/
|
|
13240
12746
|
export interface $FilterFieldSettings extends $FieldBaseSettings {
|
|
13241
12747
|
/**
|
|
@@ -13357,7 +12863,6 @@ declare module "sap/ui/mdc/Link" {
|
|
|
13357
12863
|
* of a {@link module:sap/ui/mdc/LinkDelegate LinkDelegate}.
|
|
13358
12864
|
*
|
|
13359
12865
|
* @since 1.74
|
|
13360
|
-
* @experimental (since 1.74.0)
|
|
13361
12866
|
*/
|
|
13362
12867
|
export default class Link extends FieldInfoBase {
|
|
13363
12868
|
/**
|
|
@@ -13467,7 +12972,6 @@ declare module "sap/ui/mdc/Link" {
|
|
|
13467
12972
|
*
|
|
13468
12973
|
* Default value is `...see text or source`.
|
|
13469
12974
|
*
|
|
13470
|
-
* @experimental
|
|
13471
12975
|
*
|
|
13472
12976
|
* @returns Value of property `delegate`
|
|
13473
12977
|
*/
|
|
@@ -13531,7 +13035,6 @@ declare module "sap/ui/mdc/Link" {
|
|
|
13531
13035
|
*
|
|
13532
13036
|
* Default value is `...see text or source`.
|
|
13533
13037
|
*
|
|
13534
|
-
* @experimental
|
|
13535
13038
|
*
|
|
13536
13039
|
* @returns Reference to `this` in order to allow method chaining
|
|
13537
13040
|
*/
|
|
@@ -13633,8 +13136,6 @@ declare module "sap/ui/mdc/Link" {
|
|
|
13633
13136
|
|
|
13634
13137
|
/**
|
|
13635
13138
|
* Describes the settings that can be provided to the Link constructor.
|
|
13636
|
-
*
|
|
13637
|
-
* @experimental (since 1.74.0)
|
|
13638
13139
|
*/
|
|
13639
13140
|
export interface $LinkSettings extends $FieldInfoBaseSettings {
|
|
13640
13141
|
/**
|
|
@@ -13656,8 +13157,6 @@ declare module "sap/ui/mdc/Link" {
|
|
|
13656
13157
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
13657
13158
|
* that).
|
|
13658
13159
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
13659
|
-
*
|
|
13660
|
-
* @experimental
|
|
13661
13160
|
*/
|
|
13662
13161
|
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
13663
13162
|
|
|
@@ -14093,7 +13592,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14093
13592
|
*/
|
|
14094
13593
|
export default class MultiValueField
|
|
14095
13594
|
extends FieldBase
|
|
14096
|
-
implements IFormContent, ISemanticFormContent, IOverflowToolbarContent
|
|
13595
|
+
implements IFormContent, ISemanticFormContent, IOverflowToolbarContent
|
|
13596
|
+
{
|
|
14097
13597
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
14098
13598
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
14099
13599
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -14780,7 +14280,6 @@ declare module "sap/ui/mdc/Table" {
|
|
|
14780
14280
|
* and their types are subject to change without notice.
|
|
14781
14281
|
*
|
|
14782
14282
|
* @since 1.58
|
|
14783
|
-
* @experimental (since 1.58.0)
|
|
14784
14283
|
*/
|
|
14785
14284
|
export default class Table extends Control implements IFilterSource, IxState {
|
|
14786
14285
|
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
@@ -15126,6 +14625,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15126
14625
|
/**
|
|
15127
14626
|
* Destroys the creationRow in the aggregation {@link #getCreationRow creationRow}.
|
|
15128
14627
|
*
|
|
14628
|
+
* @deprecated (since 1.124) - the concept has been discarded.
|
|
15129
14629
|
* @experimental - Do not use
|
|
15130
14630
|
*
|
|
15131
14631
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -15272,17 +14772,20 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15272
14772
|
/**
|
|
15273
14773
|
* Fires event {@link #event:beforeExport beforeExport} to attached listeners.
|
|
15274
14774
|
*
|
|
14775
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
14776
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
14777
|
+
*
|
|
15275
14778
|
* @since 1.75
|
|
15276
14779
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
15277
14780
|
*
|
|
15278
|
-
* @returns
|
|
14781
|
+
* @returns Whether or not to prevent the default action
|
|
15279
14782
|
*/
|
|
15280
14783
|
fireBeforeExport(
|
|
15281
14784
|
/**
|
|
15282
14785
|
* Parameters to pass along with the event
|
|
15283
14786
|
*/
|
|
15284
14787
|
mParameters?: Table$BeforeExportEventParameters
|
|
15285
|
-
):
|
|
14788
|
+
): boolean;
|
|
15286
14789
|
/**
|
|
15287
14790
|
* Fires event {@link #event:beforeOpenContextMenu beforeOpenContextMenu} to attached listeners.
|
|
15288
14791
|
*
|
|
@@ -15409,7 +14912,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15409
14912
|
* Columns of the table.
|
|
15410
14913
|
*
|
|
15411
14914
|
* **Note:** This aggregation is managed by the control, can only be populated during the definition in
|
|
15412
|
-
* the XML view, and is not bindable. Any changes of the initial aggregation content might result in
|
|
14915
|
+
* the XML view, and is not bindable. Any changes of the initial aggregation content might result in undesired
|
|
15413
14916
|
* effects. Changes of the aggregation have to be made with the {@link sap.ui.mdc.p13n.StateUtil StateUtil}.
|
|
15414
14917
|
*/
|
|
15415
14918
|
getColumns(): Column[];
|
|
@@ -15446,6 +14949,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15446
14949
|
*
|
|
15447
14950
|
* **Note:** Once the binding supports creating transient records, this aggregation will be removed.
|
|
15448
14951
|
*
|
|
14952
|
+
* @deprecated (since 1.124) - the concept has been discarded.
|
|
15449
14953
|
* @experimental - Do not use
|
|
15450
14954
|
*/
|
|
15451
14955
|
getCreationRow(): /* was: sap.ui.mdc.table.CreationRow */ any;
|
|
@@ -15454,9 +14958,6 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15454
14958
|
*
|
|
15455
14959
|
* `DataStateIndicator` plugin that can be used to show binding-related messages.
|
|
15456
14960
|
*
|
|
15457
|
-
* **Note:** The message filtering is not yet supported for this control. Therefore the {@link sap.m.plugins.DataStateIndicator#getEnableFiltering enableFiltering }
|
|
15458
|
-
* property of the `DataStateIndicator` plugin must not be set to `true`.
|
|
15459
|
-
*
|
|
15460
14961
|
* @since 1.89
|
|
15461
14962
|
*/
|
|
15462
14963
|
getDataStateIndicator(): DataStateIndicator;
|
|
@@ -15482,7 +14983,6 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15482
14983
|
*
|
|
15483
14984
|
* Default value is `...see text or source`.
|
|
15484
14985
|
*
|
|
15485
|
-
* @experimental
|
|
15486
14986
|
*
|
|
15487
14987
|
* @returns Value of property `delegate`
|
|
15488
14988
|
*/
|
|
@@ -15583,7 +15083,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15583
15083
|
* Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
15584
15084
|
*
|
|
15585
15085
|
* @since 1.116
|
|
15586
|
-
* @experimental
|
|
15086
|
+
* @experimental
|
|
15587
15087
|
*
|
|
15588
15088
|
* @returns Value of property `headerStyle`
|
|
15589
15089
|
*/
|
|
@@ -15953,6 +15453,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
15953
15453
|
/**
|
|
15954
15454
|
* Sets the aggregated {@link #getCreationRow creationRow}.
|
|
15955
15455
|
*
|
|
15456
|
+
* @deprecated (since 1.124) - the concept has been discarded.
|
|
15956
15457
|
* @experimental - Do not use
|
|
15957
15458
|
*
|
|
15958
15459
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -16000,7 +15501,6 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16000
15501
|
*
|
|
16001
15502
|
* Default value is `...see text or source`.
|
|
16002
15503
|
*
|
|
16003
|
-
* @experimental
|
|
16004
15504
|
*
|
|
16005
15505
|
* @returns Reference to `this` in order to allow method chaining
|
|
16006
15506
|
*/
|
|
@@ -16159,7 +15659,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16159
15659
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16160
15660
|
*
|
|
16161
15661
|
* @since 1.116
|
|
16162
|
-
* @experimental
|
|
15662
|
+
* @experimental
|
|
16163
15663
|
*
|
|
16164
15664
|
* @returns Reference to `this` in order to allow method chaining
|
|
16165
15665
|
*/
|
|
@@ -16598,8 +16098,6 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16598
16098
|
|
|
16599
16099
|
/**
|
|
16600
16100
|
* Describes the settings that can be provided to the Table constructor.
|
|
16601
|
-
*
|
|
16602
|
-
* @experimental (since 1.58.0)
|
|
16603
16101
|
*/
|
|
16604
16102
|
export interface $TableSettings extends $ControlSettings {
|
|
16605
16103
|
/**
|
|
@@ -16645,8 +16143,6 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16645
16143
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
16646
16144
|
* that).
|
|
16647
16145
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
16648
|
-
*
|
|
16649
|
-
* @experimental
|
|
16650
16146
|
*/
|
|
16651
16147
|
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
16652
16148
|
|
|
@@ -16664,7 +16160,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16664
16160
|
* Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
16665
16161
|
*
|
|
16666
16162
|
* @since 1.116
|
|
16667
|
-
* @experimental
|
|
16163
|
+
* @experimental
|
|
16668
16164
|
*/
|
|
16669
16165
|
headerStyle?:
|
|
16670
16166
|
| (TitleLevel | keyof typeof TitleLevel)
|
|
@@ -16912,7 +16408,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16912
16408
|
* Columns of the table.
|
|
16913
16409
|
*
|
|
16914
16410
|
* **Note:** This aggregation is managed by the control, can only be populated during the definition in
|
|
16915
|
-
* the XML view, and is not bindable. Any changes of the initial aggregation content might result in
|
|
16411
|
+
* the XML view, and is not bindable. Any changes of the initial aggregation content might result in undesired
|
|
16916
16412
|
* effects. Changes of the aggregation have to be made with the {@link sap.ui.mdc.p13n.StateUtil StateUtil}.
|
|
16917
16413
|
*/
|
|
16918
16414
|
columns?: Column[] | Column | AggregationBindingInfo | `{${string}}`;
|
|
@@ -16923,6 +16419,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16923
16419
|
*
|
|
16924
16420
|
* **Note:** Once the binding supports creating transient records, this aggregation will be removed.
|
|
16925
16421
|
*
|
|
16422
|
+
* @deprecated (since 1.124) - the concept has been discarded.
|
|
16926
16423
|
* @experimental - Do not use
|
|
16927
16424
|
*/
|
|
16928
16425
|
creationRow?: /* was: sap.ui.mdc.table.CreationRow */ any;
|
|
@@ -16957,9 +16454,6 @@ declare module "sap/ui/mdc/Table" {
|
|
|
16957
16454
|
/**
|
|
16958
16455
|
* `DataStateIndicator` plugin that can be used to show binding-related messages.
|
|
16959
16456
|
*
|
|
16960
|
-
* **Note:** The message filtering is not yet supported for this control. Therefore the {@link sap.m.plugins.DataStateIndicator#getEnableFiltering enableFiltering }
|
|
16961
|
-
* property of the `DataStateIndicator` plugin must not be set to `true`.
|
|
16962
|
-
*
|
|
16963
16457
|
* @since 1.89
|
|
16964
16458
|
*/
|
|
16965
16459
|
dataStateIndicator?: DataStateIndicator;
|
|
@@ -17345,7 +16839,8 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17345
16839
|
/**
|
|
17346
16840
|
* Destroys the creationTemplate in the aggregation {@link #getCreationTemplate creationTemplate}.
|
|
17347
16841
|
*
|
|
17348
|
-
* @
|
|
16842
|
+
* @deprecated (since 1.124) - the concept has been discarded.
|
|
16843
|
+
* @experimental - Internal use only
|
|
17349
16844
|
*
|
|
17350
16845
|
* @returns Reference to `this` in order to allow method chaining
|
|
17351
16846
|
*/
|
|
@@ -17372,7 +16867,8 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17372
16867
|
*
|
|
17373
16868
|
* **Note:** Once the binding supports creating transient records, this aggregation will be removed.
|
|
17374
16869
|
*
|
|
17375
|
-
* @
|
|
16870
|
+
* @deprecated (since 1.124) - the concept has been discarded.
|
|
16871
|
+
* @experimental - Internal use only
|
|
17376
16872
|
*/
|
|
17377
16873
|
getCreationTemplate(): Control;
|
|
17378
16874
|
/**
|
|
@@ -17512,7 +17008,8 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17512
17008
|
/**
|
|
17513
17009
|
* Sets the aggregated {@link #getCreationTemplate creationTemplate}.
|
|
17514
17010
|
*
|
|
17515
|
-
* @
|
|
17011
|
+
* @deprecated (since 1.124) - the concept has been discarded.
|
|
17012
|
+
* @experimental - Internal use only
|
|
17516
17013
|
*
|
|
17517
17014
|
* @returns Reference to `this` in order to allow method chaining
|
|
17518
17015
|
*/
|
|
@@ -17843,7 +17340,8 @@ declare module "sap/ui/mdc/table/Column" {
|
|
|
17843
17340
|
*
|
|
17844
17341
|
* **Note:** Once the binding supports creating transient records, this aggregation will be removed.
|
|
17845
17342
|
*
|
|
17846
|
-
* @
|
|
17343
|
+
* @deprecated (since 1.124) - the concept has been discarded.
|
|
17344
|
+
* @experimental - Internal use only
|
|
17847
17345
|
*/
|
|
17848
17346
|
creationTemplate?: Control;
|
|
17849
17347
|
|
|
@@ -20346,8 +19844,7 @@ declare module "sap/ui/mdc/util/PropertyHelper" {
|
|
|
20346
19844
|
/**
|
|
20347
19845
|
* Unique, stable key for the property. It must only contain characters allowed for IDs, see {@link sap.ui.core.ID}.
|
|
20348
19846
|
* Does not have to be an existing attribute in the data model or the technical name of an attribute in
|
|
20349
|
-
* the data model.
|
|
20350
|
-
* by the PropertyHelper for legacy code support.
|
|
19847
|
+
* the data model.
|
|
20351
19848
|
*/
|
|
20352
19849
|
key: string;
|
|
20353
19850
|
/**
|
|
@@ -20423,7 +19920,6 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20423
19920
|
* in the control tree on the container holding the fields.
|
|
20424
19921
|
*
|
|
20425
19922
|
* @since 1.95.0
|
|
20426
|
-
* @experimental (since 1.95.0)
|
|
20427
19923
|
*/
|
|
20428
19924
|
export default abstract class ValueHelp extends Element1 {
|
|
20429
19925
|
/**
|
|
@@ -21184,7 +20680,6 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
21184
20680
|
*
|
|
21185
20681
|
* Default value is `...see text or source`.
|
|
21186
20682
|
*
|
|
21187
|
-
* @experimental
|
|
21188
20683
|
*
|
|
21189
20684
|
* @returns Value of property `delegate`
|
|
21190
20685
|
*/
|
|
@@ -21279,7 +20774,6 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
21279
20774
|
*
|
|
21280
20775
|
* Default value is `...see text or source`.
|
|
21281
20776
|
*
|
|
21282
|
-
* @experimental
|
|
21283
20777
|
*
|
|
21284
20778
|
* @returns Reference to `this` in order to allow method chaining
|
|
21285
20779
|
*/
|
|
@@ -21428,8 +20922,6 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
21428
20922
|
|
|
21429
20923
|
/**
|
|
21430
20924
|
* Describes the settings that can be provided to the ValueHelp constructor.
|
|
21431
|
-
*
|
|
21432
|
-
* @experimental (since 1.95.0)
|
|
21433
20925
|
*/
|
|
21434
20926
|
export interface $ValueHelpSettings extends $ElementSettings {
|
|
21435
20927
|
/**
|
|
@@ -21457,8 +20949,6 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
21457
20949
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
21458
20950
|
* that).
|
|
21459
20951
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
21460
|
-
*
|
|
21461
|
-
* @experimental
|
|
21462
20952
|
*/
|
|
21463
20953
|
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
21464
20954
|
|
|
@@ -24372,7 +23862,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
24372
23862
|
$ListContentSettings,
|
|
24373
23863
|
} from "sap/ui/mdc/valuehelp/base/ListContent";
|
|
24374
23864
|
|
|
24375
|
-
import FilterBar from "sap/ui/mdc/
|
|
23865
|
+
import FilterBar from "sap/ui/mdc/valuehelp/FilterBar";
|
|
24376
23866
|
|
|
24377
23867
|
import Context from "sap/ui/model/Context";
|
|
24378
23868
|
|
|
@@ -24512,7 +24002,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
24512
24002
|
/**
|
|
24513
24003
|
* Gets content of aggregation {@link #getFilterBar filterBar}.
|
|
24514
24004
|
*
|
|
24515
|
-
* {@link sap.ui.mdc.
|
|
24005
|
+
* {@link sap.ui.mdc.valuehelp.FilterBar FilterBar} used for filtering.
|
|
24516
24006
|
*/
|
|
24517
24007
|
getFilterBar(): FilterBar;
|
|
24518
24008
|
/**
|
|
@@ -24746,7 +24236,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
24746
24236
|
group?: string | PropertyBindingInfo;
|
|
24747
24237
|
|
|
24748
24238
|
/**
|
|
24749
|
-
* {@link sap.ui.mdc.
|
|
24239
|
+
* {@link sap.ui.mdc.valuehelp.FilterBar FilterBar} used for filtering.
|
|
24750
24240
|
*/
|
|
24751
24241
|
filterBar?: FilterBar;
|
|
24752
24242
|
}
|
|
@@ -26188,6 +25678,241 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
26188
25678
|
>;
|
|
26189
25679
|
}
|
|
26190
25680
|
|
|
25681
|
+
declare module "sap/ui/mdc/valuehelp/FilterBar" {
|
|
25682
|
+
import {
|
|
25683
|
+
default as FilterBarBase,
|
|
25684
|
+
$FilterBarBaseSettings,
|
|
25685
|
+
} from "sap/ui/mdc/filterbar/FilterBarBase";
|
|
25686
|
+
|
|
25687
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
25688
|
+
|
|
25689
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
25690
|
+
|
|
25691
|
+
/**
|
|
25692
|
+
* The `FilterBar` control is used to display filter properties in a user-friendly manner to populate values
|
|
25693
|
+
* for a query. The filters are arranged in a logical row that is divided depending on the space available
|
|
25694
|
+
* and the width of the filters. The Go button triggers the search event, and the Show Filters button shows
|
|
25695
|
+
* the additional filter field.
|
|
25696
|
+
* The `FilterBar` control creates and handles the filters based on the provided metadata information.
|
|
25697
|
+
* The metadata information is provided via the {@link module:sap/ui/mdc/FilterBarDelegate FilterBarDelegate }
|
|
25698
|
+
* implementation. This implementation has to be provided by the application.
|
|
25699
|
+
* **Note:** The `FilterBar` can only be used for a {@link sap.ui.mdc.valuehelp.Dialog Dialog} and not
|
|
25700
|
+
* on its own.
|
|
25701
|
+
*
|
|
25702
|
+
* @since 1.124.0
|
|
25703
|
+
*/
|
|
25704
|
+
export default class FilterBar extends FilterBarBase {
|
|
25705
|
+
/**
|
|
25706
|
+
* Constructor for a new `FilterBar` for a value help dialog.
|
|
25707
|
+
*
|
|
25708
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
25709
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
25710
|
+
* of the syntax of the settings object.
|
|
25711
|
+
*/
|
|
25712
|
+
constructor(
|
|
25713
|
+
/**
|
|
25714
|
+
* initial settings for the new control
|
|
25715
|
+
*/
|
|
25716
|
+
mSettings?: $FilterBarSettings
|
|
25717
|
+
);
|
|
25718
|
+
/**
|
|
25719
|
+
* Constructor for a new `FilterBar` for a value help dialog.
|
|
25720
|
+
*
|
|
25721
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
25722
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
25723
|
+
* of the syntax of the settings object.
|
|
25724
|
+
*/
|
|
25725
|
+
constructor(
|
|
25726
|
+
/**
|
|
25727
|
+
* ID for the new control, generated automatically if no ID is given
|
|
25728
|
+
*/
|
|
25729
|
+
sId?: string,
|
|
25730
|
+
/**
|
|
25731
|
+
* initial settings for the new control
|
|
25732
|
+
*/
|
|
25733
|
+
mSettings?: $FilterBarSettings
|
|
25734
|
+
);
|
|
25735
|
+
|
|
25736
|
+
/**
|
|
25737
|
+
* Creates a new subclass of class sap.ui.mdc.valuehelp.FilterBar with name `sClassName` and enriches it
|
|
25738
|
+
* with the information contained in `oClassInfo`.
|
|
25739
|
+
*
|
|
25740
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.filterbar.FilterBarBase.extend}.
|
|
25741
|
+
*
|
|
25742
|
+
*
|
|
25743
|
+
* @returns Created class / constructor function
|
|
25744
|
+
*/
|
|
25745
|
+
static extend<T extends Record<string, unknown>>(
|
|
25746
|
+
/**
|
|
25747
|
+
* Name of the class being created
|
|
25748
|
+
*/
|
|
25749
|
+
sClassName: string,
|
|
25750
|
+
/**
|
|
25751
|
+
* Object literal with information about the class
|
|
25752
|
+
*/
|
|
25753
|
+
oClassInfo?: sap.ClassInfo<T, FilterBar>,
|
|
25754
|
+
/**
|
|
25755
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
25756
|
+
* used by this class
|
|
25757
|
+
*/
|
|
25758
|
+
FNMetaImpl?: Function
|
|
25759
|
+
): Function;
|
|
25760
|
+
/**
|
|
25761
|
+
* Returns a metadata object for class sap.ui.mdc.valuehelp.FilterBar.
|
|
25762
|
+
*
|
|
25763
|
+
*
|
|
25764
|
+
* @returns Metadata object describing this class
|
|
25765
|
+
*/
|
|
25766
|
+
static getMetadata(): ElementMetadata;
|
|
25767
|
+
/**
|
|
25768
|
+
* Gets current value of property {@link #getDelegate delegate}.
|
|
25769
|
+
*
|
|
25770
|
+
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
25771
|
+
* The object has the following properties:
|
|
25772
|
+
* - `name` defines the path to the `Delegate` module
|
|
25773
|
+
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
25774
|
+
* Sample delegate object:
|
|
25775
|
+
* ```javascript
|
|
25776
|
+
* {
|
|
25777
|
+
* name: "sap/ui/mdc/BaseDelegate",
|
|
25778
|
+
* payload: {}
|
|
25779
|
+
* }```
|
|
25780
|
+
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
25781
|
+
* that).
|
|
25782
|
+
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
25783
|
+
*
|
|
25784
|
+
* Default value is `...see text or source`.
|
|
25785
|
+
*
|
|
25786
|
+
*
|
|
25787
|
+
* @returns Value of property `delegate`
|
|
25788
|
+
*/
|
|
25789
|
+
getDelegate(): object;
|
|
25790
|
+
/**
|
|
25791
|
+
* Gets current value of property {@link #getExpandFilterFields expandFilterFields}.
|
|
25792
|
+
*
|
|
25793
|
+
* Determines whether the Show/Hide Filters button is in the state show or hide.
|
|
25794
|
+
*
|
|
25795
|
+
*
|
|
25796
|
+
* Default value is `true`.
|
|
25797
|
+
*
|
|
25798
|
+
*
|
|
25799
|
+
* @returns Value of property `expandFilterFields`
|
|
25800
|
+
*/
|
|
25801
|
+
getExpandFilterFields(): boolean;
|
|
25802
|
+
/**
|
|
25803
|
+
* Gets current value of property {@link #getFilterFieldThreshold filterFieldThreshold}.
|
|
25804
|
+
*
|
|
25805
|
+
* Number of FilterItems which will be shown via Show Filters.
|
|
25806
|
+
*
|
|
25807
|
+
*
|
|
25808
|
+
* Default value is `8`.
|
|
25809
|
+
*
|
|
25810
|
+
*
|
|
25811
|
+
* @returns Value of property `filterFieldThreshold`
|
|
25812
|
+
*/
|
|
25813
|
+
getFilterFieldThreshold(): int;
|
|
25814
|
+
/**
|
|
25815
|
+
* Sets a new value for property {@link #getDelegate delegate}.
|
|
25816
|
+
*
|
|
25817
|
+
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
25818
|
+
* The object has the following properties:
|
|
25819
|
+
* - `name` defines the path to the `Delegate` module
|
|
25820
|
+
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
25821
|
+
* Sample delegate object:
|
|
25822
|
+
* ```javascript
|
|
25823
|
+
* {
|
|
25824
|
+
* name: "sap/ui/mdc/BaseDelegate",
|
|
25825
|
+
* payload: {}
|
|
25826
|
+
* }```
|
|
25827
|
+
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
25828
|
+
* that).
|
|
25829
|
+
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
25830
|
+
*
|
|
25831
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25832
|
+
*
|
|
25833
|
+
* Default value is `...see text or source`.
|
|
25834
|
+
*
|
|
25835
|
+
*
|
|
25836
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
25837
|
+
*/
|
|
25838
|
+
setDelegate(
|
|
25839
|
+
/**
|
|
25840
|
+
* New value for property `delegate`
|
|
25841
|
+
*/
|
|
25842
|
+
oDelegate?: object
|
|
25843
|
+
): this;
|
|
25844
|
+
/**
|
|
25845
|
+
* Sets a new value for property {@link #getExpandFilterFields expandFilterFields}.
|
|
25846
|
+
*
|
|
25847
|
+
* Determines whether the Show/Hide Filters button is in the state show or hide.
|
|
25848
|
+
*
|
|
25849
|
+
*
|
|
25850
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25851
|
+
*
|
|
25852
|
+
* Default value is `true`.
|
|
25853
|
+
*
|
|
25854
|
+
*
|
|
25855
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
25856
|
+
*/
|
|
25857
|
+
setExpandFilterFields(
|
|
25858
|
+
/**
|
|
25859
|
+
* New value for property `expandFilterFields`
|
|
25860
|
+
*/
|
|
25861
|
+
bExpandFilterFields?: boolean
|
|
25862
|
+
): this;
|
|
25863
|
+
/**
|
|
25864
|
+
* Sets a new value for property {@link #getFilterFieldThreshold filterFieldThreshold}.
|
|
25865
|
+
*
|
|
25866
|
+
* Number of FilterItems which will be shown via Show Filters.
|
|
25867
|
+
*
|
|
25868
|
+
*
|
|
25869
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25870
|
+
*
|
|
25871
|
+
* Default value is `8`.
|
|
25872
|
+
*
|
|
25873
|
+
*
|
|
25874
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
25875
|
+
*/
|
|
25876
|
+
setFilterFieldThreshold(
|
|
25877
|
+
/**
|
|
25878
|
+
* New value for property `filterFieldThreshold`
|
|
25879
|
+
*/
|
|
25880
|
+
iFilterFieldThreshold?: int
|
|
25881
|
+
): this;
|
|
25882
|
+
}
|
|
25883
|
+
/**
|
|
25884
|
+
* Describes the settings that can be provided to the FilterBar constructor.
|
|
25885
|
+
*/
|
|
25886
|
+
export interface $FilterBarSettings extends $FilterBarBaseSettings {
|
|
25887
|
+
/**
|
|
25888
|
+
* Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
|
|
25889
|
+
* The object has the following properties:
|
|
25890
|
+
* - `name` defines the path to the `Delegate` module
|
|
25891
|
+
* - `payload` (optional) defines application-specific information that can be used in the given delegate
|
|
25892
|
+
* Sample delegate object:
|
|
25893
|
+
* ```javascript
|
|
25894
|
+
* {
|
|
25895
|
+
* name: "sap/ui/mdc/BaseDelegate",
|
|
25896
|
+
* payload: {}
|
|
25897
|
+
* }```
|
|
25898
|
+
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
25899
|
+
* that).
|
|
25900
|
+
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
25901
|
+
*/
|
|
25902
|
+
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
25903
|
+
|
|
25904
|
+
/**
|
|
25905
|
+
* Determines whether the Show/Hide Filters button is in the state show or hide.
|
|
25906
|
+
*/
|
|
25907
|
+
expandFilterFields?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
25908
|
+
|
|
25909
|
+
/**
|
|
25910
|
+
* Number of FilterItems which will be shown via Show Filters.
|
|
25911
|
+
*/
|
|
25912
|
+
filterFieldThreshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
25913
|
+
}
|
|
25914
|
+
}
|
|
25915
|
+
|
|
26191
25916
|
declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
26192
25917
|
import {
|
|
26193
25918
|
default as Container,
|
|
@@ -26387,8 +26112,6 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
26387
26112
|
|
|
26388
26113
|
declare namespace sap {
|
|
26389
26114
|
interface IUI5DefineDependencyNames {
|
|
26390
|
-
"sap/ui/mdc/ActionToolbar": undefined;
|
|
26391
|
-
|
|
26392
26115
|
"sap/ui/mdc/actiontoolbar/ActionToolbarAction": undefined;
|
|
26393
26116
|
|
|
26394
26117
|
"sap/ui/mdc/AggregationBaseDelegate": undefined;
|
|
@@ -26667,6 +26390,8 @@ declare namespace sap {
|
|
|
26667
26390
|
|
|
26668
26391
|
"sap/ui/mdc/valuehelp/base/ListContent": undefined;
|
|
26669
26392
|
|
|
26393
|
+
"sap/ui/mdc/valuehelp/CollectiveSearchSelect": undefined;
|
|
26394
|
+
|
|
26670
26395
|
"sap/ui/mdc/valuehelp/content/Bool": undefined;
|
|
26671
26396
|
|
|
26672
26397
|
"sap/ui/mdc/valuehelp/content/Conditions": undefined;
|
|
@@ -26681,6 +26406,8 @@ declare namespace sap {
|
|
|
26681
26406
|
|
|
26682
26407
|
"sap/ui/mdc/valuehelp/Dialog": undefined;
|
|
26683
26408
|
|
|
26409
|
+
"sap/ui/mdc/valuehelp/FilterBar": undefined;
|
|
26410
|
+
|
|
26684
26411
|
"sap/ui/mdc/valuehelp/Popover": undefined;
|
|
26685
26412
|
|
|
26686
26413
|
"sap/ui/mdc/ValueHelpDelegate": undefined;
|