@sapui5/ts-types 1.108.28 → 1.108.30
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.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.m.d.ts +190 -21
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +5 -5
- package/types/sap.zen.crosstab.d.ts +4 -4
- package/types/sap.zen.dsh.d.ts +6 -6
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.108.
|
|
1
|
+
// For Library Version: 1.108.27
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -647,6 +647,11 @@ declare namespace sap {
|
|
|
647
647
|
*/
|
|
648
648
|
FNMetaImpl?: Function
|
|
649
649
|
): Function;
|
|
650
|
+
/**
|
|
651
|
+
*
|
|
652
|
+
* @returns The Engine instance
|
|
653
|
+
*/
|
|
654
|
+
getInstance(): sap.m.p13n.Engine;
|
|
650
655
|
/**
|
|
651
656
|
* Returns a metadata object for class sap.m.p13n.Engine.
|
|
652
657
|
*
|
|
@@ -1042,13 +1047,9 @@ declare namespace sap {
|
|
|
1042
1047
|
*/
|
|
1043
1048
|
constructor(
|
|
1044
1049
|
/**
|
|
1045
|
-
*
|
|
1050
|
+
* Initial settings for the new controller
|
|
1046
1051
|
*/
|
|
1047
|
-
|
|
1048
|
-
/**
|
|
1049
|
-
* Initial settings for the new control
|
|
1050
|
-
*/
|
|
1051
|
-
mSettings?: {
|
|
1052
|
+
mSettings: {
|
|
1052
1053
|
/**
|
|
1053
1054
|
* The control instance that is personalized by this controller
|
|
1054
1055
|
*/
|
|
@@ -1191,6 +1192,80 @@ declare namespace sap {
|
|
|
1191
1192
|
sTitle?: string
|
|
1192
1193
|
): this;
|
|
1193
1194
|
}
|
|
1195
|
+
/**
|
|
1196
|
+
* The `MetadataHelper` entity offers utility functionality for service metadata during the `Engine#register`
|
|
1197
|
+
* process.
|
|
1198
|
+
*/
|
|
1199
|
+
class MetadataHelper extends sap.ui.base.Object {
|
|
1200
|
+
/**
|
|
1201
|
+
* See:
|
|
1202
|
+
* {@link topic:75c08fdebf784575947927e052712bab Personalization}
|
|
1203
|
+
*/
|
|
1204
|
+
constructor(
|
|
1205
|
+
/**
|
|
1206
|
+
* Array of objects defining available items for personalization
|
|
1207
|
+
*/
|
|
1208
|
+
aProperties: sap.m.p13n.MetadataObject[]
|
|
1209
|
+
);
|
|
1210
|
+
|
|
1211
|
+
/**
|
|
1212
|
+
* Creates a new subclass of class sap.m.p13n.MetadataHelper with name `sClassName` and enriches it with
|
|
1213
|
+
* the information contained in `oClassInfo`.
|
|
1214
|
+
*
|
|
1215
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
1216
|
+
*
|
|
1217
|
+
* @returns Created class / constructor function
|
|
1218
|
+
*/
|
|
1219
|
+
static extend<T extends Record<string, unknown>>(
|
|
1220
|
+
/**
|
|
1221
|
+
* Name of the class being created
|
|
1222
|
+
*/
|
|
1223
|
+
sClassName: string,
|
|
1224
|
+
/**
|
|
1225
|
+
* Object literal with information about the class
|
|
1226
|
+
*/
|
|
1227
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.MetadataHelper>,
|
|
1228
|
+
/**
|
|
1229
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1230
|
+
* used by this class
|
|
1231
|
+
*/
|
|
1232
|
+
FNMetaImpl?: Function
|
|
1233
|
+
): Function;
|
|
1234
|
+
/**
|
|
1235
|
+
* Returns a metadata object for class sap.m.p13n.MetadataHelper.
|
|
1236
|
+
*
|
|
1237
|
+
* @returns Metadata object describing this class
|
|
1238
|
+
*/
|
|
1239
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
1240
|
+
/**
|
|
1241
|
+
* Gets a property path based on its key.
|
|
1242
|
+
*
|
|
1243
|
+
* @returns The property path based on its key
|
|
1244
|
+
*/
|
|
1245
|
+
getPath(
|
|
1246
|
+
/**
|
|
1247
|
+
* The property key identifying a property entry
|
|
1248
|
+
*/
|
|
1249
|
+
sKey: string
|
|
1250
|
+
): string;
|
|
1251
|
+
/**
|
|
1252
|
+
* Gets the array of properties.
|
|
1253
|
+
*
|
|
1254
|
+
* @returns Array of properties
|
|
1255
|
+
*/
|
|
1256
|
+
getProperties(): sap.m.p13n.MetadataObject[];
|
|
1257
|
+
/**
|
|
1258
|
+
* Gets a single property.
|
|
1259
|
+
*
|
|
1260
|
+
* @returns A single property
|
|
1261
|
+
*/
|
|
1262
|
+
getProperty(
|
|
1263
|
+
/**
|
|
1264
|
+
* The property key identifying a property entry
|
|
1265
|
+
*/
|
|
1266
|
+
sKey: string
|
|
1267
|
+
): sap.m.p13n.MetadataObject;
|
|
1268
|
+
}
|
|
1194
1269
|
/**
|
|
1195
1270
|
* @SINCE 1.97
|
|
1196
1271
|
* @EXPERIMENTAL (since 1.97)
|
|
@@ -1587,17 +1662,20 @@ declare namespace sap {
|
|
|
1587
1662
|
*/
|
|
1588
1663
|
constructor(
|
|
1589
1664
|
/**
|
|
1590
|
-
*
|
|
1591
|
-
*/
|
|
1592
|
-
sId?: string,
|
|
1593
|
-
/**
|
|
1594
|
-
* Initial settings for the new control
|
|
1665
|
+
* Initial settings for the new controller
|
|
1595
1666
|
*/
|
|
1596
|
-
mSettings
|
|
1667
|
+
mSettings: {
|
|
1597
1668
|
/**
|
|
1598
1669
|
* The control instance that is personalized by this controller
|
|
1599
1670
|
*/
|
|
1600
1671
|
control: sap.ui.core.Control;
|
|
1672
|
+
/**
|
|
1673
|
+
* By default the SelectionController tries to identify the existing item through the key by checking if
|
|
1674
|
+
* there is an existing item with this id. This behaviour can be overruled by implementing this method which
|
|
1675
|
+
* will provide the according item of the `targetAggregation` to return the according key associated to
|
|
1676
|
+
* this item.
|
|
1677
|
+
*/
|
|
1678
|
+
getKeyForItem?: Function;
|
|
1601
1679
|
/**
|
|
1602
1680
|
* The name of the aggregation that is now managed by this controller
|
|
1603
1681
|
*/
|
|
@@ -1897,13 +1975,9 @@ declare namespace sap {
|
|
|
1897
1975
|
*/
|
|
1898
1976
|
constructor(
|
|
1899
1977
|
/**
|
|
1900
|
-
*
|
|
1978
|
+
* Initial settings for the new controller
|
|
1901
1979
|
*/
|
|
1902
|
-
|
|
1903
|
-
/**
|
|
1904
|
-
* Initial settings for the new control
|
|
1905
|
-
*/
|
|
1906
|
-
mSettings?: {
|
|
1980
|
+
mSettings: {
|
|
1907
1981
|
/**
|
|
1908
1982
|
* The control instance that is personalized by this controller
|
|
1909
1983
|
*/
|
|
@@ -2081,6 +2155,25 @@ declare namespace sap {
|
|
|
2081
2155
|
grouped: boolean;
|
|
2082
2156
|
};
|
|
2083
2157
|
|
|
2158
|
+
/**
|
|
2159
|
+
* Personalization `GroupState` object type. This object describes the state processed by this controller
|
|
2160
|
+
* when accessing it through the {@link sap.m.p13n.Engine Engine}.
|
|
2161
|
+
*/
|
|
2162
|
+
type GroupState = {
|
|
2163
|
+
/**
|
|
2164
|
+
* The key for the group state
|
|
2165
|
+
*/
|
|
2166
|
+
key: string;
|
|
2167
|
+
/**
|
|
2168
|
+
* Defines whether the item is grouped (if a group state is provided, it's grouped automatically)
|
|
2169
|
+
*/
|
|
2170
|
+
grouped?: boolean;
|
|
2171
|
+
/**
|
|
2172
|
+
* Describes the index of the grouping
|
|
2173
|
+
*/
|
|
2174
|
+
index?: int;
|
|
2175
|
+
};
|
|
2176
|
+
|
|
2084
2177
|
/**
|
|
2085
2178
|
* P13n `Item` object type.
|
|
2086
2179
|
*/
|
|
@@ -2099,6 +2192,57 @@ declare namespace sap {
|
|
|
2099
2192
|
visible: boolean;
|
|
2100
2193
|
};
|
|
2101
2194
|
|
|
2195
|
+
/**
|
|
2196
|
+
* @EXPERIMENTAL (since 1.104)
|
|
2197
|
+
*
|
|
2198
|
+
* Personalization `MetadataObject` type.
|
|
2199
|
+
*/
|
|
2200
|
+
type MetadataObject = {
|
|
2201
|
+
/**
|
|
2202
|
+
* The unique key for the p13n metadata object
|
|
2203
|
+
*/
|
|
2204
|
+
key: string;
|
|
2205
|
+
/**
|
|
2206
|
+
* Defines the text that will be displayed in the personalization popup
|
|
2207
|
+
*/
|
|
2208
|
+
label: string;
|
|
2209
|
+
/**
|
|
2210
|
+
* Defines the technical path to apply binding-related updates
|
|
2211
|
+
*/
|
|
2212
|
+
path: string;
|
|
2213
|
+
/**
|
|
2214
|
+
* Defines whether the metadata object is sortable
|
|
2215
|
+
*/
|
|
2216
|
+
sortable?: boolean;
|
|
2217
|
+
/**
|
|
2218
|
+
* Defines whether the metadata object is groupable
|
|
2219
|
+
*/
|
|
2220
|
+
groupable?: boolean;
|
|
2221
|
+
/**
|
|
2222
|
+
* Defines whether the metadata object is visible for selection
|
|
2223
|
+
*/
|
|
2224
|
+
visible?: boolean;
|
|
2225
|
+
};
|
|
2226
|
+
|
|
2227
|
+
/**
|
|
2228
|
+
* Personalization `SelectionState` object type. This object describes the state processed by this controller
|
|
2229
|
+
* when accessing it through the {@link sap.m.p13n.Engine Engine}.
|
|
2230
|
+
*/
|
|
2231
|
+
type SelectionState = {
|
|
2232
|
+
/**
|
|
2233
|
+
* The key for the group state
|
|
2234
|
+
*/
|
|
2235
|
+
key: string;
|
|
2236
|
+
/**
|
|
2237
|
+
* Defines whether the item is selected (if a selection state is provided, it's selected automatically)
|
|
2238
|
+
*/
|
|
2239
|
+
visible?: boolean;
|
|
2240
|
+
/**
|
|
2241
|
+
* Describes the index of the selection item
|
|
2242
|
+
*/
|
|
2243
|
+
index?: int;
|
|
2244
|
+
};
|
|
2245
|
+
|
|
2102
2246
|
/**
|
|
2103
2247
|
* P13n `SortItem` object type.
|
|
2104
2248
|
*/
|
|
@@ -2120,6 +2264,29 @@ declare namespace sap {
|
|
|
2120
2264
|
*/
|
|
2121
2265
|
descending: boolean;
|
|
2122
2266
|
};
|
|
2267
|
+
|
|
2268
|
+
/**
|
|
2269
|
+
* Personalization `SortState` object type. This object describes the state processed by this controller
|
|
2270
|
+
* when accessing it through the {@link sap.m.p13n.Engine Engine}.
|
|
2271
|
+
*/
|
|
2272
|
+
type SortState = {
|
|
2273
|
+
/**
|
|
2274
|
+
* The key for the sort state
|
|
2275
|
+
*/
|
|
2276
|
+
key: string;
|
|
2277
|
+
/**
|
|
2278
|
+
* Defines whether the item is sorted (if a sort state is provided, it's sorted automatically)
|
|
2279
|
+
*/
|
|
2280
|
+
sorted?: boolean;
|
|
2281
|
+
/**
|
|
2282
|
+
* Defines whether the sorting is processed in a descending order (`false` is the default)
|
|
2283
|
+
*/
|
|
2284
|
+
descending?: boolean;
|
|
2285
|
+
/**
|
|
2286
|
+
* Describes the index of the sorter
|
|
2287
|
+
*/
|
|
2288
|
+
index?: int;
|
|
2289
|
+
};
|
|
2123
2290
|
}
|
|
2124
2291
|
|
|
2125
2292
|
namespace PlanningCalendar {
|
|
@@ -91504,7 +91671,7 @@ declare namespace sap {
|
|
|
91504
91671
|
* desktop devices, which overrides any configuration that has been provided by the application for the
|
|
91505
91672
|
* property displayType. This means that the PDFViewer appears as a toolbar with a download button.
|
|
91506
91673
|
*
|
|
91507
|
-
* Default value is `
|
|
91674
|
+
* Default value is `true`.
|
|
91508
91675
|
*
|
|
91509
91676
|
* @returns Value of property `isTrustedSource`
|
|
91510
91677
|
*/
|
|
@@ -91729,7 +91896,7 @@ declare namespace sap {
|
|
|
91729
91896
|
*
|
|
91730
91897
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
91731
91898
|
*
|
|
91732
|
-
* Default value is `
|
|
91899
|
+
* Default value is `true`.
|
|
91733
91900
|
*
|
|
91734
91901
|
* @returns Reference to `this` in order to allow method chaining
|
|
91735
91902
|
*/
|
|
@@ -139596,6 +139763,8 @@ declare namespace sap {
|
|
|
139596
139763
|
|
|
139597
139764
|
"sap/m/p13n/GroupPanel": undefined;
|
|
139598
139765
|
|
|
139766
|
+
"sap/m/p13n/MetadataHelper": undefined;
|
|
139767
|
+
|
|
139599
139768
|
"sap/m/p13n/modification/FlexModificationHandler": undefined;
|
|
139600
139769
|
|
|
139601
139770
|
"sap/m/p13n/modification/LocalStorageModificationHandler": undefined;
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED
package/types/sap.sac.grid.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.108.
|
|
1
|
+
// For Library Version: 1.108.13
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace zen {
|
|
@@ -1383,7 +1383,7 @@ declare namespace sap {
|
|
|
1383
1383
|
}
|
|
1384
1384
|
|
|
1385
1385
|
/**
|
|
1386
|
-
* @deprecated (since 1.89.0)
|
|
1386
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
1387
1387
|
*
|
|
1388
1388
|
* Horizontal alignment, e.g. of a layout cell's content within the cell's borders. Note that some values
|
|
1389
1389
|
* depend on the current locale's writing direction while others do not.
|
|
@@ -1411,7 +1411,7 @@ declare namespace sap {
|
|
|
1411
1411
|
Right = "Right",
|
|
1412
1412
|
}
|
|
1413
1413
|
/**
|
|
1414
|
-
* @deprecated (since 1.89)
|
|
1414
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
1415
1415
|
* @EXPERIMENTAL
|
|
1416
1416
|
*
|
|
1417
1417
|
* Padding, e.g. of a layout cell's content within the cell's borders. Note that all options except "None"
|
|
@@ -1443,7 +1443,7 @@ declare namespace sap {
|
|
|
1443
1443
|
None = "None",
|
|
1444
1444
|
}
|
|
1445
1445
|
/**
|
|
1446
|
-
* @deprecated (since 1.89.0)
|
|
1446
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
1447
1447
|
*
|
|
1448
1448
|
* Separation, e.g. of a layout cell from its neighbor, via a vertical gutter of defined width, with or
|
|
1449
1449
|
* without a vertical line in its middle.
|
|
@@ -1479,7 +1479,7 @@ declare namespace sap {
|
|
|
1479
1479
|
SmallWithLine = "SmallWithLine",
|
|
1480
1480
|
}
|
|
1481
1481
|
/**
|
|
1482
|
-
* @deprecated (since 1.89.0)
|
|
1482
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
1483
1483
|
*
|
|
1484
1484
|
* Vertical alignment, e.g. of a layout cell's content within the cell's borders.
|
|
1485
1485
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.108.
|
|
1
|
+
// For Library Version: 1.108.13
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace zen {
|
|
@@ -242,7 +242,7 @@ declare namespace sap {
|
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
/**
|
|
245
|
-
* @deprecated (since 1.89.0)
|
|
245
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
246
246
|
*
|
|
247
247
|
* Add your documentation for the new Crosstab
|
|
248
248
|
*/
|
|
@@ -355,7 +355,7 @@ declare namespace sap {
|
|
|
355
355
|
): this;
|
|
356
356
|
}
|
|
357
357
|
/**
|
|
358
|
-
* @deprecated (since 1.89.0)
|
|
358
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
359
359
|
*
|
|
360
360
|
* Add your documentation for the new DataCell
|
|
361
361
|
*/
|
|
@@ -562,7 +562,7 @@ declare namespace sap {
|
|
|
562
562
|
): this;
|
|
563
563
|
}
|
|
564
564
|
/**
|
|
565
|
-
* @deprecated (since 1.89.0)
|
|
565
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
566
566
|
*
|
|
567
567
|
* Add your documentation for the new HeaderCell
|
|
568
568
|
*/
|
package/types/sap.zen.dsh.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.108.
|
|
1
|
+
// For Library Version: 1.108.13
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace zen {
|
|
@@ -8,7 +8,7 @@ declare namespace sap {
|
|
|
8
8
|
namespace dsh {
|
|
9
9
|
namespace widgets {
|
|
10
10
|
/**
|
|
11
|
-
* @deprecated (since 1.89.0)
|
|
11
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
12
12
|
*
|
|
13
13
|
* Model implementation for JSON format
|
|
14
14
|
*/
|
|
@@ -349,7 +349,7 @@ declare namespace sap {
|
|
|
349
349
|
|
|
350
350
|
/**
|
|
351
351
|
* @SINCE 1.46
|
|
352
|
-
* @deprecated (since 1.89.0)
|
|
352
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
353
353
|
* @EXPERIMENTAL (since 1.46) - API is incomplete and may change incompatibly
|
|
354
354
|
*
|
|
355
355
|
* Control for embedding a Design Studio Analytic Grid in an S/4 HANA Fiori application
|
|
@@ -723,7 +723,7 @@ declare namespace sap {
|
|
|
723
723
|
}
|
|
724
724
|
/**
|
|
725
725
|
* @SINCE 1.44
|
|
726
|
-
* @deprecated (since 1.89)
|
|
726
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
727
727
|
*
|
|
728
728
|
* Control for embedding a Design Studio application full-screen in an S/4 HANA Fiori application
|
|
729
729
|
*/
|
|
@@ -1140,7 +1140,7 @@ declare namespace sap {
|
|
|
1140
1140
|
): this;
|
|
1141
1141
|
}
|
|
1142
1142
|
/**
|
|
1143
|
-
* @deprecated (since 1.89)
|
|
1143
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
1144
1144
|
*
|
|
1145
1145
|
* The ValueHelpDialog control can be used to implement a value help for an input field.
|
|
1146
1146
|
*/
|
|
@@ -2061,7 +2061,7 @@ declare namespace sap {
|
|
|
2061
2061
|
update(): void;
|
|
2062
2062
|
}
|
|
2063
2063
|
/**
|
|
2064
|
-
* @deprecated (since 1.89)
|
|
2064
|
+
* @deprecated (since 1.89.0) - Please use the WD Grid control instead.
|
|
2065
2065
|
* @EXPERIMENTAL
|
|
2066
2066
|
*
|
|
2067
2067
|
* Sort Type
|