@openui5/ts-types-esm 1.92.0 → 1.95.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/package.json +1 -1
- package/types/sap.f.d.ts +897 -482
- package/types/sap.m.d.ts +5672 -4629
- package/types/sap.tnt.d.ts +159 -128
- package/types/sap.ui.codeeditor.d.ts +56 -58
- package/types/sap.ui.commons.d.ts +1386 -1386
- package/types/sap.ui.core.d.ts +4395 -4210
- package/types/sap.ui.dt.d.ts +2 -4
- package/types/sap.ui.fl.d.ts +33 -31
- package/types/sap.ui.integration.d.ts +329 -126
- package/types/sap.ui.layout.d.ts +582 -575
- package/types/sap.ui.mdc.d.ts +35 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +53 -53
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +254 -249
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +976 -710
- package/types/sap.ui.ux3.d.ts +785 -793
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1952 -767
- package/types/sap.ui.webc.main.d.ts +7518 -6031
- package/types/sap.uxap.d.ts +393 -231
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.95.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/ux3/library" {
|
|
4
4
|
/**
|
|
@@ -258,6 +258,31 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
258
258
|
mSettings?: $ActionBarSettings
|
|
259
259
|
);
|
|
260
260
|
|
|
261
|
+
/**
|
|
262
|
+
* Creates a new subclass of class sap.ui.ux3.ActionBar with name `sClassName` and enriches it with the
|
|
263
|
+
* information contained in `oClassInfo`.
|
|
264
|
+
*
|
|
265
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
266
|
+
*/
|
|
267
|
+
static extend<T extends Record<string, unknown>>(
|
|
268
|
+
/**
|
|
269
|
+
* Name of the class being created
|
|
270
|
+
*/
|
|
271
|
+
sClassName: string,
|
|
272
|
+
/**
|
|
273
|
+
* Object literal with information about the class
|
|
274
|
+
*/
|
|
275
|
+
oClassInfo?: sap.ClassInfo<T, ActionBar>,
|
|
276
|
+
/**
|
|
277
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
278
|
+
* used by this class
|
|
279
|
+
*/
|
|
280
|
+
FNMetaImpl?: Function
|
|
281
|
+
): Function;
|
|
282
|
+
/**
|
|
283
|
+
* Returns a metadata object for class sap.ui.ux3.ActionBar.
|
|
284
|
+
*/
|
|
285
|
+
static getMetadata(): ElementMetadata;
|
|
261
286
|
/**
|
|
262
287
|
* Attaches event handler `fnFunction` to the {@link #event:actionSelected actionSelected} event of this
|
|
263
288
|
* `sap.ui.ux3.ActionBar`.
|
|
@@ -390,27 +415,6 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
390
415
|
*/
|
|
391
416
|
oListener?: object
|
|
392
417
|
): this;
|
|
393
|
-
/**
|
|
394
|
-
* Creates a new subclass of class sap.ui.ux3.ActionBar with name `sClassName` and enriches it with the
|
|
395
|
-
* information contained in `oClassInfo`.
|
|
396
|
-
*
|
|
397
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
398
|
-
*/
|
|
399
|
-
static extend<T extends Record<string, unknown>>(
|
|
400
|
-
/**
|
|
401
|
-
* Name of the class being created
|
|
402
|
-
*/
|
|
403
|
-
sClassName: string,
|
|
404
|
-
/**
|
|
405
|
-
* Object literal with information about the class
|
|
406
|
-
*/
|
|
407
|
-
oClassInfo?: sap.ClassInfo<T, ActionBar>,
|
|
408
|
-
/**
|
|
409
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
410
|
-
* used by this class
|
|
411
|
-
*/
|
|
412
|
-
FNMetaImpl?: Function
|
|
413
|
-
): Function;
|
|
414
418
|
/**
|
|
415
419
|
* Fires event {@link #event:actionSelected actionSelected} to attached listeners.
|
|
416
420
|
*/
|
|
@@ -491,10 +495,6 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
491
495
|
* Default value is `Default`.
|
|
492
496
|
*/
|
|
493
497
|
getFollowState(): FollowActionState | keyof typeof FollowActionState;
|
|
494
|
-
/**
|
|
495
|
-
* Returns a metadata object for class sap.ui.ux3.ActionBar.
|
|
496
|
-
*/
|
|
497
|
-
static getMetadata(): ElementMetadata;
|
|
498
498
|
/**
|
|
499
499
|
* Gets current value of property {@link #getShowFavorite showFavorite}.
|
|
500
500
|
*
|
|
@@ -817,12 +817,12 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
817
817
|
*
|
|
818
818
|
* For ‘Update’, please refer to event ‘feedSubmit’
|
|
819
819
|
*/
|
|
820
|
-
actionSelected?:
|
|
820
|
+
actionSelected?: (oEvent: Event) => void;
|
|
821
821
|
|
|
822
822
|
/**
|
|
823
823
|
* Fired when a new feed entry is submitted.
|
|
824
824
|
*/
|
|
825
|
-
feedSubmit?:
|
|
825
|
+
feedSubmit?: (oEvent: Event) => void;
|
|
826
826
|
}
|
|
827
827
|
}
|
|
828
828
|
|
|
@@ -880,6 +880,31 @@ declare module "sap/ui/ux3/Collection" {
|
|
|
880
880
|
mSettings?: $CollectionSettings
|
|
881
881
|
);
|
|
882
882
|
|
|
883
|
+
/**
|
|
884
|
+
* Creates a new subclass of class sap.ui.ux3.Collection with name `sClassName` and enriches it with the
|
|
885
|
+
* information contained in `oClassInfo`.
|
|
886
|
+
*
|
|
887
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
888
|
+
*/
|
|
889
|
+
static extend<T extends Record<string, unknown>>(
|
|
890
|
+
/**
|
|
891
|
+
* Name of the class being created
|
|
892
|
+
*/
|
|
893
|
+
sClassName: string,
|
|
894
|
+
/**
|
|
895
|
+
* Object literal with information about the class
|
|
896
|
+
*/
|
|
897
|
+
oClassInfo?: sap.ClassInfo<T, Collection>,
|
|
898
|
+
/**
|
|
899
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
900
|
+
* used by this class
|
|
901
|
+
*/
|
|
902
|
+
FNMetaImpl?: Function
|
|
903
|
+
): Function;
|
|
904
|
+
/**
|
|
905
|
+
* Returns a metadata object for class sap.ui.ux3.Collection.
|
|
906
|
+
*/
|
|
907
|
+
static getMetadata(): ElementMetadata;
|
|
883
908
|
/**
|
|
884
909
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
885
910
|
*/
|
|
@@ -889,9 +914,7 @@ declare module "sap/ui/ux3/Collection" {
|
|
|
889
914
|
*/
|
|
890
915
|
oItem: Item
|
|
891
916
|
): this;
|
|
892
|
-
|
|
893
|
-
*
|
|
894
|
-
*/
|
|
917
|
+
|
|
895
918
|
addSelectedItem(
|
|
896
919
|
/**
|
|
897
920
|
* Id of a selectedItem which becomes an additional target of this `selectedItems` association. Alternatively,
|
|
@@ -1021,27 +1044,6 @@ declare module "sap/ui/ux3/Collection" {
|
|
|
1021
1044
|
*/
|
|
1022
1045
|
oListener?: object
|
|
1023
1046
|
): this;
|
|
1024
|
-
/**
|
|
1025
|
-
* Creates a new subclass of class sap.ui.ux3.Collection with name `sClassName` and enriches it with the
|
|
1026
|
-
* information contained in `oClassInfo`.
|
|
1027
|
-
*
|
|
1028
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1029
|
-
*/
|
|
1030
|
-
static extend<T extends Record<string, unknown>>(
|
|
1031
|
-
/**
|
|
1032
|
-
* Name of the class being created
|
|
1033
|
-
*/
|
|
1034
|
-
sClassName: string,
|
|
1035
|
-
/**
|
|
1036
|
-
* Object literal with information about the class
|
|
1037
|
-
*/
|
|
1038
|
-
oClassInfo?: sap.ClassInfo<T, Collection>,
|
|
1039
|
-
/**
|
|
1040
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1041
|
-
* used by this class
|
|
1042
|
-
*/
|
|
1043
|
-
FNMetaImpl?: Function
|
|
1044
|
-
): Function;
|
|
1045
1047
|
/**
|
|
1046
1048
|
* Fires event {@link #event:propertyChanged propertyChanged} to attached listeners.
|
|
1047
1049
|
*/
|
|
@@ -1074,10 +1076,6 @@ declare module "sap/ui/ux3/Collection" {
|
|
|
1074
1076
|
* Items in the collection
|
|
1075
1077
|
*/
|
|
1076
1078
|
getItems(): Item[];
|
|
1077
|
-
/**
|
|
1078
|
-
* Returns a metadata object for class sap.ui.ux3.Collection.
|
|
1079
|
-
*/
|
|
1080
|
-
static getMetadata(): ElementMetadata;
|
|
1081
1079
|
/**
|
|
1082
1080
|
* Gets current value of property {@link #getMultiSelection multiSelection}.
|
|
1083
1081
|
*
|
|
@@ -1128,9 +1126,7 @@ declare module "sap/ui/ux3/Collection" {
|
|
|
1128
1126
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
1129
1127
|
*/
|
|
1130
1128
|
removeAllItems(): Item[];
|
|
1131
|
-
|
|
1132
|
-
*
|
|
1133
|
-
*/
|
|
1129
|
+
|
|
1134
1130
|
removeAllSelectedItems(): string[];
|
|
1135
1131
|
/**
|
|
1136
1132
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
@@ -1141,9 +1137,7 @@ declare module "sap/ui/ux3/Collection" {
|
|
|
1141
1137
|
*/
|
|
1142
1138
|
vItem: int | string | Item
|
|
1143
1139
|
): Item;
|
|
1144
|
-
|
|
1145
|
-
*
|
|
1146
|
-
*/
|
|
1140
|
+
|
|
1147
1141
|
removeSelectedItem(
|
|
1148
1142
|
/**
|
|
1149
1143
|
* the selectedItem to remove or its index or id
|
|
@@ -1224,12 +1218,12 @@ declare module "sap/ui/ux3/Collection" {
|
|
|
1224
1218
|
/**
|
|
1225
1219
|
* Fired when ever the selected items changer
|
|
1226
1220
|
*/
|
|
1227
|
-
selectionChanged?:
|
|
1221
|
+
selectionChanged?: (oEvent: Event) => void;
|
|
1228
1222
|
|
|
1229
1223
|
/**
|
|
1230
1224
|
* Fires if a property has changed, and the collection inspector needs to do something after that
|
|
1231
1225
|
*/
|
|
1232
|
-
propertyChanged?:
|
|
1226
|
+
propertyChanged?: (oEvent: Event) => void;
|
|
1233
1227
|
}
|
|
1234
1228
|
}
|
|
1235
1229
|
|
|
@@ -1287,6 +1281,31 @@ declare module "sap/ui/ux3/CollectionInspector" {
|
|
|
1287
1281
|
mSettings?: $CollectionInspectorSettings
|
|
1288
1282
|
);
|
|
1289
1283
|
|
|
1284
|
+
/**
|
|
1285
|
+
* Creates a new subclass of class sap.ui.ux3.CollectionInspector with name `sClassName` and enriches it
|
|
1286
|
+
* with the information contained in `oClassInfo`.
|
|
1287
|
+
*
|
|
1288
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1289
|
+
*/
|
|
1290
|
+
static extend<T extends Record<string, unknown>>(
|
|
1291
|
+
/**
|
|
1292
|
+
* Name of the class being created
|
|
1293
|
+
*/
|
|
1294
|
+
sClassName: string,
|
|
1295
|
+
/**
|
|
1296
|
+
* Object literal with information about the class
|
|
1297
|
+
*/
|
|
1298
|
+
oClassInfo?: sap.ClassInfo<T, CollectionInspector>,
|
|
1299
|
+
/**
|
|
1300
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1301
|
+
* used by this class
|
|
1302
|
+
*/
|
|
1303
|
+
FNMetaImpl?: Function
|
|
1304
|
+
): Function;
|
|
1305
|
+
/**
|
|
1306
|
+
* Returns a metadata object for class sap.ui.ux3.CollectionInspector.
|
|
1307
|
+
*/
|
|
1308
|
+
static getMetadata(): ElementMetadata;
|
|
1290
1309
|
/**
|
|
1291
1310
|
* Adds some collection `oCollection` to the aggregation named `collections`.
|
|
1292
1311
|
*/
|
|
@@ -1494,27 +1513,6 @@ declare module "sap/ui/ux3/CollectionInspector" {
|
|
|
1494
1513
|
*/
|
|
1495
1514
|
oListener?: object
|
|
1496
1515
|
): this;
|
|
1497
|
-
/**
|
|
1498
|
-
* Creates a new subclass of class sap.ui.ux3.CollectionInspector with name `sClassName` and enriches it
|
|
1499
|
-
* with the information contained in `oClassInfo`.
|
|
1500
|
-
*
|
|
1501
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1502
|
-
*/
|
|
1503
|
-
static extend<T extends Record<string, unknown>>(
|
|
1504
|
-
/**
|
|
1505
|
-
* Name of the class being created
|
|
1506
|
-
*/
|
|
1507
|
-
sClassName: string,
|
|
1508
|
-
/**
|
|
1509
|
-
* Object literal with information about the class
|
|
1510
|
-
*/
|
|
1511
|
-
oClassInfo?: sap.ClassInfo<T, CollectionInspector>,
|
|
1512
|
-
/**
|
|
1513
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1514
|
-
* used by this class
|
|
1515
|
-
*/
|
|
1516
|
-
FNMetaImpl?: Function
|
|
1517
|
-
): Function;
|
|
1518
1516
|
/**
|
|
1519
1517
|
* Fires event {@link #event:collectionSelected collectionSelected} to attached listeners.
|
|
1520
1518
|
*/
|
|
@@ -1566,10 +1564,6 @@ declare module "sap/ui/ux3/CollectionInspector" {
|
|
|
1566
1564
|
* Default value is `true`.
|
|
1567
1565
|
*/
|
|
1568
1566
|
getFitParent(): boolean;
|
|
1569
|
-
/**
|
|
1570
|
-
* Returns a metadata object for class sap.ui.ux3.CollectionInspector.
|
|
1571
|
-
*/
|
|
1572
|
-
static getMetadata(): ElementMetadata;
|
|
1573
1567
|
/**
|
|
1574
1568
|
* ID of the element which is the current target of the association {@link #getSelectedCollection selectedCollection},
|
|
1575
1569
|
* or `null`.
|
|
@@ -1736,17 +1730,17 @@ declare module "sap/ui/ux3/CollectionInspector" {
|
|
|
1736
1730
|
/**
|
|
1737
1731
|
* Event is fired if user selects a collection
|
|
1738
1732
|
*/
|
|
1739
|
-
collectionSelected?:
|
|
1733
|
+
collectionSelected?: (oEvent: Event) => void;
|
|
1740
1734
|
|
|
1741
1735
|
/**
|
|
1742
1736
|
* Fires when an item in a collection is selected
|
|
1743
1737
|
*/
|
|
1744
|
-
itemSelectionChanged?:
|
|
1738
|
+
itemSelectionChanged?: (oEvent: Event) => void;
|
|
1745
1739
|
|
|
1746
1740
|
/**
|
|
1747
1741
|
* Fires when the edit button is clicked
|
|
1748
1742
|
*/
|
|
1749
|
-
editCollection?:
|
|
1743
|
+
editCollection?: (oEvent: Event) => void;
|
|
1750
1744
|
}
|
|
1751
1745
|
}
|
|
1752
1746
|
|
|
@@ -1807,6 +1801,31 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
1807
1801
|
mSettings?: $DataSetSettings
|
|
1808
1802
|
);
|
|
1809
1803
|
|
|
1804
|
+
/**
|
|
1805
|
+
* Creates a new subclass of class sap.ui.ux3.DataSet with name `sClassName` and enriches it with the information
|
|
1806
|
+
* contained in `oClassInfo`.
|
|
1807
|
+
*
|
|
1808
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1809
|
+
*/
|
|
1810
|
+
static extend<T extends Record<string, unknown>>(
|
|
1811
|
+
/**
|
|
1812
|
+
* Name of the class being created
|
|
1813
|
+
*/
|
|
1814
|
+
sClassName: string,
|
|
1815
|
+
/**
|
|
1816
|
+
* Object literal with information about the class
|
|
1817
|
+
*/
|
|
1818
|
+
oClassInfo?: sap.ClassInfo<T, DataSet>,
|
|
1819
|
+
/**
|
|
1820
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1821
|
+
* used by this class
|
|
1822
|
+
*/
|
|
1823
|
+
FNMetaImpl?: Function
|
|
1824
|
+
): Function;
|
|
1825
|
+
/**
|
|
1826
|
+
* Returns a metadata object for class sap.ui.ux3.DataSet.
|
|
1827
|
+
*/
|
|
1828
|
+
static getMetadata(): ElementMetadata;
|
|
1810
1829
|
/**
|
|
1811
1830
|
* Rerendering of the FilterArea
|
|
1812
1831
|
*/
|
|
@@ -2007,27 +2026,6 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2007
2026
|
*/
|
|
2008
2027
|
oListener?: object
|
|
2009
2028
|
): this;
|
|
2010
|
-
/**
|
|
2011
|
-
* Creates a new subclass of class sap.ui.ux3.DataSet with name `sClassName` and enriches it with the information
|
|
2012
|
-
* contained in `oClassInfo`.
|
|
2013
|
-
*
|
|
2014
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2015
|
-
*/
|
|
2016
|
-
static extend<T extends Record<string, unknown>>(
|
|
2017
|
-
/**
|
|
2018
|
-
* Name of the class being created
|
|
2019
|
-
*/
|
|
2020
|
-
sClassName: string,
|
|
2021
|
-
/**
|
|
2022
|
-
* Object literal with information about the class
|
|
2023
|
-
*/
|
|
2024
|
-
oClassInfo?: sap.ClassInfo<T, DataSet>,
|
|
2025
|
-
/**
|
|
2026
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2027
|
-
* used by this class
|
|
2028
|
-
*/
|
|
2029
|
-
FNMetaImpl?: Function
|
|
2030
|
-
): Function;
|
|
2031
2029
|
/**
|
|
2032
2030
|
* Fires event {@link #event:search search} to attached listeners.
|
|
2033
2031
|
*/
|
|
@@ -2076,10 +2074,6 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2076
2074
|
* Returns the LeadSelection index
|
|
2077
2075
|
*/
|
|
2078
2076
|
getLeadSelection(): int;
|
|
2079
|
-
/**
|
|
2080
|
-
* Returns a metadata object for class sap.ui.ux3.DataSet.
|
|
2081
|
-
*/
|
|
2082
|
-
static getMetadata(): ElementMetadata;
|
|
2083
2077
|
/**
|
|
2084
2078
|
* Gets current value of property {@link #getMultiSelect multiSelect}.
|
|
2085
2079
|
*
|
|
@@ -2396,12 +2390,12 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2396
2390
|
/**
|
|
2397
2391
|
* selection Changed
|
|
2398
2392
|
*/
|
|
2399
|
-
selectionChanged?:
|
|
2393
|
+
selectionChanged?: (oEvent: Event) => void;
|
|
2400
2394
|
|
|
2401
2395
|
/**
|
|
2402
2396
|
* Event which is fired when the user triggers a search
|
|
2403
2397
|
*/
|
|
2404
|
-
search?:
|
|
2398
|
+
search?: (oEvent: Event) => void;
|
|
2405
2399
|
}
|
|
2406
2400
|
}
|
|
2407
2401
|
|
|
@@ -2453,6 +2447,31 @@ declare module "sap/ui/ux3/DataSetItem" {
|
|
|
2453
2447
|
mSettings?: $DataSetItemSettings
|
|
2454
2448
|
);
|
|
2455
2449
|
|
|
2450
|
+
/**
|
|
2451
|
+
* Creates a new subclass of class sap.ui.ux3.DataSetItem with name `sClassName` and enriches it with the
|
|
2452
|
+
* information contained in `oClassInfo`.
|
|
2453
|
+
*
|
|
2454
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
2455
|
+
*/
|
|
2456
|
+
static extend<T extends Record<string, unknown>>(
|
|
2457
|
+
/**
|
|
2458
|
+
* Name of the class being created
|
|
2459
|
+
*/
|
|
2460
|
+
sClassName: string,
|
|
2461
|
+
/**
|
|
2462
|
+
* Object literal with information about the class
|
|
2463
|
+
*/
|
|
2464
|
+
oClassInfo?: sap.ClassInfo<T, DataSetItem>,
|
|
2465
|
+
/**
|
|
2466
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2467
|
+
* used by this class
|
|
2468
|
+
*/
|
|
2469
|
+
FNMetaImpl?: Function
|
|
2470
|
+
): Function;
|
|
2471
|
+
/**
|
|
2472
|
+
* Returns a metadata object for class sap.ui.ux3.DataSetItem.
|
|
2473
|
+
*/
|
|
2474
|
+
static getMetadata(): ElementMetadata;
|
|
2456
2475
|
/**
|
|
2457
2476
|
* Attaches event handler `fnFunction` to the {@link #event:selected selected} event of this `sap.ui.ux3.DataSetItem`.
|
|
2458
2477
|
*
|
|
@@ -2509,27 +2528,6 @@ declare module "sap/ui/ux3/DataSetItem" {
|
|
|
2509
2528
|
*/
|
|
2510
2529
|
oListener?: object
|
|
2511
2530
|
): this;
|
|
2512
|
-
/**
|
|
2513
|
-
* Creates a new subclass of class sap.ui.ux3.DataSetItem with name `sClassName` and enriches it with the
|
|
2514
|
-
* information contained in `oClassInfo`.
|
|
2515
|
-
*
|
|
2516
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
2517
|
-
*/
|
|
2518
|
-
static extend<T extends Record<string, unknown>>(
|
|
2519
|
-
/**
|
|
2520
|
-
* Name of the class being created
|
|
2521
|
-
*/
|
|
2522
|
-
sClassName: string,
|
|
2523
|
-
/**
|
|
2524
|
-
* Object literal with information about the class
|
|
2525
|
-
*/
|
|
2526
|
-
oClassInfo?: sap.ClassInfo<T, DataSetItem>,
|
|
2527
|
-
/**
|
|
2528
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2529
|
-
* used by this class
|
|
2530
|
-
*/
|
|
2531
|
-
FNMetaImpl?: Function
|
|
2532
|
-
): Function;
|
|
2533
2531
|
/**
|
|
2534
2532
|
* Fires event {@link #event:selected selected} to attached listeners.
|
|
2535
2533
|
*/
|
|
@@ -2558,10 +2556,6 @@ declare module "sap/ui/ux3/DataSetItem" {
|
|
|
2558
2556
|
* image
|
|
2559
2557
|
*/
|
|
2560
2558
|
getIconSrc(): URI;
|
|
2561
|
-
/**
|
|
2562
|
-
* Returns a metadata object for class sap.ui.ux3.DataSetItem.
|
|
2563
|
-
*/
|
|
2564
|
-
static getMetadata(): ElementMetadata;
|
|
2565
2559
|
/**
|
|
2566
2560
|
* Gets current value of property {@link #getSubtitle subtitle}.
|
|
2567
2561
|
*
|
|
@@ -2662,7 +2656,7 @@ declare module "sap/ui/ux3/DataSetItem" {
|
|
|
2662
2656
|
/**
|
|
2663
2657
|
* Event Fired when Datset item is selected.
|
|
2664
2658
|
*/
|
|
2665
|
-
selected?:
|
|
2659
|
+
selected?: (oEvent: Event) => void;
|
|
2666
2660
|
}
|
|
2667
2661
|
}
|
|
2668
2662
|
|
|
@@ -2721,14 +2715,6 @@ declare module "sap/ui/ux3/DataSetSimpleView" {
|
|
|
2721
2715
|
mSettings?: $DataSetSimpleViewSettings
|
|
2722
2716
|
);
|
|
2723
2717
|
|
|
2724
|
-
/**
|
|
2725
|
-
* Destroys the template in the aggregation {@link #getTemplate template}.
|
|
2726
|
-
*/
|
|
2727
|
-
destroyTemplate(): this;
|
|
2728
|
-
/**
|
|
2729
|
-
* View finalization: Called when leaving the view
|
|
2730
|
-
*/
|
|
2731
|
-
exitView(aItems: DataSetItem[]): void;
|
|
2732
2718
|
/**
|
|
2733
2719
|
* Creates a new subclass of class sap.ui.ux3.DataSetSimpleView with name `sClassName` and enriches it with
|
|
2734
2720
|
* the information contained in `oClassInfo`.
|
|
@@ -2750,6 +2736,18 @@ declare module "sap/ui/ux3/DataSetSimpleView" {
|
|
|
2750
2736
|
*/
|
|
2751
2737
|
FNMetaImpl?: Function
|
|
2752
2738
|
): Function;
|
|
2739
|
+
/**
|
|
2740
|
+
* Returns a metadata object for class sap.ui.ux3.DataSetSimpleView.
|
|
2741
|
+
*/
|
|
2742
|
+
static getMetadata(): ElementMetadata;
|
|
2743
|
+
/**
|
|
2744
|
+
* Destroys the template in the aggregation {@link #getTemplate template}.
|
|
2745
|
+
*/
|
|
2746
|
+
destroyTemplate(): this;
|
|
2747
|
+
/**
|
|
2748
|
+
* View finalization: Called when leaving the view
|
|
2749
|
+
*/
|
|
2750
|
+
exitView(aItems: DataSetItem[]): void;
|
|
2753
2751
|
/**
|
|
2754
2752
|
* Gets current value of property {@link #getFloating floating}.
|
|
2755
2753
|
*
|
|
@@ -2809,10 +2807,6 @@ declare module "sap/ui/ux3/DataSetSimpleView" {
|
|
|
2809
2807
|
* Default value is `0`.
|
|
2810
2808
|
*/
|
|
2811
2809
|
getItemMinWidth(): int;
|
|
2812
|
-
/**
|
|
2813
|
-
* Returns a metadata object for class sap.ui.ux3.DataSetSimpleView.
|
|
2814
|
-
*/
|
|
2815
|
-
static getMetadata(): ElementMetadata;
|
|
2816
2810
|
/**
|
|
2817
2811
|
* Gets current value of property {@link #getName name}.
|
|
2818
2812
|
*
|
|
@@ -3041,9 +3035,7 @@ declare module "sap/ui/ux3/DataSetSimpleView" {
|
|
|
3041
3035
|
*/
|
|
3042
3036
|
bResponsive?: boolean
|
|
3043
3037
|
): this;
|
|
3044
|
-
|
|
3045
|
-
*
|
|
3046
|
-
*/
|
|
3038
|
+
|
|
3047
3039
|
setScrollArea(
|
|
3048
3040
|
aScrollArea: any[],
|
|
3049
3041
|
|
|
@@ -3209,6 +3201,31 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
3209
3201
|
mSettings?: $ExactSettings
|
|
3210
3202
|
);
|
|
3211
3203
|
|
|
3204
|
+
/**
|
|
3205
|
+
* Creates a new subclass of class sap.ui.ux3.Exact with name `sClassName` and enriches it with the information
|
|
3206
|
+
* contained in `oClassInfo`.
|
|
3207
|
+
*
|
|
3208
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3209
|
+
*/
|
|
3210
|
+
static extend<T extends Record<string, unknown>>(
|
|
3211
|
+
/**
|
|
3212
|
+
* Name of the class being created
|
|
3213
|
+
*/
|
|
3214
|
+
sClassName: string,
|
|
3215
|
+
/**
|
|
3216
|
+
* Object literal with information about the class
|
|
3217
|
+
*/
|
|
3218
|
+
oClassInfo?: sap.ClassInfo<T, Exact>,
|
|
3219
|
+
/**
|
|
3220
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3221
|
+
* used by this class
|
|
3222
|
+
*/
|
|
3223
|
+
FNMetaImpl?: Function
|
|
3224
|
+
): Function;
|
|
3225
|
+
/**
|
|
3226
|
+
* Returns a metadata object for class sap.ui.ux3.Exact.
|
|
3227
|
+
*/
|
|
3228
|
+
static getMetadata(): ElementMetadata;
|
|
3212
3229
|
/**
|
|
3213
3230
|
* Adds some attribute to the aggregation {@link #getAttributes attributes}.
|
|
3214
3231
|
*/
|
|
@@ -3338,27 +3355,6 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
3338
3355
|
*/
|
|
3339
3356
|
oListener?: object
|
|
3340
3357
|
): this;
|
|
3341
|
-
/**
|
|
3342
|
-
* Creates a new subclass of class sap.ui.ux3.Exact with name `sClassName` and enriches it with the information
|
|
3343
|
-
* contained in `oClassInfo`.
|
|
3344
|
-
*
|
|
3345
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3346
|
-
*/
|
|
3347
|
-
static extend<T extends Record<string, unknown>>(
|
|
3348
|
-
/**
|
|
3349
|
-
* Name of the class being created
|
|
3350
|
-
*/
|
|
3351
|
-
sClassName: string,
|
|
3352
|
-
/**
|
|
3353
|
-
* Object literal with information about the class
|
|
3354
|
-
*/
|
|
3355
|
-
oClassInfo?: sap.ClassInfo<T, Exact>,
|
|
3356
|
-
/**
|
|
3357
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3358
|
-
* used by this class
|
|
3359
|
-
*/
|
|
3360
|
-
FNMetaImpl?: Function
|
|
3361
|
-
): Function;
|
|
3362
3358
|
/**
|
|
3363
3359
|
* Fires event {@link #event:refineSearch refineSearch} to attached listeners.
|
|
3364
3360
|
*/
|
|
@@ -3401,10 +3397,6 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
3401
3397
|
* The attributes which shall be available to refine the search
|
|
3402
3398
|
*/
|
|
3403
3399
|
getAttributes(): ExactAttribute[];
|
|
3404
|
-
/**
|
|
3405
|
-
* Returns a metadata object for class sap.ui.ux3.Exact.
|
|
3406
|
-
*/
|
|
3407
|
-
static getMetadata(): ElementMetadata;
|
|
3408
3400
|
/**
|
|
3409
3401
|
* Returns the ExactArea representing the result section. Arbitrary content can be added here.
|
|
3410
3402
|
*/
|
|
@@ -3508,12 +3500,12 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
3508
3500
|
/**
|
|
3509
3501
|
* Event is fired when the search button is clicked
|
|
3510
3502
|
*/
|
|
3511
|
-
search?:
|
|
3503
|
+
search?: (oEvent: Event) => void;
|
|
3512
3504
|
|
|
3513
3505
|
/**
|
|
3514
3506
|
* Event which is fired when an attribute is selected or unselected.
|
|
3515
3507
|
*/
|
|
3516
|
-
refineSearch?:
|
|
3508
|
+
refineSearch?: (oEvent: Event) => void;
|
|
3517
3509
|
}
|
|
3518
3510
|
}
|
|
3519
3511
|
|
|
@@ -3568,6 +3560,31 @@ declare module "sap/ui/ux3/ExactArea" {
|
|
|
3568
3560
|
mSettings?: $ExactAreaSettings
|
|
3569
3561
|
);
|
|
3570
3562
|
|
|
3563
|
+
/**
|
|
3564
|
+
* Creates a new subclass of class sap.ui.ux3.ExactArea with name `sClassName` and enriches it with the
|
|
3565
|
+
* information contained in `oClassInfo`.
|
|
3566
|
+
*
|
|
3567
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3568
|
+
*/
|
|
3569
|
+
static extend<T extends Record<string, unknown>>(
|
|
3570
|
+
/**
|
|
3571
|
+
* Name of the class being created
|
|
3572
|
+
*/
|
|
3573
|
+
sClassName: string,
|
|
3574
|
+
/**
|
|
3575
|
+
* Object literal with information about the class
|
|
3576
|
+
*/
|
|
3577
|
+
oClassInfo?: sap.ClassInfo<T, ExactArea>,
|
|
3578
|
+
/**
|
|
3579
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3580
|
+
* used by this class
|
|
3581
|
+
*/
|
|
3582
|
+
FNMetaImpl?: Function
|
|
3583
|
+
): Function;
|
|
3584
|
+
/**
|
|
3585
|
+
* Returns a metadata object for class sap.ui.ux3.ExactArea.
|
|
3586
|
+
*/
|
|
3587
|
+
static getMetadata(): ElementMetadata;
|
|
3571
3588
|
/**
|
|
3572
3589
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
3573
3590
|
*/
|
|
@@ -3594,37 +3611,12 @@ declare module "sap/ui/ux3/ExactArea" {
|
|
|
3594
3611
|
* Destroys all the toolbarItems in the aggregation {@link #getToolbarItems toolbarItems}.
|
|
3595
3612
|
*/
|
|
3596
3613
|
destroyToolbarItems(): this;
|
|
3597
|
-
/**
|
|
3598
|
-
* Creates a new subclass of class sap.ui.ux3.ExactArea with name `sClassName` and enriches it with the
|
|
3599
|
-
* information contained in `oClassInfo`.
|
|
3600
|
-
*
|
|
3601
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3602
|
-
*/
|
|
3603
|
-
static extend<T extends Record<string, unknown>>(
|
|
3604
|
-
/**
|
|
3605
|
-
* Name of the class being created
|
|
3606
|
-
*/
|
|
3607
|
-
sClassName: string,
|
|
3608
|
-
/**
|
|
3609
|
-
* Object literal with information about the class
|
|
3610
|
-
*/
|
|
3611
|
-
oClassInfo?: sap.ClassInfo<T, ExactArea>,
|
|
3612
|
-
/**
|
|
3613
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3614
|
-
* used by this class
|
|
3615
|
-
*/
|
|
3616
|
-
FNMetaImpl?: Function
|
|
3617
|
-
): Function;
|
|
3618
3614
|
/**
|
|
3619
3615
|
* Gets content of aggregation {@link #getContent content}.
|
|
3620
3616
|
*
|
|
3621
3617
|
* Arbitrary child controls of the content area
|
|
3622
3618
|
*/
|
|
3623
3619
|
getContent(): Control[];
|
|
3624
|
-
/**
|
|
3625
|
-
* Returns a metadata object for class sap.ui.ux3.ExactArea.
|
|
3626
|
-
*/
|
|
3627
|
-
static getMetadata(): ElementMetadata;
|
|
3628
3620
|
/**
|
|
3629
3621
|
* Gets content of aggregation {@link #getToolbarItems toolbarItems}.
|
|
3630
3622
|
*
|
|
@@ -3807,6 +3799,31 @@ declare module "sap/ui/ux3/ExactAttribute" {
|
|
|
3807
3799
|
mSettings?: $ExactAttributeSettings
|
|
3808
3800
|
);
|
|
3809
3801
|
|
|
3802
|
+
/**
|
|
3803
|
+
* Creates a new subclass of class sap.ui.ux3.ExactAttribute with name `sClassName` and enriches it with
|
|
3804
|
+
* the information contained in `oClassInfo`.
|
|
3805
|
+
*
|
|
3806
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
3807
|
+
*/
|
|
3808
|
+
static extend<T extends Record<string, unknown>>(
|
|
3809
|
+
/**
|
|
3810
|
+
* Name of the class being created
|
|
3811
|
+
*/
|
|
3812
|
+
sClassName: string,
|
|
3813
|
+
/**
|
|
3814
|
+
* Object literal with information about the class
|
|
3815
|
+
*/
|
|
3816
|
+
oClassInfo?: sap.ClassInfo<T, ExactAttribute>,
|
|
3817
|
+
/**
|
|
3818
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3819
|
+
* used by this class
|
|
3820
|
+
*/
|
|
3821
|
+
FNMetaImpl?: Function
|
|
3822
|
+
): Function;
|
|
3823
|
+
/**
|
|
3824
|
+
* Returns a metadata object for class sap.ui.ux3.ExactAttribute.
|
|
3825
|
+
*/
|
|
3826
|
+
static getMetadata(): ElementMetadata;
|
|
3810
3827
|
/**
|
|
3811
3828
|
* Adds some attribute to the aggregation {@link #getAttributes attributes}.
|
|
3812
3829
|
*/
|
|
@@ -3871,39 +3888,18 @@ declare module "sap/ui/ux3/ExactAttribute" {
|
|
|
3871
3888
|
* Detaches event handler `fnFunction` from the {@link #event:supplyAttributes supplyAttributes} event of
|
|
3872
3889
|
* this `sap.ui.ux3.ExactAttribute`.
|
|
3873
3890
|
*
|
|
3874
|
-
* The passed function and listener object must match the ones used for event registration.
|
|
3875
|
-
*/
|
|
3876
|
-
detachSupplyAttributes(
|
|
3877
|
-
/**
|
|
3878
|
-
* The function to be called, when the event occurs
|
|
3879
|
-
*/
|
|
3880
|
-
fnFunction: (p1: Event) => void,
|
|
3881
|
-
/**
|
|
3882
|
-
* Context object on which the given function had to be called
|
|
3883
|
-
*/
|
|
3884
|
-
oListener?: object
|
|
3885
|
-
): this;
|
|
3886
|
-
/**
|
|
3887
|
-
* Creates a new subclass of class sap.ui.ux3.ExactAttribute with name `sClassName` and enriches it with
|
|
3888
|
-
* the information contained in `oClassInfo`.
|
|
3889
|
-
*
|
|
3890
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
3891
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
3891
3892
|
*/
|
|
3892
|
-
|
|
3893
|
-
/**
|
|
3894
|
-
* Name of the class being created
|
|
3895
|
-
*/
|
|
3896
|
-
sClassName: string,
|
|
3893
|
+
detachSupplyAttributes(
|
|
3897
3894
|
/**
|
|
3898
|
-
*
|
|
3895
|
+
* The function to be called, when the event occurs
|
|
3899
3896
|
*/
|
|
3900
|
-
|
|
3897
|
+
fnFunction: (p1: Event) => void,
|
|
3901
3898
|
/**
|
|
3902
|
-
*
|
|
3903
|
-
* used by this class
|
|
3899
|
+
* Context object on which the given function had to be called
|
|
3904
3900
|
*/
|
|
3905
|
-
|
|
3906
|
-
):
|
|
3901
|
+
oListener?: object
|
|
3902
|
+
): this;
|
|
3907
3903
|
/**
|
|
3908
3904
|
* Fires event {@link #event:supplyAttributes supplyAttributes} to attached listeners.
|
|
3909
3905
|
*/
|
|
@@ -3949,10 +3945,6 @@ declare module "sap/ui/ux3/ExactAttribute" {
|
|
|
3949
3945
|
* Default value is `Select`.
|
|
3950
3946
|
*/
|
|
3951
3947
|
getListOrder(): ExactOrder | keyof typeof ExactOrder;
|
|
3952
|
-
/**
|
|
3953
|
-
* Returns a metadata object for class sap.ui.ux3.ExactAttribute.
|
|
3954
|
-
*/
|
|
3955
|
-
static getMetadata(): ElementMetadata;
|
|
3956
3948
|
/**
|
|
3957
3949
|
* Gets current value of property {@link #getSelected selected}.
|
|
3958
3950
|
*
|
|
@@ -4262,7 +4254,7 @@ declare module "sap/ui/ux3/ExactAttribute" {
|
|
|
4262
4254
|
* the corresponding ExactAttribute is selected, it was already selected when a handler is attached or function
|
|
4263
4255
|
* getAttributes() is called.
|
|
4264
4256
|
*/
|
|
4265
|
-
supplyAttributes?:
|
|
4257
|
+
supplyAttributes?: (oEvent: Event) => void;
|
|
4266
4258
|
}
|
|
4267
4259
|
}
|
|
4268
4260
|
|
|
@@ -4327,6 +4319,31 @@ declare module "sap/ui/ux3/ExactBrowser" {
|
|
|
4327
4319
|
mSettings?: $ExactBrowserSettings
|
|
4328
4320
|
);
|
|
4329
4321
|
|
|
4322
|
+
/**
|
|
4323
|
+
* Creates a new subclass of class sap.ui.ux3.ExactBrowser with name `sClassName` and enriches it with the
|
|
4324
|
+
* information contained in `oClassInfo`.
|
|
4325
|
+
*
|
|
4326
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
4327
|
+
*/
|
|
4328
|
+
static extend<T extends Record<string, unknown>>(
|
|
4329
|
+
/**
|
|
4330
|
+
* Name of the class being created
|
|
4331
|
+
*/
|
|
4332
|
+
sClassName: string,
|
|
4333
|
+
/**
|
|
4334
|
+
* Object literal with information about the class
|
|
4335
|
+
*/
|
|
4336
|
+
oClassInfo?: sap.ClassInfo<T, ExactBrowser>,
|
|
4337
|
+
/**
|
|
4338
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4339
|
+
* used by this class
|
|
4340
|
+
*/
|
|
4341
|
+
FNMetaImpl?: Function
|
|
4342
|
+
): Function;
|
|
4343
|
+
/**
|
|
4344
|
+
* Returns a metadata object for class sap.ui.ux3.ExactBrowser.
|
|
4345
|
+
*/
|
|
4346
|
+
static getMetadata(): ElementMetadata;
|
|
4330
4347
|
/**
|
|
4331
4348
|
* Adds some attribute to the aggregation {@link #getAttributes attributes}.
|
|
4332
4349
|
*/
|
|
@@ -4459,27 +4476,6 @@ declare module "sap/ui/ux3/ExactBrowser" {
|
|
|
4459
4476
|
*/
|
|
4460
4477
|
oListener?: object
|
|
4461
4478
|
): this;
|
|
4462
|
-
/**
|
|
4463
|
-
* Creates a new subclass of class sap.ui.ux3.ExactBrowser with name `sClassName` and enriches it with the
|
|
4464
|
-
* information contained in `oClassInfo`.
|
|
4465
|
-
*
|
|
4466
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
4467
|
-
*/
|
|
4468
|
-
static extend<T extends Record<string, unknown>>(
|
|
4469
|
-
/**
|
|
4470
|
-
* Name of the class being created
|
|
4471
|
-
*/
|
|
4472
|
-
sClassName: string,
|
|
4473
|
-
/**
|
|
4474
|
-
* Object literal with information about the class
|
|
4475
|
-
*/
|
|
4476
|
-
oClassInfo?: sap.ClassInfo<T, ExactBrowser>,
|
|
4477
|
-
/**
|
|
4478
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4479
|
-
* used by this class
|
|
4480
|
-
*/
|
|
4481
|
-
FNMetaImpl?: Function
|
|
4482
|
-
): Function;
|
|
4483
4479
|
/**
|
|
4484
4480
|
* Fires event {@link #event:attributeSelected attributeSelected} to attached listeners.
|
|
4485
4481
|
*/
|
|
@@ -4558,10 +4554,6 @@ declare module "sap/ui/ux3/ExactBrowser" {
|
|
|
4558
4554
|
* Default value is `290`.
|
|
4559
4555
|
*/
|
|
4560
4556
|
getListHeight(): int;
|
|
4561
|
-
/**
|
|
4562
|
-
* Returns a metadata object for class sap.ui.ux3.ExactBrowser.
|
|
4563
|
-
*/
|
|
4564
|
-
static getMetadata(): ElementMetadata;
|
|
4565
4557
|
/**
|
|
4566
4558
|
* Gets content of aggregation {@link #getOptionsMenu optionsMenu}.
|
|
4567
4559
|
*
|
|
@@ -4915,12 +4907,12 @@ declare module "sap/ui/ux3/ExactBrowser" {
|
|
|
4915
4907
|
/**
|
|
4916
4908
|
* Event is fired when an attribute is selected or unselected.
|
|
4917
4909
|
*/
|
|
4918
|
-
attributeSelected?:
|
|
4910
|
+
attributeSelected?: (oEvent: Event) => void;
|
|
4919
4911
|
|
|
4920
4912
|
/**
|
|
4921
4913
|
* Event is fired when an attribute is selected or unselected.
|
|
4922
4914
|
*/
|
|
4923
|
-
save?:
|
|
4915
|
+
save?: (oEvent: Event) => void;
|
|
4924
4916
|
}
|
|
4925
4917
|
}
|
|
4926
4918
|
|
|
@@ -4978,6 +4970,31 @@ declare module "sap/ui/ux3/ExactList" {
|
|
|
4978
4970
|
mSettings?: $ExactListSettings
|
|
4979
4971
|
);
|
|
4980
4972
|
|
|
4973
|
+
/**
|
|
4974
|
+
* Creates a new subclass of class sap.ui.ux3.ExactList with name `sClassName` and enriches it with the
|
|
4975
|
+
* information contained in `oClassInfo`.
|
|
4976
|
+
*
|
|
4977
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
4978
|
+
*/
|
|
4979
|
+
static extend<T extends Record<string, unknown>>(
|
|
4980
|
+
/**
|
|
4981
|
+
* Name of the class being created
|
|
4982
|
+
*/
|
|
4983
|
+
sClassName: string,
|
|
4984
|
+
/**
|
|
4985
|
+
* Object literal with information about the class
|
|
4986
|
+
*/
|
|
4987
|
+
oClassInfo?: sap.ClassInfo<T, ExactList>,
|
|
4988
|
+
/**
|
|
4989
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4990
|
+
* used by this class
|
|
4991
|
+
*/
|
|
4992
|
+
FNMetaImpl?: Function
|
|
4993
|
+
): Function;
|
|
4994
|
+
/**
|
|
4995
|
+
* Returns a metadata object for class sap.ui.ux3.ExactList.
|
|
4996
|
+
*/
|
|
4997
|
+
static getMetadata(): ElementMetadata;
|
|
4981
4998
|
/**
|
|
4982
4999
|
* Adds some subList to the aggregation {@link #getSubLists subLists}.
|
|
4983
5000
|
*/
|
|
@@ -5050,27 +5067,6 @@ declare module "sap/ui/ux3/ExactList" {
|
|
|
5050
5067
|
*/
|
|
5051
5068
|
oListener?: object
|
|
5052
5069
|
): this;
|
|
5053
|
-
/**
|
|
5054
|
-
* Creates a new subclass of class sap.ui.ux3.ExactList with name `sClassName` and enriches it with the
|
|
5055
|
-
* information contained in `oClassInfo`.
|
|
5056
|
-
*
|
|
5057
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
5058
|
-
*/
|
|
5059
|
-
static extend<T extends Record<string, unknown>>(
|
|
5060
|
-
/**
|
|
5061
|
-
* Name of the class being created
|
|
5062
|
-
*/
|
|
5063
|
-
sClassName: string,
|
|
5064
|
-
/**
|
|
5065
|
-
* Object literal with information about the class
|
|
5066
|
-
*/
|
|
5067
|
-
oClassInfo?: sap.ClassInfo<T, ExactList>,
|
|
5068
|
-
/**
|
|
5069
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5070
|
-
* used by this class
|
|
5071
|
-
*/
|
|
5072
|
-
FNMetaImpl?: Function
|
|
5073
|
-
): Function;
|
|
5074
5070
|
/**
|
|
5075
5071
|
* Fires event {@link #event:attributeSelected attributeSelected} to attached listeners.
|
|
5076
5072
|
*/
|
|
@@ -5093,10 +5089,6 @@ declare module "sap/ui/ux3/ExactList" {
|
|
|
5093
5089
|
* ID of the element which is the current target of the association {@link #getData data}, or `null`.
|
|
5094
5090
|
*/
|
|
5095
5091
|
getData(): ID;
|
|
5096
|
-
/**
|
|
5097
|
-
* Returns a metadata object for class sap.ui.ux3.ExactList.
|
|
5098
|
-
*/
|
|
5099
|
-
static getMetadata(): ElementMetadata;
|
|
5100
5092
|
/**
|
|
5101
5093
|
* Gets current value of property {@link #getShowClose showClose}.
|
|
5102
5094
|
*
|
|
@@ -5251,7 +5243,7 @@ declare module "sap/ui/ux3/ExactList" {
|
|
|
5251
5243
|
/**
|
|
5252
5244
|
* Event which is fired when an attribute is selected/unselected
|
|
5253
5245
|
*/
|
|
5254
|
-
attributeSelected?:
|
|
5246
|
+
attributeSelected?: (oEvent: Event) => void;
|
|
5255
5247
|
}
|
|
5256
5248
|
}
|
|
5257
5249
|
|
|
@@ -5306,19 +5298,6 @@ declare module "sap/ui/ux3/FacetFilter" {
|
|
|
5306
5298
|
mSettings?: $FacetFilterSettings
|
|
5307
5299
|
);
|
|
5308
5300
|
|
|
5309
|
-
/**
|
|
5310
|
-
* Adds some list to the aggregation {@link #getLists lists}.
|
|
5311
|
-
*/
|
|
5312
|
-
addList(
|
|
5313
|
-
/**
|
|
5314
|
-
* The list to add; if empty, nothing is inserted
|
|
5315
|
-
*/
|
|
5316
|
-
oList: FacetFilterList
|
|
5317
|
-
): this;
|
|
5318
|
-
/**
|
|
5319
|
-
* Destroys all the lists in the aggregation {@link #getLists lists}.
|
|
5320
|
-
*/
|
|
5321
|
-
destroyLists(): this;
|
|
5322
5301
|
/**
|
|
5323
5302
|
* Creates a new subclass of class sap.ui.ux3.FacetFilter with name `sClassName` and enriches it with the
|
|
5324
5303
|
* information contained in `oClassInfo`.
|
|
@@ -5340,16 +5319,29 @@ declare module "sap/ui/ux3/FacetFilter" {
|
|
|
5340
5319
|
*/
|
|
5341
5320
|
FNMetaImpl?: Function
|
|
5342
5321
|
): Function;
|
|
5322
|
+
/**
|
|
5323
|
+
* Returns a metadata object for class sap.ui.ux3.FacetFilter.
|
|
5324
|
+
*/
|
|
5325
|
+
static getMetadata(): ElementMetadata;
|
|
5326
|
+
/**
|
|
5327
|
+
* Adds some list to the aggregation {@link #getLists lists}.
|
|
5328
|
+
*/
|
|
5329
|
+
addList(
|
|
5330
|
+
/**
|
|
5331
|
+
* The list to add; if empty, nothing is inserted
|
|
5332
|
+
*/
|
|
5333
|
+
oList: FacetFilterList
|
|
5334
|
+
): this;
|
|
5335
|
+
/**
|
|
5336
|
+
* Destroys all the lists in the aggregation {@link #getLists lists}.
|
|
5337
|
+
*/
|
|
5338
|
+
destroyLists(): this;
|
|
5343
5339
|
/**
|
|
5344
5340
|
* Gets content of aggregation {@link #getLists lists}.
|
|
5345
5341
|
*
|
|
5346
5342
|
* Facet Filter list represents the list of the filter values and the title of this list.
|
|
5347
5343
|
*/
|
|
5348
5344
|
getLists(): FacetFilterList[];
|
|
5349
|
-
/**
|
|
5350
|
-
* Returns a metadata object for class sap.ui.ux3.FacetFilter.
|
|
5351
|
-
*/
|
|
5352
|
-
static getMetadata(): ElementMetadata;
|
|
5353
5345
|
/**
|
|
5354
5346
|
* Gets current value of property {@link #getVisibleItemCountMode visibleItemCountMode}.
|
|
5355
5347
|
*
|
|
@@ -5488,6 +5480,31 @@ declare module "sap/ui/ux3/FacetFilterList" {
|
|
|
5488
5480
|
mSettings?: $FacetFilterListSettings
|
|
5489
5481
|
);
|
|
5490
5482
|
|
|
5483
|
+
/**
|
|
5484
|
+
* Creates a new subclass of class sap.ui.ux3.FacetFilterList with name `sClassName` and enriches it with
|
|
5485
|
+
* the information contained in `oClassInfo`.
|
|
5486
|
+
*
|
|
5487
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
5488
|
+
*/
|
|
5489
|
+
static extend<T extends Record<string, unknown>>(
|
|
5490
|
+
/**
|
|
5491
|
+
* Name of the class being created
|
|
5492
|
+
*/
|
|
5493
|
+
sClassName: string,
|
|
5494
|
+
/**
|
|
5495
|
+
* Object literal with information about the class
|
|
5496
|
+
*/
|
|
5497
|
+
oClassInfo?: sap.ClassInfo<T, FacetFilterList>,
|
|
5498
|
+
/**
|
|
5499
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5500
|
+
* used by this class
|
|
5501
|
+
*/
|
|
5502
|
+
FNMetaImpl?: Function
|
|
5503
|
+
): Function;
|
|
5504
|
+
/**
|
|
5505
|
+
* Returns a metadata object for class sap.ui.ux3.FacetFilterList.
|
|
5506
|
+
*/
|
|
5507
|
+
static getMetadata(): ElementMetadata;
|
|
5491
5508
|
/**
|
|
5492
5509
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
5493
5510
|
*/
|
|
@@ -5557,27 +5574,6 @@ declare module "sap/ui/ux3/FacetFilterList" {
|
|
|
5557
5574
|
*/
|
|
5558
5575
|
oListener?: object
|
|
5559
5576
|
): this;
|
|
5560
|
-
/**
|
|
5561
|
-
* Creates a new subclass of class sap.ui.ux3.FacetFilterList with name `sClassName` and enriches it with
|
|
5562
|
-
* the information contained in `oClassInfo`.
|
|
5563
|
-
*
|
|
5564
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
5565
|
-
*/
|
|
5566
|
-
static extend<T extends Record<string, unknown>>(
|
|
5567
|
-
/**
|
|
5568
|
-
* Name of the class being created
|
|
5569
|
-
*/
|
|
5570
|
-
sClassName: string,
|
|
5571
|
-
/**
|
|
5572
|
-
* Object literal with information about the class
|
|
5573
|
-
*/
|
|
5574
|
-
oClassInfo?: sap.ClassInfo<T, FacetFilterList>,
|
|
5575
|
-
/**
|
|
5576
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5577
|
-
* used by this class
|
|
5578
|
-
*/
|
|
5579
|
-
FNMetaImpl?: Function
|
|
5580
|
-
): Function;
|
|
5581
5577
|
/**
|
|
5582
5578
|
* Fires event {@link #event:select select} to attached listeners.
|
|
5583
5579
|
*/
|
|
@@ -5622,10 +5618,6 @@ declare module "sap/ui/ux3/FacetFilterList" {
|
|
|
5622
5618
|
* The filter values that are presented as a list.
|
|
5623
5619
|
*/
|
|
5624
5620
|
getItems(): ListItem[];
|
|
5625
|
-
/**
|
|
5626
|
-
* Returns a metadata object for class sap.ui.ux3.FacetFilterList.
|
|
5627
|
-
*/
|
|
5628
|
-
static getMetadata(): ElementMetadata;
|
|
5629
5621
|
/**
|
|
5630
5622
|
* Gets current value of property {@link #getMultiSelect multiSelect}.
|
|
5631
5623
|
*
|
|
@@ -5807,7 +5799,7 @@ declare module "sap/ui/ux3/FacetFilterList" {
|
|
|
5807
5799
|
/**
|
|
5808
5800
|
* On Select event.
|
|
5809
5801
|
*/
|
|
5810
|
-
select?:
|
|
5802
|
+
select?: (oEvent: Event) => void;
|
|
5811
5803
|
}
|
|
5812
5804
|
}
|
|
5813
5805
|
|
|
@@ -5871,6 +5863,31 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
5871
5863
|
mSettings?: $FeedSettings
|
|
5872
5864
|
);
|
|
5873
5865
|
|
|
5866
|
+
/**
|
|
5867
|
+
* Creates a new subclass of class sap.ui.ux3.Feed with name `sClassName` and enriches it with the information
|
|
5868
|
+
* contained in `oClassInfo`.
|
|
5869
|
+
*
|
|
5870
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
5871
|
+
*/
|
|
5872
|
+
static extend<T extends Record<string, unknown>>(
|
|
5873
|
+
/**
|
|
5874
|
+
* Name of the class being created
|
|
5875
|
+
*/
|
|
5876
|
+
sClassName: string,
|
|
5877
|
+
/**
|
|
5878
|
+
* Object literal with information about the class
|
|
5879
|
+
*/
|
|
5880
|
+
oClassInfo?: sap.ClassInfo<T, Feed>,
|
|
5881
|
+
/**
|
|
5882
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5883
|
+
* used by this class
|
|
5884
|
+
*/
|
|
5885
|
+
FNMetaImpl?: Function
|
|
5886
|
+
): Function;
|
|
5887
|
+
/**
|
|
5888
|
+
* Returns a metadata object for class sap.ui.ux3.Feed.
|
|
5889
|
+
*/
|
|
5890
|
+
static getMetadata(): ElementMetadata;
|
|
5874
5891
|
/**
|
|
5875
5892
|
* Adds some chunk to the aggregation {@link #getChunks chunks}.
|
|
5876
5893
|
*/
|
|
@@ -6229,27 +6246,6 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
6229
6246
|
*/
|
|
6230
6247
|
oListener?: object
|
|
6231
6248
|
): this;
|
|
6232
|
-
/**
|
|
6233
|
-
* Creates a new subclass of class sap.ui.ux3.Feed with name `sClassName` and enriches it with the information
|
|
6234
|
-
* contained in `oClassInfo`.
|
|
6235
|
-
*
|
|
6236
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
6237
|
-
*/
|
|
6238
|
-
static extend<T extends Record<string, unknown>>(
|
|
6239
|
-
/**
|
|
6240
|
-
* Name of the class being created
|
|
6241
|
-
*/
|
|
6242
|
-
sClassName: string,
|
|
6243
|
-
/**
|
|
6244
|
-
* Object literal with information about the class
|
|
6245
|
-
*/
|
|
6246
|
-
oClassInfo?: sap.ClassInfo<T, Feed>,
|
|
6247
|
-
/**
|
|
6248
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6249
|
-
* used by this class
|
|
6250
|
-
*/
|
|
6251
|
-
FNMetaImpl?: Function
|
|
6252
|
-
): Function;
|
|
6253
6249
|
/**
|
|
6254
6250
|
* Fires event {@link #event:chunkAdded chunkAdded} to attached listeners.
|
|
6255
6251
|
*/
|
|
@@ -6355,11 +6351,7 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
6355
6351
|
*
|
|
6356
6352
|
* Default value is `true`.
|
|
6357
6353
|
*/
|
|
6358
|
-
getLive(): boolean;
|
|
6359
|
-
/**
|
|
6360
|
-
* Returns a metadata object for class sap.ui.ux3.Feed.
|
|
6361
|
-
*/
|
|
6362
|
-
static getMetadata(): ElementMetadata;
|
|
6354
|
+
getLive(): boolean;
|
|
6363
6355
|
/**
|
|
6364
6356
|
* Gets current value of property {@link #getTitle title}.
|
|
6365
6357
|
*
|
|
@@ -6599,27 +6591,27 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
6599
6591
|
/**
|
|
6600
6592
|
* Event is fired when the filter is changed
|
|
6601
6593
|
*/
|
|
6602
|
-
filterChange?:
|
|
6594
|
+
filterChange?: (oEvent: Event) => void;
|
|
6603
6595
|
|
|
6604
6596
|
/**
|
|
6605
6597
|
* Event is fired when the search function on SearchField is triggered
|
|
6606
6598
|
*/
|
|
6607
|
-
search?:
|
|
6599
|
+
search?: (oEvent: Event) => void;
|
|
6608
6600
|
|
|
6609
6601
|
/**
|
|
6610
6602
|
* Event is fired when a new chunk is added
|
|
6611
6603
|
*/
|
|
6612
|
-
chunkAdded?:
|
|
6604
|
+
chunkAdded?: (oEvent: Event) => void;
|
|
6613
6605
|
|
|
6614
6606
|
/**
|
|
6615
6607
|
* Event is fired when an item from the tools MenuButton was selected
|
|
6616
6608
|
*/
|
|
6617
|
-
toolsItemSelected?:
|
|
6609
|
+
toolsItemSelected?: (oEvent: Event) => void;
|
|
6618
6610
|
|
|
6619
6611
|
/**
|
|
6620
6612
|
* Event is fired when the live mode has changed
|
|
6621
6613
|
*/
|
|
6622
|
-
toggleLive?:
|
|
6614
|
+
toggleLive?: (oEvent: Event) => void;
|
|
6623
6615
|
}
|
|
6624
6616
|
}
|
|
6625
6617
|
|
|
@@ -6681,6 +6673,31 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
6681
6673
|
mSettings?: $FeedChunkSettings
|
|
6682
6674
|
);
|
|
6683
6675
|
|
|
6676
|
+
/**
|
|
6677
|
+
* Creates a new subclass of class sap.ui.ux3.FeedChunk with name `sClassName` and enriches it with the
|
|
6678
|
+
* information contained in `oClassInfo`.
|
|
6679
|
+
*
|
|
6680
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
6681
|
+
*/
|
|
6682
|
+
static extend<T extends Record<string, unknown>>(
|
|
6683
|
+
/**
|
|
6684
|
+
* Name of the class being created
|
|
6685
|
+
*/
|
|
6686
|
+
sClassName: string,
|
|
6687
|
+
/**
|
|
6688
|
+
* Object literal with information about the class
|
|
6689
|
+
*/
|
|
6690
|
+
oClassInfo?: sap.ClassInfo<T, FeedChunk>,
|
|
6691
|
+
/**
|
|
6692
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6693
|
+
* used by this class
|
|
6694
|
+
*/
|
|
6695
|
+
FNMetaImpl?: Function
|
|
6696
|
+
): Function;
|
|
6697
|
+
/**
|
|
6698
|
+
* Returns a metadata object for class sap.ui.ux3.FeedChunk.
|
|
6699
|
+
*/
|
|
6700
|
+
static getMetadata(): ElementMetadata;
|
|
6684
6701
|
/**
|
|
6685
6702
|
* Adds some actionMenuItem to the aggregation {@link #getActionMenuItems actionMenuItems}.
|
|
6686
6703
|
*/
|
|
@@ -7248,27 +7265,6 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
7248
7265
|
*/
|
|
7249
7266
|
oListener?: object
|
|
7250
7267
|
): this;
|
|
7251
|
-
/**
|
|
7252
|
-
* Creates a new subclass of class sap.ui.ux3.FeedChunk with name `sClassName` and enriches it with the
|
|
7253
|
-
* information contained in `oClassInfo`.
|
|
7254
|
-
*
|
|
7255
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7256
|
-
*/
|
|
7257
|
-
static extend<T extends Record<string, unknown>>(
|
|
7258
|
-
/**
|
|
7259
|
-
* Name of the class being created
|
|
7260
|
-
*/
|
|
7261
|
-
sClassName: string,
|
|
7262
|
-
/**
|
|
7263
|
-
* Object literal with information about the class
|
|
7264
|
-
*/
|
|
7265
|
-
oClassInfo?: sap.ClassInfo<T, FeedChunk>,
|
|
7266
|
-
/**
|
|
7267
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7268
|
-
* used by this class
|
|
7269
|
-
*/
|
|
7270
|
-
FNMetaImpl?: Function
|
|
7271
|
-
): Function;
|
|
7272
7268
|
/**
|
|
7273
7269
|
* Fires event {@link #event:actionItemSelected actionItemSelected} to attached listeners.
|
|
7274
7270
|
*/
|
|
@@ -7487,10 +7483,6 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
7487
7483
|
* Default value is `false`.
|
|
7488
7484
|
*/
|
|
7489
7485
|
getFlagged(): boolean;
|
|
7490
|
-
/**
|
|
7491
|
-
* Returns a metadata object for class sap.ui.ux3.FeedChunk.
|
|
7492
|
-
*/
|
|
7493
|
-
static getMetadata(): ElementMetadata;
|
|
7494
7486
|
/**
|
|
7495
7487
|
* Gets current value of property {@link #getSender sender}.
|
|
7496
7488
|
*
|
|
@@ -7951,48 +7943,48 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
7951
7943
|
/**
|
|
7952
7944
|
* Event is fired when the deletion button is pressed.
|
|
7953
7945
|
*/
|
|
7954
|
-
deleted?:
|
|
7946
|
+
deleted?: (oEvent: Event) => void;
|
|
7955
7947
|
|
|
7956
7948
|
/**
|
|
7957
7949
|
* Event is raised when a comment is added to the entry. This event is not supported for comment chunks.
|
|
7958
7950
|
*/
|
|
7959
|
-
commentAdded?:
|
|
7951
|
+
commentAdded?: (oEvent: Event) => void;
|
|
7960
7952
|
|
|
7961
7953
|
/**
|
|
7962
7954
|
* Event is raised when the user clicks to flag the entry. This event is not supported for comment chunks.
|
|
7963
7955
|
*/
|
|
7964
|
-
toggleFlagged?:
|
|
7956
|
+
toggleFlagged?: (oEvent: Event) => void;
|
|
7965
7957
|
|
|
7966
7958
|
/**
|
|
7967
7959
|
* Event is fired when the thumbnail or the name of the sender is clicked.
|
|
7968
7960
|
*/
|
|
7969
|
-
senderClicked?:
|
|
7961
|
+
senderClicked?: (oEvent: Event) => void;
|
|
7970
7962
|
|
|
7971
7963
|
/**
|
|
7972
7964
|
* Click on a @-reference
|
|
7973
7965
|
*/
|
|
7974
|
-
referenceClicked?:
|
|
7966
|
+
referenceClicked?: (oEvent: Event) => void;
|
|
7975
7967
|
|
|
7976
7968
|
/**
|
|
7977
7969
|
* Event is raised when the user clicks to set the entry as favorite. This event is not supported for comment
|
|
7978
7970
|
* chunks.
|
|
7979
7971
|
*/
|
|
7980
|
-
toggleFavorite?:
|
|
7972
|
+
toggleFavorite?: (oEvent: Event) => void;
|
|
7981
7973
|
|
|
7982
7974
|
/**
|
|
7983
7975
|
* Event is fired when the inspect button was pressed
|
|
7984
7976
|
*/
|
|
7985
|
-
inspect?:
|
|
7977
|
+
inspect?: (oEvent: Event) => void;
|
|
7986
7978
|
|
|
7987
7979
|
/**
|
|
7988
7980
|
* Event is raised when the user clicks to share the entry. This event is not supported for comment chunks.
|
|
7989
7981
|
*/
|
|
7990
|
-
toggleShared?:
|
|
7982
|
+
toggleShared?: (oEvent: Event) => void;
|
|
7991
7983
|
|
|
7992
7984
|
/**
|
|
7993
7985
|
* Event is fired when an item from the action menu button was selected.
|
|
7994
7986
|
*/
|
|
7995
|
-
actionItemSelected?:
|
|
7987
|
+
actionItemSelected?: (oEvent: Event) => void;
|
|
7996
7988
|
}
|
|
7997
7989
|
}
|
|
7998
7990
|
|
|
@@ -8049,6 +8041,31 @@ declare module "sap/ui/ux3/Feeder" {
|
|
|
8049
8041
|
mSettings?: $FeederSettings
|
|
8050
8042
|
);
|
|
8051
8043
|
|
|
8044
|
+
/**
|
|
8045
|
+
* Creates a new subclass of class sap.ui.ux3.Feeder with name `sClassName` and enriches it with the information
|
|
8046
|
+
* contained in `oClassInfo`.
|
|
8047
|
+
*
|
|
8048
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8049
|
+
*/
|
|
8050
|
+
static extend<T extends Record<string, unknown>>(
|
|
8051
|
+
/**
|
|
8052
|
+
* Name of the class being created
|
|
8053
|
+
*/
|
|
8054
|
+
sClassName: string,
|
|
8055
|
+
/**
|
|
8056
|
+
* Object literal with information about the class
|
|
8057
|
+
*/
|
|
8058
|
+
oClassInfo?: sap.ClassInfo<T, Feeder>,
|
|
8059
|
+
/**
|
|
8060
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8061
|
+
* used by this class
|
|
8062
|
+
*/
|
|
8063
|
+
FNMetaImpl?: Function
|
|
8064
|
+
): Function;
|
|
8065
|
+
/**
|
|
8066
|
+
* Returns a metadata object for class sap.ui.ux3.Feeder.
|
|
8067
|
+
*/
|
|
8068
|
+
static getMetadata(): ElementMetadata;
|
|
8052
8069
|
/**
|
|
8053
8070
|
* Attaches event handler `fnFunction` to the {@link #event:submit submit} event of this `sap.ui.ux3.Feeder`.
|
|
8054
8071
|
*
|
|
@@ -8105,27 +8122,6 @@ declare module "sap/ui/ux3/Feeder" {
|
|
|
8105
8122
|
*/
|
|
8106
8123
|
oListener?: object
|
|
8107
8124
|
): this;
|
|
8108
|
-
/**
|
|
8109
|
-
* Creates a new subclass of class sap.ui.ux3.Feeder with name `sClassName` and enriches it with the information
|
|
8110
|
-
* contained in `oClassInfo`.
|
|
8111
|
-
*
|
|
8112
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8113
|
-
*/
|
|
8114
|
-
static extend<T extends Record<string, unknown>>(
|
|
8115
|
-
/**
|
|
8116
|
-
* Name of the class being created
|
|
8117
|
-
*/
|
|
8118
|
-
sClassName: string,
|
|
8119
|
-
/**
|
|
8120
|
-
* Object literal with information about the class
|
|
8121
|
-
*/
|
|
8122
|
-
oClassInfo?: sap.ClassInfo<T, Feeder>,
|
|
8123
|
-
/**
|
|
8124
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8125
|
-
* used by this class
|
|
8126
|
-
*/
|
|
8127
|
-
FNMetaImpl?: Function
|
|
8128
|
-
): Function;
|
|
8129
8125
|
/**
|
|
8130
8126
|
* Fires event {@link #event:submit submit} to attached listeners.
|
|
8131
8127
|
*/
|
|
@@ -8140,10 +8136,6 @@ declare module "sap/ui/ux3/Feeder" {
|
|
|
8140
8136
|
text?: string;
|
|
8141
8137
|
}
|
|
8142
8138
|
): this;
|
|
8143
|
-
/**
|
|
8144
|
-
* Returns a metadata object for class sap.ui.ux3.Feeder.
|
|
8145
|
-
*/
|
|
8146
|
-
static getMetadata(): ElementMetadata;
|
|
8147
8139
|
/**
|
|
8148
8140
|
* Gets current value of property {@link #getPlaceholderText placeholderText}.
|
|
8149
8141
|
*
|
|
@@ -8256,7 +8248,7 @@ declare module "sap/ui/ux3/Feeder" {
|
|
|
8256
8248
|
/**
|
|
8257
8249
|
* Event is fired when the entered text is submitted
|
|
8258
8250
|
*/
|
|
8259
|
-
submit?:
|
|
8251
|
+
submit?: (oEvent: Event) => void;
|
|
8260
8252
|
}
|
|
8261
8253
|
}
|
|
8262
8254
|
|
|
@@ -8318,6 +8310,31 @@ declare module "sap/ui/ux3/NavigationBar" {
|
|
|
8318
8310
|
mSettings?: $NavigationBarSettings
|
|
8319
8311
|
);
|
|
8320
8312
|
|
|
8313
|
+
/**
|
|
8314
|
+
* Creates a new subclass of class sap.ui.ux3.NavigationBar with name `sClassName` and enriches it with
|
|
8315
|
+
* the information contained in `oClassInfo`.
|
|
8316
|
+
*
|
|
8317
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8318
|
+
*/
|
|
8319
|
+
static extend<T extends Record<string, unknown>>(
|
|
8320
|
+
/**
|
|
8321
|
+
* Name of the class being created
|
|
8322
|
+
*/
|
|
8323
|
+
sClassName: string,
|
|
8324
|
+
/**
|
|
8325
|
+
* Object literal with information about the class
|
|
8326
|
+
*/
|
|
8327
|
+
oClassInfo?: sap.ClassInfo<T, NavigationBar>,
|
|
8328
|
+
/**
|
|
8329
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8330
|
+
* used by this class
|
|
8331
|
+
*/
|
|
8332
|
+
FNMetaImpl?: Function
|
|
8333
|
+
): Function;
|
|
8334
|
+
/**
|
|
8335
|
+
* Returns a metadata object for class sap.ui.ux3.NavigationBar.
|
|
8336
|
+
*/
|
|
8337
|
+
static getMetadata(): ElementMetadata;
|
|
8321
8338
|
/**
|
|
8322
8339
|
* Adds some associatedItem into the association {@link #getAssociatedItems associatedItems}.
|
|
8323
8340
|
*/
|
|
@@ -8396,27 +8413,6 @@ declare module "sap/ui/ux3/NavigationBar" {
|
|
|
8396
8413
|
*/
|
|
8397
8414
|
oListener?: object
|
|
8398
8415
|
): this;
|
|
8399
|
-
/**
|
|
8400
|
-
* Creates a new subclass of class sap.ui.ux3.NavigationBar with name `sClassName` and enriches it with
|
|
8401
|
-
* the information contained in `oClassInfo`.
|
|
8402
|
-
*
|
|
8403
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8404
|
-
*/
|
|
8405
|
-
static extend<T extends Record<string, unknown>>(
|
|
8406
|
-
/**
|
|
8407
|
-
* Name of the class being created
|
|
8408
|
-
*/
|
|
8409
|
-
sClassName: string,
|
|
8410
|
-
/**
|
|
8411
|
-
* Object literal with information about the class
|
|
8412
|
-
*/
|
|
8413
|
-
oClassInfo?: sap.ClassInfo<T, NavigationBar>,
|
|
8414
|
-
/**
|
|
8415
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8416
|
-
* used by this class
|
|
8417
|
-
*/
|
|
8418
|
-
FNMetaImpl?: Function
|
|
8419
|
-
): Function;
|
|
8420
8416
|
/**
|
|
8421
8417
|
* Fires event {@link #event:select select} to attached listeners.
|
|
8422
8418
|
*
|
|
@@ -8451,10 +8447,6 @@ declare module "sap/ui/ux3/NavigationBar" {
|
|
|
8451
8447
|
* aggregation is empty, associatedItems is used.
|
|
8452
8448
|
*/
|
|
8453
8449
|
getItems(): NavigationItem[];
|
|
8454
|
-
/**
|
|
8455
|
-
* Returns a metadata object for class sap.ui.ux3.NavigationBar.
|
|
8456
|
-
*/
|
|
8457
|
-
static getMetadata(): ElementMetadata;
|
|
8458
8450
|
/**
|
|
8459
8451
|
* @SINCE 1.36
|
|
8460
8452
|
*
|
|
@@ -8623,7 +8615,7 @@ declare module "sap/ui/ux3/NavigationBar" {
|
|
|
8623
8615
|
/**
|
|
8624
8616
|
* Event is fired when an item is selected by the user
|
|
8625
8617
|
*/
|
|
8626
|
-
select?:
|
|
8618
|
+
select?: (oEvent: Event) => void;
|
|
8627
8619
|
}
|
|
8628
8620
|
}
|
|
8629
8621
|
|
|
@@ -8677,19 +8669,6 @@ declare module "sap/ui/ux3/NavigationItem" {
|
|
|
8677
8669
|
mSettings?: $NavigationItemSettings
|
|
8678
8670
|
);
|
|
8679
8671
|
|
|
8680
|
-
/**
|
|
8681
|
-
* Adds some subItem to the aggregation {@link #getSubItems subItems}.
|
|
8682
|
-
*/
|
|
8683
|
-
addSubItem(
|
|
8684
|
-
/**
|
|
8685
|
-
* The subItem to add; if empty, nothing is inserted
|
|
8686
|
-
*/
|
|
8687
|
-
oSubItem: NavigationItem
|
|
8688
|
-
): this;
|
|
8689
|
-
/**
|
|
8690
|
-
* Destroys all the subItems in the aggregation {@link #getSubItems subItems}.
|
|
8691
|
-
*/
|
|
8692
|
-
destroySubItems(): this;
|
|
8693
8672
|
/**
|
|
8694
8673
|
* Creates a new subclass of class sap.ui.ux3.NavigationItem with name `sClassName` and enriches it with
|
|
8695
8674
|
* the information contained in `oClassInfo`.
|
|
@@ -8711,6 +8690,23 @@ declare module "sap/ui/ux3/NavigationItem" {
|
|
|
8711
8690
|
*/
|
|
8712
8691
|
FNMetaImpl?: Function
|
|
8713
8692
|
): Function;
|
|
8693
|
+
/**
|
|
8694
|
+
* Returns a metadata object for class sap.ui.ux3.NavigationItem.
|
|
8695
|
+
*/
|
|
8696
|
+
static getMetadata(): ElementMetadata;
|
|
8697
|
+
/**
|
|
8698
|
+
* Adds some subItem to the aggregation {@link #getSubItems subItems}.
|
|
8699
|
+
*/
|
|
8700
|
+
addSubItem(
|
|
8701
|
+
/**
|
|
8702
|
+
* The subItem to add; if empty, nothing is inserted
|
|
8703
|
+
*/
|
|
8704
|
+
oSubItem: NavigationItem
|
|
8705
|
+
): this;
|
|
8706
|
+
/**
|
|
8707
|
+
* Destroys all the subItems in the aggregation {@link #getSubItems subItems}.
|
|
8708
|
+
*/
|
|
8709
|
+
destroySubItems(): this;
|
|
8714
8710
|
/**
|
|
8715
8711
|
* Gets current value of property {@link #getHref href}.
|
|
8716
8712
|
*
|
|
@@ -8722,10 +8718,6 @@ declare module "sap/ui/ux3/NavigationItem" {
|
|
|
8722
8718
|
* with the respective NavigationItem being selected).
|
|
8723
8719
|
*/
|
|
8724
8720
|
getHref(): URI;
|
|
8725
|
-
/**
|
|
8726
|
-
* Returns a metadata object for class sap.ui.ux3.NavigationItem.
|
|
8727
|
-
*/
|
|
8728
|
-
static getMetadata(): ElementMetadata;
|
|
8729
8721
|
/**
|
|
8730
8722
|
* Gets content of aggregation {@link #getSubItems subItems}.
|
|
8731
8723
|
*
|
|
@@ -8908,6 +8900,31 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
8908
8900
|
mSettings?: $NotificationBarSettings
|
|
8909
8901
|
);
|
|
8910
8902
|
|
|
8903
|
+
/**
|
|
8904
|
+
* Creates a new subclass of class sap.ui.ux3.NotificationBar with name `sClassName` and enriches it with
|
|
8905
|
+
* the information contained in `oClassInfo`.
|
|
8906
|
+
*
|
|
8907
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8908
|
+
*/
|
|
8909
|
+
static extend<T extends Record<string, unknown>>(
|
|
8910
|
+
/**
|
|
8911
|
+
* Name of the class being created
|
|
8912
|
+
*/
|
|
8913
|
+
sClassName: string,
|
|
8914
|
+
/**
|
|
8915
|
+
* Object literal with information about the class
|
|
8916
|
+
*/
|
|
8917
|
+
oClassInfo?: sap.ClassInfo<T, NotificationBar>,
|
|
8918
|
+
/**
|
|
8919
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8920
|
+
* used by this class
|
|
8921
|
+
*/
|
|
8922
|
+
FNMetaImpl?: Function
|
|
8923
|
+
): Function;
|
|
8924
|
+
/**
|
|
8925
|
+
* Returns a metadata object for class sap.ui.ux3.NotificationBar.
|
|
8926
|
+
*/
|
|
8927
|
+
static getMetadata(): ElementMetadata;
|
|
8911
8928
|
/**
|
|
8912
8929
|
* Adds some notifier to the aggregation {@link #getNotifiers notifiers}.
|
|
8913
8930
|
*/
|
|
@@ -9049,27 +9066,6 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
9049
9066
|
*/
|
|
9050
9067
|
oListener?: object
|
|
9051
9068
|
): this;
|
|
9052
|
-
/**
|
|
9053
|
-
* Creates a new subclass of class sap.ui.ux3.NotificationBar with name `sClassName` and enriches it with
|
|
9054
|
-
* the information contained in `oClassInfo`.
|
|
9055
|
-
*
|
|
9056
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9057
|
-
*/
|
|
9058
|
-
static extend<T extends Record<string, unknown>>(
|
|
9059
|
-
/**
|
|
9060
|
-
* Name of the class being created
|
|
9061
|
-
*/
|
|
9062
|
-
sClassName: string,
|
|
9063
|
-
/**
|
|
9064
|
-
* Object literal with information about the class
|
|
9065
|
-
*/
|
|
9066
|
-
oClassInfo?: sap.ClassInfo<T, NotificationBar>,
|
|
9067
|
-
/**
|
|
9068
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9069
|
-
* used by this class
|
|
9070
|
-
*/
|
|
9071
|
-
FNMetaImpl?: Function
|
|
9072
|
-
): Function;
|
|
9073
9069
|
/**
|
|
9074
9070
|
* Fires event {@link #event:display display} to attached listeners.
|
|
9075
9071
|
*/
|
|
@@ -9115,10 +9111,6 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
9115
9111
|
* Notifier that shows messages
|
|
9116
9112
|
*/
|
|
9117
9113
|
getMessageNotifier(): UI5Element;
|
|
9118
|
-
/**
|
|
9119
|
-
* Returns a metadata object for class sap.ui.ux3.NotificationBar.
|
|
9120
|
-
*/
|
|
9121
|
-
static getMetadata(): ElementMetadata;
|
|
9122
9114
|
/**
|
|
9123
9115
|
* Gets content of aggregation {@link #getNotifiers notifiers}.
|
|
9124
9116
|
*
|
|
@@ -9272,7 +9264,7 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
9272
9264
|
* Event is fired when the bar wants to be displayed depending on given flag. This allows the application
|
|
9273
9265
|
* to decide what to do.
|
|
9274
9266
|
*/
|
|
9275
|
-
display?:
|
|
9267
|
+
display?: (oEvent: Event) => void;
|
|
9276
9268
|
|
|
9277
9269
|
/**
|
|
9278
9270
|
* @SINCE 1.12.2
|
|
@@ -9281,7 +9273,7 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
9281
9273
|
* The event itself can be used from SAPUI5-version 1.12.2 since there was a bug in the previous versions
|
|
9282
9274
|
* firing this event.
|
|
9283
9275
|
*/
|
|
9284
|
-
resize?:
|
|
9276
|
+
resize?: (oEvent: Event) => void;
|
|
9285
9277
|
}
|
|
9286
9278
|
}
|
|
9287
9279
|
|
|
@@ -9331,13 +9323,38 @@ declare module "sap/ui/ux3/Notifier" {
|
|
|
9331
9323
|
/**
|
|
9332
9324
|
* id for the new control, generated automatically if no id is given
|
|
9333
9325
|
*/
|
|
9334
|
-
sId?: string,
|
|
9326
|
+
sId?: string,
|
|
9327
|
+
/**
|
|
9328
|
+
* initial settings for the new control
|
|
9329
|
+
*/
|
|
9330
|
+
mSettings?: $NotifierSettings
|
|
9331
|
+
);
|
|
9332
|
+
|
|
9333
|
+
/**
|
|
9334
|
+
* Creates a new subclass of class sap.ui.ux3.Notifier with name `sClassName` and enriches it with the information
|
|
9335
|
+
* contained in `oClassInfo`.
|
|
9336
|
+
*
|
|
9337
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
9338
|
+
*/
|
|
9339
|
+
static extend<T extends Record<string, unknown>>(
|
|
9340
|
+
/**
|
|
9341
|
+
* Name of the class being created
|
|
9342
|
+
*/
|
|
9343
|
+
sClassName: string,
|
|
9344
|
+
/**
|
|
9345
|
+
* Object literal with information about the class
|
|
9346
|
+
*/
|
|
9347
|
+
oClassInfo?: sap.ClassInfo<T, Notifier>,
|
|
9335
9348
|
/**
|
|
9336
|
-
*
|
|
9349
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9350
|
+
* used by this class
|
|
9337
9351
|
*/
|
|
9338
|
-
|
|
9339
|
-
);
|
|
9340
|
-
|
|
9352
|
+
FNMetaImpl?: Function
|
|
9353
|
+
): Function;
|
|
9354
|
+
/**
|
|
9355
|
+
* Returns a metadata object for class sap.ui.ux3.Notifier.
|
|
9356
|
+
*/
|
|
9357
|
+
static getMetadata(): ElementMetadata;
|
|
9341
9358
|
/**
|
|
9342
9359
|
* Adds some message to the aggregation {@link #getMessages messages}.
|
|
9343
9360
|
*/
|
|
@@ -9410,27 +9427,6 @@ declare module "sap/ui/ux3/Notifier" {
|
|
|
9410
9427
|
*/
|
|
9411
9428
|
oListener?: object
|
|
9412
9429
|
): this;
|
|
9413
|
-
/**
|
|
9414
|
-
* Creates a new subclass of class sap.ui.ux3.Notifier with name `sClassName` and enriches it with the information
|
|
9415
|
-
* contained in `oClassInfo`.
|
|
9416
|
-
*
|
|
9417
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
9418
|
-
*/
|
|
9419
|
-
static extend<T extends Record<string, unknown>>(
|
|
9420
|
-
/**
|
|
9421
|
-
* Name of the class being created
|
|
9422
|
-
*/
|
|
9423
|
-
sClassName: string,
|
|
9424
|
-
/**
|
|
9425
|
-
* Object literal with information about the class
|
|
9426
|
-
*/
|
|
9427
|
-
oClassInfo?: sap.ClassInfo<T, Notifier>,
|
|
9428
|
-
/**
|
|
9429
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9430
|
-
* used by this class
|
|
9431
|
-
*/
|
|
9432
|
-
FNMetaImpl?: Function
|
|
9433
|
-
): Function;
|
|
9434
9430
|
/**
|
|
9435
9431
|
* Fires event {@link #event:messageSelected messageSelected} to attached listeners.
|
|
9436
9432
|
*/
|
|
@@ -9461,10 +9457,6 @@ declare module "sap/ui/ux3/Notifier" {
|
|
|
9461
9457
|
* Messages of this notifier.
|
|
9462
9458
|
*/
|
|
9463
9459
|
getMessages(): Message[];
|
|
9464
|
-
/**
|
|
9465
|
-
* Returns a metadata object for class sap.ui.ux3.Notifier.
|
|
9466
|
-
*/
|
|
9467
|
-
static getMetadata(): ElementMetadata;
|
|
9468
9460
|
/**
|
|
9469
9461
|
* Gets current value of property {@link #getTitle title}.
|
|
9470
9462
|
*
|
|
@@ -9562,7 +9554,7 @@ declare module "sap/ui/ux3/Notifier" {
|
|
|
9562
9554
|
/**
|
|
9563
9555
|
* Event is fired when a message of the notifiers was selected.
|
|
9564
9556
|
*/
|
|
9565
|
-
messageSelected?:
|
|
9557
|
+
messageSelected?: (oEvent: Event) => void;
|
|
9566
9558
|
}
|
|
9567
9559
|
}
|
|
9568
9560
|
|
|
@@ -9615,6 +9607,31 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
9615
9607
|
mSettings?: $OverlaySettings
|
|
9616
9608
|
);
|
|
9617
9609
|
|
|
9610
|
+
/**
|
|
9611
|
+
* Creates a new subclass of class sap.ui.ux3.Overlay with name `sClassName` and enriches it with the information
|
|
9612
|
+
* contained in `oClassInfo`.
|
|
9613
|
+
*
|
|
9614
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9615
|
+
*/
|
|
9616
|
+
static extend<T extends Record<string, unknown>>(
|
|
9617
|
+
/**
|
|
9618
|
+
* Name of the class being created
|
|
9619
|
+
*/
|
|
9620
|
+
sClassName: string,
|
|
9621
|
+
/**
|
|
9622
|
+
* Object literal with information about the class
|
|
9623
|
+
*/
|
|
9624
|
+
oClassInfo?: sap.ClassInfo<T, Overlay>,
|
|
9625
|
+
/**
|
|
9626
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9627
|
+
* used by this class
|
|
9628
|
+
*/
|
|
9629
|
+
FNMetaImpl?: Function
|
|
9630
|
+
): Function;
|
|
9631
|
+
/**
|
|
9632
|
+
* Returns a metadata object for class sap.ui.ux3.Overlay.
|
|
9633
|
+
*/
|
|
9634
|
+
static getMetadata(): ElementMetadata;
|
|
9618
9635
|
/**
|
|
9619
9636
|
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.ui.ux3.Overlay`.
|
|
9620
9637
|
*
|
|
@@ -9843,27 +9860,6 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
9843
9860
|
*/
|
|
9844
9861
|
oListener?: object
|
|
9845
9862
|
): this;
|
|
9846
|
-
/**
|
|
9847
|
-
* Creates a new subclass of class sap.ui.ux3.Overlay with name `sClassName` and enriches it with the information
|
|
9848
|
-
* contained in `oClassInfo`.
|
|
9849
|
-
*
|
|
9850
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9851
|
-
*/
|
|
9852
|
-
static extend<T extends Record<string, unknown>>(
|
|
9853
|
-
/**
|
|
9854
|
-
* Name of the class being created
|
|
9855
|
-
*/
|
|
9856
|
-
sClassName: string,
|
|
9857
|
-
/**
|
|
9858
|
-
* Object literal with information about the class
|
|
9859
|
-
*/
|
|
9860
|
-
oClassInfo?: sap.ClassInfo<T, Overlay>,
|
|
9861
|
-
/**
|
|
9862
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9863
|
-
* used by this class
|
|
9864
|
-
*/
|
|
9865
|
-
FNMetaImpl?: Function
|
|
9866
|
-
): Function;
|
|
9867
9863
|
/**
|
|
9868
9864
|
* Fires event {@link #event:close close} to attached listeners.
|
|
9869
9865
|
*
|
|
@@ -9934,10 +9930,6 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
9934
9930
|
* Default value is `true`.
|
|
9935
9931
|
*/
|
|
9936
9932
|
getCloseButtonVisible(): boolean;
|
|
9937
|
-
/**
|
|
9938
|
-
* Returns a metadata object for class sap.ui.ux3.Overlay.
|
|
9939
|
-
*/
|
|
9940
|
-
static getMetadata(): ElementMetadata;
|
|
9941
9933
|
/**
|
|
9942
9934
|
* Gets current value of property {@link #getOpenButtonVisible openButtonVisible}.
|
|
9943
9935
|
*
|
|
@@ -10005,22 +9997,22 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
10005
9997
|
/**
|
|
10006
9998
|
* Event is fired when the Overlay starts closing.
|
|
10007
9999
|
*/
|
|
10008
|
-
close?:
|
|
10000
|
+
close?: (oEvent: Event) => void;
|
|
10009
10001
|
|
|
10010
10002
|
/**
|
|
10011
10003
|
* Event is fired when the Overlay is closed.
|
|
10012
10004
|
*/
|
|
10013
|
-
closed?:
|
|
10005
|
+
closed?: (oEvent: Event) => void;
|
|
10014
10006
|
|
|
10015
10007
|
/**
|
|
10016
10008
|
* Event is fired when the 'Open' button of the Overlay is clicked.
|
|
10017
10009
|
*/
|
|
10018
|
-
openNew?:
|
|
10010
|
+
openNew?: (oEvent: Event) => void;
|
|
10019
10011
|
|
|
10020
10012
|
/**
|
|
10021
10013
|
* Event is fired when the Overlay is opened.
|
|
10022
10014
|
*/
|
|
10023
|
-
open?:
|
|
10015
|
+
open?: (oEvent: Event) => void;
|
|
10024
10016
|
}
|
|
10025
10017
|
}
|
|
10026
10018
|
|
|
@@ -10070,19 +10062,6 @@ declare module "sap/ui/ux3/OverlayContainer" {
|
|
|
10070
10062
|
mSettings?: $OverlayContainerSettings
|
|
10071
10063
|
);
|
|
10072
10064
|
|
|
10073
|
-
/**
|
|
10074
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
10075
|
-
*/
|
|
10076
|
-
addContent(
|
|
10077
|
-
/**
|
|
10078
|
-
* The content to add; if empty, nothing is inserted
|
|
10079
|
-
*/
|
|
10080
|
-
oContent: Control
|
|
10081
|
-
): this;
|
|
10082
|
-
/**
|
|
10083
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
10084
|
-
*/
|
|
10085
|
-
destroyContent(): this;
|
|
10086
10065
|
/**
|
|
10087
10066
|
* Creates a new subclass of class sap.ui.ux3.OverlayContainer with name `sClassName` and enriches it with
|
|
10088
10067
|
* the information contained in `oClassInfo`.
|
|
@@ -10104,16 +10083,29 @@ declare module "sap/ui/ux3/OverlayContainer" {
|
|
|
10104
10083
|
*/
|
|
10105
10084
|
FNMetaImpl?: Function
|
|
10106
10085
|
): Function;
|
|
10086
|
+
/**
|
|
10087
|
+
* Returns a metadata object for class sap.ui.ux3.OverlayContainer.
|
|
10088
|
+
*/
|
|
10089
|
+
static getMetadata(): ElementMetadata;
|
|
10090
|
+
/**
|
|
10091
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
10092
|
+
*/
|
|
10093
|
+
addContent(
|
|
10094
|
+
/**
|
|
10095
|
+
* The content to add; if empty, nothing is inserted
|
|
10096
|
+
*/
|
|
10097
|
+
oContent: Control
|
|
10098
|
+
): this;
|
|
10099
|
+
/**
|
|
10100
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
10101
|
+
*/
|
|
10102
|
+
destroyContent(): this;
|
|
10107
10103
|
/**
|
|
10108
10104
|
* Gets content of aggregation {@link #getContent content}.
|
|
10109
10105
|
*
|
|
10110
10106
|
* Aggregation for content
|
|
10111
10107
|
*/
|
|
10112
10108
|
getContent(): Control[];
|
|
10113
|
-
/**
|
|
10114
|
-
* Returns a metadata object for class sap.ui.ux3.OverlayContainer.
|
|
10115
|
-
*/
|
|
10116
|
-
static getMetadata(): ElementMetadata;
|
|
10117
10109
|
/**
|
|
10118
10110
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
10119
10111
|
* its index if found or -1 otherwise.
|
|
@@ -10216,19 +10208,6 @@ declare module "sap/ui/ux3/OverlayDialog" {
|
|
|
10216
10208
|
mSettings?: $OverlayDialogSettings
|
|
10217
10209
|
);
|
|
10218
10210
|
|
|
10219
|
-
/**
|
|
10220
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
10221
|
-
*/
|
|
10222
|
-
addContent(
|
|
10223
|
-
/**
|
|
10224
|
-
* The content to add; if empty, nothing is inserted
|
|
10225
|
-
*/
|
|
10226
|
-
oContent: Control
|
|
10227
|
-
): this;
|
|
10228
|
-
/**
|
|
10229
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
10230
|
-
*/
|
|
10231
|
-
destroyContent(): this;
|
|
10232
10211
|
/**
|
|
10233
10212
|
* Creates a new subclass of class sap.ui.ux3.OverlayDialog with name `sClassName` and enriches it with
|
|
10234
10213
|
* the information contained in `oClassInfo`.
|
|
@@ -10250,6 +10229,23 @@ declare module "sap/ui/ux3/OverlayDialog" {
|
|
|
10250
10229
|
*/
|
|
10251
10230
|
FNMetaImpl?: Function
|
|
10252
10231
|
): Function;
|
|
10232
|
+
/**
|
|
10233
|
+
* Returns a metadata object for class sap.ui.ux3.OverlayDialog.
|
|
10234
|
+
*/
|
|
10235
|
+
static getMetadata(): ElementMetadata;
|
|
10236
|
+
/**
|
|
10237
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
10238
|
+
*/
|
|
10239
|
+
addContent(
|
|
10240
|
+
/**
|
|
10241
|
+
* The content to add; if empty, nothing is inserted
|
|
10242
|
+
*/
|
|
10243
|
+
oContent: Control
|
|
10244
|
+
): this;
|
|
10245
|
+
/**
|
|
10246
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
10247
|
+
*/
|
|
10248
|
+
destroyContent(): this;
|
|
10253
10249
|
/**
|
|
10254
10250
|
* Gets content of aggregation {@link #getContent content}.
|
|
10255
10251
|
*
|
|
@@ -10265,10 +10261,6 @@ declare module "sap/ui/ux3/OverlayDialog" {
|
|
|
10265
10261
|
* Default value is `'auto'`.
|
|
10266
10262
|
*/
|
|
10267
10263
|
getHeight(): CSSSize;
|
|
10268
|
-
/**
|
|
10269
|
-
* Returns a metadata object for class sap.ui.ux3.OverlayDialog.
|
|
10270
|
-
*/
|
|
10271
|
-
static getMetadata(): ElementMetadata;
|
|
10272
10264
|
/**
|
|
10273
10265
|
* Gets current value of property {@link #getWidth width}.
|
|
10274
10266
|
*
|
|
@@ -10415,6 +10407,31 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
10415
10407
|
mSettings?: $QuickViewSettings
|
|
10416
10408
|
);
|
|
10417
10409
|
|
|
10410
|
+
/**
|
|
10411
|
+
* Creates a new subclass of class sap.ui.ux3.QuickView with name `sClassName` and enriches it with the
|
|
10412
|
+
* information contained in `oClassInfo`.
|
|
10413
|
+
*
|
|
10414
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.CalloutBase.extend}.
|
|
10415
|
+
*/
|
|
10416
|
+
static extend<T extends Record<string, unknown>>(
|
|
10417
|
+
/**
|
|
10418
|
+
* Name of the class being created
|
|
10419
|
+
*/
|
|
10420
|
+
sClassName: string,
|
|
10421
|
+
/**
|
|
10422
|
+
* Object literal with information about the class
|
|
10423
|
+
*/
|
|
10424
|
+
oClassInfo?: sap.ClassInfo<T, QuickView>,
|
|
10425
|
+
/**
|
|
10426
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10427
|
+
* used by this class
|
|
10428
|
+
*/
|
|
10429
|
+
FNMetaImpl?: Function
|
|
10430
|
+
): Function;
|
|
10431
|
+
/**
|
|
10432
|
+
* Returns a metadata object for class sap.ui.ux3.QuickView.
|
|
10433
|
+
*/
|
|
10434
|
+
static getMetadata(): ElementMetadata;
|
|
10418
10435
|
/**
|
|
10419
10436
|
* Adds some action to the aggregation {@link #getActions actions}.
|
|
10420
10437
|
*/
|
|
@@ -10618,27 +10635,6 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
10618
10635
|
*/
|
|
10619
10636
|
oListener?: object
|
|
10620
10637
|
): this;
|
|
10621
|
-
/**
|
|
10622
|
-
* Creates a new subclass of class sap.ui.ux3.QuickView with name `sClassName` and enriches it with the
|
|
10623
|
-
* information contained in `oClassInfo`.
|
|
10624
|
-
*
|
|
10625
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.CalloutBase.extend}.
|
|
10626
|
-
*/
|
|
10627
|
-
static extend<T extends Record<string, unknown>>(
|
|
10628
|
-
/**
|
|
10629
|
-
* Name of the class being created
|
|
10630
|
-
*/
|
|
10631
|
-
sClassName: string,
|
|
10632
|
-
/**
|
|
10633
|
-
* Object literal with information about the class
|
|
10634
|
-
*/
|
|
10635
|
-
oClassInfo?: sap.ClassInfo<T, QuickView>,
|
|
10636
|
-
/**
|
|
10637
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10638
|
-
* used by this class
|
|
10639
|
-
*/
|
|
10640
|
-
FNMetaImpl?: Function
|
|
10641
|
-
): Function;
|
|
10642
10638
|
/**
|
|
10643
10639
|
* Fires event {@link #event:actionSelected actionSelected} to attached listeners.
|
|
10644
10640
|
*/
|
|
@@ -10779,10 +10775,6 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
10779
10775
|
* or horizontal).
|
|
10780
10776
|
*/
|
|
10781
10777
|
getIcon(): URI;
|
|
10782
|
-
/**
|
|
10783
|
-
* Returns a metadata object for class sap.ui.ux3.QuickView.
|
|
10784
|
-
*/
|
|
10785
|
-
static getMetadata(): ElementMetadata;
|
|
10786
10778
|
/**
|
|
10787
10779
|
* Gets current value of property {@link #getOpenActionEnabled openActionEnabled}.
|
|
10788
10780
|
*
|
|
@@ -11231,18 +11223,18 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
11231
11223
|
/**
|
|
11232
11224
|
* Action is selected in Action Bar
|
|
11233
11225
|
*/
|
|
11234
|
-
actionSelected?:
|
|
11226
|
+
actionSelected?: (oEvent: Event) => void;
|
|
11235
11227
|
|
|
11236
11228
|
/**
|
|
11237
11229
|
* Fired when a new feed entry is submitted.
|
|
11238
11230
|
*/
|
|
11239
|
-
feedSubmit?:
|
|
11231
|
+
feedSubmit?: (oEvent: Event) => void;
|
|
11240
11232
|
|
|
11241
11233
|
/**
|
|
11242
11234
|
* Event is fired when a user clicks on the firstTitle link. Call the preventDefault method of the event
|
|
11243
11235
|
* object to cancel browser navigation.
|
|
11244
11236
|
*/
|
|
11245
|
-
navigate?:
|
|
11237
|
+
navigate?: (oEvent: Event) => void;
|
|
11246
11238
|
}
|
|
11247
11239
|
}
|
|
11248
11240
|
|
|
@@ -11311,6 +11303,31 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
11311
11303
|
mSettings?: $ShellSettings
|
|
11312
11304
|
);
|
|
11313
11305
|
|
|
11306
|
+
/**
|
|
11307
|
+
* Creates a new subclass of class sap.ui.ux3.Shell with name `sClassName` and enriches it with the information
|
|
11308
|
+
* contained in `oClassInfo`.
|
|
11309
|
+
*
|
|
11310
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
11311
|
+
*/
|
|
11312
|
+
static extend<T extends Record<string, unknown>>(
|
|
11313
|
+
/**
|
|
11314
|
+
* Name of the class being created
|
|
11315
|
+
*/
|
|
11316
|
+
sClassName: string,
|
|
11317
|
+
/**
|
|
11318
|
+
* Object literal with information about the class
|
|
11319
|
+
*/
|
|
11320
|
+
oClassInfo?: sap.ClassInfo<T, Shell>,
|
|
11321
|
+
/**
|
|
11322
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11323
|
+
* used by this class
|
|
11324
|
+
*/
|
|
11325
|
+
FNMetaImpl?: Function
|
|
11326
|
+
): Function;
|
|
11327
|
+
/**
|
|
11328
|
+
* Returns a metadata object for class sap.ui.ux3.Shell.
|
|
11329
|
+
*/
|
|
11330
|
+
static getMetadata(): ElementMetadata;
|
|
11314
11331
|
/**
|
|
11315
11332
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
11316
11333
|
*/
|
|
@@ -11757,29 +11774,8 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
11757
11774
|
/**
|
|
11758
11775
|
* Context object on which the given function had to be called
|
|
11759
11776
|
*/
|
|
11760
|
-
oListener?: object
|
|
11761
|
-
): this;
|
|
11762
|
-
/**
|
|
11763
|
-
* Creates a new subclass of class sap.ui.ux3.Shell with name `sClassName` and enriches it with the information
|
|
11764
|
-
* contained in `oClassInfo`.
|
|
11765
|
-
*
|
|
11766
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
11767
|
-
*/
|
|
11768
|
-
static extend<T extends Record<string, unknown>>(
|
|
11769
|
-
/**
|
|
11770
|
-
* Name of the class being created
|
|
11771
|
-
*/
|
|
11772
|
-
sClassName: string,
|
|
11773
|
-
/**
|
|
11774
|
-
* Object literal with information about the class
|
|
11775
|
-
*/
|
|
11776
|
-
oClassInfo?: sap.ClassInfo<T, Shell>,
|
|
11777
|
-
/**
|
|
11778
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11779
|
-
* used by this class
|
|
11780
|
-
*/
|
|
11781
|
-
FNMetaImpl?: Function
|
|
11782
|
-
): Function;
|
|
11777
|
+
oListener?: object
|
|
11778
|
+
): this;
|
|
11783
11779
|
/**
|
|
11784
11780
|
* Fires event {@link #event:feedSubmit feedSubmit} to attached listeners.
|
|
11785
11781
|
*/
|
|
@@ -11968,10 +11964,6 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
11968
11964
|
* the current language will be displayed.
|
|
11969
11965
|
*/
|
|
11970
11966
|
getLogoutButtonTooltip(): string;
|
|
11971
|
-
/**
|
|
11972
|
-
* Returns a metadata object for class sap.ui.ux3.Shell.
|
|
11973
|
-
*/
|
|
11974
|
-
static getMetadata(): ElementMetadata;
|
|
11975
11967
|
/**
|
|
11976
11968
|
* @SINCE 1.7.0
|
|
11977
11969
|
*
|
|
@@ -12850,28 +12842,28 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
12850
12842
|
* is responsible for displaying the correct content for the selected one of the newly created sub-items.
|
|
12851
12843
|
* The Shell will currently always mark the first sub-item as selected.
|
|
12852
12844
|
*/
|
|
12853
|
-
worksetItemSelected?:
|
|
12845
|
+
worksetItemSelected?: (oEvent: Event) => void;
|
|
12854
12846
|
|
|
12855
12847
|
/**
|
|
12856
12848
|
* An item in the right-hand-side pane bar has been selected, the pane is now visible and can be filled
|
|
12857
12849
|
* with UI elements.
|
|
12858
12850
|
*/
|
|
12859
|
-
paneBarItemSelected?:
|
|
12851
|
+
paneBarItemSelected?: (oEvent: Event) => void;
|
|
12860
12852
|
|
|
12861
12853
|
/**
|
|
12862
12854
|
* Fired when the user clicks the "Log-off" button
|
|
12863
12855
|
*/
|
|
12864
|
-
logout?:
|
|
12856
|
+
logout?: (oEvent: Event) => void;
|
|
12865
12857
|
|
|
12866
12858
|
/**
|
|
12867
12859
|
* Fired when search has been triggered.
|
|
12868
12860
|
*/
|
|
12869
|
-
search?:
|
|
12861
|
+
search?: (oEvent: Event) => void;
|
|
12870
12862
|
|
|
12871
12863
|
/**
|
|
12872
12864
|
* Fired when a new feed entry is submitted.
|
|
12873
12865
|
*/
|
|
12874
|
-
feedSubmit?:
|
|
12866
|
+
feedSubmit?: (oEvent: Event) => void;
|
|
12875
12867
|
|
|
12876
12868
|
/**
|
|
12877
12869
|
* @SINCE 1.12.0
|
|
@@ -12879,7 +12871,7 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
12879
12871
|
* Fired after a side pane of the shell is closed. It is also fired, when an open pane is closed by calling
|
|
12880
12872
|
* setShowPane(false), if and only if the pane was opened before.
|
|
12881
12873
|
*/
|
|
12882
|
-
paneClosed?:
|
|
12874
|
+
paneClosed?: (oEvent: Event) => void;
|
|
12883
12875
|
}
|
|
12884
12876
|
}
|
|
12885
12877
|
|
|
@@ -12929,6 +12921,31 @@ declare module "sap/ui/ux3/ThingAction" {
|
|
|
12929
12921
|
mSettings?: $ThingActionSettings
|
|
12930
12922
|
);
|
|
12931
12923
|
|
|
12924
|
+
/**
|
|
12925
|
+
* Creates a new subclass of class sap.ui.ux3.ThingAction with name `sClassName` and enriches it with the
|
|
12926
|
+
* information contained in `oClassInfo`.
|
|
12927
|
+
*
|
|
12928
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
12929
|
+
*/
|
|
12930
|
+
static extend<T extends Record<string, unknown>>(
|
|
12931
|
+
/**
|
|
12932
|
+
* Name of the class being created
|
|
12933
|
+
*/
|
|
12934
|
+
sClassName: string,
|
|
12935
|
+
/**
|
|
12936
|
+
* Object literal with information about the class
|
|
12937
|
+
*/
|
|
12938
|
+
oClassInfo?: sap.ClassInfo<T, ThingAction>,
|
|
12939
|
+
/**
|
|
12940
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12941
|
+
* used by this class
|
|
12942
|
+
*/
|
|
12943
|
+
FNMetaImpl?: Function
|
|
12944
|
+
): Function;
|
|
12945
|
+
/**
|
|
12946
|
+
* Returns a metadata object for class sap.ui.ux3.ThingAction.
|
|
12947
|
+
*/
|
|
12948
|
+
static getMetadata(): ElementMetadata;
|
|
12932
12949
|
/**
|
|
12933
12950
|
* Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.ui.ux3.ThingAction`.
|
|
12934
12951
|
*
|
|
@@ -12985,27 +13002,6 @@ declare module "sap/ui/ux3/ThingAction" {
|
|
|
12985
13002
|
*/
|
|
12986
13003
|
oListener?: object
|
|
12987
13004
|
): this;
|
|
12988
|
-
/**
|
|
12989
|
-
* Creates a new subclass of class sap.ui.ux3.ThingAction with name `sClassName` and enriches it with the
|
|
12990
|
-
* information contained in `oClassInfo`.
|
|
12991
|
-
*
|
|
12992
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
12993
|
-
*/
|
|
12994
|
-
static extend<T extends Record<string, unknown>>(
|
|
12995
|
-
/**
|
|
12996
|
-
* Name of the class being created
|
|
12997
|
-
*/
|
|
12998
|
-
sClassName: string,
|
|
12999
|
-
/**
|
|
13000
|
-
* Object literal with information about the class
|
|
13001
|
-
*/
|
|
13002
|
-
oClassInfo?: sap.ClassInfo<T, ThingAction>,
|
|
13003
|
-
/**
|
|
13004
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13005
|
-
* used by this class
|
|
13006
|
-
*/
|
|
13007
|
-
FNMetaImpl?: Function
|
|
13008
|
-
): Function;
|
|
13009
13005
|
/**
|
|
13010
13006
|
* Fires event {@link #event:select select} to attached listeners.
|
|
13011
13007
|
*/
|
|
@@ -13032,10 +13028,6 @@ declare module "sap/ui/ux3/ThingAction" {
|
|
|
13032
13028
|
* Default value is `true`.
|
|
13033
13029
|
*/
|
|
13034
13030
|
getEnabled(): boolean;
|
|
13035
|
-
/**
|
|
13036
|
-
* Returns a metadata object for class sap.ui.ux3.ThingAction.
|
|
13037
|
-
*/
|
|
13038
|
-
static getMetadata(): ElementMetadata;
|
|
13039
13031
|
/**
|
|
13040
13032
|
* Gets current value of property {@link #getText text}.
|
|
13041
13033
|
*
|
|
@@ -13086,7 +13078,7 @@ declare module "sap/ui/ux3/ThingAction" {
|
|
|
13086
13078
|
/**
|
|
13087
13079
|
* Event will be fired when the action was triggered.
|
|
13088
13080
|
*/
|
|
13089
|
-
select?:
|
|
13081
|
+
select?: (oEvent: Event) => void;
|
|
13090
13082
|
}
|
|
13091
13083
|
}
|
|
13092
13084
|
|
|
@@ -13139,6 +13131,31 @@ declare module "sap/ui/ux3/ThingGroup" {
|
|
|
13139
13131
|
mSettings?: $ThingGroupSettings
|
|
13140
13132
|
);
|
|
13141
13133
|
|
|
13134
|
+
/**
|
|
13135
|
+
* Creates a new subclass of class sap.ui.ux3.ThingGroup with name `sClassName` and enriches it with the
|
|
13136
|
+
* information contained in `oClassInfo`.
|
|
13137
|
+
*
|
|
13138
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
13139
|
+
*/
|
|
13140
|
+
static extend<T extends Record<string, unknown>>(
|
|
13141
|
+
/**
|
|
13142
|
+
* Name of the class being created
|
|
13143
|
+
*/
|
|
13144
|
+
sClassName: string,
|
|
13145
|
+
/**
|
|
13146
|
+
* Object literal with information about the class
|
|
13147
|
+
*/
|
|
13148
|
+
oClassInfo?: sap.ClassInfo<T, ThingGroup>,
|
|
13149
|
+
/**
|
|
13150
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13151
|
+
* used by this class
|
|
13152
|
+
*/
|
|
13153
|
+
FNMetaImpl?: Function
|
|
13154
|
+
): Function;
|
|
13155
|
+
/**
|
|
13156
|
+
* Returns a metadata object for class sap.ui.ux3.ThingGroup.
|
|
13157
|
+
*/
|
|
13158
|
+
static getMetadata(): ElementMetadata;
|
|
13142
13159
|
/**
|
|
13143
13160
|
* Adds some action to the aggregation {@link #getActions actions}.
|
|
13144
13161
|
*/
|
|
@@ -13165,27 +13182,6 @@ declare module "sap/ui/ux3/ThingGroup" {
|
|
|
13165
13182
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
13166
13183
|
*/
|
|
13167
13184
|
destroyContent(): this;
|
|
13168
|
-
/**
|
|
13169
|
-
* Creates a new subclass of class sap.ui.ux3.ThingGroup with name `sClassName` and enriches it with the
|
|
13170
|
-
* information contained in `oClassInfo`.
|
|
13171
|
-
*
|
|
13172
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
13173
|
-
*/
|
|
13174
|
-
static extend<T extends Record<string, unknown>>(
|
|
13175
|
-
/**
|
|
13176
|
-
* Name of the class being created
|
|
13177
|
-
*/
|
|
13178
|
-
sClassName: string,
|
|
13179
|
-
/**
|
|
13180
|
-
* Object literal with information about the class
|
|
13181
|
-
*/
|
|
13182
|
-
oClassInfo?: sap.ClassInfo<T, ThingGroup>,
|
|
13183
|
-
/**
|
|
13184
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13185
|
-
* used by this class
|
|
13186
|
-
*/
|
|
13187
|
-
FNMetaImpl?: Function
|
|
13188
|
-
): Function;
|
|
13189
13185
|
/**
|
|
13190
13186
|
* Gets content of aggregation {@link #getActions actions}.
|
|
13191
13187
|
*
|
|
@@ -13206,10 +13202,6 @@ declare module "sap/ui/ux3/ThingGroup" {
|
|
|
13206
13202
|
* Content of Group
|
|
13207
13203
|
*/
|
|
13208
13204
|
getContent(): Control[];
|
|
13209
|
-
/**
|
|
13210
|
-
* Returns a metadata object for class sap.ui.ux3.ThingGroup.
|
|
13211
|
-
*/
|
|
13212
|
-
static getMetadata(): ElementMetadata;
|
|
13213
13205
|
/**
|
|
13214
13206
|
* Gets current value of property {@link #getTitle title}.
|
|
13215
13207
|
*
|
|
@@ -13410,6 +13402,31 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
13410
13402
|
mSettings?: $ThingInspectorSettings
|
|
13411
13403
|
);
|
|
13412
13404
|
|
|
13405
|
+
/**
|
|
13406
|
+
* Creates a new subclass of class sap.ui.ux3.ThingInspector with name `sClassName` and enriches it with
|
|
13407
|
+
* the information contained in `oClassInfo`.
|
|
13408
|
+
*
|
|
13409
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.ux3.Overlay.extend}.
|
|
13410
|
+
*/
|
|
13411
|
+
static extend<T extends Record<string, unknown>>(
|
|
13412
|
+
/**
|
|
13413
|
+
* Name of the class being created
|
|
13414
|
+
*/
|
|
13415
|
+
sClassName: string,
|
|
13416
|
+
/**
|
|
13417
|
+
* Object literal with information about the class
|
|
13418
|
+
*/
|
|
13419
|
+
oClassInfo?: sap.ClassInfo<T, ThingInspector>,
|
|
13420
|
+
/**
|
|
13421
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13422
|
+
* used by this class
|
|
13423
|
+
*/
|
|
13424
|
+
FNMetaImpl?: Function
|
|
13425
|
+
): Function;
|
|
13426
|
+
/**
|
|
13427
|
+
* Returns a metadata object for class sap.ui.ux3.ThingInspector.
|
|
13428
|
+
*/
|
|
13429
|
+
static getMetadata(): ElementMetadata;
|
|
13413
13430
|
/**
|
|
13414
13431
|
* Adds some action to the aggregation {@link #getActions actions}.
|
|
13415
13432
|
*/
|
|
@@ -13640,27 +13657,6 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
13640
13657
|
*/
|
|
13641
13658
|
oListener?: object
|
|
13642
13659
|
): this;
|
|
13643
|
-
/**
|
|
13644
|
-
* Creates a new subclass of class sap.ui.ux3.ThingInspector with name `sClassName` and enriches it with
|
|
13645
|
-
* the information contained in `oClassInfo`.
|
|
13646
|
-
*
|
|
13647
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.ux3.Overlay.extend}.
|
|
13648
|
-
*/
|
|
13649
|
-
static extend<T extends Record<string, unknown>>(
|
|
13650
|
-
/**
|
|
13651
|
-
* Name of the class being created
|
|
13652
|
-
*/
|
|
13653
|
-
sClassName: string,
|
|
13654
|
-
/**
|
|
13655
|
-
* Object literal with information about the class
|
|
13656
|
-
*/
|
|
13657
|
-
oClassInfo?: sap.ClassInfo<T, ThingInspector>,
|
|
13658
|
-
/**
|
|
13659
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13660
|
-
* used by this class
|
|
13661
|
-
*/
|
|
13662
|
-
FNMetaImpl?: Function
|
|
13663
|
-
): Function;
|
|
13664
13660
|
/**
|
|
13665
13661
|
* Fires event {@link #event:actionSelected actionSelected} to attached listeners.
|
|
13666
13662
|
*/
|
|
@@ -13818,10 +13814,6 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
13818
13814
|
* Thing Icon Url
|
|
13819
13815
|
*/
|
|
13820
13816
|
getIcon(): URI;
|
|
13821
|
-
/**
|
|
13822
|
-
* Returns a metadata object for class sap.ui.ux3.ThingInspector.
|
|
13823
|
-
*/
|
|
13824
|
-
static getMetadata(): ElementMetadata;
|
|
13825
13817
|
/**
|
|
13826
13818
|
* Gets current value of property {@link #getSecondTitle secondTitle}.
|
|
13827
13819
|
*
|
|
@@ -14306,18 +14298,18 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
14306
14298
|
/**
|
|
14307
14299
|
* Further thing related Action selected
|
|
14308
14300
|
*/
|
|
14309
|
-
actionSelected?:
|
|
14301
|
+
actionSelected?: (oEvent: Event) => void;
|
|
14310
14302
|
|
|
14311
14303
|
/**
|
|
14312
14304
|
* Event for facet selection. The application is responsible for displaying the correct content for the
|
|
14313
14305
|
* selected one. The ThingInspector will currently always mark the first facet as selected.
|
|
14314
14306
|
*/
|
|
14315
|
-
facetSelected?:
|
|
14307
|
+
facetSelected?: (oEvent: Event) => void;
|
|
14316
14308
|
|
|
14317
14309
|
/**
|
|
14318
14310
|
* Fired when a new feed entry is submitted.
|
|
14319
14311
|
*/
|
|
14320
|
-
feedSubmit?:
|
|
14312
|
+
feedSubmit?: (oEvent: Event) => void;
|
|
14321
14313
|
}
|
|
14322
14314
|
}
|
|
14323
14315
|
|
|
@@ -14383,6 +14375,31 @@ declare module "sap/ui/ux3/ThingViewer" {
|
|
|
14383
14375
|
mSettings?: $ThingViewerSettings
|
|
14384
14376
|
);
|
|
14385
14377
|
|
|
14378
|
+
/**
|
|
14379
|
+
* Creates a new subclass of class sap.ui.ux3.ThingViewer with name `sClassName` and enriches it with the
|
|
14380
|
+
* information contained in `oClassInfo`.
|
|
14381
|
+
*
|
|
14382
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
14383
|
+
*/
|
|
14384
|
+
static extend<T extends Record<string, unknown>>(
|
|
14385
|
+
/**
|
|
14386
|
+
* Name of the class being created
|
|
14387
|
+
*/
|
|
14388
|
+
sClassName: string,
|
|
14389
|
+
/**
|
|
14390
|
+
* Object literal with information about the class
|
|
14391
|
+
*/
|
|
14392
|
+
oClassInfo?: sap.ClassInfo<T, ThingViewer>,
|
|
14393
|
+
/**
|
|
14394
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14395
|
+
* used by this class
|
|
14396
|
+
*/
|
|
14397
|
+
FNMetaImpl?: Function
|
|
14398
|
+
): Function;
|
|
14399
|
+
/**
|
|
14400
|
+
* Returns a metadata object for class sap.ui.ux3.ThingViewer.
|
|
14401
|
+
*/
|
|
14402
|
+
static getMetadata(): ElementMetadata;
|
|
14386
14403
|
/**
|
|
14387
14404
|
* Adds some facet to the aggregation {@link #getFacets facets}.
|
|
14388
14405
|
*/
|
|
@@ -14485,27 +14502,6 @@ declare module "sap/ui/ux3/ThingViewer" {
|
|
|
14485
14502
|
*/
|
|
14486
14503
|
oListener?: object
|
|
14487
14504
|
): this;
|
|
14488
|
-
/**
|
|
14489
|
-
* Creates a new subclass of class sap.ui.ux3.ThingViewer with name `sClassName` and enriches it with the
|
|
14490
|
-
* information contained in `oClassInfo`.
|
|
14491
|
-
*
|
|
14492
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
14493
|
-
*/
|
|
14494
|
-
static extend<T extends Record<string, unknown>>(
|
|
14495
|
-
/**
|
|
14496
|
-
* Name of the class being created
|
|
14497
|
-
*/
|
|
14498
|
-
sClassName: string,
|
|
14499
|
-
/**
|
|
14500
|
-
* Object literal with information about the class
|
|
14501
|
-
*/
|
|
14502
|
-
oClassInfo?: sap.ClassInfo<T, ThingViewer>,
|
|
14503
|
-
/**
|
|
14504
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14505
|
-
* used by this class
|
|
14506
|
-
*/
|
|
14507
|
-
FNMetaImpl?: Function
|
|
14508
|
-
): Function;
|
|
14509
14505
|
/**
|
|
14510
14506
|
* Fires event {@link #event:facetSelected facetSelected} to attached listeners.
|
|
14511
14507
|
*
|
|
@@ -14579,10 +14575,6 @@ declare module "sap/ui/ux3/ThingViewer" {
|
|
|
14579
14575
|
* Thing Icon Url
|
|
14580
14576
|
*/
|
|
14581
14577
|
getIcon(): URI;
|
|
14582
|
-
/**
|
|
14583
|
-
* Returns a metadata object for class sap.ui.ux3.ThingViewer.
|
|
14584
|
-
*/
|
|
14585
|
-
static getMetadata(): ElementMetadata;
|
|
14586
14578
|
/**
|
|
14587
14579
|
* ID of the element which is the current target of the association {@link #getSelectedFacet selectedFacet},
|
|
14588
14580
|
* or `null`.
|
|
@@ -14923,7 +14915,7 @@ declare module "sap/ui/ux3/ThingViewer" {
|
|
|
14923
14915
|
* Event for facet selection. The application is responsible for displaying the correct content for the
|
|
14924
14916
|
* selected one. The ThingInspector will currently always mark the first facet as selected.
|
|
14925
14917
|
*/
|
|
14926
|
-
facetSelected?:
|
|
14918
|
+
facetSelected?: (oEvent: Event) => void;
|
|
14927
14919
|
}
|
|
14928
14920
|
}
|
|
14929
14921
|
|
|
@@ -14984,6 +14976,31 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
14984
14976
|
mSettings?: $ToolPopupSettings
|
|
14985
14977
|
);
|
|
14986
14978
|
|
|
14979
|
+
/**
|
|
14980
|
+
* Creates a new subclass of class sap.ui.ux3.ToolPopup with name `sClassName` and enriches it with the
|
|
14981
|
+
* information contained in `oClassInfo`.
|
|
14982
|
+
*
|
|
14983
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
14984
|
+
*/
|
|
14985
|
+
static extend<T extends Record<string, unknown>>(
|
|
14986
|
+
/**
|
|
14987
|
+
* Name of the class being created
|
|
14988
|
+
*/
|
|
14989
|
+
sClassName: string,
|
|
14990
|
+
/**
|
|
14991
|
+
* Object literal with information about the class
|
|
14992
|
+
*/
|
|
14993
|
+
oClassInfo?: sap.ClassInfo<T, ToolPopup>,
|
|
14994
|
+
/**
|
|
14995
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14996
|
+
* used by this class
|
|
14997
|
+
*/
|
|
14998
|
+
FNMetaImpl?: Function
|
|
14999
|
+
): Function;
|
|
15000
|
+
/**
|
|
15001
|
+
* Returns a metadata object for class sap.ui.ux3.ToolPopup.
|
|
15002
|
+
*/
|
|
15003
|
+
static getMetadata(): ElementMetadata;
|
|
14987
15004
|
/**
|
|
14988
15005
|
* Adds some button to the aggregation {@link #getButtons buttons}.
|
|
14989
15006
|
*/
|
|
@@ -15382,27 +15399,6 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
15382
15399
|
*/
|
|
15383
15400
|
oListener?: object
|
|
15384
15401
|
): this;
|
|
15385
|
-
/**
|
|
15386
|
-
* Creates a new subclass of class sap.ui.ux3.ToolPopup with name `sClassName` and enriches it with the
|
|
15387
|
-
* information contained in `oClassInfo`.
|
|
15388
|
-
*
|
|
15389
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
15390
|
-
*/
|
|
15391
|
-
static extend<T extends Record<string, unknown>>(
|
|
15392
|
-
/**
|
|
15393
|
-
* Name of the class being created
|
|
15394
|
-
*/
|
|
15395
|
-
sClassName: string,
|
|
15396
|
-
/**
|
|
15397
|
-
* Object literal with information about the class
|
|
15398
|
-
*/
|
|
15399
|
-
oClassInfo?: sap.ClassInfo<T, ToolPopup>,
|
|
15400
|
-
/**
|
|
15401
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15402
|
-
* used by this class
|
|
15403
|
-
*/
|
|
15404
|
-
FNMetaImpl?: Function
|
|
15405
|
-
): Function;
|
|
15406
15402
|
/**
|
|
15407
15403
|
* Fires event {@link #event:close close} to attached listeners.
|
|
15408
15404
|
*
|
|
@@ -15582,10 +15578,6 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
15582
15578
|
* Forces a maximum width of the ToolPopup in pixels.
|
|
15583
15579
|
*/
|
|
15584
15580
|
getMaxWidth(): CSSSize;
|
|
15585
|
-
/**
|
|
15586
|
-
* Returns a metadata object for class sap.ui.ux3.ToolPopup.
|
|
15587
|
-
*/
|
|
15588
|
-
static getMetadata(): ElementMetadata;
|
|
15589
15581
|
/**
|
|
15590
15582
|
* Gets current value of property {@link #getModal modal}.
|
|
15591
15583
|
*
|
|
@@ -16007,37 +15999,37 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
16007
15999
|
/**
|
|
16008
16000
|
* Event is fired when the popup opens
|
|
16009
16001
|
*/
|
|
16010
|
-
open?:
|
|
16002
|
+
open?: (oEvent: Event) => void;
|
|
16011
16003
|
|
|
16012
16004
|
/**
|
|
16013
16005
|
* Event is fired when the popup closes because the user pressed Escape or the ToolPopup Button in the Shell.
|
|
16014
16006
|
* This is called before the closing animation.
|
|
16015
16007
|
*/
|
|
16016
|
-
close?:
|
|
16008
|
+
close?: (oEvent: Event) => void;
|
|
16017
16009
|
|
|
16018
16010
|
/**
|
|
16019
16011
|
* Event is fired whenever the user clicks the Enter or the Enter key inside the pop up
|
|
16020
16012
|
*/
|
|
16021
|
-
enter?:
|
|
16013
|
+
enter?: (oEvent: Event) => void;
|
|
16022
16014
|
|
|
16023
16015
|
/**
|
|
16024
16016
|
* Event is fired when one of the icon properties is modified (Note: The icon is not rendered by the ToolPopup).
|
|
16025
16017
|
* To be used by other controls which want to update the icon in their UI.
|
|
16026
16018
|
*/
|
|
16027
|
-
iconChanged?:
|
|
16019
|
+
iconChanged?: (oEvent: Event) => void;
|
|
16028
16020
|
|
|
16029
16021
|
/**
|
|
16030
16022
|
* This event is fired after the ToolPopup has finished its closing animation. It is called for EVERY close,
|
|
16031
16023
|
* regardless of whether the user has triggered the close or whether the ToolPopup was closed via API call.
|
|
16032
16024
|
*/
|
|
16033
|
-
closed?:
|
|
16025
|
+
closed?: (oEvent: Event) => void;
|
|
16034
16026
|
|
|
16035
16027
|
/**
|
|
16036
16028
|
* @SINCE 1.19.0
|
|
16037
16029
|
*
|
|
16038
16030
|
* Event is being fired after the ToolPopup has been opened.
|
|
16039
16031
|
*/
|
|
16040
|
-
opened?:
|
|
16032
|
+
opened?: (oEvent: Event) => void;
|
|
16041
16033
|
}
|
|
16042
16034
|
}
|
|
16043
16035
|
|