@openui5/types 1.145.0 → 1.146.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +73 -526
- package/types/sap.m.d.ts +322 -18
- package/types/sap.tnt.d.ts +9 -16
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1044 -382
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -1
- package/types/sap.ui.integration.d.ts +65 -266
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +2 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +36 -3
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -29,8 +29,7 @@ declare module "sap/ui/integration/library" {
|
|
|
29
29
|
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
30
30
|
* 'CardActionType'.
|
|
31
31
|
*
|
|
32
|
-
* @experimental As of version 1.64.
|
|
33
|
-
* may be done before its official public release. Use at your own discretion.
|
|
32
|
+
* @experimental As of version 1.64.
|
|
34
33
|
*/
|
|
35
34
|
export enum CardActionType {
|
|
36
35
|
/**
|
|
@@ -122,7 +121,6 @@ declare module "sap/ui/integration/library" {
|
|
|
122
121
|
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
123
122
|
* 'CardDataMode'.
|
|
124
123
|
*
|
|
125
|
-
* @since 1.65
|
|
126
124
|
* @experimental As of version 1.65.
|
|
127
125
|
*/
|
|
128
126
|
export enum CardDataMode {
|
|
@@ -145,7 +143,6 @@ declare module "sap/ui/integration/library" {
|
|
|
145
143
|
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
146
144
|
* 'CardDesign'.
|
|
147
145
|
*
|
|
148
|
-
* @since 1.109
|
|
149
146
|
* @experimental As of version 1.109.
|
|
150
147
|
*/
|
|
151
148
|
export enum CardDesign {
|
|
@@ -158,57 +155,6 @@ declare module "sap/ui/integration/library" {
|
|
|
158
155
|
*/
|
|
159
156
|
Transparent = "Transparent",
|
|
160
157
|
}
|
|
161
|
-
/**
|
|
162
|
-
* Possible variants for `{@link sap.ui.integration.widgets.Card}` rendering and behavior.
|
|
163
|
-
*
|
|
164
|
-
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
165
|
-
* 'CardDisplayVariant'.
|
|
166
|
-
*
|
|
167
|
-
* @since 1.118
|
|
168
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
169
|
-
*/
|
|
170
|
-
export enum CardDisplayVariant {
|
|
171
|
-
/**
|
|
172
|
-
* The CompactHeader card variant.
|
|
173
|
-
*/
|
|
174
|
-
CompactHeader = "CompactHeader",
|
|
175
|
-
/**
|
|
176
|
-
* The large card variant.
|
|
177
|
-
*/
|
|
178
|
-
Large = "Large",
|
|
179
|
-
/**
|
|
180
|
-
* The small card variant.
|
|
181
|
-
*/
|
|
182
|
-
Small = "Small",
|
|
183
|
-
/**
|
|
184
|
-
* The SmallHeader card variant.
|
|
185
|
-
*/
|
|
186
|
-
SmallHeader = "SmallHeader",
|
|
187
|
-
/**
|
|
188
|
-
* The standard card variant.
|
|
189
|
-
*/
|
|
190
|
-
Standard = "Standard",
|
|
191
|
-
/**
|
|
192
|
-
* The SmallHeader card variant.
|
|
193
|
-
*/
|
|
194
|
-
StandardHeader = "StandardHeader",
|
|
195
|
-
/**
|
|
196
|
-
* Card renders and behaves like a tile of size 2x1.
|
|
197
|
-
*/
|
|
198
|
-
TileFlat = "TileFlat",
|
|
199
|
-
/**
|
|
200
|
-
* Card renders and behaves like a tile of size 4x1.
|
|
201
|
-
*/
|
|
202
|
-
TileFlatWide = "TileFlatWide",
|
|
203
|
-
/**
|
|
204
|
-
* Card renders and behaves like a tile of size 2x2.
|
|
205
|
-
*/
|
|
206
|
-
TileStandard = "TileStandard",
|
|
207
|
-
/**
|
|
208
|
-
* Card renders and behaves like a tile of size 4x2.
|
|
209
|
-
*/
|
|
210
|
-
TileStandardWide = "TileStandardWide",
|
|
211
|
-
}
|
|
212
158
|
/**
|
|
213
159
|
* An object type that represents card menu action properties.
|
|
214
160
|
*
|
|
@@ -306,7 +252,6 @@ declare module "sap/ui/integration/library" {
|
|
|
306
252
|
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
307
253
|
* 'CardOverflow'.
|
|
308
254
|
*
|
|
309
|
-
* @since 1.133
|
|
310
255
|
* @experimental As of version 1.133.
|
|
311
256
|
*/
|
|
312
257
|
export enum CardOverflow {
|
|
@@ -336,7 +281,6 @@ declare module "sap/ui/integration/library" {
|
|
|
336
281
|
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
337
282
|
* 'CardPreviewMode'.
|
|
338
283
|
*
|
|
339
|
-
* @since 1.112
|
|
340
284
|
* @experimental As of version 1.112.
|
|
341
285
|
*/
|
|
342
286
|
export enum CardPreviewMode {
|
|
@@ -377,9 +321,7 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
377
321
|
* Represents an action, which appears in the header of {@link sap.ui.integration.widgets.Card}. Useful
|
|
378
322
|
* in `Component` card and `Extension`.
|
|
379
323
|
*
|
|
380
|
-
* @
|
|
381
|
-
* @experimental As of version 1.85. Disclaimer: this class is in a beta state - incompatible API changes
|
|
382
|
-
* may be done before its official public release. Use at your own discretion.
|
|
324
|
+
* @experimental As of version 1.85.
|
|
383
325
|
*/
|
|
384
326
|
export default class ActionDefinition extends UI5Element {
|
|
385
327
|
/**
|
|
@@ -834,8 +776,7 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
834
776
|
/**
|
|
835
777
|
* Describes the settings that can be provided to the ActionDefinition constructor.
|
|
836
778
|
*
|
|
837
|
-
* @experimental As of version 1.85.
|
|
838
|
-
* may be done before its official public release. Use at your own discretion.
|
|
779
|
+
* @experimental As of version 1.85.
|
|
839
780
|
*/
|
|
840
781
|
export interface $ActionDefinitionSettings extends $ElementSettings {
|
|
841
782
|
/**
|
|
@@ -924,7 +865,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
924
865
|
CardBlockingMessageType,
|
|
925
866
|
CardDataMode,
|
|
926
867
|
CardDesign,
|
|
927
|
-
CardDisplayVariant,
|
|
928
868
|
CardOverflow,
|
|
929
869
|
CardPreviewMode,
|
|
930
870
|
CardArea,
|
|
@@ -1132,9 +1072,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1132
1072
|
/**
|
|
1133
1073
|
* Adds some actionDefinition to the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
1134
1074
|
*
|
|
1135
|
-
* @
|
|
1136
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1137
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
1075
|
+
* @experimental As of version 1.85.
|
|
1138
1076
|
*
|
|
1139
1077
|
* @returns Reference to `this` in order to allow method chaining
|
|
1140
1078
|
*/
|
|
@@ -1156,8 +1094,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1156
1094
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1157
1095
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1158
1096
|
*
|
|
1159
|
-
* @experimental As of version 1.64.
|
|
1160
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1097
|
+
* @experimental As of version 1.64.
|
|
1161
1098
|
*
|
|
1162
1099
|
* @returns Reference to `this` in order to allow method chaining
|
|
1163
1100
|
*/
|
|
@@ -1188,8 +1125,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1188
1125
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1189
1126
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1190
1127
|
*
|
|
1191
|
-
* @experimental As of version 1.64.
|
|
1192
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1128
|
+
* @experimental As of version 1.64.
|
|
1193
1129
|
*
|
|
1194
1130
|
* @returns Reference to `this` in order to allow method chaining
|
|
1195
1131
|
*/
|
|
@@ -1359,9 +1295,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1359
1295
|
/**
|
|
1360
1296
|
* Destroys all the actionDefinitions in the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
1361
1297
|
*
|
|
1362
|
-
* @
|
|
1363
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1364
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
1298
|
+
* @experimental As of version 1.85.
|
|
1365
1299
|
*
|
|
1366
1300
|
* @returns Reference to `this` in order to allow method chaining
|
|
1367
1301
|
*/
|
|
@@ -1371,8 +1305,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1371
1305
|
*
|
|
1372
1306
|
* The passed function and listener object must match the ones used for event registration.
|
|
1373
1307
|
*
|
|
1374
|
-
* @experimental As of version 1.64.
|
|
1375
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1308
|
+
* @experimental As of version 1.64.
|
|
1376
1309
|
*
|
|
1377
1310
|
* @returns Reference to `this` in order to allow method chaining
|
|
1378
1311
|
*/
|
|
@@ -1451,8 +1384,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1451
1384
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
1452
1385
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
1453
1386
|
*
|
|
1454
|
-
* @experimental As of version 1.64.
|
|
1455
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1387
|
+
* @experimental As of version 1.64.
|
|
1456
1388
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1457
1389
|
*
|
|
1458
1390
|
* @returns Whether or not to prevent the default action
|
|
@@ -1511,9 +1443,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1511
1443
|
* Actions definitions from which actions in the header menu of the card are created. **Note**: This aggregation
|
|
1512
1444
|
* is destroyed when the property `manifest` changes.
|
|
1513
1445
|
*
|
|
1514
|
-
* @
|
|
1515
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1516
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
1446
|
+
* @experimental As of version 1.85.
|
|
1517
1447
|
*/
|
|
1518
1448
|
getActionDefinitions(): ActionDefinition[];
|
|
1519
1449
|
/**
|
|
@@ -1523,7 +1453,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1523
1453
|
* of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
|
|
1524
1454
|
* If both manifest URL and base URL are not defined - relative resources might not be loaded correctly.
|
|
1525
1455
|
*
|
|
1526
|
-
* @since 1.70
|
|
1527
1456
|
* @experimental As of version 1.70.
|
|
1528
1457
|
*
|
|
1529
1458
|
* @returns Value of property `baseUrl`
|
|
@@ -1558,7 +1487,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1558
1487
|
*
|
|
1559
1488
|
* Default value is `Auto`.
|
|
1560
1489
|
*
|
|
1561
|
-
* @since 1.65
|
|
1562
1490
|
* @experimental As of version 1.65.
|
|
1563
1491
|
*
|
|
1564
1492
|
* @returns Value of property `dataMode`
|
|
@@ -1571,25 +1499,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1571
1499
|
*
|
|
1572
1500
|
* Default value is `Solid`.
|
|
1573
1501
|
*
|
|
1574
|
-
* @since 1.109
|
|
1575
1502
|
* @experimental As of version 1.109.
|
|
1576
1503
|
*
|
|
1577
1504
|
* @returns Value of property `design`
|
|
1578
1505
|
*/
|
|
1579
1506
|
getDesign(): CardDesign;
|
|
1580
|
-
/**
|
|
1581
|
-
* Gets current value of property {@link #getDisplayVariant displayVariant}.
|
|
1582
|
-
*
|
|
1583
|
-
* Defines the display variant for card rendering and behavior.
|
|
1584
|
-
*
|
|
1585
|
-
* Default value is `Standard`.
|
|
1586
|
-
*
|
|
1587
|
-
* @since 1.118
|
|
1588
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
1589
|
-
*
|
|
1590
|
-
* @returns Value of property `displayVariant`
|
|
1591
|
-
*/
|
|
1592
|
-
getDisplayVariant(): CardDisplayVariant;
|
|
1593
1507
|
/**
|
|
1594
1508
|
* Returns the DOM Element that should get the focus.
|
|
1595
1509
|
*
|
|
@@ -1657,11 +1571,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1657
1571
|
* ```
|
|
1658
1572
|
*
|
|
1659
1573
|
*
|
|
1574
|
+
* Disclaimer: this API might be removed when a permanent solution for flexibility changes is implemented.
|
|
1575
|
+
*
|
|
1660
1576
|
* Default value is `[]`.
|
|
1661
1577
|
*
|
|
1662
|
-
* @
|
|
1663
|
-
* @experimental As of version 1.76. This API might be removed when a permanent solution for flexibility
|
|
1664
|
-
* changes is implemented.
|
|
1578
|
+
* @experimental As of version 1.76.
|
|
1665
1579
|
*
|
|
1666
1580
|
* @returns Value of property `manifestChanges`
|
|
1667
1581
|
*/
|
|
@@ -1691,7 +1605,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1691
1605
|
*
|
|
1692
1606
|
* Default value is `Default`.
|
|
1693
1607
|
*
|
|
1694
|
-
* @since 1.133
|
|
1695
1608
|
* @experimental As of version 1.133.
|
|
1696
1609
|
*
|
|
1697
1610
|
* @returns Value of property `overflow`
|
|
@@ -1703,7 +1616,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1703
1616
|
* Overrides the default values of the parameters, which are defined in the manifest. The value is an object
|
|
1704
1617
|
* containing parameters in format `{parameterKey: parameterValue}`.
|
|
1705
1618
|
*
|
|
1706
|
-
* @experimental As of version 1.65.
|
|
1619
|
+
* @experimental As of version 1.65.
|
|
1707
1620
|
*
|
|
1708
1621
|
* @returns Value of property `parameters`
|
|
1709
1622
|
*/
|
|
@@ -1720,7 +1633,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1720
1633
|
*
|
|
1721
1634
|
* Default value is `Off`.
|
|
1722
1635
|
*
|
|
1723
|
-
* @since 1.112
|
|
1724
1636
|
* @experimental As of version 1.112.
|
|
1725
1637
|
*
|
|
1726
1638
|
* @returns Value of property `previewMode`
|
|
@@ -1773,7 +1685,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1773
1685
|
*
|
|
1774
1686
|
* Default value is `false`.
|
|
1775
1687
|
*
|
|
1776
|
-
* @since 1.127
|
|
1777
1688
|
* @experimental As of version 1.127.
|
|
1778
1689
|
*
|
|
1779
1690
|
* @returns Value of property `useProgressiveDisclosure`
|
|
@@ -1805,9 +1716,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1805
1716
|
* Checks for the provided `sap.ui.integration.ActionDefinition` in the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
1806
1717
|
* and returns its index if found or -1 otherwise.
|
|
1807
1718
|
*
|
|
1808
|
-
* @
|
|
1809
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1810
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
1719
|
+
* @experimental As of version 1.85.
|
|
1811
1720
|
*
|
|
1812
1721
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
1813
1722
|
*/
|
|
@@ -1820,9 +1729,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1820
1729
|
/**
|
|
1821
1730
|
* Inserts a actionDefinition into the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
1822
1731
|
*
|
|
1823
|
-
* @
|
|
1824
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1825
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
1732
|
+
* @experimental As of version 1.85.
|
|
1826
1733
|
*
|
|
1827
1734
|
* @returns Reference to `this` in order to allow method chaining
|
|
1828
1735
|
*/
|
|
@@ -1839,7 +1746,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1839
1746
|
iIndex: int
|
|
1840
1747
|
): this;
|
|
1841
1748
|
/**
|
|
1842
|
-
* @experimental As of version 1.65.
|
|
1749
|
+
* @experimental As of version 1.65.
|
|
1843
1750
|
*
|
|
1844
1751
|
* @returns If the card is ready or not.
|
|
1845
1752
|
*/
|
|
@@ -1860,7 +1767,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1860
1767
|
/**
|
|
1861
1768
|
* Refreshes the card by re-applying the manifest settings and triggering all data requests.
|
|
1862
1769
|
*
|
|
1863
|
-
* @experimental As of version 1.65.
|
|
1770
|
+
* @experimental As of version 1.65.
|
|
1864
1771
|
*/
|
|
1865
1772
|
refresh(): void;
|
|
1866
1773
|
/**
|
|
@@ -1872,9 +1779,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1872
1779
|
/**
|
|
1873
1780
|
* Removes a actionDefinition from the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
1874
1781
|
*
|
|
1875
|
-
* @
|
|
1876
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1877
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
1782
|
+
* @experimental As of version 1.85.
|
|
1878
1783
|
*
|
|
1879
1784
|
* @returns The removed actionDefinition or `null`
|
|
1880
1785
|
*/
|
|
@@ -1889,9 +1794,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1889
1794
|
*
|
|
1890
1795
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
1891
1796
|
*
|
|
1892
|
-
* @
|
|
1893
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1894
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
1797
|
+
* @experimental As of version 1.85.
|
|
1895
1798
|
*
|
|
1896
1799
|
* @returns An array of the removed elements (might be empty)
|
|
1897
1800
|
*/
|
|
@@ -1981,7 +1884,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1981
1884
|
*
|
|
1982
1885
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1983
1886
|
*
|
|
1984
|
-
* @since 1.70
|
|
1985
1887
|
* @experimental As of version 1.70.
|
|
1986
1888
|
*
|
|
1987
1889
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1995,8 +1897,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1995
1897
|
/**
|
|
1996
1898
|
* Sets a new value for the `dataMode` property.
|
|
1997
1899
|
*
|
|
1998
|
-
* @
|
|
1999
|
-
* @experimental As of version 1.65. API might change.
|
|
1900
|
+
* @experimental As of version 1.65.
|
|
2000
1901
|
*
|
|
2001
1902
|
* @returns Pointer to the control instance to allow method chaining.
|
|
2002
1903
|
*/
|
|
@@ -2015,7 +1916,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2015
1916
|
*
|
|
2016
1917
|
* Default value is `Solid`.
|
|
2017
1918
|
*
|
|
2018
|
-
* @since 1.109
|
|
2019
1919
|
* @experimental As of version 1.109.
|
|
2020
1920
|
*
|
|
2021
1921
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2097,13 +1997,13 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2097
1997
|
* ```
|
|
2098
1998
|
*
|
|
2099
1999
|
*
|
|
2000
|
+
* Disclaimer: this API might be removed when a permanent solution for flexibility changes is implemented.
|
|
2001
|
+
*
|
|
2100
2002
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2101
2003
|
*
|
|
2102
2004
|
* Default value is `[]`.
|
|
2103
2005
|
*
|
|
2104
|
-
* @
|
|
2105
|
-
* @experimental As of version 1.76. This API might be removed when a permanent solution for flexibility
|
|
2106
|
-
* changes is implemented.
|
|
2006
|
+
* @experimental As of version 1.76.
|
|
2107
2007
|
*
|
|
2108
2008
|
* @returns Reference to `this` in order to allow method chaining
|
|
2109
2009
|
*/
|
|
@@ -2125,7 +2025,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2125
2025
|
*
|
|
2126
2026
|
* Default value is `Default`.
|
|
2127
2027
|
*
|
|
2128
|
-
* @since 1.133
|
|
2129
2028
|
* @experimental As of version 1.133.
|
|
2130
2029
|
*
|
|
2131
2030
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2144,7 +2043,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2144
2043
|
*
|
|
2145
2044
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2146
2045
|
*
|
|
2147
|
-
* @experimental As of version 1.65.
|
|
2046
|
+
* @experimental As of version 1.65.
|
|
2148
2047
|
*
|
|
2149
2048
|
* @returns Reference to `this` in order to allow method chaining
|
|
2150
2049
|
*/
|
|
@@ -2168,7 +2067,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2168
2067
|
*
|
|
2169
2068
|
* Default value is `Off`.
|
|
2170
2069
|
*
|
|
2171
|
-
* @since 1.112
|
|
2172
2070
|
* @experimental As of version 1.112.
|
|
2173
2071
|
*
|
|
2174
2072
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2208,7 +2106,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2208
2106
|
*
|
|
2209
2107
|
* Default value is `false`.
|
|
2210
2108
|
*
|
|
2211
|
-
* @since 1.127
|
|
2212
2109
|
* @experimental As of version 1.127.
|
|
2213
2110
|
*
|
|
2214
2111
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2303,11 +2200,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2303
2200
|
}
|
|
2304
2201
|
): void;
|
|
2305
2202
|
/**
|
|
2306
|
-
* Causes all
|
|
2203
|
+
* Causes all the controls within the Card that support validation to validate their data.
|
|
2307
2204
|
*
|
|
2308
|
-
* @experimental
|
|
2205
|
+
* @experimental As of version 1.106.
|
|
2309
2206
|
*
|
|
2310
|
-
* @returns if all
|
|
2207
|
+
* @returns if all the controls validated successfully; otherwise, false
|
|
2311
2208
|
*/
|
|
2312
2209
|
validateControls(): boolean;
|
|
2313
2210
|
}
|
|
@@ -2324,9 +2221,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2324
2221
|
/**
|
|
2325
2222
|
* Adds some actionDefinition to the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
2326
2223
|
*
|
|
2327
|
-
* @
|
|
2328
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2329
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
2224
|
+
* @experimental As of version 1.85.
|
|
2330
2225
|
*
|
|
2331
2226
|
* @returns Reference to `this` in order to allow method chaining
|
|
2332
2227
|
*/
|
|
@@ -2339,9 +2234,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2339
2234
|
/**
|
|
2340
2235
|
* Destroys all the actionDefinitions in the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
2341
2236
|
*
|
|
2342
|
-
* @
|
|
2343
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2344
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
2237
|
+
* @experimental As of version 1.85.
|
|
2345
2238
|
*
|
|
2346
2239
|
* @returns Reference to `this` in order to allow method chaining
|
|
2347
2240
|
*/
|
|
@@ -2352,9 +2245,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2352
2245
|
* Actions definitions from which actions in the header menu of the card are created. **Note**: This aggregation
|
|
2353
2246
|
* is destroyed when the property `manifest` changes.
|
|
2354
2247
|
*
|
|
2355
|
-
* @
|
|
2356
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2357
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
2248
|
+
* @experimental As of version 1.85.
|
|
2358
2249
|
*/
|
|
2359
2250
|
getActionDefinitions(): ActionDefinition[];
|
|
2360
2251
|
/**
|
|
@@ -2364,7 +2255,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2364
2255
|
* of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
|
|
2365
2256
|
* If both manifest URL and base URL are not defined - relative resources might not be loaded correctly.
|
|
2366
2257
|
*
|
|
2367
|
-
* @since 1.70
|
|
2368
2258
|
* @experimental As of version 1.70.
|
|
2369
2259
|
*
|
|
2370
2260
|
* @returns Value of property `baseUrl`
|
|
@@ -2480,9 +2370,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2480
2370
|
* Checks for the provided `sap.ui.integration.ActionDefinition` in the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
2481
2371
|
* and returns its index if found or -1 otherwise.
|
|
2482
2372
|
*
|
|
2483
|
-
* @
|
|
2484
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2485
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
2373
|
+
* @experimental As of version 1.85.
|
|
2486
2374
|
*
|
|
2487
2375
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2488
2376
|
*/
|
|
@@ -2495,9 +2383,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2495
2383
|
/**
|
|
2496
2384
|
* Inserts a actionDefinition into the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
2497
2385
|
*
|
|
2498
|
-
* @
|
|
2499
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2500
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
2386
|
+
* @experimental As of version 1.85.
|
|
2501
2387
|
*
|
|
2502
2388
|
* @returns Reference to `this` in order to allow method chaining
|
|
2503
2389
|
*/
|
|
@@ -2516,7 +2402,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2516
2402
|
/**
|
|
2517
2403
|
* Refreshes the card by re-applying the manifest settings and triggering all data requests.
|
|
2518
2404
|
*
|
|
2519
|
-
* @experimental As of version 1.65.
|
|
2405
|
+
* @experimental As of version 1.65.
|
|
2520
2406
|
*/
|
|
2521
2407
|
refresh(): void;
|
|
2522
2408
|
/**
|
|
@@ -2528,9 +2414,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2528
2414
|
/**
|
|
2529
2415
|
* Removes a actionDefinition from the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
2530
2416
|
*
|
|
2531
|
-
* @
|
|
2532
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2533
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
2417
|
+
* @experimental As of version 1.85.
|
|
2534
2418
|
*
|
|
2535
2419
|
* @returns The removed actionDefinition or `null`
|
|
2536
2420
|
*/
|
|
@@ -2705,11 +2589,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2705
2589
|
}
|
|
2706
2590
|
): void;
|
|
2707
2591
|
/**
|
|
2708
|
-
* Causes all
|
|
2592
|
+
* Causes all the controls within the Card that support validation to validate their data.
|
|
2709
2593
|
*
|
|
2710
|
-
* @experimental
|
|
2594
|
+
* @experimental As of version 1.106.
|
|
2711
2595
|
*
|
|
2712
|
-
* @returns if all
|
|
2596
|
+
* @returns if all the controls validated successfully; otherwise, false
|
|
2713
2597
|
*/
|
|
2714
2598
|
validateControls(): boolean;
|
|
2715
2599
|
}
|
|
@@ -2733,14 +2617,13 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2733
2617
|
* Overrides the default values of the parameters, which are defined in the manifest. The value is an object
|
|
2734
2618
|
* containing parameters in format `{parameterKey: parameterValue}`.
|
|
2735
2619
|
*
|
|
2736
|
-
* @experimental As of version 1.65.
|
|
2620
|
+
* @experimental As of version 1.65.
|
|
2737
2621
|
*/
|
|
2738
2622
|
parameters?: object | PropertyBindingInfo | `{${string}}`;
|
|
2739
2623
|
|
|
2740
2624
|
/**
|
|
2741
2625
|
* Defines the state of the `Card`. When set to `Inactive`, the `Card` doesn't make requests.
|
|
2742
2626
|
*
|
|
2743
|
-
* @since 1.65
|
|
2744
2627
|
* @experimental As of version 1.65.
|
|
2745
2628
|
*/
|
|
2746
2629
|
dataMode?:
|
|
@@ -2753,7 +2636,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2753
2636
|
* of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
|
|
2754
2637
|
* If both manifest URL and base URL are not defined - relative resources might not be loaded correctly.
|
|
2755
2638
|
*
|
|
2756
|
-
* @since 1.70
|
|
2757
2639
|
* @experimental As of version 1.70.
|
|
2758
2640
|
*/
|
|
2759
2641
|
baseUrl?: URI | PropertyBindingInfo | `{${string}}`;
|
|
@@ -2796,16 +2678,15 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2796
2678
|
* ```
|
|
2797
2679
|
*
|
|
2798
2680
|
*
|
|
2799
|
-
*
|
|
2800
|
-
*
|
|
2801
|
-
*
|
|
2681
|
+
* Disclaimer: this API might be removed when a permanent solution for flexibility changes is implemented.
|
|
2682
|
+
*
|
|
2683
|
+
* @experimental As of version 1.76.
|
|
2802
2684
|
*/
|
|
2803
2685
|
manifestChanges?: object[] | PropertyBindingInfo | `{${string}}`;
|
|
2804
2686
|
|
|
2805
2687
|
/**
|
|
2806
2688
|
* Defines the design of the `Card`.
|
|
2807
2689
|
*
|
|
2808
|
-
* @since 1.109
|
|
2809
2690
|
* @experimental As of version 1.109.
|
|
2810
2691
|
*/
|
|
2811
2692
|
design?:
|
|
@@ -2813,17 +2694,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2813
2694
|
| PropertyBindingInfo
|
|
2814
2695
|
| `{${string}}`;
|
|
2815
2696
|
|
|
2816
|
-
/**
|
|
2817
|
-
* Defines the display variant for card rendering and behavior.
|
|
2818
|
-
*
|
|
2819
|
-
* @since 1.118
|
|
2820
|
-
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
2821
|
-
*/
|
|
2822
|
-
displayVariant?:
|
|
2823
|
-
| (CardDisplayVariant | keyof typeof CardDisplayVariant)
|
|
2824
|
-
| PropertyBindingInfo
|
|
2825
|
-
| `{${string}}`;
|
|
2826
|
-
|
|
2827
2697
|
/**
|
|
2828
2698
|
* Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
|
|
2829
2699
|
*
|
|
@@ -2832,7 +2702,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2832
2702
|
* - When set to "Abstract", the card shows abstract placeholder without loading data.
|
|
2833
2703
|
* - When set to "Off", the card displays real data.
|
|
2834
2704
|
*
|
|
2835
|
-
* @since 1.112
|
|
2836
2705
|
* @experimental As of version 1.112.
|
|
2837
2706
|
*/
|
|
2838
2707
|
previewMode?:
|
|
@@ -2844,7 +2713,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2844
2713
|
* If the card should change depending on its size. This property is temporary. Should be used to enable
|
|
2845
2714
|
* the feature for cards where it is needed.
|
|
2846
2715
|
*
|
|
2847
|
-
* @since 1.127
|
|
2848
2716
|
* @experimental As of version 1.127.
|
|
2849
2717
|
*/
|
|
2850
2718
|
useProgressiveDisclosure?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -2855,7 +2723,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2855
2723
|
* **Note**: If the "Default" option is used, the card must be allowed to grow in height as much as it needs
|
|
2856
2724
|
* to avoid overflowing. Use a layout which allows this.
|
|
2857
2725
|
*
|
|
2858
|
-
* @since 1.133
|
|
2859
2726
|
* @experimental As of version 1.133.
|
|
2860
2727
|
*/
|
|
2861
2728
|
overflow?:
|
|
@@ -2867,9 +2734,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2867
2734
|
* Actions definitions from which actions in the header menu of the card are created. **Note**: This aggregation
|
|
2868
2735
|
* is destroyed when the property `manifest` changes.
|
|
2869
2736
|
*
|
|
2870
|
-
* @
|
|
2871
|
-
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2872
|
-
* changes may be done before its official public release. Use at your own discretion.
|
|
2737
|
+
* @experimental As of version 1.85.
|
|
2873
2738
|
*/
|
|
2874
2739
|
actionDefinitions?:
|
|
2875
2740
|
| ActionDefinition[]
|
|
@@ -2889,8 +2754,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2889
2754
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
2890
2755
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
2891
2756
|
*
|
|
2892
|
-
* @experimental As of version 1.64.
|
|
2893
|
-
* may be done before its official public release. Use at your own discretion.
|
|
2757
|
+
* @experimental As of version 1.64.
|
|
2894
2758
|
*/
|
|
2895
2759
|
action?: (oEvent: Card$ActionEvent) => void;
|
|
2896
2760
|
|
|
@@ -2921,8 +2785,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2921
2785
|
/**
|
|
2922
2786
|
* Parameters of the Card#action event.
|
|
2923
2787
|
*
|
|
2924
|
-
* @experimental As of version 1.64.
|
|
2925
|
-
* may be done before its official public release. Use at your own discretion.
|
|
2788
|
+
* @experimental As of version 1.64.
|
|
2926
2789
|
*/
|
|
2927
2790
|
export interface Card$ActionEventParameters {
|
|
2928
2791
|
/**
|
|
@@ -2961,8 +2824,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2961
2824
|
/**
|
|
2962
2825
|
* Event object of the Card#action event.
|
|
2963
2826
|
*
|
|
2964
|
-
* @experimental As of version 1.64.
|
|
2965
|
-
* may be done before its official public release. Use at your own discretion.
|
|
2827
|
+
* @experimental As of version 1.64.
|
|
2966
2828
|
*/
|
|
2967
2829
|
export type Card$ActionEvent = Event<Card$ActionEventParameters, Card>;
|
|
2968
2830
|
|
|
@@ -3060,7 +2922,6 @@ declare module "sap/ui/integration/Designtime" {
|
|
|
3060
2922
|
* be implemented.
|
|
3061
2923
|
*
|
|
3062
2924
|
* @since 1.75
|
|
3063
|
-
* @experimental As of version 1.75.
|
|
3064
2925
|
*/
|
|
3065
2926
|
export default class Designtime extends ManagedObject {
|
|
3066
2927
|
/**
|
|
@@ -3141,8 +3002,6 @@ declare module "sap/ui/integration/Designtime" {
|
|
|
3141
3002
|
}
|
|
3142
3003
|
/**
|
|
3143
3004
|
* Describes the settings that can be provided to the Designtime constructor.
|
|
3144
|
-
*
|
|
3145
|
-
* @experimental As of version 1.75.
|
|
3146
3005
|
*/
|
|
3147
3006
|
export interface $DesigntimeSettings extends $ManagedObjectSettings {}
|
|
3148
3007
|
}
|
|
@@ -3152,7 +3011,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsBoolean" {
|
|
|
3152
3011
|
* Validates if the provided value is a boolean or binding string.
|
|
3153
3012
|
*
|
|
3154
3013
|
* @since 1.81
|
|
3155
|
-
* @experimental As of version 1.81.
|
|
3156
3014
|
*/
|
|
3157
3015
|
interface IsBoolean {
|
|
3158
3016
|
/**
|
|
@@ -3177,7 +3035,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsDate" {
|
|
|
3177
3035
|
* Validates if the provided value can be parsed to a valid date.
|
|
3178
3036
|
*
|
|
3179
3037
|
* @since 1.81
|
|
3180
|
-
* @experimental As of version 1.81.
|
|
3181
3038
|
*/
|
|
3182
3039
|
interface IsDate {
|
|
3183
3040
|
/**
|
|
@@ -3202,7 +3059,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsInteger" {
|
|
|
3202
3059
|
* Validates if the provided value is an integer or binding string.
|
|
3203
3060
|
*
|
|
3204
3061
|
* @since 1.81
|
|
3205
|
-
* @experimental As of version 1.81.
|
|
3206
3062
|
*/
|
|
3207
3063
|
interface IsInteger {
|
|
3208
3064
|
/**
|
|
@@ -3227,7 +3083,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsNumber" {
|
|
|
3227
3083
|
* Validates if the provided value is a number or binding string.
|
|
3228
3084
|
*
|
|
3229
3085
|
* @since 1.81
|
|
3230
|
-
* @experimental As of version 1.81.
|
|
3231
3086
|
*/
|
|
3232
3087
|
interface IsNumber {
|
|
3233
3088
|
/**
|
|
@@ -3252,7 +3107,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey
|
|
|
3252
3107
|
* Validates if the provided value is one of the given keys.
|
|
3253
3108
|
*
|
|
3254
3109
|
* @since 1.81
|
|
3255
|
-
* @experimental As of version 1.81.
|
|
3256
3110
|
*/
|
|
3257
3111
|
interface IsSelectedKey {
|
|
3258
3112
|
/**
|
|
@@ -3286,7 +3140,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsStringList"
|
|
|
3286
3140
|
* Validates if none of the provided values is an invalid binding.
|
|
3287
3141
|
*
|
|
3288
3142
|
* @since 1.81
|
|
3289
|
-
* @experimental As of version 1.81.
|
|
3290
3143
|
*/
|
|
3291
3144
|
interface IsStringList {
|
|
3292
3145
|
/**
|
|
@@ -3311,7 +3164,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey"
|
|
|
3311
3164
|
* Validates if the provided key is unique in a list of given keys.
|
|
3312
3165
|
*
|
|
3313
3166
|
* @since 1.81
|
|
3314
|
-
* @experimental As of version 1.81.
|
|
3315
3167
|
*/
|
|
3316
3168
|
interface IsUniqueKey {
|
|
3317
3169
|
/**
|
|
@@ -3349,7 +3201,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsUniqueList"
|
|
|
3349
3201
|
* Validates if the provided list contains no duplicates.
|
|
3350
3202
|
*
|
|
3351
3203
|
* @since 1.81
|
|
3352
|
-
* @experimental As of version 1.81.
|
|
3353
3204
|
*/
|
|
3354
3205
|
interface IsUniqueList {
|
|
3355
3206
|
/**
|
|
@@ -3374,7 +3225,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsValidBindin
|
|
|
3374
3225
|
* Validates if the provided value is a valid binding.
|
|
3375
3226
|
*
|
|
3376
3227
|
* @since 1.81
|
|
3377
|
-
* @experimental As of version 1.81.
|
|
3378
3228
|
*/
|
|
3379
3229
|
interface IsValidBinding {
|
|
3380
3230
|
/**
|
|
@@ -3408,7 +3258,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/MaxLength" {
|
|
|
3408
3258
|
* Validates if the provided value doesn't exceed the maximum length.
|
|
3409
3259
|
*
|
|
3410
3260
|
* @since 1.81
|
|
3411
|
-
* @experimental As of version 1.81.
|
|
3412
3261
|
*/
|
|
3413
3262
|
interface MaxLength {
|
|
3414
3263
|
/**
|
|
@@ -3433,7 +3282,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/NotABinding"
|
|
|
3433
3282
|
* Validates if the provided value doesn't contain a binding.
|
|
3434
3283
|
*
|
|
3435
3284
|
* @since 1.81
|
|
3436
|
-
* @experimental As of version 1.81.
|
|
3437
3285
|
*/
|
|
3438
3286
|
interface NotABinding {
|
|
3439
3287
|
/**
|
|
@@ -3456,8 +3304,6 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/NotABinding"
|
|
|
3456
3304
|
declare module "sap/ui/integration/editor/Editor" {
|
|
3457
3305
|
/**
|
|
3458
3306
|
* Facade of the {@link sap.ui.integration.editor.Editor} control.
|
|
3459
|
-
*
|
|
3460
|
-
* @experimental As of version 1.94.
|
|
3461
3307
|
*/
|
|
3462
3308
|
export interface EditorFacade {
|
|
3463
3309
|
__implements__sap_ui_integration_editor_EditorFacade: boolean;
|
|
@@ -3465,7 +3311,6 @@ declare module "sap/ui/integration/editor/Editor" {
|
|
|
3465
3311
|
/**
|
|
3466
3312
|
* Performs an HTTP request using the given configuration.
|
|
3467
3313
|
*
|
|
3468
|
-
* @experimental As of version 1.94.
|
|
3469
3314
|
*
|
|
3470
3315
|
* @returns Resolves when the request is successful, rejects otherwise.
|
|
3471
3316
|
*/
|
|
@@ -3664,8 +3509,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3664
3509
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3665
3510
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3666
3511
|
*
|
|
3667
|
-
* @experimental As of version 1.75.
|
|
3668
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3512
|
+
* @experimental As of version 1.75.
|
|
3669
3513
|
*
|
|
3670
3514
|
* @returns Reference to `this` in order to allow method chaining
|
|
3671
3515
|
*/
|
|
@@ -3696,8 +3540,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3696
3540
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3697
3541
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3698
3542
|
*
|
|
3699
|
-
* @experimental As of version 1.75.
|
|
3700
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3543
|
+
* @experimental As of version 1.75.
|
|
3701
3544
|
*
|
|
3702
3545
|
* @returns Reference to `this` in order to allow method chaining
|
|
3703
3546
|
*/
|
|
@@ -3716,8 +3559,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3716
3559
|
*
|
|
3717
3560
|
* The passed function and listener object must match the ones used for event registration.
|
|
3718
3561
|
*
|
|
3719
|
-
* @experimental As of version 1.75.
|
|
3720
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3562
|
+
* @experimental As of version 1.75.
|
|
3721
3563
|
*
|
|
3722
3564
|
* @returns Reference to `this` in order to allow method chaining
|
|
3723
3565
|
*/
|
|
@@ -3736,7 +3578,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3736
3578
|
* the response is available. Use this method to override the default behavior when fetching network resources.
|
|
3737
3579
|
* Mimics the browser native Fetch API.
|
|
3738
3580
|
*
|
|
3739
|
-
* @experimental As of version 1.113.
|
|
3581
|
+
* @experimental As of version 1.113.
|
|
3740
3582
|
*
|
|
3741
3583
|
* @returns A `Promise` that resolves to a `Response` object.
|
|
3742
3584
|
*/
|
|
@@ -3761,8 +3603,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3761
3603
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
3762
3604
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
3763
3605
|
*
|
|
3764
|
-
* @experimental As of version 1.75.
|
|
3765
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3606
|
+
* @experimental As of version 1.75.
|
|
3766
3607
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3767
3608
|
*
|
|
3768
3609
|
* @returns Whether or not to prevent the default action
|
|
@@ -3779,8 +3620,6 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3779
3620
|
* The actions configuration.
|
|
3780
3621
|
*
|
|
3781
3622
|
* @deprecated As of version 1.85. This property is replaced by the `actions` aggregation of the card;
|
|
3782
|
-
* @experimental As of version 1.75. Disclaimer: this property is in a beta state - incompatible API changes
|
|
3783
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3784
3623
|
*
|
|
3785
3624
|
* @returns Value of property `actions`
|
|
3786
3625
|
*/
|
|
@@ -3822,8 +3661,6 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3822
3661
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3823
3662
|
*
|
|
3824
3663
|
* @deprecated As of version 1.85. This property is replaced by the `actions` aggregation of the card;
|
|
3825
|
-
* @experimental As of version 1.75. Disclaimer: this property is in a beta state - incompatible API changes
|
|
3826
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3827
3664
|
*
|
|
3828
3665
|
* @returns Reference to `this` in order to allow method chaining
|
|
3829
3666
|
*/
|
|
@@ -3857,8 +3694,6 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3857
3694
|
* The actions configuration.
|
|
3858
3695
|
*
|
|
3859
3696
|
* @deprecated As of version 1.85. This property is replaced by the `actions` aggregation of the card;
|
|
3860
|
-
* @experimental As of version 1.75. Disclaimer: this property is in a beta state - incompatible API changes
|
|
3861
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3862
3697
|
*/
|
|
3863
3698
|
actions?: CardMenuAction[] | PropertyBindingInfo | `{${string}}`;
|
|
3864
3699
|
|
|
@@ -3876,8 +3711,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3876
3711
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3877
3712
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3878
3713
|
*
|
|
3879
|
-
* @experimental As of version 1.75.
|
|
3880
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3714
|
+
* @experimental As of version 1.75.
|
|
3881
3715
|
*/
|
|
3882
3716
|
action?: (oEvent: Extension$ActionEvent) => void;
|
|
3883
3717
|
}
|
|
@@ -3885,8 +3719,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3885
3719
|
/**
|
|
3886
3720
|
* Parameters of the Extension#action event.
|
|
3887
3721
|
*
|
|
3888
|
-
* @experimental As of version 1.75.
|
|
3889
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3722
|
+
* @experimental As of version 1.75.
|
|
3890
3723
|
*/
|
|
3891
3724
|
export interface Extension$ActionEventParameters {
|
|
3892
3725
|
/**
|
|
@@ -3930,8 +3763,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3930
3763
|
/**
|
|
3931
3764
|
* Event object of the Extension#action event.
|
|
3932
3765
|
*
|
|
3933
|
-
* @experimental As of version 1.75.
|
|
3934
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3766
|
+
* @experimental As of version 1.75.
|
|
3935
3767
|
*/
|
|
3936
3768
|
export type Extension$ActionEvent = Event<
|
|
3937
3769
|
Extension$ActionEventParameters,
|
|
@@ -4036,8 +3868,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4036
3868
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
4037
3869
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
4038
3870
|
*
|
|
4039
|
-
* @experimental As of version 1.75.
|
|
4040
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3871
|
+
* @experimental As of version 1.75.
|
|
4041
3872
|
*
|
|
4042
3873
|
* @returns Reference to `this` in order to allow method chaining
|
|
4043
3874
|
*/
|
|
@@ -4068,8 +3899,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4068
3899
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
4069
3900
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
4070
3901
|
*
|
|
4071
|
-
* @experimental As of version 1.75.
|
|
4072
|
-
* may be done before its official public release. Use at your own discretion.
|
|
3902
|
+
* @experimental As of version 1.75.
|
|
4073
3903
|
*
|
|
4074
3904
|
* @returns Reference to `this` in order to allow method chaining
|
|
4075
3905
|
*/
|
|
@@ -4295,7 +4125,6 @@ declare module "sap/ui/integration/Host" {
|
|
|
4295
4125
|
* This function is called when a CSRF token has expired.
|
|
4296
4126
|
*
|
|
4297
4127
|
* @deprecated As of version 1.120.0. the concept has been discarded.
|
|
4298
|
-
* @experimental As of version 1.97.
|
|
4299
4128
|
*/
|
|
4300
4129
|
csrfTokenExpired(
|
|
4301
4130
|
/**
|
|
@@ -4309,7 +4138,6 @@ declare module "sap/ui/integration/Host" {
|
|
|
4309
4138
|
* This function is called when a CSRF token is fetched.
|
|
4310
4139
|
*
|
|
4311
4140
|
* @deprecated As of version 1.120.0. the concept has been discarded.
|
|
4312
|
-
* @experimental As of version 1.97.
|
|
4313
4141
|
*/
|
|
4314
4142
|
csrfTokenFetched(
|
|
4315
4143
|
/**
|
|
@@ -4328,8 +4156,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4328
4156
|
*
|
|
4329
4157
|
* The passed function and listener object must match the ones used for event registration.
|
|
4330
4158
|
*
|
|
4331
|
-
* @experimental As of version 1.75.
|
|
4332
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4159
|
+
* @experimental As of version 1.75.
|
|
4333
4160
|
*
|
|
4334
4161
|
* @returns Reference to `this` in order to allow method chaining
|
|
4335
4162
|
*/
|
|
@@ -4428,8 +4255,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4428
4255
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
4429
4256
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
4430
4257
|
*
|
|
4431
|
-
* @experimental As of version 1.75.
|
|
4432
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4258
|
+
* @experimental As of version 1.75.
|
|
4433
4259
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4434
4260
|
*
|
|
4435
4261
|
* @returns Whether or not to prevent the default action
|
|
@@ -4501,8 +4327,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4501
4327
|
*
|
|
4502
4328
|
* The actions configuration.
|
|
4503
4329
|
*
|
|
4504
|
-
* @experimental As of version 1.75.
|
|
4505
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4330
|
+
* @experimental As of version 1.75.
|
|
4506
4331
|
*
|
|
4507
4332
|
* @returns Value of property `actions`
|
|
4508
4333
|
*/
|
|
@@ -4519,7 +4344,6 @@ declare module "sap/ui/integration/Host" {
|
|
|
4519
4344
|
* The context information and texts should be translated as they appear in the design-time UI of the Card
|
|
4520
4345
|
* Editor.
|
|
4521
4346
|
*
|
|
4522
|
-
* @since 1.83
|
|
4523
4347
|
* @experimental As of version 1.143.
|
|
4524
4348
|
*
|
|
4525
4349
|
* @returns A promise which contains the context structure.
|
|
@@ -4536,7 +4360,6 @@ declare module "sap/ui/integration/Host" {
|
|
|
4536
4360
|
* Example path to the current user id of the context sPath = "sap.workzone/currentUser/id" parameter: {
|
|
4537
4361
|
* userId: { value: "{context>sap.workzone/currentUser/id}" resolves to UserId } }
|
|
4538
4362
|
*
|
|
4539
|
-
* @since 1.83
|
|
4540
4363
|
* @experimental As of version 1.143.
|
|
4541
4364
|
*
|
|
4542
4365
|
* @returns A promise which resolves with the value of this context.
|
|
@@ -4547,24 +4370,6 @@ declare module "sap/ui/integration/Host" {
|
|
|
4547
4370
|
*/
|
|
4548
4371
|
sPath: string
|
|
4549
4372
|
): Promise<null>;
|
|
4550
|
-
/**
|
|
4551
|
-
* Resolves the value of a CSRF token. Subclasses of Host can override this method to take over the default
|
|
4552
|
-
* CSRF token resolving. Applications must not call this method directly, it is called by the framework.
|
|
4553
|
-
*
|
|
4554
|
-
* @deprecated As of version 1.120.0. the concept has been discarded.
|
|
4555
|
-
* @experimental As of version 1.97.
|
|
4556
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4557
|
-
*
|
|
4558
|
-
* @returns A promise which resolves the CSRF token to its value.
|
|
4559
|
-
*/
|
|
4560
|
-
getCsrfToken(
|
|
4561
|
-
/**
|
|
4562
|
-
* The CSRF token configuration.
|
|
4563
|
-
*/
|
|
4564
|
-
csrfTokenConfig: {
|
|
4565
|
-
data: object;
|
|
4566
|
-
}
|
|
4567
|
-
): Promise<string>;
|
|
4568
4373
|
/**
|
|
4569
4374
|
* Resolves the destination and returns its URL.
|
|
4570
4375
|
*
|
|
@@ -4616,8 +4421,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4616
4421
|
*
|
|
4617
4422
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4618
4423
|
*
|
|
4619
|
-
* @experimental As of version 1.75.
|
|
4620
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4424
|
+
* @experimental As of version 1.75.
|
|
4621
4425
|
*
|
|
4622
4426
|
* @returns Reference to `this` in order to allow method chaining
|
|
4623
4427
|
*/
|
|
@@ -4655,8 +4459,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4655
4459
|
/**
|
|
4656
4460
|
* The actions configuration.
|
|
4657
4461
|
*
|
|
4658
|
-
* @experimental As of version 1.75.
|
|
4659
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4462
|
+
* @experimental As of version 1.75.
|
|
4660
4463
|
*/
|
|
4661
4464
|
actions?: CardMenuAction[] | PropertyBindingInfo | `{${string}}`;
|
|
4662
4465
|
|
|
@@ -4680,8 +4483,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4680
4483
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
4681
4484
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
4682
4485
|
*
|
|
4683
|
-
* @experimental As of version 1.75.
|
|
4684
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4486
|
+
* @experimental As of version 1.75.
|
|
4685
4487
|
*/
|
|
4686
4488
|
action?: (oEvent: Host$ActionEvent) => void;
|
|
4687
4489
|
|
|
@@ -4722,8 +4524,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4722
4524
|
/**
|
|
4723
4525
|
* Parameters of the Host#action event.
|
|
4724
4526
|
*
|
|
4725
|
-
* @experimental As of version 1.75.
|
|
4726
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4527
|
+
* @experimental As of version 1.75.
|
|
4727
4528
|
*/
|
|
4728
4529
|
export interface Host$ActionEventParameters {
|
|
4729
4530
|
/**
|
|
@@ -4767,8 +4568,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4767
4568
|
/**
|
|
4768
4569
|
* Event object of the Host#action event.
|
|
4769
4570
|
*
|
|
4770
|
-
* @experimental As of version 1.75.
|
|
4771
|
-
* may be done before its official public release. Use at your own discretion.
|
|
4571
|
+
* @experimental As of version 1.75.
|
|
4772
4572
|
*/
|
|
4773
4573
|
export type Host$ActionEvent = Event<Host$ActionEventParameters, Host>;
|
|
4774
4574
|
|
|
@@ -4885,7 +4685,6 @@ declare namespace sap {
|
|
|
4885
4685
|
* Validates if the provided value belongs to the icon pool.
|
|
4886
4686
|
*
|
|
4887
4687
|
* @since 1.81
|
|
4888
|
-
* @experimental As of version 1.81.
|
|
4889
4688
|
*/
|
|
4890
4689
|
namespace IsInIconPool {
|
|
4891
4690
|
/**
|